summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive_gtk.pm
blob: fe22a66b52ab31f934aaee021155b4e5fe159f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
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;
    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;
		if (my $v = $e->{clicked_may_quit}()) {
		    $mainw->{retval} = $v;
		    Gtk->main_quit;
		}
		$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 ($wantedheight, $wantedwidth) = $::isEmbedded && !$my_gtk::pop_it ? (450, 380) : ($::windowheight * 0.8, $::windowwidth * 0.8);

	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 (!$::isEmbedded && !$::isWizard || $my_gtk::pop_it) {
	$mainw->{rwindow}->set_default_size($mainw->{box_width}+6+$my_gtk::shape_width, $mainw->{box_height}+6+3+$my_gtk::shape_width) if $has_scroll;
	$mainw->{rwindow}->set_default_size($mainw->{box_width}+6+$my_gtk::shape_width, 0) if $has_horiz_scroll;
    }
    $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 || $my_gtk::pop_it));
    $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;
='#n5115'>5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718
# 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: 2001-09-21 19:50+0200\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:231
msgid "Configure all heads independently"
msgstr "¸ðµç Çìµå¸¦ µ¶¸³ÀûÀ¸·Î ¼³Á¤"

#: ../../Xconfigurator.pm_.c:232
msgid "Use Xinerama extension"
msgstr "Xinerama È®Àå »ç¿ë"

#: ../../Xconfigurator.pm_.c:235
#, c-format
msgid "Configure only card \"%s\" (%s)"
msgstr "¡¸%s¡¹Ä«µå¸¸ ¼³Á¤ (%s)"

#: ../../Xconfigurator.pm_.c:238
msgid "Multi-head configuration"
msgstr "´ÙÁß Çìµå ¼³Á¤"

#: ../../Xconfigurator.pm_.c:239
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
"´ÔÀÇ ½Ã½ºÅÛÀº ´ÙÁß Çìµå ¼³Á¤À» Áö¿øÇÕ´Ï´Ù.\n"
"¾î¶»°Ô ÇϽðڽÀ´Ï±î?"

#: ../../Xconfigurator.pm_.c:248
msgid "Graphic card"
msgstr "±×·¡ÇÈ Ä«µå"

#: ../../Xconfigurator.pm_.c:248
msgid "Select a graphic card"
msgstr "±×·¡ÇÈ Ä«µå ¼±ÅÃ"

#: ../../Xconfigurator.pm_.c:249
msgid "Choose a X server"
msgstr "X ¼­¹ö ¼±ÅÃ"

#: ../../Xconfigurator.pm_.c:249
msgid "X server"
msgstr "X ¼­¹ö"

#: ../../Xconfigurator.pm_.c:307 ../../Xconfigurator.pm_.c:313
#: ../../Xconfigurator.pm_.c:363 ../../Xconfigurator.pm_.c:1435
#, c-format
msgid "XFree %s"
msgstr "XFree %s"

#: ../../Xconfigurator.pm_.c:310
msgid "Which configuration of XFree do you want to have?"
msgstr "¾î´À XFree ¼³Á¤À» ¼±ÅÃÇϽðڽÀ´Ï±î?"

#: ../../Xconfigurator.pm_.c:321
#, 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:323 ../../Xconfigurator.pm_.c:356
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "´ÔÀÇ Ä«µå´Â XFree %s·Î 3D Çϵå¿þ¾î °¡¼Ó±â´ÉÀ» Áö¿øÇÕ´Ï´Ù."

#: ../../Xconfigurator.pm_.c:325 ../../Xconfigurator.pm_.c:358
#: ../../Xconfigurator.pm_.c:1435
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s¸¦ »ç¿ëÇÑ 3D Çϵå¿þ¾î °¡¼Ó"

#: ../../Xconfigurator.pm_.c:333 ../../Xconfigurator.pm_.c:347
#, 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:335 ../../Xconfigurator.pm_.c:349
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s¸¦ »ç¿ëÇÑ ½ÇÇèÀû 3D Çϵå¿þ¾î °¡¼Ó"

#: ../../Xconfigurator.pm_.c:344
#, 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:364
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (¼³Ä¡ Ç¥½Ã µå¶óÀ̹ö)"

#: ../../Xconfigurator.pm_.c:368
msgid "XFree configuration"
msgstr "XFree ¼³Á¤"

#: ../../Xconfigurator.pm_.c:434
msgid "Select the memory size of your graphic card"
msgstr "±×·¡ÇÈ Ä«µåÀÇ ¸Þ¸ð¸® ¿ë·®À» ¼±ÅÃÇϼ¼¿ä"

#: ../../Xconfigurator.pm_.c:492
msgid "Choose options for server"
msgstr "¼­¹ö ¿É¼ÇÀ» ¼±ÅÃÇϼ¼¿ä"

#: ../../Xconfigurator.pm_.c:516
msgid "Choose a monitor"
msgstr "¸ð´ÏÅ͸¦ ¼±ÅÃÇϼ¼¿ä"

#: ../../Xconfigurator.pm_.c:516
msgid "Monitor"
msgstr "¸ð´ÏÅÍ"

#: ../../Xconfigurator.pm_.c:519
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:526
msgid "Horizontal refresh rate"
msgstr "¼öÆò Á֯ļö"

#: ../../Xconfigurator.pm_.c:527
msgid "Vertical refresh rate"
msgstr "¼öÁ÷ Á֯ļö"

#: ../../Xconfigurator.pm_.c:564
msgid "Monitor not configured"
msgstr "¸ð´ÏÅͰ¡ ¼³Á¤µÇÁö ¾Ê¾Ò½À´Ï´Ù."

#: ../../Xconfigurator.pm_.c:567
msgid "Graphic card not configured yet"
msgstr "±×·¡ÇÈ Ä«µå°¡ ¾ÆÁ÷ ¼³Á¤µÇÁö ¾Ê¾Ò½À´Ï´Ù."

#: ../../Xconfigurator.pm_.c:570
msgid "Resolutions not chosen yet"
msgstr "ÇØ»óµµ°¡ ¼±ÅõÇÁö ¾Ê¾Ò½À´Ï´Ù."

#: ../../Xconfigurator.pm_.c:587
msgid "Do you want to test the configuration?"
msgstr "ÀÌ ¼³Á¤À» Å×½ºÆ®ÇØ º¸½Ã°Ú½À´Ï±î?"

#: ../../Xconfigurator.pm_.c:591
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "ÁÖÀÇ : ÀÌ ±×·¡ÇÈ Ä«µå¸¦ Å×½ºÆ®Çϸé ÄÄÇ»ÅͰ¡ ¸ØÃâÁöµµ ¸ð¸¨´Ï´Ù."

#: ../../Xconfigurator.pm_.c:594
msgid "Test of the configuration"
msgstr "¼³Á¤ Å×½ºÆ®"

#: ../../Xconfigurator.pm_.c:632 ../../Xconfigurator.pm_.c:644
msgid ""
"\n"
"try to change some parameters"
msgstr ""
"\n"
"ÀϺΠÀÎÀÚ°ªµéÀ» º¯°æÇØ º¸¼¼¿ä."

#: ../../Xconfigurator.pm_.c:632 ../../Xconfigurator.pm_.c:644
msgid "An error has occurred:"
msgstr "¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù:"

#: ../../Xconfigurator.pm_.c:668
#, c-format
msgid "Leaving in %d seconds"
msgstr "%d ÃÊ ³²¾Ò½À´Ï´Ù."

#: ../../Xconfigurator.pm_.c:679
msgid "Is this the correct setting?"
msgstr "ÀÌ ¼³Á¤ÀÌ ¸Â½À´Ï±î?"

#: ../../Xconfigurator.pm_.c:688
msgid "An error has occurred, try to change some parameters"
msgstr "¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù. ÀϺΠÀÎÀÚ°ªÀ» º¯°æÇØ º¸¼¼¿ä."

#: ../../Xconfigurator.pm_.c:759
msgid "Resolution"
msgstr "ÇØ»óµµ"

#: ../../Xconfigurator.pm_.c:810
msgid "Choose the resolution and the color depth"
msgstr "ÇØ»óµµ¿Í »ö»óÀ» ¼±ÅÃÇϼ¼¿ä"

#: ../../Xconfigurator.pm_.c:812
#, c-format
msgid "Graphic card: %s"
msgstr "±×·¡ÇÈ Ä«µå: %s"

#: ../../Xconfigurator.pm_.c:813
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 ¼­¹ö: %s"

#: ../../Xconfigurator.pm_.c:829 ../../printerdrake.pm_.c:1885
#: ../../standalone/draknet_.c:298 ../../standalone/draknet_.c:301
msgid "Expert Mode"
msgstr "Àü¹®°¡ ¸ðµå"

#: ../../Xconfigurator.pm_.c:830
msgid "Show all"
msgstr "¸ðµÎ Ç¥½Ã"

#: ../../Xconfigurator.pm_.c:875
msgid "Resolutions"
msgstr "ÇØ»óµµ"

#: ../../Xconfigurator.pm_.c:1437
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Űº¸µå ÇüÅÂ: %s\n"

#: ../../Xconfigurator.pm_.c:1438
#, c-format
msgid "Mouse type: %s\n"
msgstr "¸¶¿ì½º Á¾·ù: %s\n"

#: ../../Xconfigurator.pm_.c:1439
#, c-format
msgid "Mouse device: %s\n"
msgstr "¸¶¿ì½º ÀåÄ¡: %s\n"

#: ../../Xconfigurator.pm_.c:1440
#, c-format
msgid "Monitor: %s\n"
msgstr "¸ð´ÏÅÍ: %s\n"

#: ../../Xconfigurator.pm_.c:1441
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "¸ð´ÏÅÍ ¼öÆòÁ֯ļö: %s\n"

#: ../../Xconfigurator.pm_.c:1442
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "¸ð´ÏÅÍ ¼öÁ÷Á֯ļö: %s\n"

#: ../../Xconfigurator.pm_.c:1443
#, c-format
msgid "Graphic card: %s\n"
msgstr "±×·¡ÇÈ Ä«µå: %s\n"

#: ../../Xconfigurator.pm_.c:1444
#, c-format
msgid "Graphic card identification: %s\n"
msgstr "±×·¡ÇÈ Ä«µå ID: %s\n"

#: ../../Xconfigurator.pm_.c:1445
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "ºñµð¿À ¸Þ¸ð¸®: %s kB\n"

#: ../../Xconfigurator.pm_.c:1447
#, c-format
msgid "Color depth: %s\n"
msgstr "»ö»ó ½Éµµ: %s\n"

#: ../../Xconfigurator.pm_.c:1448
#, c-format
msgid "Resolution: %s\n"
msgstr "ÇØ»óµµ: %s\n"

#: ../../Xconfigurator.pm_.c:1450
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ¼­¹ö: %s\n"

#: ../../Xconfigurator.pm_.c:1451
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 µå¶óÀ̹ö: %s\n"

#: ../../Xconfigurator.pm_.c:1469
msgid "Preparing X-Window configuration"
msgstr "X-Window ¼³Á¤ ÁغñÁß"

#: ../../Xconfigurator.pm_.c:1489
msgid "What do you want to do?"
msgstr "¾î¶»°Ô ÇϽðڽÀ´Ï±î?"

#: ../../Xconfigurator.pm_.c:1494
msgid "Change Monitor"
msgstr "¸ð´ÏÅÍ º¯°æ"

#: ../../Xconfigurator.pm_.c:1495
msgid "Change Graphic card"
msgstr "±×·¡ÇÈ Ä«µå º¯°æ"

#: ../../Xconfigurator.pm_.c:1497
msgid "Change Server options"
msgstr "¼­¹ö ¿É¼Ç º¯°æ"

#: ../../Xconfigurator.pm_.c:1498
msgid "Change Resolution"
msgstr "ÇØ»óµµ º¯°æ"

#: ../../Xconfigurator.pm_.c:1499
msgid "Show information"
msgstr "Á¤º¸ º¸±â"

#: ../../Xconfigurator.pm_.c:1500
msgid "Test again"
msgstr "´Ù½Ã Å×½ºÆ®"

#: ../../Xconfigurator.pm_.c:1501 ../../bootlook.pm_.c:156
msgid "Quit"
msgstr "Á¾·á"

#: ../../Xconfigurator.pm_.c:1509
#, c-format
msgid ""
"Keep the changes?\n"
"Current configuration is:\n"
"\n"
"%s"
msgstr ""
"º¯°æ»çÇ×À» ÀúÀåÇÒ±î¿ä?\n"
"ÇöÀç ¼³Á¤:\n"
"\n"
"%s"

#: ../../Xconfigurator.pm_.c:1532
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "º¯°æ»çÇ×À» Àû¿ëÇÏ·Á¸é %s·Î Àç·Î±×ÀÎ Çϼ¼¿ä."

#: ../../Xconfigurator.pm_.c:1552
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "·Î±×¾Æ¿ôÇϰí Crtl-Alt-BackSpace۸¦ ´©¸£¼¼¿ä."

#: ../../Xconfigurator.pm_.c:1555
msgid "X at startup"
msgstr "½ÃÀ۽à ¹Ù·Î X ½ÇÇà"

#: ../../Xconfigurator.pm_.c:1556
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_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:106
msgid "256 kB"
msgstr "256 kB"

#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"

#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"

#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"

#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"

#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"

#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB"
msgstr "16 MB"

#: ../../Xconfigurator_consts.pm_.c:113
msgid "32 MB"
msgstr "32 MB"

#: ../../Xconfigurator_consts.pm_.c:114
msgid "64 MB or more"
msgstr "16 MB ÀÌ»ó"

#: ../../Xconfigurator_consts.pm_.c:122
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Ç¥ÁØ VGA, 640x480 @ 60 Hz"

#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "½´ÆÛ VGA, 800x600 @ 56 Hz"

#: ../../Xconfigurator_consts.pm_.c:124
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 ȣȯ, 1024x768 @ 87 Hz interlaced (800x600 ¾ÈµÊ)"

#: ../../Xconfigurator_consts.pm_.c:125
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:126
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "È®Àå ½´ÆÛ VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"

#: ../../Xconfigurator_consts.pm_.c:127
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "ºñÀÎÅÍ·¹À̽º SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"

#: ../../Xconfigurator_consts.pm_.c:128
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "°íÁ֯ļö SVGA,  1024x768 @ 70 Hz"

#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "1280x1024 @ 60 Hz Áö¿ø ´ÙÁßÁ֯ļö ¸ð´ÏÅÍ"

#: ../../Xconfigurator_consts.pm_.c:130
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "1280x1024 @ 74 Hz Áö¿ø ´ÙÁßÁ֯ļö ¸ð´ÏÅÍ"

#: ../../Xconfigurator_consts.pm_.c:131
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "1280x1024 @ 76 Hz Áö¿ø ´ÙÁßÁ֯ļö ¸ð´ÏÅÍ"

#: ../../Xconfigurator_consts.pm_.c:132
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "1600x1200 @ 70 Hz »ç¿ë °¡´É ¸ð´ÏÅÍ"

#: ../../Xconfigurator_consts.pm_.c:133
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "1600x1200 @ 76 Hz »ç¿ë °¡´É ¸ð´ÏÅÍ"

#: ../../any.pm_.c:96 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "ºÎÆ® ÆÄƼ¼ÇÀÇ Ã¹¹øÂ° ¼½ÅÍ"

#: ../../any.pm_.c:96 ../../any.pm_.c:121 ../../any.pm_.c:194
msgid "First sector of drive (MBR)"
msgstr "µå¶óÀ̺êÀÇ Ã¹¹øÂ° ¼½ÅÍ(MBR)"

#: ../../any.pm_.c:100
msgid "SILO Installation"
msgstr "SILO ¼³Ä¡"

#: ../../any.pm_.c:101 ../../any.pm_.c:114
msgid "Where do you want to install the bootloader?"
msgstr "ºÎÆ®·Î´õ¸¦ ¾îµð¿¡ ¼³Ä¡ÇÏ°í ½ÍÀ¸¼¼¿ä?"

#: ../../any.pm_.c:113
msgid "LILO/grub Installation"
msgstr "LILO/GRUB ¼³Ä¡"

#: ../../any.pm_.c:125 ../../any.pm_.c:139
msgid "SILO"
msgstr "SILO"

#: ../../any.pm_.c:127
msgid "LILO with text menu"
msgstr "ÅØ½ºÆ® ¸Þ´º LILO"

#: ../../any.pm_.c:128 ../../any.pm_.c:139
msgid "LILO with graphical menu"
msgstr "±×·¡ÇÈ ¸Þ´º LILO"

#: ../../any.pm_.c:131
msgid "Grub"
msgstr "Grub"

#: ../../any.pm_.c:135
msgid "Boot from DOS/Windows (loadlin)"
msgstr "µµ½º/À©µµ¿ìÁî¿¡¼­ ºÎÆÃ(loadlin)"

#: ../../any.pm_.c:137 ../../any.pm_.c:139
msgid "Yaboot"
msgstr "Yaboot"

#: ../../any.pm_.c:145 ../../any.pm_.c:177
msgid "Bootloader main options"
msgstr "ºÎÆ®·Î´õ ÁÖ ¿É¼Çµé"

#: ../../any.pm_.c:146 ../../any.pm_.c:178
msgid "Bootloader to use"
msgstr "»ç¿ëÇÒ ºÎÆ®·Î´õ"

#: ../../any.pm_.c:148
msgid "Bootloader installation"
msgstr "ºÎÆ®·Î´õ ¼³Ä¡"

#: ../../any.pm_.c:150 ../../any.pm_.c:180
msgid "Boot device"
msgstr "ºÎÆ® ÀåÄ¡"

#: ../../any.pm_.c:151
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (¿À·¡µÈ BIOSµé¿¡¼± ÀÛµ¿ÇÏÁö ¾ÊÀ»¼öµµ ÀÖ½À´Ï´Ù.)"

#: ../../any.pm_.c:152
msgid "Compact"
msgstr "ÄÞÆÑµå ¸ðµå"

#: ../../any.pm_.c:152
msgid "compact"
msgstr "ÄÞÆÑÆ® ¸ðµå"

#: ../../any.pm_.c:153 ../../any.pm_.c:250
msgid "Video mode"
msgstr "ºñµð¿À ¸ðµå"

#: ../../any.pm_.c:155
msgid "Delay before booting default image"
msgstr "±âº» À̹ÌÁö·Î ºÎÆÃµÉ ¶§±îÁö Áö¿¬½Ã°£"

#: ../../any.pm_.c:157 ../../any.pm_.c:730
#: ../../install_steps_interactive.pm_.c:938 ../../network/modem.pm_.c:46
#: ../../printerdrake.pm_.c:402 ../../printerdrake.pm_.c:481
#: ../../standalone/draknet_.c:603
msgid "Password"
msgstr "¾ÏÈ£"

#: ../../any.pm_.c:158 ../../any.pm_.c:731
#: ../../install_steps_interactive.pm_.c:939
msgid "Password (again)"
msgstr "¾ÏÈ£ (È®ÀÎ)"

#: ../../any.pm_.c:159
msgid "Restrict command line options"
msgstr "¸í·ÉÇà ¿É¼ÇÀ» Á¦ÇÑÇÕ´Ï´Ù."

#: ../../any.pm_.c:159
msgid "restrict"
msgstr "Á¦ÇÑ"

#: ../../any.pm_.c:161
msgid "Clean /tmp at each boot"
msgstr "ºÎÆÃ½Ã /tmp µð·ºÅ丮 ÀÚµ¿ û¼Ò"

#: ../../any.pm_.c:162
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "¿É¼Ç: Á¤È®ÇÑ ¸Þ¸ð¸® ¿ë·® (%d MB ¹ß°ß)"

#: ../../any.pm_.c:164
msgid "Enable multi profiles"
msgstr "´ÙÁß profiles Çã¿ë"

#: ../../any.pm_.c:168
msgid "Give the ram size in MB"
msgstr "¸Þ¸ð¸® ¿ë·®¸¦ MB·Î ÀÔ·ÂÇϼ¼¿ä"

#: ../../any.pm_.c:170
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "¿É¼Ç: ¡¸¸í·ÉÇà ¿É¼ÇÁ¦ÇÑ¡¹Àº ¾ÏÈ£¾øÀÌ »ç¿ëµÉ¼ö ¾ø½À´Ï´Ù."

#: ../../any.pm_.c:171 ../../any.pm_.c:707
#: ../../install_steps_interactive.pm_.c:933
msgid "Please try again"
msgstr "´Ù½Ã ½ÃµµÇϼ¼¿ä."

#: ../../any.pm_.c:171 ../../any.pm_.c:707
#: ../../install_steps_interactive.pm_.c:933
msgid "The passwords do not match"
msgstr "¾ÏÈ£°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù."

#: ../../any.pm_.c:179
msgid "Init Message"
msgstr "ÃʱâÈ­ ¸Þ½ÃÁö"

#: ../../any.pm_.c:181
msgid "Open Firmware Delay"
msgstr "Æß¿þ¾î ¿­±â Áö¿¬"

#: ../../any.pm_.c:182
msgid "Kernel Boot Timeout"
msgstr "Ä¿³Î ºÎÆ® Á¦Çѽð£"

#: ../../any.pm_.c:183
msgid "Enable CD Boot?"
msgstr "CD ºÎÆÃ Çã¿ë?"

#: ../../any.pm_.c:184
msgid "Enable OF Boot?"
msgstr "OF ºÎÆÃ Çã¿ë?"

#: ../../any.pm_.c:185
msgid "Default OS?"
msgstr "񃧯 OS?"

#: ../../any.pm_.c:207
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
"¸î °¡Áö Ç׸ñÀÌ ¿©±â¿¡ Ç¥½ÃµÇ°í ÀÖ½À´Ï´Ù.\n"
"´õ Ãß°¡Çϰųª, ±âÁ¸ÀÇ °ÍµéÀ» ¼öÁ¤ÇÒ¼ö ÀÖ½À´Ï´Ù."

#: ../../any.pm_.c:217
msgid "Add"
msgstr "Ãß°¡"

#: ../../any.pm_.c:217 ../../any.pm_.c:718 ../../diskdrake.pm_.c:161
#: ../../interactive_http.pm_.c:153 ../../printerdrake.pm_.c:1846
#: ../../printerdrake.pm_.c:1847 ../../printerdrake.pm_.c:1904
#: ../../printerdrake.pm_.c:1948
msgid "Done"
msgstr "¿Ï·á"

#: ../../any.pm_.c:217
msgid "Modify"
msgstr "º¯°æ"

#: ../../any.pm_.c:225
msgid "Which type of entry do you want to add?"
msgstr "¾î¶² Á¾·ùÀÇ Ç׸ñÀ» Ãß°¡ÇϽðڽÀ´Ï±î?"

#: ../../any.pm_.c:226
msgid "Linux"
msgstr "¸®´ª½º"

#: ../../any.pm_.c:226
msgid "Other OS (SunOS...)"
msgstr "±âŸ OS (SunOS...)"

#: ../../any.pm_.c:227
msgid "Other OS (MacOS...)"
msgstr "±âŸ OS (MacOS...)"

#: ../../any.pm_.c:227
msgid "Other OS (windows...)"
msgstr "±âŸ OS (windows...)"

#: ../../any.pm_.c:246
msgid "Image"
msgstr "À̹ÌÁö"

#: ../../any.pm_.c:247 ../../any.pm_.c:258
msgid "Root"
msgstr "·çÆ®"

#: ../../any.pm_.c:248 ../../any.pm_.c:277
msgid "Append"
msgstr "Ãß°¡"

#: ../../any.pm_.c:252
msgid "Initrd"
msgstr "ÃʱâÈ­ ·¥µð½ºÅ©"

#: ../../any.pm_.c:253
msgid "Read-write"
msgstr "Àбâ-¾²±â"

#: ../../any.pm_.c:260
msgid "Table"
msgstr "Å×À̺í"

#: ../../any.pm_.c:261
msgid "Unsafe"
msgstr "À§Çè"

#: ../../any.pm_.c:268 ../../any.pm_.c:273 ../../any.pm_.c:276
msgid "Label"
msgstr "Ç׸ñ¸í"

#: ../../any.pm_.c:270 ../../any.pm_.c:281
msgid "Default"
msgstr "±âº»°ª"

#: ../../any.pm_.c:278
msgid "Initrd-size"
msgstr "·¥µð½ºÅ© ¿ë·®"

#: ../../any.pm_.c:280
msgid "NoVideo"
msgstr "ºñµð¿À ¾øÀ½"

#: ../../any.pm_.c:288
msgid "Remove entry"
msgstr "Ç׸ñ Á¦°Å"

#: ../../any.pm_.c:291
msgid "Empty label not allowed"
msgstr "ºó Ç׸ñ¸íÀº Çã¿ëµÇÁö ¾Ê½À´Ï´Ù."

#: ../../any.pm_.c:292
msgid "This label is already used"
msgstr "ÀÌ Ç׸ñ¸íÀº ÀÌ¹Ì »ç¿ëµÇ°í ÀÖ½À´Ï´Ù."

#: ../../any.pm_.c:597
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ÀÎÅÍÆäÀ̽º°¡ °¨ÁöµÇ¾ú½À´Ï´Ù."

#: ../../any.pm_.c:598
msgid "Do you have another one?"
msgstr "¶Ç ´Ù¸¥°ÍÀÌ ¼³Ä¡µÇ¾î ÀÖ½À´Ï±î?"

#: ../../any.pm_.c:599
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¶Ç ´Ù¸¥ %s ÀÎÅÍÆäÀ̽º°¡ ¼³Ä¡µÇ¾î ÀÖ½À´Ï±î?"

#: ../../any.pm_.c:601 ../../any.pm_.c:760 ../../interactive.pm_.c:112
#: ../../my_gtk.pm_.c:715
msgid "No"
msgstr "¾Æ´Ï¿À"

#: ../../any.pm_.c:601 ../../any.pm_.c:759 ../../interactive.pm_.c:112
#: ../../my_gtk.pm_.c:715
msgid "Yes"
msgstr "¿¹"

#: ../../any.pm_.c:602
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:637
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%sÄ«µå µå¶óÀ̹ö %s ¼³Ä¡Áß"

#: ../../any.pm_.c:638
#, c-format
msgid "(module %s)"
msgstr "(%s ¸ðµâ »ç¿ë)"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../any.pm_.c:649
#, c-format
msgid "Which %s driver should I try?"
msgstr "¾î¶² %s µå¶óÀ̹ö¸¦ ½ÃµµÇØ º¾´Ï±î?"

#: ../../any.pm_.c:657
#, 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:662
msgid "Autoprobe"
msgstr "ÀÚµ¿°Ë»ö"

#: ../../any.pm_.c:662
msgid "Specify options"
msgstr "¿É¼Ç ÁöÁ¤"

#: ../../any.pm_.c:666
#, c-format
msgid "You may now provide its options to module %s."
msgstr "ÀÌÁ¦ %s µå¶óÀ̹ö¿¡ ¿É¼ÇÀ» ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù."

#: ../../any.pm_.c:672
#, 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:675
msgid "Module options:"
msgstr "¸ðµâ ¿É¼Çµé:"

#: ../../any.pm_.c:686
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"%s ¸ðµâÀ» ÀоîµéÀ̴µ¥ ½ÇÆÐÇß½À´Ï´Ù.\n"
"´Ù¸¥ °ªÀ¸·Î ´Ù½Ã ½ÃµµÇØ º¸½Ã°Ú½À´Ï±î?"

#: ../../any.pm_.c:704
#, c-format
msgid "(already added %s)"
msgstr "(ÀÌ¹Ì %s´Â(Àº) Ãß°¡µÇ¾ú½À´Ï´Ù.)"

#: ../../any.pm_.c:708
msgid "This password is too simple"
msgstr "ÀÌ ¾ÏÈ£´Â ³Ê¹« ´Ü¼øÇÕ´Ï´Ù."

#: ../../any.pm_.c:709
msgid "Please give a user name"
msgstr "»ç¿ëÀÚ¸íÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä"

#: ../../any.pm_.c:710
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "»ç¿ëÀÚ¸íÀº ¿µ¹® ¼Ò¹®ÀÚ³ª ¼ýÀÚ, '-' ±×¸®°í '_' ¸¸ Æ÷ÇԵɼö ÀÖ½À´Ï´Ù."

#: ../../any.pm_.c:711
msgid "This user name is already added"
msgstr "ÀÌ »ç¿ëÀÚ¸íÀº ÀÌ¹Ì Ãß°¡µÇ¾î ÀÖ½À´Ï´Ù."

#: ../../any.pm_.c:715
msgid "Add user"
msgstr "»ç¿ëÀÚ Ãß°¡"

#: ../../any.pm_.c:716
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"»ç¿ëÀÚ ÀÔ·Â\n"
"%s"

#: ../../any.pm_.c:717
msgid "Accept user"
msgstr "»ç¿ëÀÚ Çã°¡"

#: ../../any.pm_.c:728
msgid "Real name"
msgstr "½ÇÁ¦ À̸§"

#: ../../any.pm_.c:729 ../../printerdrake.pm_.c:401
#: ../../printerdrake.pm_.c:480
msgid "User name"
msgstr "»ç¿ëÀÚ¸í"

#: ../../any.pm_.c:732
msgid "Shell"
msgstr "¸í·É ÇØ¼®±â"

#: ../../any.pm_.c:734
msgid "Icon"
msgstr "¾ÆÀÌÄÜ"

#: ../../any.pm_.c:756
msgid "Autologin"
msgstr "ÀÚµ¿·Î±×ÀÎ"

#: ../../any.pm_.c:757
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:761
msgid "Choose the default user:"
msgstr "±âº» »ç¿ëÀÚ¸¦ ¼±ÅÃÇϼ¼¿ä:"

#: ../../any.pm_.c:762
msgid "Choose the window manager to run:"
msgstr "»ç¿ëÇÒ À©µµ¿ì ¸Å´ÏÀú¸¦ ¼±ÅÃÇϼ¼¿ä:"

#: ../../any.pm_.c:771
msgid "Please, choose a language to use."
msgstr "»ç¿ëÇÒ ¾ð¾î¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."

#: ../../any.pm_.c:773
msgid "You can choose other languages that will be available after install"
msgstr "¼³Ä¡ÈÄ ´Ù¸¥ ´Ù¸¥ ¾ð¾î¸¦ ¼±ÅÃÇÒ¼ö ÀÖ½À´Ï´Ù."

#: ../../any.pm_.c:785 ../../install_steps_interactive.pm_.c:633
msgid "All"
msgstr "¸ðµÎ"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm_.c:259
#, 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:835
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:838
#, 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:841
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:844
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:847
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "¹ÝÀüµÈ Ç׸ñÀ¸·Î %dÃÊÈÄ ÀÚµ¿À¸·Î ºÎÆÃµË´Ï´Ù."

#: ../../bootloader.pm_.c:851
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:951
msgid "Desktop"
msgstr "µ¥½ºÅ©Å¾"

#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#: ../../bootloader.pm_.c:953
msgid "Start Menu"
msgstr "½ÃÀÛ ¸Þ´º"

#: ../../bootloader.pm_.c:972
#, 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
msgid "/_File"
msgstr "/ÆÄÀÏ(_F)"

#: ../../bootlook.pm_.c:80
msgid "/File/_Quit"
msgstr "/ÆÄÀÏ(F)/Á¾·á(_Q)"

#: ../../bootlook.pm_.c:80
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:100
msgid "Lilo/grub mode"
msgstr "LILO/Grub ¸ðµå"

#: ../../bootlook.pm_.c:102
#, 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:104 ../../standalone/drakgw_.c:643
#: ../../standalone/draknet_.c:280 ../../standalone/tinyfirewall_.c:57
msgid "Configure"
msgstr "¼³Á¤"

#: ../../bootlook.pm_.c:108
msgid "Boot mode"
msgstr "ºÎÆ® ¸ðµå"

#: ../../bootlook.pm_.c:136
msgid "System mode"
msgstr "½Ã½ºÅÛ ¸ðµå"

#: ../../bootlook.pm_.c:138
msgid "Launch the X-Window system at start"
msgstr "½ÃÀÛÇÒ ¶§ X-Window ½ÇÇà"

#: ../../bootlook.pm_.c:143
msgid "No, I don't want autologin"
msgstr "¾Æ´Ï¿À, ÀÚµ¿·Î±×ÀÎÀ» »ç¿ëÇÏÁö ¾Ê½À´Ï´Ù."

#: ../../bootlook.pm_.c:145
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "¿¹, ÀÚµ¿·Î±×ÀÎÀ» »ç¿ëÇÕ´Ï´Ù."

#: ../../bootlook.pm_.c:155 ../../standalone/draknet_.c:108
#: ../../standalone/draknet_.c:140 ../../standalone/draknet_.c:208
#: ../../standalone/draknet_.c:320 ../../standalone/draknet_.c:433
#: ../../standalone/draknet_.c:507 ../../standalone/draknet_.c:543
#: ../../standalone/draknet_.c:644
msgid "OK"
msgstr "È®ÀÎ"

#: ../../bootlook.pm_.c:156 ../../install_steps_gtk.pm_.c:516
#: ../../interactive.pm_.c:122 ../../interactive.pm_.c:286
#: ../../interactive.pm_.c:308 ../../interactive_stdio.pm_.c:27
#: ../../my_gtk.pm_.c:416 ../../my_gtk.pm_.c:419 ../../my_gtk.pm_.c:716
#: ../../printerdrake.pm_.c:1158 ../../standalone/drakgw_.c:648
#: ../../standalone/draknet_.c:115 ../../standalone/draknet_.c:147
#: ../../standalone/draknet_.c:313 ../../standalone/draknet_.c:519
#: ../../standalone/draknet_.c:658 ../../standalone/tinyfirewall_.c:63
msgid "Cancel"
msgstr "Ãë¼Ò"

#: ../../bootlook.pm_.c:224
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "¡¸/etc/inittab¡¹ÆÄÀÏÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù: %s"

#: ../../bootlook.pm_.c:336 ../../standalone/drakboot_.c:47
msgid "Installation of LILO failed. The following error occured:"
msgstr "LILO ¼³Ä¡ ½ÇÆÐ. ´ÙÀ½°ú °°Àº ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù:"

#: ../../common.pm_.c:93
msgid "GB"
msgstr "GB"

#: ../../common.pm_.c:93
msgid "KB"
msgstr "KB"

#: ../../common.pm_.c:93 ../../install_steps_graphical.pm_.c:287
#: ../../install_steps_graphical.pm_.c:334
msgid "MB"
msgstr "MB"

#: ../../common.pm_.c:101
msgid "TB"
msgstr "TB"

#: ../../common.pm_.c:109
#, c-format
msgid "%d minutes"
msgstr "%d ºÐ"

#: ../../common.pm_.c:111
msgid "1 minute"
msgstr "1 ºÐ"

#: ../../common.pm_.c:113
#, c-format
msgid "%d seconds"
msgstr "%d ÃÊ"

#: ../../diskdrake.pm_.c:100
msgid "Please make a backup of your data first"
msgstr "¸ÕÀú µ¥ÀÌÅ͸¦ ¹é¾÷Çϼ¼¿ä."

#: ../../diskdrake.pm_.c:100 ../../diskdrake_interactive.pm_.c:801
#: ../../diskdrake_interactive.pm_.c:810 ../../diskdrake_interactive.pm_.c:864
msgid "Read carefully!"
msgstr "ÁÖÀDZí°Ô ÀÐÀ¸¼¼¿ä!"

#: ../../diskdrake.pm_.c:103
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.pm_.c:122 ../../diskdrake_interactive.pm_.c:313
#: ../../diskdrake_interactive.pm_.c:328 ../../install_steps.pm_.c:72
#: ../../install_steps_interactive.pm_.c:37
#: ../../install_steps_interactive.pm_.c:310 ../../interactive_http.pm_.c:119
#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:62
msgid "Error"
msgstr "¿À·ù"

#: ../../diskdrake.pm_.c:159
msgid "Wizard"
msgstr "¸¶¹ý»ç"

#: ../../diskdrake.pm_.c:181
msgid "New"
msgstr "»õ·Î ¸¸µé±â"

#: ../../diskdrake.pm_.c:203 ../../diskdrake.pm_.c:206
msgid "Remote"
msgstr "¿ø°Ý"

#: ../../diskdrake.pm_.c:208 ../../diskdrake.pm_.c:479
#: ../../diskdrake_interactive.pm_.c:352 ../../diskdrake_interactive.pm_.c:523
msgid "Mount point"
msgstr "¸¶¿îÆ® À§Ä¡"

#: ../../diskdrake.pm_.c:209
msgid "Options"
msgstr "¿É¼Çµé"

#: ../../diskdrake.pm_.c:211 ../../diskdrake.pm_.c:417
#: ../../diskdrake.pm_.c:534 ../../diskdrake_interactive.pm_.c:353
#: ../../diskdrake_interactive.pm_.c:488
msgid "Type"
msgstr "À¯Çü"

#: ../../diskdrake.pm_.c:223 ../../diskdrake_interactive.pm_.c:361
msgid "Unmount"
msgstr "¾ð¸¶¿îÆ®"

#: ../../diskdrake.pm_.c:224 ../../diskdrake_interactive.pm_.c:357
msgid "Mount"
msgstr "¸¶¿îÆ®"

#: ../../diskdrake.pm_.c:228
msgid "Choose action"
msgstr "ÇൿÀ» ¼±ÅÃÇϼ¼¿ä"

#: ../../diskdrake.pm_.c:235
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.pm_.c:238
msgid "Please click on a partition"
msgstr "ÆÄƼ¼ÇÀ» Ŭ¸¯Çϼ¼¿ä"

#: ../../diskdrake.pm_.c:240
msgid "Please click on a media"
msgstr "¸Åü¸¦ Ŭ¸¯Çϼ¼¿ä."

#: ../../diskdrake.pm_.c:243
msgid ""
"Please click on a button above\n"
"\n"
"Or use \"New\""
msgstr ""
"À§ÀÇ ¹öư Áß Çϳª¸¦ ´©¸£°Å³ª,\n"
"\n"
"¡¸»õ·Î ¸¸µé±â¡¹¸¦ ÀÌ¿ëÇϼ¼¿ä."

#: ../../diskdrake.pm_.c:244
msgid "Use \"New\""
msgstr "¡¸»õ·Î ¸¸µé±â¡¹»ç¿ë"

#: ../../diskdrake.pm_.c:263 ../../install_steps_gtk.pm_.c:517
msgid "Details"
msgstr "»ó¼¼¼³¸í"

#: ../../diskdrake.pm_.c:395
msgid "Ext2"
msgstr "Ext2"

#: ../../diskdrake.pm_.c:395
msgid "FAT"
msgstr "FAT"

#: ../../diskdrake.pm_.c:395
msgid "HFS"
msgstr "HFS"

#: ../../diskdrake.pm_.c:395
msgid "Journalised FS"
msgstr "Àú³ÎÈ­ FS"

#: ../../diskdrake.pm_.c:395
msgid "SunOS"
msgstr "SunOS"

#: ../../diskdrake.pm_.c:395
msgid "Swap"
msgstr "½º¿Ò"

#: ../../diskdrake.pm_.c:396 ../../diskdrake_interactive.pm_.c:952
msgid "Empty"
msgstr "ºó°ø°£"

#: ../../diskdrake.pm_.c:396 ../../install_steps_gtk.pm_.c:373
#: ../../install_steps_gtk.pm_.c:433 ../../mouse.pm_.c:161
#: ../../services.pm_.c:161
msgid "Other"
msgstr "±âŸ"

#: ../../diskdrake.pm_.c:400
msgid "Filesystem types:"
msgstr "ÆÄÀϽýºÅÛ À¯Çü:"

#: ../../diskdrake.pm_.c:417 ../../diskdrake_interactive.pm_.c:375
msgid "Create"
msgstr "»ý¼º"

#: ../../diskdrake.pm_.c:417 ../../diskdrake.pm_.c:419
#, c-format
msgid "Use ``%s'' instead"
msgstr "´ë½Å¿¡ ¡¸%s¡¹¸¦ »ç¿ëÇÕ´Ï´Ù"

#: ../../diskdrake.pm_.c:419 ../../diskdrake_interactive.pm_.c:362
msgid "Delete"
msgstr "»èÁ¦"

#: ../../diskdrake.pm_.c:423
msgid "Use ``Unmount'' first"
msgstr "¡¸¾ð¸¶¿îÆ®¡¹¸¦ ¸ÕÀú »ç¿ëÇϼ¼¿ä"

#: ../../diskdrake.pm_.c:424 ../../diskdrake_interactive.pm_.c:480
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "%sÀÇ ÆÄƼ¼Ç À¯ÇüÀ» º¯°æÈÄ ÀÌ ÆÄƼ¼Ç³»ÀÇ ¸ðµç ÀڷḦ ÀÒ°Ô µË´Ï´Ù."

#: ../../diskdrake.pm_.c:478 ../../diskdrake_interactive.pm_.c:522
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ÀåÄ¡ %s¸¦ ¾îµð¿¡ ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"

#: ../../diskdrake.pm_.c:500
msgid "Mount options"
msgstr "¸¶¿îÆ® ¿É¼Çµé:"

#: ../../diskdrake.pm_.c:507
msgid "Various"
msgstr "´Ù¾çÇÑ"

#: ../../diskdrake.pm_.c:525
msgid "Removable media"
msgstr "Å»Âø½Ä ¹Ìµð¾î"

#: ../../diskdrake.pm_.c:532
msgid "Change type"
msgstr "À¯Çü º¯°æ"

#: ../../diskdrake.pm_.c:533 ../../diskdrake_interactive.pm_.c:487
msgid "Which filesystem do you want?"
msgstr "¾î¶² ÆÄÀÏ ½Ã½ºÅÛÀ» ¿øÇϼ¼¿ä?"

#: ../../diskdrake.pm_.c:564
msgid "Scanning available nfs shared resource"
msgstr "À¯È¿ÇÑ NFS °øÀ¯ÀÚ¿ø °Ë»ö Áß"

#: ../../diskdrake.pm_.c:569
#, c-format
msgid "Scanning available nfs shared resource of server %s"
msgstr "¼­¹ö %s»óÀÇ À¯È¿ÇÑ NFS °øÀ¯ÀÚ¿ø °Ë»ö Áß"

#: ../../diskdrake.pm_.c:578 ../../diskdrake.pm_.c:648
msgid "If the list above doesn't contain the wanted entry, enter it here:"
msgstr "¸¸¾à À§¿¡¼­ ¿øÇÏ´Â Ç׸ñÀ» ãÀ» ¼ö ¾ø´Ù¸é, ¿©±â¿¡ ÀÔ·ÂÇϼ¼¿ä:"

#: ../../diskdrake.pm_.c:581 ../../diskdrake.pm_.c:651
msgid "Server"
msgstr "¼­¹ö"

#: ../../diskdrake.pm_.c:582 ../../diskdrake.pm_.c:652
msgid "Shared resource"
msgstr "°øÀ¯µÈ ÀÚ¿ø"

#: ../../diskdrake.pm_.c:615
msgid "Scanning available samba shared resource"
msgstr "À¯È¿ÇÑ »ï¹Ù °øÀ¯ÀÚ¿ø °Ë»ö Áß"

#: ../../diskdrake.pm_.c:626 ../../diskdrake.pm_.c:639
#, c-format
msgid "Scanning available samba shared resource of server %s"
msgstr "¼­¹ö %s»óÀÇ À¯È¿ÇÑ »ï¹Ù °øÀ¯ÀÚ¿ø °Ë»ö Áß"

#: ../../diskdrake_interactive.pm_.c:163
msgid "Choose a partition"
msgstr "ÆÄƼ¼Ç ¼±ÅÃ"

#: ../../diskdrake_interactive.pm_.c:163
msgid "Choose another partition"
msgstr "Ãß°¡ ÆÄƼ¼Ç ¼±ÅÃ"

#: ../../diskdrake_interactive.pm_.c:188
msgid "Exit"
msgstr "Á¾·á"

#: ../../diskdrake_interactive.pm_.c:210
msgid "Toggle to expert mode"
msgstr "Àü¹®°¡ ¸ðµå·Î Àüȯ"

#: ../../diskdrake_interactive.pm_.c:210
msgid "Toggle to normal mode"
msgstr "ÀÏ¹Ý ¸ðµå·Î Àüȯ"

#: ../../diskdrake_interactive.pm_.c:210
msgid "Undo"
msgstr "µÇµ¹¸®±â"

#: ../../diskdrake_interactive.pm_.c:229
msgid "Continue anyway?"
msgstr "°è¼ÓÇϽðڽÀ´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:234
msgid "Quit without saving"
msgstr "ÀúÀåÇÏÁö ¾Ê°í Á¾·áÇϽðڽÀ´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:234
msgid "Quit without writing the partition table?"
msgstr "ÆÄƼ¼ÇÀ» ±â·ÏÇÏÁö ¾Ê°í Á¾·áÇϽðڽÀ´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:237
msgid "Do you want to save /etc/fstab modifications"
msgstr "¡¸/etc/fstab¡¹ÀÇ º¯°æ»çÇ×À» ÀúÀåÇϽðڽÀ´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:247
msgid "Auto allocate"
msgstr "ÀÚµ¿ ÇÒ´ç"

#: ../../diskdrake_interactive.pm_.c:247
msgid "Clear all"
msgstr "¸ðµÎ »èÁ¦"

#: ../../diskdrake_interactive.pm_.c:247
#: ../../install_steps_interactive.pm_.c:171
msgid "More"
msgstr "Ãß°¡ ¿É¼Ç"

#: ../../diskdrake_interactive.pm_.c:250
msgid "Hard drive information"
msgstr "ÇÏµå µð½ºÅ© Á¤º¸"

#: ../../diskdrake_interactive.pm_.c:267
msgid "Not enough space for auto-allocating"
msgstr "ÀÚµ¿ÇÒ´çÀ» »ç¿ëÇϱ⿡´Â °ø°£ÀÌ ºÎÁ·ÇÕ´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:273
msgid "All primary partitions are used"
msgstr "¸ðµç ÁÖÆÄÆ¼¼ÇÀÌ »ç¿ëÁßÀÔ´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:274
msgid "I can't add any more partition"
msgstr "´õÀÌ»ó ÆÄƼ¼ÇÀ» Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:275
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"´õ ¸¹Àº ÆÄƼ¼ÇÀ» ¸¸µå½Ç·Á¸é, È®Àå ÆÄÆ¼¼ÇÀ» ¸¸µé¼ö ÀÖµµ·Ï ÁÖÆÄÆ¼¼Ç Çϳª¸¦ Áö¿ì"
"¼¼¿ä."

#: ../../diskdrake_interactive.pm_.c:285
msgid "Save partition table"
msgstr "ÆÄƼ¼Ç Å×À̺í ÀúÀå"

#: ../../diskdrake_interactive.pm_.c:286
msgid "Restore partition table"
msgstr "ÆÄƼ¼Ç Å×ÀÌºí º¹±¸"

#: ../../diskdrake_interactive.pm_.c:287
msgid "Rescue partition table"
msgstr "ÆÄƼ¼Ç Å×À̺í ÀÀ±Þóġ"

#: ../../diskdrake_interactive.pm_.c:289
msgid "Reload partition table"
msgstr "ÆÄƼ¼Ç Å×ÀÌºí ´Ù½Ã Àбâ"

#: ../../diskdrake_interactive.pm_.c:293
msgid "Removable media automounting"
msgstr "Å»Âø½Ä ¹Ìµð¾î ÀÚµ¿ ¸¶¿îÆ®"

#: ../../diskdrake_interactive.pm_.c:301 ../../diskdrake_interactive.pm_.c:321
msgid "Select file"
msgstr "ÆÄÀÏÀ» ¼±ÅÃÇϼ¼¿ä."

#: ../../diskdrake_interactive.pm_.c:308
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"¹é¾÷ ÆÄƼ¼Ç Å×À̺í Å©±â°¡ °°Áö ¾Ê½À´Ï´Ù.\n"
"°è¼Ó ÇϽðڽÀ´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:322
msgid "Warning"
msgstr "°æ°í"

#: ../../diskdrake_interactive.pm_.c:323
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Ç÷ÎÇÇ µð½ºÅ©¸¦ µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä\n"
"Ç÷ÎÇÇ µð½ºÅ©ÀÇ ¸ðµç ÀڷḦ ÀÒ°Ô µË´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:334
msgid "Trying to rescue partition table"
msgstr "ÆÄƼ¼Ç Å×ÀÌºí º¹±¸ ½Ãµµ Áß..."

#: ../../diskdrake_interactive.pm_.c:340
msgid "Detailed information"
msgstr "ÀÚ¼¼ÇÑ Á¤º¸"

#: ../../diskdrake_interactive.pm_.c:354 ../../diskdrake_interactive.pm_.c:590
msgid "Resize"
msgstr "Å©±âÁ¶Á¤"

#: ../../diskdrake_interactive.pm_.c:355 ../../diskdrake_interactive.pm_.c:630
msgid "Move"
msgstr "À̵¿"

#: ../../diskdrake_interactive.pm_.c:356
msgid "Format"
msgstr "Æ÷¸Ë"

#: ../../diskdrake_interactive.pm_.c:358
msgid "Active"
msgstr "Ȱ¼ºÈ­"

#: ../../diskdrake_interactive.pm_.c:359
msgid "Add to RAID"
msgstr "RAID¿¡ Ãß°¡"

#: ../../diskdrake_interactive.pm_.c:360
msgid "Add to LVM"
msgstr "LVM¿¡ Ãß°¡"

#: ../../diskdrake_interactive.pm_.c:363
msgid "Remove from RAID"
msgstr "RAID·ÎºÎÅÍ Á¦°Å"

#: ../../diskdrake_interactive.pm_.c:364
msgid "Remove from LVM"
msgstr "LVMÀ¸·ÎºÎÅÍ Á¦°Å"

#: ../../diskdrake_interactive.pm_.c:365
msgid "Modify RAID"
msgstr "RAID ¼öÁ¤"

#: ../../diskdrake_interactive.pm_.c:366
msgid "Use for loopback"
msgstr "·çÇÁ¹éÀ¸·Î »ç¿ë"

#: ../../diskdrake_interactive.pm_.c:409
msgid "Create a new partition"
msgstr "»õ ÆÄƼ¼Ç ¸¸µé±â"

#: ../../diskdrake_interactive.pm_.c:412
msgid "Start sector: "
msgstr "½ÃÀÛ ¼½ÅÍ: "

#: ../../diskdrake_interactive.pm_.c:414 ../../diskdrake_interactive.pm_.c:732
msgid "Size in MB: "
msgstr "Å©±â(MB) :"

#: ../../diskdrake_interactive.pm_.c:415 ../../diskdrake_interactive.pm_.c:733
msgid "Filesystem type: "
msgstr "ÆÄÀϽýºÅÛ À¯Çü: "

#: ../../diskdrake_interactive.pm_.c:416 ../../diskdrake_interactive.pm_.c:936
#: ../../diskdrake_interactive.pm_.c:1010
msgid "Mount point: "
msgstr "¸¶¿îÆ® À§Ä¡: "

#: ../../diskdrake_interactive.pm_.c:420
msgid "Preference: "
msgstr "»ç¿ëÀÚ Á¤ÀÇ"

#: ../../diskdrake_interactive.pm_.c:462
msgid "Remove the loopback file?"
msgstr "·çÇÁ¹é ÆÄÀÏÀ» Á¦°ÅÇմϱî?"

#: ../../diskdrake_interactive.pm_.c:486
msgid "Change partition type"
msgstr "ÆÄƼ¼Ç À¯Çü º¯°æ"

#: ../../diskdrake_interactive.pm_.c:491
msgid "Switching from ext2 to ext3"
msgstr "EXT2¿¡¼­ EXT3·Î º¯°æ"

#: ../../diskdrake_interactive.pm_.c:521
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%sÆÄÀÏÀ» ¾îµð¿¡ ·çÇÁ¹éÀ¸·Î ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:528
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:549
msgid "Computing FAT filesystem bounds"
msgstr "µµ½º ÆÄÀϽýºÅÛÀÇ ¹üÀ§ °è»êÁß"

#: ../../diskdrake_interactive.pm_.c:549 ../../diskdrake_interactive.pm_.c:605
#: ../../install_interactive.pm_.c:116
msgid "Resizing"
msgstr "Å©±âº¯°æ"

#: ../../diskdrake_interactive.pm_.c:578
msgid "This partition is not resizeable"
msgstr "ÀÌ ÆÄƼ¼ÇÀº Å©±âº¯°æÀÌ Çã¿ëµÇÁö ¾Ê½À´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:583
msgid "All data on this partition should be backed-up"
msgstr "ÀÌ ÆÄƼ¼ÇÀÇ ¸ðµç µ¥ÀÌŸ¸¦ ¹é¾÷ÇÏ¿©¾ß ÇÕ´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:585
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s ÆÄƼ¼ÇÀÇ Å©±â¸¦ º¯°æÇϸé, ¸ðµç µ¥ÀÌŸ¸¦ ÀҰԵ˴ϴÙ."

#: ../../diskdrake_interactive.pm_.c:590
msgid "Choose the new size"
msgstr "»õ·Î¿î Å©±â¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä"

#: ../../diskdrake_interactive.pm_.c:591
msgid "New size in MB: "
msgstr "»õ·Î¿î ¿ë·®(MB):"

#: ../../diskdrake_interactive.pm_.c:631
msgid "Which disk do you want to move it to?"
msgstr "¾î¶² µð½ºÅ©¸¦ À̵¿ÇÏ°í ½ÍÀ¸½Ê´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:632
msgid "Sector"
msgstr "¼½ÅÍ"

#: ../../diskdrake_interactive.pm_.c:633
msgid "Which sector do you want to move it to?"
msgstr "¾î¶² ¼½Å͸¦ À̵¿ÇÏ°í ½ÍÀ¸½Ê´Ï±î?"

#: ../../diskdrake_interactive.pm_.c:636
msgid "Moving"
msgstr "À̵¿ Áß"

#: ../../diskdrake_interactive.pm_.c:636
msgid "Moving partition..."
msgstr "ÆÄƼ¼Ç À̵¿ Áß..."

#: ../../diskdrake_interactive.pm_.c:657
msgid "Choose an existing RAID to add to"
msgstr "Ãß°¡ÇÒ ±âÁ¸ RAID¸¦ ¼±ÅÃÇϼ¼¿ä."

#: ../../diskdrake_interactive.pm_.c:658 ../../diskdrake_interactive.pm_.c:676
msgid "new"
msgstr "»õ·Î ¸¸µé±â"

#: ../../diskdrake_interactive.pm_.c:674
msgid "Choose an existing LVM to add to"
msgstr "Ãß°¡ÇÒ LVM¸¦ ¼±ÅÃÇϼ¼¿ä"

#: ../../diskdrake_interactive.pm_.c:679
msgid "LVM name?"
msgstr "LVM À̸§?"

#: ../../diskdrake_interactive.pm_.c:718
msgid "This partition can't be used for loopback"
msgstr "ÀÌ ÆÄƼ¼ÇÀº loopbackÀ¸·Î »ç¿ëµÉ ¼ö ¾ø½À´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:730
msgid "Loopback"
msgstr "·çÇÁ¹é"

#: ../../diskdrake_interactive.pm_.c:731
msgid "Loopback file name: "
msgstr "·çÇÁ¹é ÆÄÀÏ À̸§: "

#: ../../diskdrake_interactive.pm_.c:736
msgid "Give a file name"
msgstr "ÆÄÀÏ À̸§À» ÀÔ·ÂÇϼ¼¿ä."

#: ../../diskdrake_interactive.pm_.c:739
msgid "File already used by another loopback, choose another one"
msgstr "´Ù¸¥ ·çÇÁ¹éÀÌ ÀÌ ÆÄÀÏÀ» »ç¿ëÇϰí ÀÖ½À´Ï´Ù, ´Ù¸¥ °ÍÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä."

#: ../../diskdrake_interactive.pm_.c:740
msgid "File already exists. Use it?"
msgstr "ÆÄÀÏÀÌ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù. ±×°ÍÀ» »ç¿ëÇմϱî?"

#: ../../diskdrake_interactive.pm_.c:784
msgid "device"
msgstr "ÀåÄ¡"

#: ../../diskdrake_interactive.pm_.c:785
msgid "level"
msgstr "·¹º§"

#: ../../diskdrake_interactive.pm_.c:786
msgid "chunk size"
msgstr "Å©±â"

#: ../../diskdrake_interactive.pm_.c:801
msgid "Be careful: this operation is dangerous."
msgstr "ÁÖÀÇ : ÀÌ Á¶ÀÛÀº À§ÇèÇÕ´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:816
msgid "What type of partitioning?"
msgstr "¾î¶² À¯ÇüÀÇ ÆÄƼ¼ÇÀԴϱî?"

#: ../../diskdrake_interactive.pm_.c:834
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:838
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:844
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:864
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s µå¶óÀ̺êÀÇ ÆÄƼ¼Ç Å×À̺íÀ» ÀúÀåÇÕ´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:868
msgid "You'll need to reboot before the modification can take place"
msgstr "º¯°æµÈ°ÍÀ» Àû¿ëÇϱâ À§Çؼ± ¸®ºÎÆÃÀÌ ÇÊ¿äÇÕ´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:879
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "%s ÆÄƼ¼ÇÀ» Æ÷¸ËÇϸé, ¸ðµç µ¥ÀÌŸ¸¦ ÀÒ°Ô µË´Ï´Ù."

#: ../../diskdrake_interactive.pm_.c:881
msgid "Formatting"
msgstr "Æ÷¸Ë Áß"

#: ../../diskdrake_interactive.pm_.c:882
#, c-format
msgid "Formatting loopback file %s"
msgstr "loopback ÆÄÀÏ %s Æ÷¸ÅÁß"

#: ../../diskdrake_interactive.pm_.c:883
#: ../../install_steps_interactive.pm_.c:419
#, c-format
msgid "Formatting partition %s"
msgstr "%s ÆÄƼ¼Ç Æ÷¸ËÁß"

#: ../../diskdrake_interactive.pm_.c:894
msgid "Hide files"
msgstr "ÆÄÀÏ ¼û±â±â"

#: ../../diskdrake_interactive.pm_.c:894
msgid "Move files to the new partition"
msgstr "»õ ÆÄƼ¼ÇÀ¸·Î ÆÄÀÏ ¿È±â±â"

#: ../../diskdrake_interactive.pm_.c:895
#, c-format
msgid ""
"Directory %s already contain some data\n"
"(%s)"
msgstr ""
"µð·ºÅ丮 %s¿¡´Â ÀÌ¹Ì µ¥ÀÌÅͰ¡ ÀÖ½À´Ï´Ù.\n"
"(%s)"

#: ../../diskdrake_interactive.pm_.c:906
msgid "Moving files to the new partition"
msgstr "»õ ÆÄƼ¼ÇÀ¸·Î ÆÄÀÏ ¿È±â´Â Áß"

#: ../../diskdrake_interactive.pm_.c:910
#, c-format
msgid "Copying %s"
msgstr "%s º¹»ç Áß"

#: ../../diskdrake_interactive.pm_.c:914
#, c-format
msgid "Removing %s"
msgstr "%s Á¦°Å Áß"

#: ../../diskdrake_interactive.pm_.c:937 ../../diskdrake_interactive.pm_.c:996
msgid "Device: "
msgstr "ÀåÄ¡: "

#: ../../diskdrake_interactive.pm_.c:938
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS µå¶óÀÌºê ¹®ÀÚ: %s (´ÜÁö ÃßÃøÀÏ »ÓÀÓ)\n"

#: ../../diskdrake_interactive.pm_.c:942 ../../diskdrake_interactive.pm_.c:950
#: ../../diskdrake_interactive.pm_.c:1014
msgid "Type: "
msgstr "À¯Çü: "

#: ../../diskdrake_interactive.pm_.c:946
msgid "Name: "
msgstr "À̸§:"

#: ../../diskdrake_interactive.pm_.c:954
#, c-format
msgid "Start: sector %s\n"
msgstr "½ÃÀÛ: ¼½ÅÍ %s\n"

#: ../../diskdrake_interactive.pm_.c:955
#, c-format
msgid "Size: %s"
msgstr "Å©±â: %s"

#: ../../diskdrake_interactive.pm_.c:957
#, c-format
msgid ", %s sectors"
msgstr ", %s ¼½ÅÍ"

#: ../../diskdrake_interactive.pm_.c:959
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "%d ½Ç¸°´õºÎÅÍ %d ½Ç¸°´õ±îÁö\n"

#: ../../diskdrake_interactive.pm_.c:960
msgid "Formatted\n"
msgstr "Æ÷¸ËµÇ¾úÀ½\n"

#: ../../diskdrake_interactive.pm_.c:961
msgid "Not formatted\n"
msgstr "Æ÷¸Ë ¾ÈµÇ¾úÀ½\n"

#: ../../diskdrake_interactive.pm_.c:962
msgid "Mounted\n"
msgstr "¸¶¿îÆ® µÇ¾úÀ½\n"

#: ../../diskdrake_interactive.pm_.c:963
#, c-format
msgid "RAID md%s\n"
msgstr "·¹À̵å ÀåÄ¡ %s\n"

#: ../../diskdrake_interactive.pm_.c:965
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"·çÇÁ¹é ÆÄÀÏ(µé):\n"
"   %s\n"

#: ../../diskdrake_interactive.pm_.c:966
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:968
#, c-format
msgid "Level %s\n"
msgstr "%s µî±Þ\n"

#: ../../diskdrake_interactive.pm_.c:969
#, c-format
msgid "Chunk size %s\n"
msgstr "Å©±â %s\n"

#: ../../diskdrake_interactive.pm_.c:970
#, c-format
msgid "RAID-disks %s\n"
msgstr "·¹À̵å-µð½ºÅ© %s\n"

#: ../../diskdrake_interactive.pm_.c:972
#, c-format
msgid "Loopback file name: %s"
msgstr "·çÇÁ¹é ÆÄÀÏ À̸§: %s"

#: ../../diskdrake_interactive.pm_.c:975
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:978
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"ÀÌ Æ¯º°ÇÑ ºÎÆ®½ºÆ®·¦\n"
"ÆÄƼ¼ÇÀº ½Ã½ºÅÛÀ» \n"
"µà¾ó ºÎÆÃÇϱâ À§ÇÑ °ÍÀÔ´Ï´Ù.\n"

#: ../../diskdrake_interactive.pm_.c:997
#, c-format
msgid "Size: %s\n"
msgstr "Å©±â : %s\n"

#: ../../diskdrake_interactive.pm_.c:998
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "À§Ä¡: %s ½Ç¸°ÅÍ, %s Çìµå, %s ¼½ÅÍ\n"

#: ../../diskdrake_interactive.pm_.c:999
msgid "Info: "
msgstr "Á¤º¸: "

#: ../../diskdrake_interactive.pm_.c:1000
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-µð½ºÅ© %s\n"

#: ../../diskdrake_interactive.pm_.c:1001
#, c-format
msgid "Partition table type: %s\n"
msgstr "ÆÄƼ¼Ç Å×À̺í À¯Çü: %s\n"

#: ../../diskdrake_interactive.pm_.c:1002
#, c-format
msgid "on bus %d id %d\n"
msgstr "%d ¹ö½º»ó¿¡¼­ ID %d\n"

#: ../../diskdrake_interactive.pm_.c:1016
#, c-format
msgid "Options: %s"
msgstr "¿É¼Çµé: %s"

#: ../../fs.pm_.c:447 ../../fs.pm_.c:457 ../../fs.pm_.c:461 ../../fs.pm_.c:465
#: ../../fs.pm_.c:469 ../../fs.pm_.c:473
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Æ÷¸Ë ½ÇÆÐ(µå¶óÀ̺ê %s)"

#: ../../fs.pm_.c:506
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s´Â %s À¯ÇüÀ̹ǷΠÆ÷¸ËÇÒ¼ö ¾ø½À´Ï´Ù."

#: ../../fs.pm_.c:568
msgid "mount failed"
msgstr "¸¶¿îÆ® ½ÇÆÐ"

#: ../../fs.pm_.c:588
#, c-format
msgid "fsck failed with exit code %d or signal %d"
msgstr "ÆÄÀϽýºÅÛ Á¡°ËÀÌ Á¾·áÄÚµå %d ¶Ç´Â ½Ã±×³Î %d·Î ½ÇÆÐÇÏ¿´½À´Ï´Ù."

#: ../../fs.pm_.c:597 ../../fs.pm_.c:603 ../../partition_table.pm_.c:560
msgid "mount failed: "
msgstr "¸¶¿îÆ® ½ÇÆÐ: "

#: ../../fs.pm_.c:618 ../../partition_table.pm_.c:556
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s¸¦ ¾ð¸¶¿îÆ®Áß ¿À·ù¹ß»ý: %s"

#: ../../fsedit.pm_.c:21
msgid "simple"
msgstr "´Ü¼øÈ­"

#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "¼­¹ö"

#: ../../fsedit.pm_.c:461
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB ¹Ì¸¸ÀÇ ÆÄƼ¼Ç¿¡´Â JFS ÆÄÀÏ ½Ã½ºÅÛÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù."

#: ../../fsedit.pm_.c:462
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB ¹Ì¸¸ÀÇ ÆÄƼ¼Ç¿¡´Â ReiserFS ÆÄÀÏ ½Ã½ºÅÛÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù."

#: ../../fsedit.pm_.c:471
msgid "Mount points must begin with a leading /"
msgstr "¸¶¿îÆ® À§Ä¡´Â ¹Ýµå½Ã ¡¸/¡¹·Î ½ÃÀÛÇÏ¿©¾ß ÇÕ´Ï´Ù."

#: ../../fsedit.pm_.c:472
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "¸¶¿îÆ® À§Ä¡ %s°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù.\n"

#: ../../fsedit.pm_.c:476
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr " %s ¸¶¿îÆ® Æ÷ÀÎÆ®·Î LVM ³í¸®º¼·ýÀ» »ç¿ëÇÒ ¼ö´Â ¾ø½À´Ï´Ù. "

#: ../../fsedit.pm_.c:478
msgid "This directory should remain within the root filesystem"
msgstr "ÀÌ µð·ºÅ丮´Â ·çÆ® ÆÄÀϽýºÅÛ ¾È¿¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù."

#: ../../fsedit.pm_.c:480
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"ÀÌ ¸¶¿îÆ® À§Ä¡¿¡´Â Æ®·ç ÆÄÀϽýºÅÛ (ext2, reiserfs)ÀÌ ¸¶¿îÆ® µÇ¾î¾ß ÇÕ´Ï´Ù.\n"

#: ../../fsedit.pm_.c:596
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "%s¸¦ ¾²±âÀ§ÇØ ¿©´ÂÁß ¿À·ù¹ß»ý: %s"

#: ../../fsedit.pm_.c:681
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:704
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 into 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 that of\n"
"\"root\" from a security point of view, but that is no reason to neglect it\n"
"- after 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"
"installs. 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 CDROMs. DrakX\n"
"knows if a selected package is located on another CDROM 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
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 CDROM, you will first be\n"
"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\": finally, if the machine is intended to be a server, you will\n"
"be able to select which of the most common services you wish to see\n"
"installed on the machine.\n"
"\n"
" * \"Graphical Environment\": this is where you will choose your preferred\n"
"graphical environment. At least one must be selected if you want to have a\n"
"graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
"text about that group.\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 \"Update\" 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"
"¸¶¿ì½º Æ÷ÀÎÅ͸¦ ±×·ì À̸§µé À§·Î ¿Ã¸®¸é, ÇØ´ç ±×·ì¿¡ ´ëÇÑ ÀÛÀº dz¼± µµ¿ò¸»"
"À»\n"
"º¸¿© ÁÙ °ÍÀÔ´Ï´Ù.\n"
"\n"
"¡¸°³º° ÆÑŰÁö ¼±ÅṿɼÇÀ» ¼±ÅÃÇÒ ¼öµµ ÀÖ½À´Ï´Ù.\n"
"ÀÌ ¿É¼ÇÀº ´ÔÀÌ Á¦°øµÇ¾îÁö´Â ÆÑŰÁöµé¿¡ ´ëÇØ Àß ¾Ë°í Àְųª, ¼³Ä¡µÇ´Â ÆÑŰÁöµé"
"¿¡ ´ëÇÑ\n"
"ÃÑüÀûÀÎ Á¦¾î¸¦ ¿øÇÒ °æ¿ì¿¡ À¯¿ëÇÒ °ÍÀÔ´Ï´Ù.\n"
"\n"
"¸¸¾à ´ÔÀÌ ¡¸¾÷µ¥ÀÌÆ®¡¹¸ðµå·Î ¼³Ä¡¸¦ ½ÃÀÛÇß´Ù¸é, ±âÁ¸¿¡ ¼³Ä¡µÇÁö ¾ÊÀº ÆÑŰÁöµé"
"ÀÌ\n"
"¼³Ä¡µÇ´Â °ÍÀ» ¸·±âÀ§ÇØ ¸ðµç ±×·ìÀ» ¼±ÅÃÇØÁ¦ÇÒ ¼ö ÀÖ½À´Ï´Ù. ÀÌ·¸°Ô ÇÏ´Â °ÍÀº\n"
"±âÁ¸ ½Ã½ºÅÛÀ» ¾÷µ¥ÀÌÆ®Çϰųª °íÄ¡±â À§ÇÑ ÁÁÀº ¹æ¹ýÀÔ´Ï´Ù."

#: ../../help.pm_.c:115
msgid ""
"Finally, depending on your choice of whether or not to select individual\n"
"packages, you will be presented a tree containing all packages classified\n"
"by groups and subgroups. While browsing the tree, you can select entire\n"
"groups, 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. A time to complete estimate is displayed\n"
"on the screen to help you gauge if there is sufficient time to enjoy a cup\n"
"of coffee.\n"
"\n"
"!! If a server package has been selected either intentionally or because it\n"
"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 disc icon at the bottom of the list allows to load the\n"
"packages 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:151
msgid ""
"If you wish to connect your computer to the Internet or to a local network,\n"
"please choose the correct option. Please turn on your device before\n"
"choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"Mandrake Linux proposes the configuration of an Internet connection at\n"
"installation time. Available connections are: traditional modem, ISDN\n"
"modem, ADSL connection, cable modem, and finally a simple LAN connection\n"
"(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 manual chapter about Internet connections for details\n"
"about the configuration, or simply wait until your system is installed and\n"
"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"
"have 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:172
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 that 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."
msgstr ""
"ÀÌÁ¦ ºÎÆÃ½Ã¿¡ ¾î¶² ¼­ºñ½º¸¦ ÀÚµ¿À¸·Î ½ÃÀÛÇÏ°Ô ÇÒÁö¸¦ ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù.\n"
"\n"
"ÇöÀç ¼³Ä¡µÈ ¸ðµç ¼­ºñ½ºµéÀÌ ¿©±â¿¡¼­ º¸¿©Áö°í ÀÖ½À´Ï´Ù.\n"
"½ÅÁßÇÏ°Ô °ËÅäÇØ¼­ ºÎÆÃ½Ã¿¡ Ç×»ó ÇÊ¿ä·ÎÇÏ´Â °ÍÀÌ ¾Æ´Ï¶ó¸é ¼±ÅÃÀ» ÇØÁ¦Çϼ¼¿ä.\n"
"\n"
"¸¶¿ì½º¸¦ ¼­ºñ½º À̸§µé À§·Î ¿Ã¸®¸é, °¢ ¼­ºñ½º¿¡ ´ëÇÑ °£´ÜÇÑ ¼³¸íÀ» º¸¿© ÁÙ °Í"
"ÀÔ´Ï´Ù.\n"
"¸¸¾à ¾î¶² ¼­ºñ½º°¡ ÇÊ¿äÇÑ °ÍÀÎÁö ¾Æ´ÑÁö¸¦ Àß ¸ð¸£°Ú´Ù¸é,\n"
"±âº»°ªÀ¸·Î ±×³É µÎ´Â °ÍÀÌ ¾ÈÀüÇÑ ¼±ÅÃÀÔ´Ï´Ù.\n"
"\n"
"ÀÌ ÄÄÇ»Å͸¦ ¼­¹ö¿ëÀ¸·Î »ç¿ëÇÏ·Á ÇÑ´Ù¸é, ÀÌ ´Ü°è¿¡¼­ ¸Å¿ì ÁÖÀÇÇØ¾ß ÇÕ´Ï´Ù.\n"
"ÇÊ¿äÇÏÁö ¾ÊÀº ¼­ºñ½º°¡ ½ÃÀ۵Ǵ °ÍÀº ¹Ù¶÷Á÷ÇÏÁö ¾Ê½À´Ï´Ù. ÀϺΠ¼­ºñ½º´Â \n"
"¼­¹ö»ó¿¡¼­ ½ÇÇڵȴٸé À§ÇèÇÒ ¼öµµ ÀÖ´Ù´Â °ÍÀ» ¸í½ÉÇϼ¼¿ä. ¿øÄ¢ÀûÀ¸·Î \n"
"²À ÇÊ¿äÇÑ ¼­ºñ½ºµé¸¸ ¼±ÅÃÇϼ¼¿ä."

#: ../../help.pm_.c:188
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage Time) and translates it in\n"
"local time according to the time zone you selected."
msgstr ""
"GNU/¸®´ª½º´Â ½Ã°£À» GMT(±×¸®´ÏÄ¡ °ü¸® ½Ã°£)·Î °ü¸®Çϸ鼭, ¼±ÅÃµÈ ½Ã°£´ë¿¡\n"
"µû¶ó ¹ø¿ªÇÏ¿© Ç¥ÇöÇÕ´Ï´Ù."

#: ../../help.pm_.c:192
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphics environments (KDE, Gnome, AfterStep,\n"
"WindowMaker...) 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\" install, you will enter the X configuration\n"
"wizard. See the corresponding section of the manual for more information\n"
"about this wizard.\n"
"\n"
"If you can see the message and answer \"Yes\", then DrakX will proceed to\n"
"the next step. If you cannot see the message, it simply means that the\n"
"configuration was wrong and the test will automatically end after 10\n"
"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:212
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 you want, choose \"FBDev\". This is a failsafe option which works\n"
"with any 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:224
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:231
msgid ""
"The Mandrake Linux CDROM has a built-in rescue mode. You can access it by\n"
"booting from the CDROM, press the >>F1<< key at boot and type >>rescue<< at\n"
"the prompt. But in case your computer cannot boot from the CDROM, 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."
msgstr ""

#: ../../help.pm_.c:255
msgid ""
"At this point you need to choose where on your hard drive to install your\n"
"Mandrake Linux operating system. If your hard drive is empty or if an\n"
"existing operating system is using all the space available, you will need\n"
"to partition it. Basically, partitioning a hard drive consists of logically\n"
"dividing it to create space to install your new Mandrake Linux system.\n"
"\n"
"Because the effects of the partitioning process 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 install in Expert mode, you will enter DiskDrake,\n"
"the Mandrake Linux partitioning tool, which allows you to fine-tune your\n"
"partitions. See the DiskDrake chapter of the manual. From the installation\n"
"interface, you can use the wizards as described here by clicking the\n"
"\"Wizard\" button of the dialog.\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 Microsoft Windows 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 that, you can delete your\n"
"Microsoft Windows partition and data (see \"Erase entire disk\" or \"Expert\n"
"mode\" solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data. This solution is recommended if\n"
"you want to use both Mandrake Linux and Microsoft Windows on same computer.\n"
"\n"
"   Before choosing this option, please understand that after this "
"procedure,\n"
"the size of your Microsoft Windows partition will be smaller than at the\n"
"present time. You will have less free space under Microsoft Windows to\n"
"store 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 confirmation.\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\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
"know 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:319
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 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:\")"
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:350
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\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 them.\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 disc."
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:376
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:384
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 the\n"
"\"Accept\" button."
msgstr ""
"´õ ÁøÇàÇϱâ Àü¿¡ »ç¿ëÀÚ °è¾à¼­¸¦ ÀÚ¼¼ÇÏ°Ô ÀÐ¾î º¸¼¼¿ä.\n"
"»ç¿ëÀÚ °è¾à¼­´Â Àüü ¸Çµå·¹ÀÌÅ© ¸®´ª½º ¹èÆ÷º»À» Æ÷°ýÇÏ´Â ³»¿ëÀ̸ç,\n"
"¸¸¾à µ¿ÀÇÇÏÁö ¾ÊÀ¸½Å´Ù¸é ¡¸°ÅºÎ¡¹¹öưÀ» ´©¸£¼¼¿ä. °ÅºÎ ¹öưÀº ÇöÀç ¼³Ä¡¸¦\n"
"Áï°¢ Á¾·áÇÏ°Ô ÇÕ´Ï´Ù. ¼³Ä¡¸¦ °è¼ÓÇÏ°í ½Í´Ù¸é ¡¸µ¿ÀÇ¡¹¹öưÀ» ´©¸£¼¼¿ä."

#: ../../help.pm_.c:391
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 expenses of\n"
"easiness of use. Refer to the MSEC chapter of the ``Reference Manual'' to\n"
"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:401
msgid ""
"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"
" * \"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"
" * \"Undo\": use this option to cancel your changes.\n"
"\n"
" * \"Reload\": you can use this option if you wish to undo all changes and\n"
"load your initial partitions table.\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"
" * \"Restore from floppy\": this option will allow you to restore a\n"
"previously saved partition table from floppy disk.\n"
"\n"
" * \"Save to floppy\": saves the partition table to a floppy. Useful for\n"
"later partition-table recovery if necessary. It is strongly recommended to\n"
"perform this step.\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"
"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."
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:460
msgid ""
"More than one Microsoft Windows partition has been detected on your hard\n"
"drive. Please choose the one you want 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:491
msgid "Please be patient. This operation can take several minutes."
msgstr "±â´Ù·Á ÁÖ¼¼¿ä. ÀÌ ÀÛ¾÷Àº ¸î ºÐÀÇ ½Ã°£ÀÌ °É¸³´Ï´Ù."

#: ../../help.pm_.c:494
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 also\n"
"have the choice of performing a new install or an upgrade of an existing\n"
"Mandrake Linux system. Clicking \"Install\" will completely wipe out the\n"
"old system. Select \"Upgrade\" if you are upgrading or repairing an\n"
"existing system.\n"
"\n"
"Please choose \"Install\" if there are no previous version of Mandrake\n"
"Linux installed or if you wish to boot between various operating systems.\n"
"\n"
"Please choose \"Update\" if you wish to update or repair an already\n"
"installed version of Mandrake Linux.\n"
"\n"
"Depending on your knowledge of GNU/Linux, please choose one of the\n"
"following to install or update your Mandrake Linux operating system:\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 choose\n"
"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:521
msgid ""
"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."
msgstr ""
"ÀϹÝÀûÀ¸·Î, µå·¹ÀÌÅ©X´Â (´ÔÀÌ ¼±ÅÃÇÑ ¾ð¾î¿¡ ±â¹ÝÇÏ¿©) ¿Ã¹Ù¸¥ Űº¸µå¸¦\n"
"ÀÚµ¿À¸·Î ¼±ÅÃÇÕ´Ï´Ù. ±×·¯³ª ´ÔÀÌ »ç¿ëÇÏ´Â ¾ð¾î¿¡ Á¤È®È÷ ÀÏÄ¡Çϴ Űº¸µå¸¦\n"
"°¡Áö°í ÀÖÁö ¾Ê´Â °æ¿ìµµ ÀÖÀ» ¼ö ÀÖ½À´Ï´Ù: °¡·É, ¿µ¾î¸¦ »ç¿ëÇÏ´Â ½ºÀ§½ºÀÎÀº\n"
"¿©ÀüÈ÷ ½ºÀ§½º Űº¸µå¸¦ ¿øÇÒ ¼öµµ ÀÖ½À´Ï´Ù. ¶ÇÇÑ ¿µ¾î¸¦ »ç¿ëÇÏÁö¸¸, ij³ª´Ù Äù"
"º¤ÁÖ¿¡\n"
"»ì°í ÀÖ´Ù¸é ¶ÇÇÑ ÀÌ·¯ÇÑ °æ¿ì°¡ µÉ °ÍÀÔ´Ï´Ù. ÀÌ·±·ùÀÇ °æ¿ì¶ó¸é, ÀÌ ´Ü°è¿¡¼­\n"
"Àû´çÇÑ Å°º¸µå¸¦ ¸ñ·Ï¿¡¼­ ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù.\n"
"\n"
"Áö¿øµÇ´Â ¸ðµç Űº¸µå ¸ñ·ÏÀ» º¸·Á¸é, ¡¸Ãß°¡Á¤º¸¡¹¸¦\n"
"´©¸£¼¼¿ä."

#: ../../help.pm_.c:534
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 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."
msgstr ""
"¼³Ä¡½Ã ±×¸®°í ½Ã½ºÅÛ¿ëÀ¸·Î »ç¿ëÇÒ ¾ð¾î¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
"\n"
"¡¸°í±Þ¡¹À» ´©¸£¸é, ´Ù¸¥ ¾ð¾îµµ Ãß°¡·Î ¼±ÅÃÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
"´Ù¸¥ ¾ð¾îµµ ¼±ÅÃÇÏ°Ô µÇ¸é, ±× ¾ð¾î¿Í °ü·ÃµÈ ½Ã½ºÅÛ ¹®¼­ ¹× ÇÁ·Î±×·¥ ÆÄÀϵé"
"µµ\n"
"¼³Ä¡ÇÏ°Ô µË´Ï´Ù. °¡·É, ´ÔÀÇ ½Ã½ºÅÛÀ» ÀϺ»Àεµ »ç¿ëÇÒ ¼ö ÀÖµµ·Ï ÇÏ°í ½Í´Ù¸é,\n"
"¸ñ·Ï¿¡¼­ ÁÖ ¾ð¾î·Î ¡¸Çѱ¹¾î¡¹¸¦ ¼±ÅÃÇϰí, ¡¸°í±Þ¡¹¿¡¼­ ¡¸ÀϺ»¾î¡¹¿¡ ÇØ´çÇÏ"
"´Â\n"
"ȸ»ö º°Ç¥¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
"\n"
"¿©·¯°³ÀÇ Ãß°¡ ¾ð¾î¸¦ ¼±ÅÃÇÒ ¼öµµ ÀÖ½À´Ï´Ù. ¾ð¾î ¼±ÅÃÀ» ³¡¸¶ÃÆÀ¸¸é,\n"
"¡¸È®ÀΡ¹À» ´­·¯¼­ °è¼Ó ÁøÇàÇϼ¼¿ä."

#: ../../help.pm_.c:547
msgid ""
"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."
msgstr ""
"±âº»ÀûÀ¸·Î µå·¹ÀÌÅ©X´Â ´ÔÀÌ 2¹öư ¸¶¿ì½º¸¦ »ç¿ëÇÑ´Ù°í °¡Á¤ÇÒ °ÍÀ̸ç,\n"
"¼¼ ¹øÂ° ¹öưÀº ¿¡¹Ä·¹À̼ÇÇÒ °ÍÀÔ´Ï´Ù. ¸¶¿ì½º°¡ PS/2, ½Ã¸®¾ó, ȤÀº USB¿ëÀÎÁö"
"´Â\n"
"µå·¹ÀÌÅ©X°¡ ÀÚµ¿À¸·Î ¾Ë¾Æ³¾ ¼ö ÀÖ½À´Ï´Ù.\n"
"\n"
"¸¸¾à ´Ù¸¥ ¸¶¿ì½º À¯ÇüÀ» ÁöÁ¤ÇÏ°í ½Í´Ù¸é, Á¦°øµÇ´Â ¸ñ·Ï¿¡¼­ Àû´çÇÑ °ÍÀ»\n"
"¼±ÅÃÇϼ¼¿ä.\n"
"\n"
"¸¸¾à ´Ù¸¥ ¸¶¿ì½º¸¦  ¼±ÅÃÇÏ°Ô µÇ¸é, ¸¶¿ì½º Å×½ºÆ® È­¸éÀ» º¸°ÔµÉ °ÍÀÔ´Ï´Ù.\n"
"±×·¯¸é, ¸¶¿ì½º ¹öư°ú ÈÙÀ» Á¶ÀÛÇÏ¿© ¼³Á¤ÀÌ Á¤È®ÇÏ°Ô µÇ¾ú´ÂÁö È®ÀÎÇϼ¼¿ä.\n"
"¸¸¾à Á¦´ë·Î ÀÛµ¿Çϱ⠾ÊÀ¸¸é,¡¸Ãë¼Ò¡¹¹öư À§¿¡¼­ ½ºÆäÀ̽º Ű³ª ¿£ÅÍ Å°¸¦\n"
"´©¸£°í ´Ù½Ã ¼±ÅÃÇϽñ⠹ٶø´Ï´Ù."

#: ../../help.pm_.c:560
msgid ""
"Please select the correct port. For example, the COM1 port under MS Windows\n"
"is named ttyS0 under GNU/Linux."
msgstr ""
"Á¤È®ÇÑ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä. ¿¹¸¦ µé¾î, MS À©µµ¿ìÁî¿¡¼­ COM1Àº\n"
"¸®´ª½º¿¡¼­´Â ttyS0·Î ¸í¸íµË´Ï´Ù."

#: ../../help.pm_.c:564
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\n"
"choose not to enter a password, but we strongly advise you against this if\n"
"only for one reason: do not think that because you booted GNU/Linux that\n"
"your other operating systems are safe from mistakes. Since \"root\" can\n"
"overcome all limitations and unintentionally erase all data on partitions\n"
"by carelessly accessing the partitions themselves, it is important for it\n"
"to 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 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:600
msgid ""
"LILO and GRUB are boot loaders for GNU/Linux. This stage, normally, is\n"
"totally automated. In fact, DrakX analyzes the disk boot sector and acts\n"
"accordingly, depending on what it finds here:\n"
"\n"
" * if Windows boot sector is found, it will replace it with a GRUB/LILO "
"boot\n"
"sector. Hence, you will be able to load either GNU/Linux or another 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"
"    * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
"    * \"GRUB\": if you prefer GRUB (text menu).\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"
"Mandrake Linux installs its own boot loader, which will let you boot either\n"
"GNU/Linux or any other operating systems which you have on your system.\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. Double-clicking on an existing entry allows you to change\n"
"its parameters or remove it; \"Add\" creates a new entry; and \"Done\" goes\n"
"on to the next installation step."
msgstr ""

#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and GRUB are boot loaders: 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:658
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:665
msgid ""
"Here we select a printing system for your computer to use. Other OSes may\n"
"offer you one, but Mandrake 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 any networked printers. It will handle\n"
"only very simple network cases and is somewhat slow for networks. Pick\n"
"\"pdq\" if this is your maiden voyage to GNU/Linux. You can change your\n"
"choices after install by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button.\n"
"\n"
" * \"CUPS\" - ``Common Unix Printing System'' is excellent at printing to\n"
"your local printer and also halfway round the planet. It is simple and can\n"
"act like a server or a client for the ancient \"lpd\" printing system, so\n"
"it is compatible with the systems that went before. It can do many tricks,\n"
"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
"emulate 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 IPX protocol, and\n"
"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:693
msgid ""
"DrakX is now detecting any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI card(s) on your system. If a SCSI card\n"
"is found DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection will sometimes not 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 that the hardware needs to initialize. This\n"
"usually works well.\n"
"\n"
"If DrakX is not able to probe for the options that need to be passed, you\n"
"will need to manually provide options to the driver. Please review the\n"
"``User Guide'' (chapter 3, section \"Collecting information on your\n"
"hardware\") for hints on retrieving the parameters required from hardware\n"
"documentation, from the manufacturer's web site (if you have Internet\n"
"access) or from Microsoft Windows (if you used this hardware with Windows\n"
"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:720
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 OS's, 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."
msgstr ""

#: ../../help.pm_.c:765
msgid ""
"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."
msgstr ""

#: ../../help.pm_.c:798
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\": mouse check the current mouse configuration and click on the\n"
"button to change it if necessary.\n"
"\n"
" * \"Keyboard\": keyboard check the current keyboard map configuration and\n"
"click on the button to change that if necessary.\n"
"\n"
" * \"Timezone\": time zoneDrakX, by default, guesses your time zone from "
"the\n"
"language you have chosen. But here again, as for the choice of a keyboard,\n"
"you may not be in the country for which the chosen language should\n"
"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
"order to 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."
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:827
msgid ""
"Choose the hard drive you want to erase to install your new Mandrake Linux\n"
"partition. Be careful, all data present on it will be lost and will not be\n"
"recoverable!"
msgstr ""
"¸Çµå·¹ÀÌÅ© ¸®´ª½º ÆÄƼ¼ÇÀ» ¸¸µé±â À§Çؼ­ »èÁ¦ÇÒ Çϵåµð½ºÅ¬¸£ ¼±ÅÃÇϼ¼¿ä.\n"
"ÁÖÀÇ:\n"
"µð½ºÅ©»óÀÇ ¸ðµç µ¥ÀÌÅÍ´Â ¼Õ½ÇµÇ¸ç, ¿µ¿øÈ÷ º¹±¸°¡ ºÒ°¡´ÉÇØ Áý´Ï´Ù!"

#: ../../help.pm_.c:832
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:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is missing)"
msgstr "Ä¿³Î°ú ÀÏÄ¡ÇÏ´Â ¸ðµâ¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù.(ÆÄÀÏ %s°¡ ¾ø½¿)"

#: ../../install_any.pm_.c:421
#, 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:457
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:737
#, c-format
msgid "Error reading file %s"
msgstr "%s ÆÄÀÏÀ» ÀдÂÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù."

#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:325
#: ../../interactive.pm_.c:107 ../../interactive.pm_.c:122
#: ../../interactive.pm_.c:286 ../../interactive.pm_.c:308
#: ../../interactive_http.pm_.c:104 ../../interactive_newt.pm_.c:170
#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:415
#: ../../my_gtk.pm_.c:716 ../../my_gtk.pm_.c:738
msgid "Ok"
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 ""
"¡¸»ó¾÷¿ë¡¹µå¶óÀ̹ö¸¦ ÇÊ¿ä·ÎÇÏ´Â ÀϺΠÇϵå¿þ¾î°¡ ½Ã½ºÅÛ»ó¿¡ ÀÖ½À´Ï´Ù.\n"
"ÀÚ¼¼ÇÑ Á¤º¸´Â ´ÙÀ½À» ÂüÁ¶Çϼ¼¿ä: %s"

#: ../../install_interactive.pm_.c:44
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:49 ../../install_steps_graphical.pm_.c:259
msgid "You must have a swap partition"
msgstr "½º¿Ò ÆÄƼ¼ÇÀº ¹Ýµå½Ã ÇÊ¿äÇÕ´Ï´Ù."

#: ../../install_interactive.pm_.c:50 ../../install_steps_graphical.pm_.c:261
msgid ""
"You don't have a swap partition\n"
"\n"
"Continue anyway?"
msgstr ""
"½º¿Ò ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù.\n"
"\n"
"°è¼Ó ÁøÇàÇմϱî?"

#: ../../install_interactive.pm_.c:53 ../../install_steps.pm_.c:165
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "¡¸/boot/efi¡¹¿¡ ¸¶¿îÆ®µÈ FAT ÆÄƼ¼ÇÀÌ ÀÖ¾î¾ß¸¸ ÇÕ´Ï´Ù."

#: ../../install_interactive.pm_.c:76
msgid "Use free space"
msgstr "ºó °ø°£ »ç¿ë"

#: ../../install_interactive.pm_.c:78
msgid "Not enough free space to allocate new partitions"
msgstr "»õ·Î¿î ÆÄƼ¼ÇÀ» ¸¸µé ¼ö ÀÖ´Â °ø°£ÀÌ ºÎÁ·ÇÕ´Ï´Ù."

#: ../../install_interactive.pm_.c:86
msgid "Use existing partition"
msgstr "±âÁ¸ÀÇ ÆÄƼ¼Ç »ç¿ë"

#: ../../install_interactive.pm_.c:88
msgid "There is no existing partition to use"
msgstr "»ç¿ëÇÒ ±âÁ¸ÀÇ ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù."

#: ../../install_interactive.pm_.c:95
msgid "Use the Windows partition for loopback"
msgstr "À©µµ¿ìÁî ÆÄÆ¼¼ÇÀ» ·çÇÁ¹éÀ¸·Î »ç¿ë"

#: ../../install_interactive.pm_.c:98
msgid "Which partition do you want to use for Linux4Win?"
msgstr "¾î´À ÆÄƼ¼ÇÀ» Linux4Win¿ëÀ¸·Î »ç¿ëÇϰڽÀ´Ï±î?"

#: ../../install_interactive.pm_.c:100
msgid "Choose the sizes"
msgstr "Å©±â ¼±ÅÃ"

#: ../../install_interactive.pm_.c:101
msgid "Root partition size in MB: "
msgstr "·çÆ® ÆÄƼ¼Ç Å©±â(MB): "

#: ../../install_interactive.pm_.c:102
msgid "Swap partition size in MB: "
msgstr "½º¿Ò ÆÄƼ¼Ç Å©±â(MB): "

#: ../../install_interactive.pm_.c:111
msgid "Use the free space on the Windows partition"
msgstr "À©µµ¿ìÁî ÆÄÆ¼¼ÇÀÇ ºó °ø°£ »ç¿ëÇϼ¼¿ä."

#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to resize?"
msgstr "¾î¶² ÆÄƼ¼ÇÀÇ Å©±â¸¦ Á¶Á¤ÇϽðڽÀ´Ï±î?"

#: ../../install_interactive.pm_.c:116
msgid "Computing Windows filesystem bounds"
msgstr "À©µµ¿ìÁî ÆÄÀÏ ½Ã½ºÅÛÀÇ ¹üÀ§ °è»êÁß"

#: ../../install_interactive.pm_.c:119
#, 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:122
msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
msgstr ""
"À©µµ¿ìÁî ÆÄÆ¼¼ÇÀÌ ½ÉÇÏ°Ô Á¶°¢³ª ÀÖ½À´Ï´Ù. ¸ÕÀú ``µð½ºÅ© Á¶°¢ ¸ðÀ½''À» Çϼ¼¿ä."

#: ../../install_interactive.pm_.c:123
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"°æ°í!\n"
"\n"
"µå·¹ÀÌÅ©X°¡ ÀÌÁ¦ À©µµ¿ìÁî ÆÄÆ¼¼ÇÀÇ Å©±â¸¦ Á¶Á¤ÇÒ °ÍÀÔ´Ï´Ù. ÀÌ ÀÛµ¿Àº \n"
"À§ÇèÇÕ´Ï´Ù. ¾ÆÁ÷ ½ÃÀÛÇÏÁö ¾Ê¾Ò´Ù¸é, ¼³Ä¡¸¦ Áß´ÜÇϰí À©µµ¿ìÁî¿¡¼­\n"
"µð½ºÅ©°Ë»ç¡¹(°¡´ÉÇÏ´Ù¸é ¶ÇÇÑ ¡¸µð½ºÅ© Á¶°¢¸ðÀ½¡¹)¸¦ ½ÇÇàÇÑ ÈÄ¿¡,\n"
"¼³Ä¡¸¦ ´Ù½Ã ½ÃÀÛÇϼ¼¿ä. ¶ÇÇÑ µ¥ÀÌÅ͵µ ¹é¾÷ÇØ µÎ¼¼¿ä.\n"
"ÁغñµÆÀ¸¸é, ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä."

#: ../../install_interactive.pm_.c:132
msgid "Which size do you want to keep for windows on"
msgstr "À©µµ¿ìÁî¿ëÀ¸·Î ¾î´À ¿ë·®À» À¯ÁöÇϽðڽÀ´Ï±î?"

#: ../../install_interactive.pm_.c:133
#, c-format
msgid "partition %s"
msgstr "ÆÄƼ¼Ç %s"

#: ../../install_interactive.pm_.c:139
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FATÅ©±âÁ¶Á¤ ½ÇÆÐ: %s"

#: ../../install_interactive.pm_.c:154
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:160
msgid "Erase entire disk"
msgstr "Àüü µð½ºÅ© »èÁ¦"

#: ../../install_interactive.pm_.c:160
msgid "Remove Windows(TM)"
msgstr "À©µµ¿ìÁî(TM) Á¦°Å"

#: ../../install_interactive.pm_.c:163
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"ÇÏµå µå¶óÀ̺갡 Çϳª ÀÌ»ó ÀÖ½À´Ï´Ù. ¾î´À °Í¿¡ ¸®´ª½º¸¦ ¼³Ä¡ÇϽðڽÀ´Ï±î?"

#: ../../install_interactive.pm_.c:166
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s µå¶óÀÌºê »óÀÇ ¸ðµç ±âÁ¸ ÆÄƼ¼Ç°ú µ¥ÀÌÅͰ¡ ¼Õ½ÇµÉ °ÍÀÔ´Ï´Ù."

#: ../../install_interactive.pm_.c:174
msgid "Custom disk partitioning"
msgstr "»ç¿ëÀÚ Á¤ÀÇ ÆÄƼ¼Ç ³ª´©±â"

#: ../../install_interactive.pm_.c:178
msgid "Use fdisk"
msgstr "fdisk »ç¿ë"

#: ../../install_interactive.pm_.c:181
#, 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:210
msgid "You don't have enough free space on your Windows partition"
msgstr "À©µµ¿ìÁî ÆÄÆ¼¼Ç¿¡ ÃæºÐÇÑ °ø°£ÀÌ ¾ø½À´Ï´Ù."

#: ../../install_interactive.pm_.c:226
msgid "I can't find any room for installing"
msgstr "¼³Ä¡¿¡ ÇÊ¿äÇÑ °ø°£À» ãÀ» ¼ö ¾ø½À´Ï´Ù."

#: ../../install_interactive.pm_.c:230
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "µå·¹ÀÌÅ©X ÆÄƼ¼Ç ¸¶¹ý»ç°¡ ´ÙÀ½ÀÇ ¼Ö·ç¼ÇÀ» ¹ß°ßÇß½À´Ï´Ù:"

#: ../../install_interactive.pm_.c:235
#, c-format
msgid "Partitioning failed: %s"
msgstr "ÆÄƼ¼Ç ³ª´©±â ½ÇÆÐ: %s"

#: ../../install_interactive.pm_.c:241
msgid "Bringing up the network"
msgstr "³×Æ®¿÷ Ȱ¼ºÈ­ Áß..."

#: ../../install_interactive.pm_.c:246
msgid "Bringing down the network"
msgstr "³×Æ®¿÷ ÇØÁ¦ Áß..."

#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù. ±×·¯³ª ÀûÀýÈ÷ ó¸®ÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
"À§ÇëÀ» °¨¼öÇÒ·Á¸é °è¼ÓÇϼ¼¿ä."

#: ../../install_steps.pm_.c:207
#, c-format
msgid "Duplicate mount point %s"
msgstr "¸¶¿îÆ® Æ÷ÀÎÆ® Áߺ¹ %s"

#: ../../install_steps.pm_.c:384
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:459
#, c-format
msgid "Welcome to %s"
msgstr "%s¿¡ ¿À½Å°ÍÀ» ȯ¿µÇÕ´Ï´Ù."

#: ../../install_steps.pm_.c:506 ../../install_steps.pm_.c:709
msgid "No floppy drive available"
msgstr "Ç÷ÎÇÇ µå¶óÀ̺긦 »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù."

#: ../../install_steps_auto_install.pm_.c:77
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
msgstr "%s ´Ü°è·Î ³Ñ¾î°©´Ï´Ù.\n"

#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
msgstr "¼³Ä¡ÇÒ ÆÑŰÁöµéÀÇ ÃÑ ¿ë·® ¼±ÅÃ"

#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "Àüü Å©±â: "

#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:387
#, c-format
msgid "Version: %s\n"
msgstr "¹öÁ¯: %s\n"

#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:388
#, c-format
msgid "Size: %d KB\n"
msgstr "Å©±â: %d KB\n"

#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:481
#: ../../install_steps_interactive.pm_.c:509
msgid "Choose the packages you want to install"
msgstr "¼³Ä¡ÇϰíÀÚ ÇÏ´Â ÆÑŰÁö¸¦ ¼±ÅÃÇϼ¼¿ä."

#: ../../install_steps_graphical.pm_.c:465 ../../interactive_gtk.pm_.c:571
msgid "Info"
msgstr "Á¤º¸"

#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:457
#: ../../install_steps_interactive.pm_.c:212
msgid "Install"
msgstr "¼³Ä¡"

#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:497
#: ../../install_steps_interactive.pm_.c:695
msgid "Installing"
msgstr "¼³Ä¡Áß"

#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Àá½Ã¸¸ ±â´Ù¸®¼¼¿ä, "

#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:510
msgid "Time remaining "
msgstr "³²Àº ½Ã°£ "

#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Àüü ½Ã°£ "

#: ../../install_steps_graphical.pm_.c:507
#: ../../install_steps_interactive.pm_.c:695
msgid "Preparing installation"
msgstr "¼³Ä¡ ÁغñÁßÀÔ´Ï´Ù"

#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "Installing package %s"
msgstr "%s ÆÑŰÁö ¼³Ä¡Áß"

#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:642
#: ../../install_steps_gtk.pm_.c:646
msgid "Go on anyway?"
msgstr "°è¼Ó ÁøÇàÇմϱî?"

#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:642
msgid "There was an error ordering packages:"
msgstr "ÆÑŰÁö¸¦ Á¤·ÄÇÏ´Â Áß ¿À·ù¹ß»ý:"

#: ../../install_steps_graphical.pm_.c:577
msgid "Use existing configuration for X11?"
msgstr "ÀÌ¹Ì ÀÖ´Â X11 ¼³Á¤À» »ç¿ëÇϽðڽÀ´Ï±î?"

#: ../../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:187
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"
"¹éºÐÀ²ÀÌ ³·À¸¸é, °¡Àå Áß¿äÇÑ ÆÑŰÁöµé¸¸ ¼³Ä¡µË´Ï´Ù;\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:619
msgid "Package Group Selection"
msgstr "ÆÑŰÁö ±×·ì ¼±ÅÃ"

#: ../../install_steps_gtk.pm_.c:320 ../../install_steps_interactive.pm_.c:634
msgid "Individual package selection"
msgstr "°³º° ÆÑŰÁö ¼±ÅÃ"

#: ../../install_steps_gtk.pm_.c:343 ../../install_steps_interactive.pm_.c:598
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Àüü Å©±â: %d / %d MB"

#: ../../install_steps_gtk.pm_.c:385
msgid "Bad package"
msgstr "À߸øµÈ ÆÑŰÁö"

#: ../../install_steps_gtk.pm_.c:386
#, c-format
msgid "Name: %s\n"
msgstr "À̸§: %s\n"

#: ../../install_steps_gtk.pm_.c:389
#, c-format
msgid "Importance: %s\n"
msgstr "Á߿伺: %s\n"

#: ../../install_steps_gtk.pm_.c:411
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "µð½ºÅ© °ø°£ÀÌ ºÎÁ·Çϱ⠶§¹®¿¡ ÀÌ ÆÑŰÁö¸¦ ¼±ÅÃÇÒ ¼ö ¾ø½À´Ï´Ù."

#: ../../install_steps_gtk.pm_.c:416
msgid "The following packages are going to be installed"
msgstr "´ÙÀ½ ÆÑŰÁöµéÀÌ ¼³Ä¡µÉ °ÍÀÔ´Ï´Ù."

#: ../../install_steps_gtk.pm_.c:417
msgid "The following packages are going to be removed"
msgstr "´ÙÀ½ ÆÑŰÁöµéÀÌ Á¦°ÅµÉ °ÍÀÔ´Ï´Ù."

#: ../../install_steps_gtk.pm_.c:429
msgid "You can't select/unselect this package"
msgstr "ÀÌ ÆÑŰÁö¸¦ ¼±ÅÃ/¹ö¸² ÇÒ¼ö ¾ø½À´Ï´Ù."

#: ../../install_steps_gtk.pm_.c:441
msgid "This is a mandatory package, it can't be unselected"
msgstr "À̰ÍÀº ÇʼöÀûÀÎ ÆÑŰÁöÀÔ´Ï´Ù. ¹Ýµå½Ã ¼±ÅõǾî¾ß ÇÕ´Ï´Ù."

#: ../../install_steps_gtk.pm_.c:443
msgid "You can't unselect this package. It is already installed"
msgstr "ÀÌ ÆÑŰÁö¸¦ ¼±ÅÃÇØÁ¦ÇÒ ¼ö ¾ø½À´Ï´Ù. ÀÌ¹Ì ¼³Ä¡ µÇ¾ú½À´Ï´Ù."

#: ../../install_steps_gtk.pm_.c:447
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
"ÀÌ ÆÑŰÁö´Â ¹Ýµå½Ã ¾÷±×·¹À̵åµÇ¾î¾ß ÇÕ´Ï´Ù.\n"
"Á¤¸»·Î ¼±ÅÃÀ» ÇØÁ¦ÇϽðڽÀ´Ï±î?"

#: ../../install_steps_gtk.pm_.c:451
msgid "You can't unselect this package. It must be upgraded"
msgstr "ÀÌ ÆÑŰÁö¸¦ ¼±ÅÃÇØÁ¦ÇÒ¼ö ¾ø½À´Ï´Ù. ¹Ýµå½Ã ¾÷±×·¹À̵åµÇ¾î¾ß ÇÕ´Ï´Ù."

#: ../../install_steps_gtk.pm_.c:456
msgid "Show automatically selected packages"
msgstr "ÀÚµ¿À¸·Î ¼±ÅÃµÈ ÆÑŰÁöµé º¸À̱â"

#: ../../install_steps_gtk.pm_.c:460
msgid "Load/Save on floppy"
msgstr "Ç÷ÎÇÇ¿¡ ÀúÀå/ÀûÀç"

#: ../../install_steps_gtk.pm_.c:461
msgid "Updating package selection"
msgstr "¼±ÅÃµÈ ÆÑŰÁö ¸ñ·Ï ¾÷µ¥ÀÌÆ® Áß"

#: ../../install_steps_gtk.pm_.c:466
msgid "Minimal install"
msgstr "ÃÖ¼Ò ¼³Ä¡"

#: ../../install_steps_gtk.pm_.c:503
msgid "Estimating"
msgstr "°è»ê Áß"

#: ../../install_steps_gtk.pm_.c:522
msgid "Please wait, preparing installation"
msgstr "¼³Ä¡ ÁغñÁßÀÔ´Ï´Ù. Àá½Ã ±â´Ù¸®¼¼¿ä."

#: ../../install_steps_gtk.pm_.c:553
#, c-format
msgid "%d packages"
msgstr "%d ÆÑŰÁö"

#: ../../install_steps_gtk.pm_.c:599
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_gtk.pm_.c:627 ../../install_steps_interactive.pm_.c:148
msgid "Accept"
msgstr "µ¿ÀÇ"

#: ../../install_steps_gtk.pm_.c:627 ../../install_steps_interactive.pm_.c:148
msgid "Refuse"
msgstr "°ÅºÎ"

#: ../../install_steps_gtk.pm_.c:628
#, 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:646
msgid "There was an error installing packages:"
msgstr "´ÙÀ½ ÆÑŰÁö¸¦ ¼³Ä¡Áß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù: "

#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "¿À·ù ¹ß»ý"

#: ../../install_steps_interactive.pm_.c:71
msgid "License agreement"
msgstr "»ç¿ë µ¿ÀǼ­"

#: ../../install_steps_interactive.pm_.c:72
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:168
#: ../../install_steps_interactive.pm_.c:871
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Űº¸µå"

#: ../../install_steps_interactive.pm_.c:169
#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
msgstr "Űº¸µå ·¹À̾ƿô ¼±ÅÃ"

#: ../../install_steps_interactive.pm_.c:170
msgid "Here is the full list of keyboards available"
msgstr "Áö¿øµÇ´Â Űº¸µå ¸ñ·ÏÀÌ ¿©±â¿¡ ÀÖ½À´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:187
msgid "Which installation class do you want?"
msgstr "¼³Ä¡ À¯ÇüÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä."

#: ../../install_steps_interactive.pm_.c:189
msgid "Install/Update"
msgstr "¼³Ä¡/¾÷µ¥ÀÌÆ®"

#: ../../install_steps_interactive.pm_.c:189
msgid "Is this an install or an update?"
msgstr "¼³Ä¡ÇÕ´Ï±î ¾Æ´Ï¸é ¾÷µ¥ÀÌÆ® Çմϱî?"

#: ../../install_steps_interactive.pm_.c:198
msgid "Recommended"
msgstr "±ÇÀå"

#: ../../install_steps_interactive.pm_.c:201
#: ../../install_steps_interactive.pm_.c:204
msgid "Expert"
msgstr "Àü¹®°¡"

#: ../../install_steps_interactive.pm_.c:212
msgid "Update"
msgstr "¾÷µ¥ÀÌÆ®"

#: ../../install_steps_interactive.pm_.c:224 ../../standalone/mousedrake_.c:48
msgid "Please, choose the type of your mouse."
msgstr "¾î¶² Á¾·ùÀÇ ¸¶¿ì½º¸¦ »ç¿ëÇϽʴϱî?"

#: ../../install_steps_interactive.pm_.c:230 ../../standalone/mousedrake_.c:64
msgid "Mouse Port"
msgstr "¸¶¿ì½º Æ÷Æ®"

#: ../../install_steps_interactive.pm_.c:231 ../../standalone/mousedrake_.c:65
msgid "Please choose on which serial port your mouse is connected to."
msgstr "¾î¶² ½Ã¸®¾ó Æ÷Æ®¿¡ ¸¶¿ì½º°¡ ¿¬°áµÇ¾î ÀÖ³ª¿ä?"

#: ../../install_steps_interactive.pm_.c:239
msgid "Buttons emulation"
msgstr "¹öư ¿¡¹Ä·¹À̼Ç"

#: ../../install_steps_interactive.pm_.c:241
msgid "Button 2 Emulation"
msgstr "¹öư 2 ¿¡¹Ä·¹À̼Ç"

#: ../../install_steps_interactive.pm_.c:242
msgid "Button 3 Emulation"
msgstr "¹öư 3 ¿¡¹Ä·¹À̼Ç"

#: ../../install_steps_interactive.pm_.c:261
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIS Ä«µå ȯ°æ¼³Á¤Áß..."

#: ../../install_steps_interactive.pm_.c:261
msgid "PCMCIA"
msgstr "PCMCIA"

#: ../../install_steps_interactive.pm_.c:266
msgid "Configuring IDE"
msgstr "IDE ¼³Á¤Áß"

#: ../../install_steps_interactive.pm_.c:266
msgid "IDE"
msgstr "IDE"

#: ../../install_steps_interactive.pm_.c:281
msgid "no available partitions"
msgstr "»ç¿ë°¡´ÉÇÑ ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:284
msgid "Scanning partitions to find mount points"
msgstr "¸¶¿îÆ® À§Ä¡¸¦ ã±âÀ§ÇØ ÆÄƼ¼ÇµéÀ» °Ë»ö Áß"

#: ../../install_steps_interactive.pm_.c:292
msgid "Choose the mount points"
msgstr "¸¶¿îÆ® À§Ä¡¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."

#: ../../install_steps_interactive.pm_.c:311
#, 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:324
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"µð½ºÅ©µå·¹Å©°¡ ÆÄƼ¼Ç Å×À̺íÀ» Á¤È®È÷ Àоî¿À´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù.\n"
"À§ÇèÀ» °¨¼öÇÒ Áغñ°¡ µÈ °æ¿ì¿¡¸¸ °è¼ÓÇϼ¼¿ä!"

#: ../../install_steps_interactive.pm_.c:340
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:349
msgid "No root partition found to perform an upgrade"
msgstr "¾÷±×·¹À̵åÇÒ ·çÆ® ÆÄƼ¼ÇÀ» ãÀ» ¼ö ¾ø½À´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:350
msgid "Root Partition"
msgstr "·çÆ® ÆÄƼ¼Ç"

#: ../../install_steps_interactive.pm_.c:351
msgid "What is the root partition (/) of your system?"
msgstr "½Ã½ºÅÛ¿¡¼­ ·çÆ® ÆÄƼ¼Ç(/)Àº ¾î¶²°ÍÀԴϱî?"

#: ../../install_steps_interactive.pm_.c:365
msgid "You need to reboot for the partition table modifications to take place"
msgstr "ÆÄƼ¼Ç Å×ÀÌºí º¯°æ»çÇ×À» Àû¿ëÇÏ·Á¸é ¸®ºÎÆÃÀ» ÇØ¾ß ÇÕ´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:389
msgid "Choose the partitions you want to format"
msgstr "Æ÷¸ËÇÒ ÆÄƼ¼ÇÀ» ¼±ÅÃÇϼ¼¿ä"

#: ../../install_steps_interactive.pm_.c:390
msgid "Check bad blocks?"
msgstr "¹èµå ºí·° °Ë»ç¸¦ Çմϱî?"

#: ../../install_steps_interactive.pm_.c:416
msgid "Formatting partitions"
msgstr "ÆÄƼ¼Ç Æ÷¸Ë"

#: ../../install_steps_interactive.pm_.c:418
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s ÆÄÀϸ¦ »ý¼ºÇÏ°í Æ÷¸Ë"

#: ../../install_steps_interactive.pm_.c:421
msgid "Not enough swap to fulfill installation, please add some"
msgstr "½º¿Ò ¸Þ¸ð¸®°¡ ºÎÁ·ÇÕ´Ï´Ù. Á» ´õ Ãß°¡Çϼ¼¿ä."

#: ../../install_steps_interactive.pm_.c:427
msgid "Looking for available packages"
msgstr "À¯È¿ÇÑ ÆÑŰÁö¸¦ ã°í ÀÖ½À´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:433
msgid "Finding packages to upgrade"
msgstr "¾÷±×·¹À̵åÇÒ ÆÑŰÁö¸¦ °Ë»öÁßÀÔ´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:450
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr "¼³Ä¡ ¶Ç´Â ¾÷±×·¹À̵带 À§ÇÑ µð½ºÅ© °ø°£ÀÌ ºÎÁ·ÇÕ´Ï´Ù. (%d > %d)"

#: ../../install_steps_interactive.pm_.c:469
#, c-format
msgid "Complete (%dMB)"
msgstr "Àüü (%dMB)"

#: ../../install_steps_interactive.pm_.c:469
#, c-format
msgid "Minimum (%dMB)"
msgstr "ÃÖ¼Ò (%dMB)"

#: ../../install_steps_interactive.pm_.c:469
#, c-format
msgid "Recommended (%dMB)"
msgstr "±ÇÀå (%dMB)"

#: ../../install_steps_interactive.pm_.c:475
msgid "Custom"
msgstr "»ç¿ëÀÚ Á¤ÀÇ"

#: ../../install_steps_interactive.pm_.c:522
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:525
msgid "Load from floppy"
msgstr "Ç÷ÎÇÇ¿¡¼­ Àбâ"

#: ../../install_steps_interactive.pm_.c:527
msgid "Loading from floppy"
msgstr "Ç÷ÎÇÇ¿¡¼­ Àд Áß"

#: ../../install_steps_interactive.pm_.c:527
msgid "Package selection"
msgstr "ÆÑŰÁö ¼±ÅÃ"

#: ../../install_steps_interactive.pm_.c:532
msgid "Insert a floppy containing package selection"
msgstr "ÆÑŰÁö ¼±Åøñ·Ï Ç÷ÎÇÇ µð½ºÅ©¸¦ ³ÖÀ¸¼¼¿ä."

#: ../../install_steps_interactive.pm_.c:544
msgid "Save on floppy"
msgstr "Ç÷ÎÇÇ¿¡ ÀúÀå"

#: ../../install_steps_interactive.pm_.c:605
msgid "Selected size is larger than available space"
msgstr "¼±ÅÃµÈ ¿ë·®ÀÌ »ç¿ëÇÒ ¼ö ÀÖ´Â °ø°£º¸´Ù Å®´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:670
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:675
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "¡¸%s¡¹¶ó°í Ç¥½ÃµÈ CDROM"

#: ../../install_steps_interactive.pm_.c:704
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
" %s ÆÑŰÁö ¼³Ä¡ Áß... \n"
"%d%%"

#: ../../install_steps_interactive.pm_.c:713
msgid "Post-install configuration"
msgstr "¼³Ä¡Àü ȯ°æ¼³Á¤"

#: ../../install_steps_interactive.pm_.c:719
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "ºÎÆÃ Ç÷ÎÇǸ¦ %s µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä"

#: ../../install_steps_interactive.pm_.c:725
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "¾÷µ¥ÀÌÆ® ¸ðµâ Ç÷ÎÇǸ¦ %s µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä"

#: ../../install_steps_interactive.pm_.c:750
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:782
msgid "Choose a mirror from which to get the packages"
msgstr "ÆÑŰÁö¸¦ ¹ÞÀ» ¹Ì·¯ »çÀÌÆ®¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."

#: ../../install_steps_interactive.pm_.c:793
msgid "Contacting the mirror to get the list of available packages"
msgstr "»ç¿ë°¡´ÉÇÑ ÆÑŰÁöÀÇ ¸®½ºÆ®¸¦ ¹Ì·¯ »çÀÌÆ®¿¡ Á¢¼ÓÇØ¼­ ¹Þ½À´Ï´Ù."

#: ../../install_steps_interactive.pm_.c:796
msgid "Please choose the packages you want to install."
msgstr "¼³Ä¡ÇÒ ÆÑŰÁö ¼±ÅÃ"

#: ../../install_steps_interactive.pm_.c:808
msgid "Which is your timezone?"
msgstr "´ÔÀÇ ½Ã°£´ë´Â ¾îµðÀԴϱî?"

#: ../../install_steps_interactive.pm_.c:813
msgid "Hardware clock set to GMT"
msgstr "Çϵå¿þ¾î ½Ã°è GMT ¼³Á¤"

#: ../../install_steps_interactive.pm_.c:814
msgid "Automatic time synchronization (using NTP)"
msgstr "ÀÚµ¿ ½Ã°£ µ¿±âÈ­ (NTP »ç¿ë)"

#: ../../install_steps_interactive.pm_.c:821
msgid "NTP Server"
msgstr "NTP ¼­¹ö"

#: ../../install_steps_interactive.pm_.c:855
#: ../../install_steps_interactive.pm_.c:863 ../../printerdrake.pm_.c:104
msgid "Remote CUPS server"
msgstr "¿ø°Ý CUPS ¼­¹ö"

#: ../../install_steps_interactive.pm_.c:856
msgid "No printer"
msgstr "ÇÁ¸°ÅÍ ¾øÀ½"

#: ../../install_steps_interactive.pm_.c:867 ../../steps.pm_.c:27
msgid "Summary"
msgstr "¿ä¾à¼³¸í"

#: ../../install_steps_interactive.pm_.c:870
msgid "Mouse"
msgstr "¸¶¿ì½º"

#: ../../install_steps_interactive.pm_.c:872
msgid "Timezone"
msgstr "½Ã°£´ë"

#: ../../install_steps_interactive.pm_.c:873 ../../printerdrake.pm_.c:1773
#: ../../printerdrake.pm_.c:1844
msgid "Printer"
msgstr "ÇÁ¸°ÅÍ"

#: ../../install_steps_interactive.pm_.c:875
msgid "ISDN card"
msgstr "ISDN Ä«µå"

#: ../../install_steps_interactive.pm_.c:878
msgid "Sound card"
msgstr "»ç¿îµå Ä«µå"

#: ../../install_steps_interactive.pm_.c:881
msgid "TV card"
msgstr "TV Ä«µå"

#: ../../install_steps_interactive.pm_.c:917
#: ../../install_steps_interactive.pm_.c:941
#: ../../install_steps_interactive.pm_.c:945
msgid "LDAP"
msgstr "LDAP"

#: ../../install_steps_interactive.pm_.c:918
#: ../../install_steps_interactive.pm_.c:941
#: ../../install_steps_interactive.pm_.c:954
msgid "NIS"
msgstr "NIS"

#: ../../install_steps_interactive.pm_.c:919
#: ../../install_steps_interactive.pm_.c:941
msgid "Local files"
msgstr "Áö¿ª ÆÄÀϵé"

#: ../../install_steps_interactive.pm_.c:928
#: ../../install_steps_interactive.pm_.c:929 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root ¾ÏÈ£ ¼³Á¤"

#: ../../install_steps_interactive.pm_.c:930
msgid "No password"
msgstr "¾ÏÈ£ ¾øÀ½"

#: ../../install_steps_interactive.pm_.c:935
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "ÀÌ ¾ÏÈ£´Â ³Ê¹« ´Ü¼øÇÕ´Ï´Ù.( Àû¾îµµ %d ±ÛÀÚ´Â ³Ñ¾î¾ß ÇÕ´Ï´Ù)"

#: ../../install_steps_interactive.pm_.c:941 ../../network/modem.pm_.c:47
#: ../../standalone/draknet_.c:604
msgid "Authentication"
msgstr "»ç¿ëÀÚ ÀÎÁõ"

#: ../../install_steps_interactive.pm_.c:949
msgid "Authentication LDAP"
msgstr "ÀÎÁõ LDAP"

#: ../../install_steps_interactive.pm_.c:950
msgid "LDAP Base dn"
msgstr "LDAP ±â¹Ý DN"

#: ../../install_steps_interactive.pm_.c:951
msgid "LDAP Server"
msgstr "LDAP ¼­¹ö"

#: ../../install_steps_interactive.pm_.c:957
msgid "Authentication NIS"
msgstr "ÀÎÁõ NIS"

#: ../../install_steps_interactive.pm_.c:958
msgid "NIS Domain"
msgstr "NIS µµ¸ÞÀÎ"

#: ../../install_steps_interactive.pm_.c:959
msgid "NIS Server"
msgstr "NIS ¼­¹ö"

#: ../../install_steps_interactive.pm_.c:994
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:1010
msgid "First floppy drive"
msgstr "ù¹øÂ° Ç÷ÎÇÇ µå¶óÀ̺ê"

#: ../../install_steps_interactive.pm_.c:1011
msgid "Second floppy drive"
msgstr "µÎ¹øÂ° Ç÷ÎÇÇ µå¶óÀ̺ê"

#: ../../install_steps_interactive.pm_.c:1012 ../../printerdrake.pm_.c:1382
msgid "Skip"
msgstr "°Ç³Ê¶Ù±â"

#: ../../install_steps_interactive.pm_.c:1017
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 "