summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-09-03 15:52:49 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-09-03 15:52:49 +0000
commit2602c854c769e2b70bdf18579f6348b0496bc09f (patch)
treea9a736603c0535d7484f4eb461bfcd2651aeac16
parent49924b81a16c0f357c1957d5e638262db2f4e7d0 (diff)
downloaddrakx-2602c854c769e2b70bdf18579f6348b0496bc09f.tar
drakx-2602c854c769e2b70bdf18579f6348b0496bc09f.tar.gz
drakx-2602c854c769e2b70bdf18579f6348b0496bc09f.tar.bz2
drakx-2602c854c769e2b70bdf18579f6348b0496bc09f.tar.xz
drakx-2602c854c769e2b70bdf18579f6348b0496bc09f.zip
- much cleanup in test_mouse()
- new images for mouse test (thanks to Jerome Villette)
-rw-r--r--perl-install/mouse.pm83
-rw-r--r--perl-install/pixmaps/arrow_down.pngbin0 -> 155 bytes
-rw-r--r--perl-install/pixmaps/arrow_down.xpm14
-rw-r--r--perl-install/pixmaps/arrow_up.pngbin0 -> 156 bytes
-rw-r--r--perl-install/pixmaps/arrow_up.xpm14
-rw-r--r--perl-install/pixmaps/mouse_2b.pngbin0 -> 13589 bytes
-rw-r--r--perl-install/pixmaps/mouse_2b_left.pngbin0 -> 3734 bytes
-rw-r--r--perl-install/pixmaps/mouse_2b_right.pngbin0 -> 4169 bytes
-rw-r--r--perl-install/pixmaps/mouse_3b+.pngbin0 -> 15803 bytes
-rw-r--r--perl-install/pixmaps/mouse_3b+.xpm386
-rw-r--r--perl-install/pixmaps/mouse_3b+_middle.pngbin0 -> 1042 bytes
-rw-r--r--perl-install/pixmaps/mouse_3b+_mini.xpm211
-rw-r--r--perl-install/pixmaps/mouse_3b.pngbin0 -> 13345 bytes
-rw-r--r--perl-install/pixmaps/mouse_3b.xpm386
-rw-r--r--perl-install/pixmaps/mouse_3b_left.pngbin0 -> 2555 bytes
-rw-r--r--perl-install/pixmaps/mouse_3b_middle.pngbin0 -> 2429 bytes
-rw-r--r--perl-install/pixmaps/mouse_3b_mini.xpm211
-rw-r--r--perl-install/pixmaps/mouse_3b_right.pngbin0 -> 3138 bytes
-rw-r--r--perl-install/pixmaps/mouse_left.xpm142
-rw-r--r--perl-install/pixmaps/mouse_middle.xpm89
-rw-r--r--perl-install/pixmaps/mouse_right.xpm143
21 files changed, 47 insertions, 1632 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm
index f58101767..fdee6e1cd 100644
--- a/perl-install/mouse.pm
+++ b/perl-install/mouse.pm
@@ -401,16 +401,15 @@ sub test_mouse_install {
require ugtk2;
ugtk2->import(qw(:wrappers :create));
my $w = ugtk2->new('', disallow_big_help => 1);
- my ($width, $height, $_offset) = (210, round_up(min(350, $::windowheight - 150), 6), 25);
my $darea = Gtk2::DrawingArea->new;
$darea->set_events([ 'button_press_mask', 'button_release_mask' ]); #$darea must be unrealized.
gtkadd($w->{window},
gtkpack(my $vbox_grab = Gtk2::VBox->new(0, 0),
- gtkset_size_request($darea, $width+1, $height+1),
+ $darea,
gtkset_sensitive(create_okcancel($w, undef, undef, 'edge'), 1)
),
);
- test_mouse($mouse, $w, $darea, $width, $height, $x_protocol_changed);
+ test_mouse($mouse, $darea, $x_protocol_changed);
$w->sync; # HACK
Gtk2::Gdk->pointer_grab($vbox_grab->window, 1, 'pointer_motion_mask', $vbox_grab->window, undef, 0);
my $r = $w->main;
@@ -422,27 +421,31 @@ sub test_mouse_standalone {
my ($mouse, $hbox) = @_;
require ugtk2;
ugtk2->import(qw(:wrappers));
- my ($width, $height, $_offset) = (210, round_up(min(350, $::windowheight - 150), 6), 25);
my $darea = Gtk2::DrawingArea->new;
$darea->set_events([ 'button_press_mask', 'button_release_mask' ]); #$darea must be unrealized.
- gtkpack($hbox,
- gtkpack(gtkset_border_width(Gtk2::VBox->new(0,10), 10),
- gtksize(gtkset_size_request($darea, $width+1, $height+1), $width, $height)));
- test_mouse($mouse, $hbox, $darea, $width, $height);
+ gtkpack($hbox, gtkpack(gtkset_border_width(Gtk2::VBox->new(0,10), 10), $darea));
+ test_mouse($mouse, $darea);
}
sub test_mouse {
- my ($mouse, $_w, $darea, $width, $height, $b_x_protocol_changed) = @_;
+ my ($mouse, $darea, $b_x_protocol_changed) = @_;
-# $darea->realize; IS IT REALLY NEEDED? generates a Gtk-CRITICAL when run..
require ugtk2;
ugtk2->import(qw(:wrappers));
- my %xpms;
- $xpms{$_} = ugtk2::gtkcreate_pixbuf("mouse_$_.xpm") foreach qw(3b 3b+ left right middle);
- $xpms{au} = ugtk2::gtkcreate_pixbuf('arrow_up.xpm');
- $xpms{ad} = ugtk2::gtkcreate_pixbuf('arrow_down.xpm');
- my $image = $xpms{'3b'};
- $mouse->{nbuttons} > 3 and $image = $xpms{'3b+'};
+ my $suffix = $mouse->{nbuttons} <= 2 ? '2b' : $mouse->{nbuttons} == 3 ? '3b' : '3b+';
+ my %offsets = (mouse_2b_right => [ 93, 0 ], mouse_3b_right => [ 117, 0 ],
+ mouse_2b_middle => [ 82, 80 ], mouse_3b_middle => [ 68, 0 ], 'mouse_3b+_middle' => [ 85, 67 ]);
+ my %image_files = (
+ mouse => "mouse_$suffix",
+ left => 'mouse_' . ($suffix eq '3b+' ? '3b' : $suffix) . '_left',
+ right => 'mouse_' . ($suffix eq '3b+' ? '3b' : $suffix) . '_right',
+ if_($mouse->{nbuttons} > 2, middle => 'mouse_' . $suffix . '_middle'),
+ up => 'arrow_up',
+ down => 'arrow_down');
+ my %images = map { $_ => ugtk2::gtkcreate_pixbuf("$image_files{$_}.png") } keys %image_files;
+ my $width = $images{mouse}->get_width;
+ my $height = round_up(min($images{mouse}->get_height, $::windowheight - 150), 6);
+
my $draw_text = sub {
my ($t, $y) = @_;
my $layout = $darea->create_pango_layout($t);
@@ -454,19 +457,26 @@ sub test_mouse {
};
my $draw_pixbuf = sub {
my ($p, $x, $y, $w, $h) = @_;
+ $w = $p->get_width;
+ $h = $p->get_height;
$p->render_to_drawable($darea->window, $darea->style->bg_gc('normal'), 0, 0,
($darea->allocation->width-$width)/2 + $x, ($darea->allocation->height-$height)/2 + $y,
$w, $h, 'none', 0, 0);
};
- my $drawarea;
- $drawarea = sub {
+ my $draw_by_name = sub {
+ my ($name) = @_;
+ my $file = $image_files{$name};
+ my ($x, $y) = @{$offsets{$file} || [ 0, 0 ]};
+ $draw_pixbuf->($images{$name}, $x, $y);
+ };
+ my $drawarea = sub {
my ($height) = @_;
- $draw_pixbuf->($image, 0, 0, 210, $height || 200);
- if ($::isInstall) {
- $draw_text->(N("Please test the mouse"), $height - 120);
+ $draw_by_name->('mouse');
+ if ($::isInstall || 1) {
+ $draw_text->(N("Please test the mouse"), 200);
if ($b_x_protocol_changed && $mouse->{nbuttons} > 3 && member($mouse->{XMOUSETYPE}, 'IMPS/2', 'ExplorerPS/2')) {
- $draw_text->(N("To activate the mouse,"), $height - 105);
- $draw_text->(N("MOVE YOUR WHEEL!"), $height - 90);
+ $draw_text->(N("To activate the mouse,"), 240);
+ $draw_text->(N("MOVE YOUR WHEEL!"), 260);
}
}
};
@@ -474,27 +484,28 @@ sub test_mouse {
my $timeout;
my $paintButton = sub {
my ($nb) = @_;
- my $x = 60 + $nb*33;
$timeout or $drawarea->();
if ($nb == 0) {
- $draw_pixbuf->($xpms{left}, 31, 52, 59, 91);
+ $draw_by_name->('left');
} elsif ($nb == 2) {
- $draw_pixbuf->($xpms{right}, 117, 52, 61, 91);
+ $draw_by_name->('right');
} elsif ($nb == 1) {
- if ($mouse->{nbuttons} > 3) {
- $draw_pixbuf->($xpms{middle}, 98, 67, 13, 62);
+ if ($mouse->{nbuttons} >= 3) {
+ $draw_by_name->('middle');
} else {
+ my ($x, $y) = @{$offsets{mouse_2b_middle}};
$darea->window->draw_arc($darea->style->black_gc,
- 1, ($darea->allocation->width-$width)/2 + $x, ($darea->allocation->height-$height)/2 + 90, 20, 25,
- 0, 360*64);
+ 1, ($darea->allocation->width-$width)/2 + $x, ($darea->allocation->height-$height)/2 + $y, 20, 25,
+ 0, 360 * 64);
}
- } else {
+ } elsif ($mouse->{nbuttons} > 3) {
+ my ($x, $y) = @{$offsets{$image_files{middle}}};
if ($nb == 3) {
- $draw_pixbuf->($xpms{au}, 102, 57, 6, 8);
+ $draw_pixbuf->($images{up}, $x+6, $y-10);
} elsif ($nb == 4) {
- $draw_pixbuf->($xpms{ad}, 102, 131, 6, 8);
+ $draw_pixbuf->($images{down}, $x+6, $y + $images{middle}->get_height + 2);
}
- $draw_pixbuf->($xpms{middle}, 98, 67, 13, 62);
+ $draw_by_name->('middle');
$timeout and Glib::Source->remove($timeout);
$timeout = Glib::Timeout->add(100, sub { $drawarea->(); $timeout = 0; 0 });
}
@@ -502,8 +513,8 @@ sub test_mouse {
$darea->signal_connect(button_press_event => sub { $paintButton->($_[1]->button - 1) });
$darea->signal_connect(scroll_event => sub { $paintButton->($_[1]->direction eq 'up' ? 3 : 4) });
- $darea->signal_connect(button_release_event => sub { $drawarea->() });
- $darea->signal_connect(expose_event => sub { $drawarea->(350) });
+ $darea->signal_connect(button_release_event => $drawarea);
+ $darea->signal_connect(expose_event => $drawarea);
$darea->set_size_request($width, $height);
}
diff --git a/perl-install/pixmaps/arrow_down.png b/perl-install/pixmaps/arrow_down.png
new file mode 100644
index 000000000..256dee04e
--- /dev/null
+++ b/perl-install/pixmaps/arrow_down.png
Binary files differ
diff --git a/perl-install/pixmaps/arrow_down.xpm b/perl-install/pixmaps/arrow_down.xpm
deleted file mode 100644
index 30cca10b1..000000000
--- a/perl-install/pixmaps/arrow_down.xpm
+++ /dev/null
@@ -1,14 +0,0 @@
-/* XPM */
-static char * arrow_down_xpm[] = {
-"6 8 3 1",
-" c None",
-". c #BABEDA",
-"+ c #000000",
-"..++..",
-"..++..",
-"..++..",
-"..++..",
-"++++++",
-"++++++",
-".++++.",
-"..++.."};
diff --git a/perl-install/pixmaps/arrow_up.png b/perl-install/pixmaps/arrow_up.png
new file mode 100644
index 000000000..fd2408b23
--- /dev/null
+++ b/perl-install/pixmaps/arrow_up.png
Binary files differ
diff --git a/perl-install/pixmaps/arrow_up.xpm b/perl-install/pixmaps/arrow_up.xpm
deleted file mode 100644
index fc3c53131..000000000
--- a/perl-install/pixmaps/arrow_up.xpm
+++ /dev/null
@@ -1,14 +0,0 @@
-/* XPM */
-static char * arrow_up_xpm[] = {
-"6 8 3 1",
-" c None",
-". c #999ABD",
-"+ c #000000",
-"..++..",
-".++++.",
-"++++++",
-"++++++",
-"..++..",
-"..++..",
-"..++..",
-"..++.."};
diff --git a/perl-install/pixmaps/mouse_2b.png b/perl-install/pixmaps/mouse_2b.png
new file mode 100644
index 000000000..5df9cf38a
--- /dev/null
+++ b/perl-install/pixmaps/mouse_2b.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_2b_left.png b/perl-install/pixmaps/mouse_2b_left.png
new file mode 100644
index 000000000..9844cbc3e
--- /dev/null
+++ b/perl-install/pixmaps/mouse_2b_left.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_2b_right.png b/perl-install/pixmaps/mouse_2b_right.png
new file mode 100644
index 000000000..d1bea0424
--- /dev/null
+++ b/perl-install/pixmaps/mouse_2b_right.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b+.png b/perl-install/pixmaps/mouse_3b+.png
new file mode 100644
index 000000000..964ba5c15
--- /dev/null
+++ b/perl-install/pixmaps/mouse_3b+.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b+.xpm b/perl-install/pixmaps/mouse_3b+.xpm
deleted file mode 100644
index b424fc722..000000000
--- a/perl-install/pixmaps/mouse_3b+.xpm
+++ /dev/null
@@ -1,386 +0,0 @@
-/* XPM */
-static char * mouse_3b+_xpm[] = {
-"210 350 33 1",
-" c None",
-". c #020202",
-"+ c #142753",
-"@ c #FE9A02",
-"# c #BD8B25",
-"$ c #9E9EC1",
-"% c #525E81",
-"& c #F2AD19",
-"* c #A3A4C3",
-"= c #7B673F",
-"- c #6F7892",
-"; c #4B5576",
-"> c #FEB212",
-", c #77819E",
-"' c #FEBA20",
-") c #414A66",
-"! c #F2B226",
-"~ c #AF8F4B",
-"{ c #E6AA32",
-"] c #F2B22A",
-"^ c #384365",
-"/ c #0A1128",
-"( c #33395F",
-"_ c #8089A6",
-": c #AEB2CF",
-"< c #898BA4",
-"[ c #0F1C3D",
-"} c #BABEDA",
-"| c #6D6E91",
-"1 c #A9ADCA",
-"2 c #283861",
-"3 c #999ABD",
-"4 c #606C8C",
-" |4;-333[/[ ",
-" 44;,333[[/ ",
-" 44)_33-[/[ ",
-" 4%;_33-[[/ ",
-" 4%)3334[/[ ",
-" %4)$33;[/ ",
-" 4%;$33;[/ ",
-" %%%333)[[ ",
-" %%%3332[/ ",
-" %%%3332[/ ",
-" %%%$332[/ ",
-" |%;-33<2[[ ",
-" 4%;|333[// ",
-" %%)4333[[[ ",
-" 4;;|33<[/[ ",
-" 4;;4333[[/ ",
-" 4%;|333[[[ ",
-" %%;_33<[[/ ",
-" %%)_333[[[ ",
-" %%)_333[[/ ",
-" ;;),33<[[[ ",
-" ;;)_333[[/ ",
-" ;;^,333[[[ ",
-" %))433<[[/ ",
-" 4;)4333[[[ ",
-" 4;;-333[[/ ",
-" %;)433<+[[ ",
-" %;)43332[/ ",
-" ;)^|33<([[ ",
-" ;)%3332[/ ",
-" ;^;3332[[ ",
-" ;;;333^[[ ",
-" 4%)$33%[[ ",
-" ,4^33$%+[++ ",
-" $34^333,2++22 ",
-" 13_%-33333)2222 ",
-" 33_4_333333<;22++ ",
-" ,,4_3$33333$3%2+++ ",
-" %%433333333333%[[[ ",
-" ;)^333333333333+/[ ",
-" ))2$33333333333([[ ",
-" ;;^$33<33333333)[[ ",
-" ))^$33333333333%[/[ ",
-" ;)^,333333<3333-[[[ ",
-" ;;),333<3333333_+/[ ",
-" ;))_333333333333+[[ ",
-" ;))|33333333<3332[[ ",
-" %)^|333333333333;/[ ",
-" %%)4333333333333%[[[ ",
-" _4;|333333333333-[[[ ",
-" ,%;-|;%%%))%%%%4+[+ ",
-" 1:1*<%(++++[++[+[+[+[2(%-,_, ",
-" :1111$$<|)2[+[+++))+++[++2^%|,,,,,, ",
-" ::::1$3<,||-,<3:}}}}}:}}}}:33,4-%44--,-,-- ",
-" :::*$3_-,<1}}}}}}}}}}}}}}:}}:}:}}}}1_-%%4||4-4 ",
-" :::1$3_,_$}}}}}}}:1**$$33333333$$$*1::}}}}1,;;44|4| ",
-" :::1*<,4),}}::1*333333333$3$3333$3333333$}}:},22);%%444% ",
-" ::::*<4,{;2+}}3333333333$<$<33333333<33333331}}2+[%=2);%%44 ",
-" :::$<-<&>!#++,}*333333333$3$3333333<3$333333331_+[(>>#=2^;;%%% ",
-" :::*3-,{'>>>>2+;}:3333333333$<3333333$$<333333333;++=>'>&{=2^);;;% ",
-" ::13--{>>>>>>>=[+}}333333<3333$333<3333$3$3333333$2[+#>>>>>&#;(^);;; ",
-" ::1*<-~>>>>>>>>&#++$}$333333333333333333$<$<3333333<+++>'>>>>'>>#22^))); ",
-" ::13,='''>>&&@&>>#+[-}}333333333333333333$333333333$-+[)>>>>>>>>>>&=22)))) ",
-" ::11<-~'>&&@@@@@>>>>++%:}33333333333333333333333<3333$4[+=>>>>>>>>>>>'#22^)))^ ",
-" }:1*,-&''&@@@@@@@>>'>)+(}}1$333333<333333333333333<3331^++#>>'>>>>>>>>>>{;+^^^^^ ",
-" :1*34~''&@@@@@@@@&>>>&=++}}}333333333<33333333333$33333}+++#>>>>>'>>>>>>>>'=+2^^^( ",
-" ::1<-#'&@@@@@@@@@@>>>>>=[+3}}1333333333333<3333333333333}+++''>>>>>>'>>>>>>>'#2+2^2^ ",
-" :1*_4{'&@@@@@@@@@@'>>>>>#+[3}}:3333<$3$%[[++[+23333$<3$313+[(>>>'>>>>>>>>>>>>'>{^22^22 ",
-" ::3,=!'@@@@@@@@@@@&>>>>>>#++,}}}*33333(^2+[[[[[+((,33$3331<++)>>>>>'>>>>'>>'>>>>>&)22222 ",
-" 11$,,!>@@@@@@@@@@@&>>>>>>>&+[|}}}:33333[/..../././[-3333$3}|+[=>>>>>>>'>>>>>>>>>>>>&=+22222 ",
-" :13--'>@@@@@@@@@@@@>>>>'>>>>++%}}:}33333+.///./././[-3<3333}|[+=>>>>>>>>>>>'>>>>>>>>>>=+2222+ ",
-" :*3-,>&@@@@@@@@@@@&>>'>>>>>>>2+)}}}}13333^(2[[[[[[+(^_$$3$3$}%+[#>>>'>>>>'>>>>>>>>>>>>&&=+2+2++ ",
-" 1*3-~>@@@@@@@@@@@@@>>>>>>>>>>>)[)}}}}}3333++[+[+[++++[,33<$31}^+[#>>>>>>>>>>>>>'>>>>>>>>>&=+2+2+ ",
-" 113-->>@@@@@@@@@@@@>>>>>>>>>>>>)+2:}}:}1333+..........[-33$331})++#>>>>>'>>>>'>>>>>>>>>>>>&>=+++++ ",
-" 1*$-='@@@@@@@@@@@@@>>>>>>'>>>&>>=+[}}}}}:$33[//////////[,3<$331}2+[&>>'>>>>'>>>>>>>'>>>>>>>>>>=+2+++ ",
-" 11*_,'&@@@@@@@@@@@@>>>>'>>>>>>>>>=++}:}}}}*33%%^[////[2%%_3$3331:[++>>>>>>>>>>>>>'>>>>>>>>>>>>>&=++2++ ",
-" :*3,=!>@@@@@@@@@@@@&>>>>>>>>'>>>>>=+[}}}}:}:33++[++++[+[++,333$3:}+++>>>>>'>>>>'>>>>>>>'>>>>>>>>>>)+++++ ",
-" 1**_-!&@@@@@@@@@@@@>>>>>>>'>>>>>>>>#++<}:}}}}*3+..........[-3$<33}:+[(>>'>>>>'>>>>>>>'>>>>>>>>>>>>>>^2++++ ",
-" 1**_4{>@@@@@@@@@@@@&>>>>'>>>>>>>>>>>#[+3}}}}}::3+//////////[,33$33}$++)>>>>>>>>>>>>'>>>>>>>>>>>>>>>>>&++2[++ ",
-" 1*<4{>@@@@@@@@@@@@&>>>>>>>>'>>'>>>>>#++3}:}}}}}$%%^[////[2%%<3$<33}3[[)>>>'>>>>>'>>>>>>'>>>>>>>>>>>>>>@2++[++ ",
-" 1*<-~&@@@@@@@@@@@@@>>>>'>>>>>>>>>'>>>#+[3}}}:}}}1^^2[[[[[[+^^,33333}3++)>>>>>'>>>>>>>>>>>>'>>'>>>>>>>>>!#+++[+ ",
-" 1*3,-'@@@@@@@@@@@@>>>>>>>>>>>'>>>>>>>>][+_:}}}}:}}+../...../.[,333$$:3+[;>>>>>>>>>>'>>'>>>>>>>>>>>>>>>>>>>=+++++ ",
-" 1*3,-&>@@@@@@@@@@@@>>>>'>>>'>>>>'>>>>>>'[+|}:}}}}}:+[///[/[///+,3333$}<++='>>'>>>'>>>>>>>'>>>>>>>'>>>>>>>>>>^+++[+ ",
-" **<4{>@@@@@@@@@@@&>>>>>>>>>>>>>>>>'>>>>>++|}}}}:}}}4%^[////[+;%<33331}<++=>>>>>>>>>>'>>>>>>'>>'>>>>>>>>>>>>>@++++[+ ",
-" 13<-~'@@@@@@@@@@@@>>>>'>>>'>>>>>>>>>>'>>>++4}:}}}}:}++++[+++++++-33333}4++='>>>>'>>>>>>'>>>>>>>>>>>>'>>>>>>>>>#++++[ ",
-" **3-,'@@@@@@@@@@@&>>'>>>>>>>>'>>'>>>>>>'>][+|}}}:}}}:+..........[-33333}-[+=>>'>>&>>>>>>>>>>>>>>>'>>>>>>>>>>>>>>=+++++ ",
-" **_=!>@@@@@@@@@@@>>>>>>>>>>>>>>>>>>>'>>>>'++4}}}}}}}}[//////////[,333$3}4++='>>>>>>'>>>>>'>>'>>'>>>>>>>'>>>'>>>>>^++[++ ",
-" *3_%{>@@@@@@@@@@>'>>>>>'>>>>>>>>>>'>>>>>>>&^+|:}}}:}}}|4)[/////2%%<333$$}|++=>>>>>>>>>>'>>>>>>>>>>>'>>>>>>>>&>>>>>#++++[ ",
-" **<,,'&@@@@@@@@@@>>>>'>>>>'>>>>'>>>>>>>>>>>>)+;}}:}}}:}+++++++++++[,3333$}4++#'>>'>>>>'>>>>>'>>>>>>>>>'>>>>>>&&>>>>>=+++[[ ",
-" *3,4&>@@@@@@@@@&>>'>>>>>>>>>'>>>'>>>>>>>>>>>)+^}}}}}}}}+..........[-3333$}|++#>>>>>'>>>>>'>>>>'>>>>>>>>>>>>>>>>@>>>>>(+++++ ",
-" *$_4#'@@@@@@@@@@>>>>>>>>>'>>>>>>>>>'>>>>>>>>>)+^}}}:}}}:+//////////[,3333*}4[+#'>>>>>>>>>>>>>>>>>'>>'>>>>'>>>>>>>&>>>>@[+[+[ ",
-" **<-~>&@@@@@@@@>>>>>'>>'>>>>>>>>>>>>>'>>'>>>>>)+):}}}:}}}))2[[[[[[+^^-3333$}|++#>>>>>'>>>>>'>>>>>>>>>>>'>>>>>>>>>&&>>>!>=+++[+ ",
-" $3_4&>@@@@@@@@@>>>>>>>>>>>>>>'>>'>>>>>>>>>>>>>)+)}}}}}}:}+[[[[[[[[[[[,33333}4++#'>>>>>>'>>>>>'>>'>>>>>>>>>>'>>>>>>>@>>>>>^[++[ ",
-" *3<4~'@@@@@@@@&>>>>>>>>>'>>>>>>>>>>>>>>>>'>>>>>)+):}}:}}}:+..........[-3333$}|++#>'>>>>>>>>>>>>>>>>>'>>>>'>>>'>>>>>>&@>>>>#++[++ ",
-" $3<,='>@@@@@@@@&>>>>>>>'>>>'>>>>'>>>'>>>'>>>'>>>)+)}}}}}}}}+[[[[[[[[[[[,33333};++#>>>'>>>>'>>>>>'>>>>>>'>>>>>>>>'>>>>>@@>>>>=+[[[+ ",
-" $$_4{>@@@@@@@&>>>>>>'>>>>>>>>'>>>>>>>'>>>>>>>>>>)+):}}}:}}}44^[/////2%%,33333})[+#>>>>>'>>>>>'>>>>'>>>>>>>>>>>>>>>>>>>>@&>>>&+++[+ ",
-" $3_-~!&@@@@@@@&>>>>'>>>>>>>>>>>>>>>'>>>>>>>>>>>>>)+)}:}}}:}:+[[[/[[[[[[+-3333<})++#'>>>>>>>>'>>>>>>>>'>>>>'>>'>>>>>>>>>>@@>>>>#[++[+ ",
-" 33,4!>@@@@@@@>>>>>>>>>>>'>>>>>>>'>>>>>>>>'>>>>>>>)+)}}:}}}}}+..........[-3333$})++#>>>>>>'>>>>'>>>>>>>>>>>>>>>>>>>>>>>>>>@@&>&&2+++[ ",
-" $3_4~'&@@@@@@>>>>>>>>>>'>>>'>>'>>>>>>>>>'>>>'>>>>>)+)}}}}:}}}[[[[[[[[[[[[,3<333}^++#'>>'>>>>>>>>>'>>>>>'>>>>'>>>'>>'>>>>>>@@@>>>#+[+[+ ",
-" 33,-'>@@@@@@>>>>>>>>>>>>>>>>>>>>>>>>>'>>>>>>>>>>>>)+):}}}}}:}|4^[/////2%%<3$33$})[+#>>>>>>>>>>>>>>>>'>>>>'>>>>>>>>>>>>>>>>@@@@>>>)+[+[ ",
-" $3_4#'&@@@@@>>>>>>'>>'>>>>>>>>>>>'>>'>>>>>>>>>>>>>>)+)}}:}}}}}+[[[[[[[[[[+,33333})++#'>>>>'>>'>>>>>'>>>>>>>>>>>'>>>>>>>>>>>>@@@&>>{[++[+ ",
-" 3_,=>>@@@@@>>>>>>>>>>>>>>>>'>>'>>>>>>>>>>>'>>>>>>>>)+^}}}:}}}}+..........[-33333})[+#>>>>>>>>>>>'>>>>>'>>>>>'>>>'>>>'>>>>>>>@@@@&>>=[++[[ ",
-" $<_4{>&@@@@>>>'>>'>>>>>>>'>>>>>>>>>'>>>>'>>>>'>>>>>>)+^}}}}}:}:+[[[[[[[[[[[-333$1}4++#'>>'>>>>>>>>>>>>>>>'>>>>>>>>>'>>>'>>>>>@@@@@>>{[+[+[ ",
-" 3<-->>@@@@&>>>>>>>>'>>'>>>>>>>>'>>>>>'>>>>>>>>>>>>>>)+)}}}}}}}}44^[/////24|3333$:}4[+#>>>>'>>'>>>'>>>>>>>>'>>>>>>>>>>>>>>>>>>&@@@@&>>=++[[+ ",
-" 33,4&>&@@@@>>>>>>>>>>>>>>>>>>'>>>>'>>>>>>>>'>>>>'>>>>)[)}:}:}}}}+[[[[[[[[[[[31333}}|++#'>>>>>>>>'>>>'>>'>>>>>'>>>>'>>>>>>>>>>>>@@@@@&>&+++[[ ",
-" 3<-->>@@@&'>'>>'>>>>>>>'>>'>>>>>>>>>>>>>'>>>>'>>>>>>>++%}}}}}:}}+..........[<}::}}}4++#>>>>'>>>>>>>>>>>>>>>>>>>'>>>>>'>>>'>>>>>@@@@@@&>=+[+[+ ",
-" 3<_%&>&@@@>>>>>>>>'>>'>>>>>>>>>>>'>>>>>>>>>>>>>>>>>>>>++4}}}}}}}:++[+++[+[+++3}}}}}}4++#>>>>>>'>>>>>>>'>>>>>'>>>>>>>>>>>'>>>'>>>@@@@@@@'&+++[[ ",
-" 3<-,'>@@@>>>>'>>>>>>>>>>>>>'>>'>>>>>>'>>>>'>>>'>>>>>>>++|}:}}:}}}4|^[////[244*}}}}}}|+[=>>>>>>>>>>>'>>>>>'>>>>>>>>>>>>>>>>>>>>>>@@@@@@@&>=++[+[ ",
-" $<_4&>>@@>>>>>>>'>>>>>>>>'>>>>>>>>>>>>>>'>>>>>>>>'>>>>>++4}}}}}}:}+[///[////[[3:}:}}}4++='>>>>>>>'>>>>>>>>>>>>>'>>'>>>'>>>>>>>>>>&@@@@@@&>&++[[[ ",
-" 3_-->>@@>>'>>>>>>>>'>>'>>>>>'>>>>>>'>>>>>>>'>>>>>>>>>>&++|:}}:}}}}+..........[3}}}}}:3++=>>'>>'>>>>>>>>'>>>>'>>>>>>'>>>>>'>>>>>>>@@@@@@@@&>=+++[ ",
-" <<_%&>'@&>>>>'>>>>'>>>>>>>>>>>>'>>'>>>'>>>>>>>'>>>>>>>>{[+4}}}}}:}}[++[+++[+++[3:}:}}}3++='>>>>>>>>>'>>>>>'>>>>>>'>>>>>>>>>>'>>>>>&@@@@@@@@>{[++[[ ",
-" 3<,='>>@>>>>>>>'>>>>>>>>'>>>>>>>>>>>>>>>'>>>>>>'>>'>>>&~++$}}:}}}:}3<%[.././^<3:}}}}}:3[[=>>'>>>>'>>>'>>>>>>>>'>>>>>>>'>>>>>>>>>>>@@@@@@@@@&&=[++[ ",
-" <3,4{!>&&>>>>>>>>>>>>>'>>>>'>>>>>'>>>>>>>>>'>>>>>>>>>>>>#[+<}}}}}}}}+[[[[[[[[[[+_}}}}}}3+[)>>>>'>>>>>>>>'>>>>>>>>>>>>>>>>'>>>>'>>>>@@@@@@@@@@&{[+[[[ ",
-" <_,|>>&&>>>'>>>>>>>'>>>>>>>>>>'>>>>>>'>>>>>>>>>>'>>>>>>>#++3}}:}}}}:+..........[3}:}}}:}++)>>>>>>>>>>>>>>>>'>>>>>>'>>>>>>>>'>>>>>>'@@@@@@@@@@@>;++[+ ",
-" 3<_4~>>&>>>>>>'>>'>>>>>>>'>>>>>>>>>>'>>>'>>>>>'>>>>'>>>>>=++3}}}}:}}}+[+[++[+[+++<}}}}}}}[+)>>>>>>'>>'>>>>>>>>'>>>>>>'>>>>>>>>>>>>>&@@@@@@@@@@@>#++[[[ ",
-" <_-4'>&&>'>>>>>>>>>>>>'>>>>>'>>>>'>>>>>>>>>'>>>>>>>>>>>>'=[+}}:}}}}:}44)[/////2441}}:}}}}+[+>>>'>>>>>>'>>'>>>>>>>>>>>>>>'>>>>>'>>>>&@@@@@@@@@@@&>^++[+ ",
-" <_4#>>&>>>>>'>>>>>>'>>>>>>'>>>'>>>>>>>>>>>>>>>>>>>>>'>>>>=+[}}}}}}}}}+////[////[[3}}}}:}}^[+>>>>>>>'>>>>>>>'>>>>'>>>>>'>>>'>>>>>>>>@@@@@@@@@@@@@>#[+[[+ ",
-" <<,%#>&>>>'>>>'>>'>>>>>>'>>>>>>>>>>>'>>'>>>>>>>'>>'>>>>>>>;++}}:}:}}}}+..........[3:}}}}}})++>>>>'>>>>>'>>>>>>'>>>>>'>>>>>>>>>>'>>>&@@@@@@@@@@@@@>#[+[[[ ",
-" <_-^=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>'>>>>>>'>>'>>>>>>>>>>>>>)[^}}}}}}:}:++[++[+++[+[3:}}:}}})[+#>>>>>>>>>>>'>>>>>>>>'>>>>>>>>>>>>>>>>>@@@@@@@@@@@@@>#[++[[ ",
-" __%2=>>>>>>>>>>>>'>>'>>>'>>>'>>'>>>>'>>>>>>>>>>>>>>>>'>>>>(+)}}}:}}}}}44)[////[244*}}}}:}}4++#'>>>>>>>>>>>>>>>>'>>>>'>>>'>>'>>>>>>>@@@@@@@@@@@@@@@=+[++[[ ",
-" 3_-;+(>>>>>>>>>>'>>>>>>'>>>'>>>>>>>>>>>'>>>>>>>'>>'>>>>>>>>++)}:}}}:}}}+//////////+<}}}}}}}4++='>>>>'>>>>>>'>>>>>>>>>>>'>>>>>>>>'>>>@@@@@@@@@@@@@@>(++[+[[ ",
-" <,4;++#>>'>>>'>>>>'>>>>>>>>>>'>>>>>>>>>>>'>>'>>>>>>>>>'>>>{++4}}}}}}}}:+..........[3:}}}:}}<++=>'>>>>'>>'>>>'>>>>>>>>>>>>>>>>'>>>>>@@@@@@@@@@@@@@@{+++++[[+ ",
-" <_,%$++=>>>>'>>>>>>>>'>>>>>>>>>>'>>>>>'>>>>>>>>>>'>>>'>>>>>#++|}}:}}}:}}+[+++[++++++3}}:}}}}3++=>>>>>>>>>>>>>>>'>>>'>>>>>>>'>>>>>>>&@@@@@@@@@@@@@@@=+[+2_+/[ ",
-" <,4-})[[{>>>>>>>>>>>>>>>'>>>>>>>>>>'>>>>>>>>>>'>>>'>>>>>>>&#++<}}}:}}}}}44^[/////244$}}}}:}}$+[)>'>>>>'>>>>>>>>>'>>>'>>>>>>>>>>>>>&@@@@@@@@@@@@@@&&++++-}++[ ",
-" _,%*}3+[)>>>>>>'>>>>>>>>>>'>>>>>>'>>>>>>>>'>>>>>>>>>>>>>>>>=[+3}}}}}}}}}+//////////[3}}}}}}}}+[(>>>'>>>>'>>'>>>>>>>>>>'>>'>>>'>>>>@@@@@@@@@@@@@@@&)+[+21};+[[ ",
-" <_-4}}})+[#>>'>>>>'>>>>>>>>>'>>'>>>>>>>>'>>>>>>>>>>>>>'>>>>>;++1}}}}:}:}}+..........[3:}}}}:}}2++>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@@@@@@@@@@@@@@@&#++++_}}3+[[ ",
-" _,4_}}}*++[#>>>>>>>>'>>'>>>>>>>>>>>>>'>>>>>>>'>>'>>>'>>>'>>>;[+}}}:}}}}}:+++[++++++[+3}:}}}}}:)[+{>>>>>>>>'>>>'>>>'>>>>>'>>>'>>>>@@@@@@@@@@@@@@@&@+[+[%}}}}(+[ ",
-" <<-%:}}}}<+++{>>>>>>>>>>>>>>>'>>>>>'>>>>>>>'>>>>>>'>>>>>>>>>>++^}:}}}}:}}}:}4/.....)}:}}}}}:}}}4+[#>>'>>'>>>>>>>'>>>>>'>>>>>>>>>>@@@@@@@@@@@@@@&>#++++^1}}:}-[[[ ",
-" <_--}}}}}}-+[+#>>>>'>>>>>>'>>>>'>>>>>>>>>'>>>>>>>>>>>>>>>>>>&++%}}}}}}}}}}}}|++[+++)}}}:}}}}}:}-++=>>>>>>>>>>'>>>>>>>>>>>>>'>>>&@@@@@@@@@@@@@@@>{+++[^1}1$:}1[[[ ",
-" _,%3:}}:}}}4+++='>>>'>>'>>>>>>>>>>>'>>'>>>>'>>>>>>>>>>'>>>>>#++4:}}:}}}:}}}}}:}}}:}}}}}}}}:}}}}3++=>>'>>>>'>>>>>'>>>>>>>'>>>>&&@@@@@@@@@@@@@@>>=++[+^:}1331}};[+[ ",
-" <,-%}}}}}}}}:,+++)&>>>>>>>>>>>>>>'>>>>>>>>>>>>'>>>>'>>>>>'>>>=++_}}}}}:}}}:}}}}}}}}}:}}:}}}}}}}}$++)>>>>'>>>>>>>>>>'>>'>>>>>>&@@@@@@@@@@@@@@>>&;+[++;1}*3$33:},+[[ ",
-" <,--}:}}:}}}}}3+[++=>>>>'>>>>>'>>>>>'>>>>>>>>>>>'>>>'>>>>>>''=++$}}:}}}}}}}}}}:}}:}}}}}}:}}:}:}}}+[+>>>>>>>>>>>>>>>>>>>>>>>>@@@@@@@@@@@@@@&>>=+++++4}:333333:}1[[[ ",
-" ,,%1}}}}}}:}}}}:;+++(#&>>>>>'>>>>>>>>>'>>>>>'>>>>>>>>>'>>>>>>^++}:}}}:}}:}:}:}}}}}}:}}}}}}}}}}}:})++{>>>>>'>>'>>>>>>'>>>>&@@@@@@@@@@@@@@&&>#(++[+2<}1$33333$*}};[[[ ",
-" <,-%}}:}}}}}}}}}}},2[+[2#&'>>>>>'>>>>>>>>>'>>>>>>>>>>>>>>>>>>&++(}}}}}}}}}}}}}}}}:}}}}:}}:}}}:}}}}4+[#>>'>>>>>>'>>'>>>>>>@@@@@@@@@@@@@&>>&#(+++++|}}$33333333$}}_+[+ ",
-" _,4,}}}}:}:}}:}:}}}142[+[+={>>>>>>'>>>>>'>>>>>>'>>'>>>>>'>>>>{+[%}}:}}}:}}}}}}}:}}}:}}}}}}}:}}}}:},+[='>>>>>'>>>>>>>>>&@@@@@@@@@@@@&>>>{=([[[++%*}1$3333333333:}:+[[ ",
-" ,,%$}}}}}}}}}}}}:}}}}1-+++[[)={>>>>>>'>>>>>>'>>>>>>>>'>>>>>>&#++-}}}:}}}}}:}:}}}}}}}}}}}:}}}}:}}}}$++)>>>'>>>>>>>>>>@@@@@@@@@&@>>>>>{#)[[++++;*}:3333333333333*}}%[[[ ",
-" <_-%}}:}}}}}:}}}}}}}}}}}:_2++[++^={>>>>>>>>>>>>>>'>>>>>>>>'>>>=[+*:}}}}:}}}}}}}}}}:}}:}}}}}}}}}}:}}}2[+'>>>>>>>>>&@@@@@@@@>&>>&>>>{=;[[[+++2|:}:$3333333333<3333:}_[+[ ",
-" _,4,}}}:}:}}}}:}}}}}}}}}}}}$%+++++[+;#{>>>>>>>'>>>'>>>>'>>>>>&^[2}}}}}}}}}:}}:}:}}}}}}}}:}}:}}}}}}:})+[{>>>>>&&@&@@&@&>'>>>>>>@#;2++[++++;_}}:$3$33333<3333$333$:}:+[[ ",
-" ,,%*}}}}}}}}}}}}:}:}}:}:}:}}}}<%+++[[[[+)=#{>>>>>>>>>'>>>>>>>@++%}}:}}:}}}}}}}}}}:}}:}}}}}}}}:}}}}}}-+[=>>>&&&&>>>>>>>>>>&#=;+[[+[++++%,:}}*$333333333333333333$*}})[[[ ",
-" <,-%}}}}}}}:}}:}}}}}}}}}}}}}}}}}}}*|)++++++[[+)==#@'>>>>>>>>>&~++_}}}:}}:}}:}}}:}}}}}}}}:}}:}}}}:}}}}$++^>>>&>&>>>>&&#==)++[+[++[+[^%3:}}}1333333333333333333333$3}},+[[ ",
-" _,4,}}}:}:}}}}}}:}}}:}}}}}}:}}}}:}}}}}$4;++++[++++++()==###&>>([+}}}}}}:}:}}}:}}}:}}:}}}}}}:}}:}}}:}:}([+{&!###==;^[+++++[+++++)|<:}}}}**3$333333333<333<333333333:}*[[[ ",
-" ,-%3}}}}}}}}}:}}}:}}}}:}:}}}}:}}}}}}}}:}}}1<|)^[+++[+[[+[+++[++++;4444_$$_$_3*}:}}}}}:}}:}}13_$3<3_|4|^++[++++[[[[[+[+[+[2)|,3}}}}}}:*33$3333333333333333333333333*}})[[ ",
-" _,-%}}:}}}}:}}}}}}}}}}}}}}}}}}}}:}}}}:}}}}}}}}}}}$34%)^[++[++++++++++++++++++[+++++[+++[+++[+++++++++++[+[++[++++++2))|_3:}}}}}}}:1$33$3333333333<333333333333333333}}-+[[ ",
-" ,,4-}}}}:}}}}}:}}}:}:}}}:}:}}:}}}}:}}}}}}:}}}}}}:}}}}}}:}33<44;)^^+[+[+[+[+[+++[+[+++[+++[+++[++[+[++[+++(^^%|433$}}}}}}:}:}}}:1$$3$33$3333$<33333333333333333<33333:}$+[[ ",
-" _,%3}}}}}}}}:}}}:}}}}}:}}}}}}}}:}}}}}}}:}}}}}}}}}11:}}}}}:}}}}}}}}}}}}:333<33<,444444444|444|_33<33<1:}}}}}}}}}}}}:}}}}}}::13333333333333333333333333333<333333333331}}2[[ ",
-" --;::}}:}:}}}}}}}}}:}}}}}:}}:}}}}}:}:}}}}}:}}:}}}}}1$$$$*::}}:}}}}}}:}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}:}:}}}:::3$$3333$33333333333333333333333333333333333333}}%+[[ ",
-" <,4-}}}}}}}}}}}:}}}}}}}}}}}}}}}:}}}}}}}}}}}}}}}}:}}}}}1*$33<$$*$1*:::}}:}}}}}}}}}}}}}}}}}}}}}}:}}}:}}}}}}}}:}:}:113*333333333333333333333333333333333333333<3333333333:}<[[[ ",
-" ,-4_}}}:}}:}:}}}}:}}}}:}}:}}:}}}:}}}}:}:}}:}}:}}}:}}:}}}}1$$3$33333333$$$3*1**1111:1}:}}}:}:}}}}:1:1:*11**$*333$333$333333333333333333333<3333333333<3333333333<333333:}}+[[ ",
-" ,-%:}}}}}}}}}}}}}}}:}}}}}}}}}}}}}}:}}}}}}}}}}}}}}}}}}}:}}}}:*3333333333$333333$$$_333333$3$$<$33333333333$33333333333333333333333333<333333333<333<33333333333333333333}};[[ ",
-" ,,4%}}}:}}:}}}:}}:}}}}}:}}:}}}:}}}}}}:}}:}}:}}:}}}}:}}}}}}:}}}:*$333333$3333333$$$$33333$<3$$$<33333333333333333333333333333333333<333333333333333$33333333333333<333333}}-[[[ ",
-" ,,4,}:}}}}}}:}}}}}}:}}}}}}}}:}}}:}}}}}}}}}}}}}}}:}}}}}}}:}}}:}}}}1$33333<$33333_$$$33333333$333333333333333333333333333333333333333333333333333<3333333333333333333333331}*+[[ ",
-" ,-%3}}}}}:}}}}}}:}}}}}:}}:}}}}}}}:}}:}}:}}:}}:}}}}:}}:}}}}}}}}}}:}}1*333$333333$$_333$<33$<3$<33333333333333333333<333333<333<33333333333<33333333333333<333333333333333*}}+[[ ",
-" --;}}}}:}}}:}}:}}}:}}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}:}}}}}:}*3333333333333333$$3$33$33333333<33<3333333333<$<333333333333333<3333<333333<333<$3333333333<333333:}%[[[ ",
-" ,,44}}}}}}}}}}}}}}}}:}}:}}:}}}}:}}:}}:}}:}}:}}:}:}}:}}}}:}}}:}}}}:}}}}:}}*33333333333333<3$<333<333333333333<3333333333$3333333<333333333333333333333333333<33333333333333}}_[[[ ",
-" ,-4_}:}}}}:}}:}}}:}}}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}}}}::$33333333333$$3$3333333<3333333$33333333333333333333333333333333333<333333333333333333333333331}:+[[ ",
-" ,-%$}}}:}}}}}}:}}}}}}}:}}:}}}}}}}:}}:}}:}}:}}:}}}}:}}}}}:}}}}:}}}}}}}}}:}}}}}1*33333333333333333333333333333333333333$<3333333333<33333333333333333333333333<33333<3333333*}}2[[ ",
-" _,4;}}}}}}:}}}}}}}}:}}}}}}}}:}}:}}}}}}}}}}}}}}}}:}}}}:}}}}}:}}}:}:}}}}:}}}}}}}}}:$333333333333333333333333333<3333<$33$33333333333333333333333333333333333333333333333333333}}%[[[ ",
-" ,-44}}}:}}}:}}}}:}}}}}:}}:}}}}}}}:}}:}}:}}:}}:}}}}:}}}}}:}}}}}}}}}}:}}}}}}:}:}:}}}:*3333333333333<3333333333333333$<33<333333<33333333<33333333333333333<3333333333333333333*},[[[ ",
-" ,-4_}}}}}}}}}:}}}}:}}}}}}}}:}}}}}}}}}:}}}}}}}}}}}}}}:}}}}}:}}:}}:}}}}}}}:}}}}}}}:}}}}*333333<3333333333333333333333333$3333333333333<$333333<3333333<333333333<333333333333$1}1+[[ ",
-" --%*:}}:}}}}}}}:}}}}}:}:}}}}:}:}}:}}}}}}}:}}:}:}}:}}}}}:}}}}}}}}}}}:}:}}}}}}}:}}}}:}}}:*3<3333333333333<333333333333333$<3333333333333333333333333333333333333333333<33333333}}2[[ ",
-" ,4%}}}}}}:}:}}}}}:}}}}}}:}}}}}}}}}}:}}}:}}}}}}}}}}}:}}}}}:}}:}}:}}}}}}}}}:}}}}}}}}}}}}}}}*33333333333<$3333333<3333333333333333<333333333333333333333333333333333333333333333:}%[[ ",
-" _-4|}}}:}}}}}}}:}}}:}}}}}}}}}}:}}:}}}:}}}}:}}}:}}:}}}}}:}}}}}}}}}:}}}:}:}}}}}:}}:}}}:}}:}}}:*3<33333333333<33333333<333333$<333333333333333333<33<3333333333333<333333<3333333:}_+[[ ",
-" ,|4_}}}}}:}}}:}}}}}}}:}:}}:}}}}}}}}}}}}}}}}}:}}}}}}:}}}}}:}}:}}}}}}:}}}}}:}}}}}}}}:}}}}}}:}}}}*333<3333333333333333333333333333333333333<3333333333333333333333333333333333333*}3[[[ ",
-" --%3}}:}}}:}}}}}:}}}}}}}}}}:}}:}}}:}}}:}}}}}}}}}:}}}}}:}}}}}}:}}}}}}}}:}}}}}:}}:}}}}}}:}}}}}}}}:*33333333333333333333333333<333333333~333333333333333<333<333333333333333333333}}+[[ ",
-" -4;}}}}}}}}}}}}}}}:}:}}}:}}}}}}}:}}}:}}}:}:}}}:}}}:}}}}}:}}}}}}:}:}}}}}}:}}}}}}}}:}}:}}}}}:}}}}}}}*333333333333333333333333333~33333333333~3333333<33333333333333<33333<3333333:}%[[ ",
-" ,-44}}:}:}}:}:}}:}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}}}}}}}:}}}}:}}}}}}}}:}}}}}}}:}}:}}}}}}}:}:}}}}:}}:}}:$33<333<33333333333<3333333333<33333333333333333333333333333333333333333333:}|[[[ ",
-" --4,}}}}}}}}}}}}}}:}}}:}}}}:}}}}:}}:}}}:}}}}}}}}}:}}:}}}:}}}}:}:}}}}}}:}:}}}}}}}}:}}}}}}}}}}}}}}}}}}}}:*$333333333<3333333333333333333333333<3333333333333<333333333333333333333*}3[[[ ",
-" ,4%3}}}}:}}}:}}:}}}:}}}}:}}}}}}}}}}}:}}}:}}}:}:}}}}}}}}}}}}}}}}}}:}}}}}}}}}:}}:}}}}}:}}}}:}}:}}:}}:}}}}}*3333<333333<33333333333333333<33333333333333<333333<3333333333333333333$}:+[[ ",
-" -4;:}}:}}}:}}}}}}}}}}:}}}}:}}:}:}}}}}}}}}}:}}}}}:}}}}:}}}:}}:}}}}}}:}:}}}:}}}}}}:}}}}}:}}}}}}}}}}}}}:}}}}}$$333333333333333333<33333333333333333333333333333333333<33333333<33333}}^[[ ",
-" ,-4%}}}}}}}}}:}}:}}}}}}}:}}}}}}}}:}}}:}}}:}}}}:}}}}:}}}:}}}}}}}:}}}}}}}:}}}}}}:}}}}}:}}}}:}}:}}:}:}}}:}}}}}}}*3333333333333333333<3333333333333<33333333333333333333333<3333333333:}%[[ ",
-" ,|4-}}}}}:}}}}}}}}:}:}}}}}:}}:}}}}}:}}}:}}}}}}}}:}}}}}}}}:}}}}}}}:}:}}}}}}}}:}}}:}}}}}:}}}}}}}}}}}}}}}}}:}}}}}:$$333333333<33333333333333333333333333333333333<3333333333333333333*}-[[[ ",
-" --4_}}:}}}}}}}}:}}}}}}}:}}}}}}}}}}}}}}}}}}:}}:}}}}}:}}:}}}}:}}:}}}}}}}}:}:}}}}}}}}}:}}}:}}}:}}:}}:}}}:}}}}:}}}}}*33333333333333333333333333333333333333333333333333333333333333333*}*+/[ ",
-" -4%3}}}}:}}:}}}}}:}}}:}}}:}}:}}:}}}}:}}}:}}}}}}:}}}}}}}}:}}}}}}}:}}}:}}}}}}:}}:}}:}}}}}}}}}}}}}}}}}:}}}}:}}}}:}}}}$$33<333333<333333333<333<33333<3333333<3333333333333<33333333333:}+[[ ",
-" -4%}}:}}}}}}}}:}}}:}}}}}}}}}}}}}}:}}}:}}}}}}:}}}}}:}}:}}}}:}}:}}}:}}}}}}:}}}}}}}}}}:}}}:}:}}}:}:}}}}}}}}}:}}}}}}}}}1$333333333333333<3333333333333333<3333333333<3333333333<3333333:}^[[ ",
-" -|44}}}}:}}:}}}}}}}}}}}}:}}:}}:}}}}}}}}}}}}:}}}:}}}}}}}}}}}}}}}}}}}}}}:}}}}:}}:}}}}}}}:}}}}}:}}}}}}}}:}}}}}}}:}}:}}}}::$33333333333333333333333~33333333333333<333333333333333333333*}4[[ ",
-" ,44|}}}}}}}}:}}:}}}:}:}}}}}}}}}}}:}:}}:}:}}}}}}}}}:}}:}}:}}:}}:}}}}:}}}}}}}}}}}}}:}}}}}}}}}}}}}}:}:}}}:}}:}}}}}}}}:}}}}:$~3333333<333333$<3333333~3333333333333333333333333333333333*}_[[[ ",
-" -4%_}:}}}:}}}}}}}:}}}}}:}}:}}:}}}}}}}}}}}}}}}:}}:}}}}}}}}}}}}}}}:}}}}:}}:}}}:}}:}}}:}:}}}:}}}:}}}}}}}}}}}}}:}}:}}:}}}}}}}:$33333333333333333<3333333<3333333333333<333333333<33333333}3[[[ ",
-" --;$}}:}}}}}}}:}}}}}:}}}}}}}}}:}}}}}}:}}:}:}}}}}}}}}:}}:}}:}}:}}}}:}}}}}}:}}}}}}}}}}}}}}}}}}}:}}}}}}:}}:}}}}}}}}}}}}}:}}}}}*333333333<333333333333333333333333333333<3333333333<33333:}[[[ ",
-" |4;}}}}}}}:}}}}}}}}}}}:}}:}}}}}}:}:}}}}}}}}}:}}}}}:}}}}}}}}}}}}:}}}}:}}}}}}:}}}}:}}}:}:}}:}:}}}:}:}}}}}}}}:}}}:}}}:}}}}:}}}:}$3333333333333333333333333~33<333333333333333333333333331}^[[ ",
-" ,-44}}}::}}}}}:}}:}:}}}}}}}}:}}}}}}}}}:}}}:}}}:}:}}}}}}:}}:}}:}}}}}}}}:}}:}}}}:}}}:}}}}}}}}}}}}}}}:}}:}}:}}}:}}}:}}}:}}}:}}}}}}$3~333333333333333333333333333<333333333<33333333333333::;[[ ",
-" -4%-}}:}}}:}}}}}}}}}}:}}:}}}}}:}:}}}:}}}:}}}}}}}}}}}}:}}}}}}}}}:}}:}}}}}}}}:}}}}}}}}:}}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}}:}:}}:*333333~33333<33<333333333333333333333333333<33333333$}-[[[ ",
-" --%,}}1:}}}}}:}}:}}}}}}}}:}}}}}}}:}}}}}}}}}:}}}}:}:}}}}}}:}}:}}}}}}:}}}}:}}}}}:}}:}}}}}:}:}}:}}}}}}:}}:}}:}}}:}}:}}:}}:}}}}}}}}}}}$33333333333333333<3333333333333<333333<33$333333333$}<+/[ ",
-" |4%3}:1}}:}}}}}}}}:}:}}}}}}:}:}}}}}}}}:}}}}}}:}}}}}}:}}:}}}}}}:}}}}}}:}}}}}}:}}}}}}:}}}}}}}}}}}:}}:}}}}}}}}:}}}}}}}}}}}}:}}}}}:}}}}:$333333333333333333<33333333333333333333333333<3333}1+[[ ",
-" -4%1}}*}}}}}:}}:}}}}}:}}}}}}}}}}}:}:}}}:}}:}}}}}}:}}}}}}}}}:}}}}:}}}}}}:}:}}}}}}:}}}:}}}}:}}:}}}}}}}}}}:}}}}}:}}}:}}:}}}}}:}}}}}}:}}}*<33333333333333333333333333333333333333<33333333$1:+/[ ",
-" |4;}}11}:}}}}}}}}:}}}}}:}:}}}}:}}}}}}}}}}}}}:}}:}}}:}}}}}:}}}}}}}}:}}}}}}}}}}}:}}}}}}}:}}}}}}}:}}}:}}:}}}}}:}}}}:}}}}}:}}}}}}:}:}}}}}}:$333333333333333333<33<3333333<$33333333333333331}^[[ ",
-" -444}}11}}}}:}}:}}}}}}}}}}}}:}}}}}}}:}}}}}:}}}}}}}}}}:}:}}}}}:}}:}}}}:}}}}:}:}}}}:}:}}}}:}}}:}}}:}}}}}}}:}}}}:}}}}}:}}}}}:}:}}}}}}}}:}}}}$333333333333333333333333333333<333333333333333$}%/[ ",
-" ,44-}}$:}}:}}}}}}:}}:}}:}}}}}}:}}:}}}}:}:}}}:}}}}}:}}}}}}:}}}}}}}}:}}}}:}}}}}}}}}}}}}}}}}}:}}}}}}}}:}}}}}}}}}}}:}}}}}:}}}}}}}:}}}:}}}}:}}}133333<33333333333333333333333333333333<3333333}-[[[ ",
-" |4%_}}3}}}}}}}:}}}}}}}}}:}}:}}}}}}}}}}}}}}}}}:}:}}}}}}:}}}}}:}}:}}}}:}}}}:}}}:}}}}}:}:}}}}}}}:}}:}}}:}}:}}:}}}}}}:}}}}}:}}}}}}}}}}:}}}}:}}}:$333333333333333333<333<333333333333333333333}<[[[ ",
-" -4%$}:3}:}}}:}}}:}}:}}}}}}}}}:}}:}}:}:}}}:}}}}}}}}}}}}}}:}}}}}}}}}}}}}}}}}}:}}}:}}}}}}:}}}:}}}}}}}}}}}}}}}}}:}}}}}}:}}}}}:}}}:}:}}}}:}}}}:}}}$$3333<33333~33333333333333<3333333333<33333::[[[ ",
-" 44;1}:3}}:}}}}}}}}}}}:}}}}:}}}}}}}}}}}}}}}:}}}}}:}:}}:}}}:}}:}}}:}}:}:}}:}}}}}}}}:}}}}}:}}}:}}:}}}:}}:}}:}}}:}}:}}}}}}}}}}:}}}}}:}}}}}}}}}}}}}:3333333333333333333333333333<33333333333331}+/[ ",
-" 44;}}**}}}}}}}:}}:}}}}}:}}}}:}}:}}:}}}:}}}}}:}:}}}}}}}}}}}}}}}:}}}}}}}}}}}:}}:}}}}}}:}}}}}}}}}}}:}}}}}}}}}}}}}}}}:}}:}:}}}}}:}}}}}}:}}:}}:}}:}}:*33~33333333~3333333333333333333333333333*}^[[ ",
-" ,444}}31}}:}:}}}}}}}}:}}}}:}}}}}}}}}:}}}}}}}}}}}}}}:}}:}}}}}:}}}}:}}}:}}:}}}}}}}:}}:}}}}}}:}}}:}}}}:}}:}}:}}:}}:}}}}}}}}:}}}}}}}}:}}}}}}}}}}}}}}}}$3333333<33333333333333333333<3333333333*})[/ ",
-" -444}}31}}}}}}:}}:}}}}}:}}}}:}}:}}}}}}:}}:}:}}}}:}}}}}}}:}:}}}}}}}}:}}}}}}:}}:}}}}}}}}:}:}}}:}}}}}}}}}}}}}}}}}}}}:}}}}}}}}}:}}:}}}}:}}}:}}:}}}}}}}}:33<333333333~33333333<33333333333333333}4[[ ",
-" |4%,}:31}}}:}}}}}}}}:}}}}}}}}}}}:}}}}}}}}}}}}:}}}}}}}:}}}}}}}:}}:}}}}}}:}}}}}}}}:}}}}}}}}}}}}}:}}:}}:}}:}}:}}:}}}}}:}:}}:}}}}}}:}}}}:}}}}}}:}:}:}}}:}$333333<33333<33333333333333333<333333}_[[[ ",
-" |4%<}13:}:}}}:}}:}}}}}:}}:}}}:}}}}:}:}}:}}}}}}}:}}:}}}}:}}}:}}}}}}}}}:}}}:}}:}}}}}:}}:}}}:}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}:}}}}}:}}}}}:}}}}}}}}}}}}}}$33333333333333<$3333333333<333333333:<[[[ ",
-" 44%3}$3}}}}}}}}}}}}:}}}}}}:}}}}}}}}}}}}}}:}}:}}}}}}}:}}}}}}}}:}}:}:}}}}}}}}}}}:}}}}}}}:}}}:}}}:}}:}}:}}:}}:}}:}}}}}}}:}}:}}}}:}}}}}}}}}}}}}}}}}:}}:}}}}*333333333333333333333333333333<3333:1[/[ ",
-" 44):}33:}}}:}}:}}:}}}:}}}}}}}}}:}}}:}}}}}}}}}}:}}}}}}}:}}:}}}}}}}}}}}}}:}}:}}}}}:}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}:}}:}}}}}}}:}}}:}}:}}:}}:}:}:}}}}}}}:}}}133333<33333333333<3333333333333333*}[[[ ",
-" 44;}}33}}}}}}}}}}}}}}}}:}}:}:}}}:}}}}:}}:}}:}}}}:}}:}}}}}}}}}}}:}}:}:}}}}}}}}:}}}}}}}}}}:}}}}}:}}:}}:}}:}}:}}:}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}:333333333333333333333333333333333*}^[/ ",
-" 4%4}:3$}}:}}:}}:}}}:}}}}}}}}}}}}}}:}}}}}}}}}}:}}}}}}:}}:}}:}:}}}}}}}}}:}}:}}}}}}:}}}}:}}}}}}:}}}}}}}}}}}}}}}}}}:}}:}}}}}}}}:}}:}:}}:}}:}}}}:}}:}}}}}:}}:}}}$333333~33<333333<3333333333<333$}^[[ ",
-" |444}:3$}}}:}}}}}:}}}}}:}}:}}:}}:}}}}:}}:}}:}}}}}:}}}}}}}}}}}}}}:}}}:}}}}}}}:}:}}}}}:}}:}}:}}}}:}}}:}}:}}}:}}:}}}}}}}}:}}:}}}}}}}}}}}}}}}:}}}}}}}}:}}}}}}}}}}$3333333333333333333<3333333333$}4[[ ",
-" |4%,}13*}}}}}:}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}:}}:}}:}}}}:}}}:}}}:}}}}}}}}}}}:}}}}}}}}}}}}}}:}}}}}}:}}}}}}}:}}:}}}}:}}}:}}}:}}}:}}}}}}:}}:}}}}}:}}}:}}}}}*333333333333333333333333333333}4[[ ",
-" |4%,}$3$:}}}}}}}}}}}}}:}}:}}:}}:}:}}:}}:}}:}:}}}}}}}}}}}}}}:}}}}}}}}}}}}:}}:}}}}:}}}}}}:}}:}}:}}}}}}:}}}}}:}}:}}}}}}:}}}}}}}}:}}}}}}}:}}:}}}}}}}:}}}}:}}}}}:}}}*33333333333<3333$<33333333333}</[[ ",
-" 44;$}331}}:}:}}:}:}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}}:}}:}}:}}}}}}}}:}}}:}}}}}}}}:}}}}}:}}}}}}}}}}}}:}}}}}}:}}}}}}}}:}}}}}}}:}}}}}}:}}:}}}}}}}:}}}}}}}:}}}}:}}}}}:}}:3333<33333333333333333333333:_[[[ ",
-" 44;$}331}}}}}}}}}}}}}}:}}:}}:}}}:}}:}}:}}:}}:}:}}}}}}}}}:}}:}:}}}:}}}}}:}}:}}}:}}}}}:}}:}}}}:}}}}:}}:}}}}:}}:}}}}}:}}:}}}}:}:}}}}}}}}}}:}}}}:}}:}}}}}}}}}}:}}}}}::3333333333333333<3333333333::[[[ ",
-" 4%;}:331}}}}}:}}}}:}}}}}}}}}}}:}}}}}}}}}}}}}}}}}:}}:}}}}}}}}}}}}}}}:}}}}}}}}}}}}:}}}}:}}}:}}}}:}}}}}}}}}}}}}}}}}:}}}}}}}:}}}}}}:}}}:}}}}}}:}}}}}}:}}:}}:}}}}:}}}}}:$33<3333333333333333<333331:[[[ ",
-" 44)}:33*:}:}}}}:}}}}}}}}:}}:}}}}:}}:}}:}}:}}}:}}}}}}:}}}}}:}}}:}}}}}:}}:}}:}}}}}}:}}}}}}}}:}}}}}}:}}:}}:}}:}}:}}}}}}:}}}}}}}:}}}:}}}:}}:}}}}}:}}}}}}}}}}}}}}}}}:}}}}$333333<333333333333333331:2[/ ",
-" 4%4}1331}}}}:}}}}:}}:}}}}}}}}}}}}}}}}}}}}}}:}}}:}}}}}}:}:}}}:}}}:}}}}}}}}}}:}:}}}}}}:}:}}}}}}:}}:}}}}}}}}}}}}}}}}:}}}}:}}}:}}}}}}}}}}}}}}}:}}}}:}}:}}:}}:}}:}}}}}:}}}33333333333333<333333333*}([[ ",
-" |4%4}*331}:}}}}}}}}}}}}}:}}:}}:}}}}:}}:}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}:}:}}}}}}}}:}}}}}}}:}}}}}}}:}}}:}}:}}:}}:}}}}}}}}:}}}}}:}}}:}}:}}:}}}}}}}}}}}}}}}}}}}}}}:}}}}:}}$3333333333333333<33333$}^[[ ",
-" |4%-}*331}}}:}}:}:}}:}}}}}}}}}}}:}}}}}}}}}}}}:}}}}}:}:}}}}:}}}:}:}}:}:}}}}}}}}}:}}}}}}:}}}}}}:}}}}}}:}}}}}}}}}}}}:}:}}}}}}}:}}}}:}}}}}}}}}:}}:}}:}}:}}:}}:}}:}}}}}:}}}:}$3333<$<33333<333333333}%[[ ",
-" |%%,}*331}}}}}}}}}}}}}}:}}:}}:}}}}:}}:}}:}:}}}}}}}}}}}}:}}}:}}}}}}}}}}}}}:}:}:}}}}}:}}}:}}:}}}:}}}}}}}:}}:}}:}}}}}}}}:}}}}}}:}}}}}}}:}}:}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}}$333$3333333$333333333}4[/ ",
-" |%%,}$33*}:}}:}}}}:}}:}}}}}}}}}}}}}}}}}}}}}}:}}:}:}}}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}}}}}}:}:}}}}}}:}}}}}}}}:}}:}}:}}:}}:}}:}}:}}}}}}:}}}}}}}$$$333333<$3333<33333},[/[ ",
-" 44;$:3331}}}}}}:}}}}}}}:}}:}}:}:}}:}}:}}}:}}}}}}}}:}:}}:}}:}:}:}}}}:}:}:}}}}}}}}}:}}:}}:}}}}:}}}}:}}:}}:}}:}}}}}:}:}:}}}}}}}}:}}}}}:}}:}}}}}}}}}}}}}}}}}}}}}}}:}}}}:}:}:}}}$3333333333333333333}<[[[ ",
-" 4;;$}3331}}:}}}}}:}}}}}}}}}}}}}}}}}:}}}:}}}:}}:}}}}}}}}}}}}}}}}}}}}}}}}}}:}:}}:}}}}}}}:}}:}}}}}:}}}}}}}}}}}}:}}}}}}}}}}}}:}:}}}}:}}}}}}}:}}:}}:}}:}}:}}:}}:}}}}}:}}}}}}}}:}}$$33333333333333333:<[[[ ",
-" 44)*1333*}}}}}:}}}}:}}}}}:}}:}}:}}}}}}}}}}}}}}}}}}}}:}}:}}}}}}:}:}}}}:}}}}}}}}}:}}}:}}}}}}}:}}}}}}:}}:}}:}}}}:}}}:}}}}:}}}}}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}:}}}}}}*<3333<33333333333:1[/[ ",
-" 4%;}:333*}:}}}}}:}}}}:}:}}}}}}}}}:}}:}}}}:}}:}}:}}:}}}}}}:}:}}}}}}:}}}:}}}}:}}}}}:}}}}}:}}}}}}:}}}}}}}}}}}:}}}}:}}}:}}}}}:}}}}}:}}:}}}}:}}:}}:}}:}}:}}:}}:}}}}}:}}:}:}}}}}}:}}$33333333333<3333::+[/ ",
-" %%)}:3331}}}}:}}}}}}}}}}}}}:}}:}}}}}}}:}}}}}}}}}}}}}}}:}}}}}}}}:}}}}}}}}:}}}}}}}}}}}:}}}}:}}}}}:}:}}:}}:}}}}}}}}}}}}}}:}}}}:}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}:}}}}}}}$$33333333333333:}[[[ ",
-" 4%;}1333*}}:}}}:}}:}}}}}:}}}}}}}:}}:}}}}:}}:}}:}}:}}:}}}:}}}:}}}}:}}:}}}}}:}:}:}}:}}}}}}}}}:}}}}}}}}}}}}}}:}}:}}}:}}:}}}}}}}}:}}:}}}}}:}}:}}}:}}:}}:}}:}}:}}}}:}}:}}}}}}}}:}}}}}*$$<$<3<3333333:}+[[ ",
-" %%4}*3331}}}}}}}}}}:}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}:}}}}}}}}}}}}}}}}}}:}:}}}}:}}}}:}}:}}:}}}}}}:}}}}}}}}:}:}}}}}}}}}:}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}:}}:}}}:}}:}}}$$$3$$$33333331}^[/ ",
-" %%4}1333*}}}:}}}:}}}}}}:}}:}}}}:}}:}}:}:}}:}}:}}:}}}}:}}}}}:}}:}}}}}}:}:}}}}}}:}:}:}}}}}}:}}}}:}}}}}}}}}}}}:}}}}}:}}}:}}}}}:}}:}}:}}}}:}}}}}}:}}:}}:}}:}}:}}:}}}}:}}}}}}}}}}}}}}:}$333333<33333*:^[[ ",
-" |4%4}*3333:}}}:}}}}}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}}}:}}:}}}}}}:}:}}}}}}}:}}}}}}}}}}:}}}:}}:}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}:}}:}}}}}}}}}}}}}}}}}}:}}}}}:}}:}}:}}:}}}:}:3333333333331}^[/ ",
-" 4%%-}$333*}}}}}}}}}}}}}:}}}}}}}:}}:}}:}}}:}}:}}:}}}}}:}}:}:}}:}}}}}}}}}}}}}}}}}}}}}}}}:}}}:}}}}}}:}}}}}}}}}}:}:}:}:}:}}:}:}}:}}}:}}:}}}}}}}}}}:}}:}}:}}:}}:}}}}}}}:}}}}}}}}}}}}}}}}}}3333<$33333*}4[[ ",
-" |%%,}$333*:}}:}:}:}}:}}}}:}}:}}}}}}}}}:}}}}}}}}}}}:}}}}}}}}}}}}}:}}:}:}:}}:}}}:}:}}:}}}:}}}}:}}}}}}}}:}}:}}}}}}}}}}}}}}}}}}}}:}}}}}}}:}}:}}:}}}}}}}}}}}}}}}}}:}:}}}}}}}}:}:}}:}}}}}:}:333$<3333$*:4[/ ",
-" 4%;,}$333$}}}}}}}}}}}}:}}}}}}}:}}:}}}}}}:}}:}}:}}}}}:}}:}}}:}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}:}}:}}}}}}}}:}}}}}}}}}}}:}}:}}}}}}:}}}}}}}}}}}}:}}:}}:}}:}}:}}}}}}}}}:}:}}}}}}}}}:}:}}}::$$33333331}4[/ ",
-" |%%,}$3333:}}}}}:}}:}}}}}}}:}}}}}}:}}}}}}}}}}}}}}:}}}}}}:}}}}:}}}:}}}}}}:}}}}}}:}}}:}}:}}}}}}}}}}}}:}}:}}}}}:}}:}:}:}}}}}}}}}:}}}}}:}}:}}:}}}}}}}}}}}}}}}}}}:}}}}}}}}}}:}}}:}}}}}}}}}}}:333333331:4[[ ",
-" 4;;<}$3333}}:}:}}}}}}:}}:}}}}:}}}}}}:}:}}:}}:}}:}}}:}}}}}}}}}}}:}}}:}:}}}}:}}:}}}}}}}}}}}:}}:}}:}}}}}}}}}:}}}}}}}}}}}:}}:}}:}}}}:}}}}}}}}}}:}}:}}:}}:}}:}}:}}}:}:}:}}}}}}:}}}}:}}:}}}}}}*$333333:}-[/ ",
-" 4%;$}$3333:}}}}}}}:}}}}}}}:}}}:}}}}}}}}}}}}}}}}}}}}}}:}}}:}}:}}}}}}}}}}}}}}}}}}:}}:}}:}}}}}}}}}:}}:}}:}}}}}:}}:}}}:}}}}}}}}}}:}}}:}}}:}}:}}}}}}}}}}}}}}}}}}:}}}}}}}}:}}}}}}}}}}}}}}}:}}}}*$<3333*}_[[[ ",
-" %%)3}33333:}}}}}:}}}:}}}}}}}}}}}:}:}}:}}:}}:}}}}:}}}}}}:}}}}}}:}}:}}}:}:}}}:}}}}}}}}}}}:}}:}}}}}}}}}}}}:}}}}}}}}}}}}:}:}}:}}}}}}}}}:}}}}}}:}}:}}:}}:}}:}}}}}}:}}}}}}}}:}}:}}:}}:}}:}}:}}}}133333:}<[[[ ",
-" 4;;$:333331:}:}}}}}}}:}:}}:}}}}}}}}}}}}}}}}}}:}}}:}}:}}}}}}:}}}}}}:}}}}}:}}}:}}:}}}:}}}}}}}}:}}}:}}:}}}}}}:}}}:}:}}}}}}}}}}}}}}:}}}}}}:}}}}}}}}}}}}}}}}}}:}}}}:}}:}}}}}}}}}}}}}}}}}}}}}}}}}$33331}<[/[ ",
-" 4;)$}3$333*}}}}}}}:}}}}}}}}}:}:}}:}}:}}:}}:}}}}}}}}}}}:}}:}}}:}}}}}}}:}}}}}}}}}}}:}}}}}:}}}:}}}}}}}}}:}:}}}}:}}}}}}}}:}}}:}}:}}}}:}}}}}}:}}:}}:}}:}}:}}:}}}}}}}}}}}:}}:}}:}}:}}:}}:}}}:}}}}}*333:}_[[[ ",
-" %%;$:333$3$}}:}:}}}}}}:}}:}}}}}}}}}}}}}}}}}}}}:}}}}:}}}}}}}}}}}:}}:}}}}}}:}}:}:}}}}:}}}:}}}}:}:}}:}}}}}}}}}}}}}}}}:}}}:}}}}}}:}}}}:}}:}}}}}}}}}}}}}}}}}}}}:}:}}:}}}:}}}}}}}}}:}}}}}:}}}}:}}}}:$*}}<[[/ ",
-" %%^}:$3333*}}}}}}}}}}}}}}}}:}}}:}}:}}:}}:}}:}}}}:}}}}:}}}}}:}}}}}}}}:}:}}}}}}}}}}}}}}}}}}}:}}}}}}}}:}}:}:}:}}:}:}}}}}}}}}:}}}}}:}}}}}}}:}}:}}:}}:}}}:}}}:}}}}}}}}}}}}:}}}:}}}}}:}}}}}}}}}}:}}:}}}}3[[[ ",
-" 4%)}:$<3333}:}}}:}:}}:}}:}}}:}}}}}}}}}}}}}}}}}}}}}:}}}:}:}}}:}}}}}}}}}}}}}}:}}}}:}}:}}:}}}}}}}}}:}}}}}}}}}}}}}}}}:}:}}:}}}}}}}}}}}}}:}}}}}}}}}}}}:}}}:}}}}}}:}:}}}}}}}:}}}}}:}}}}:}}}:}:}}}}}}}}}}:[/[ ",
-" %;^}}333333}}}:}}}}}}}}}}}}}}}:}}:}}:}}:}}:}}:}}}}}}}}}}}}}}}:}:}:}}}}:}:}}}}:}}}}}}}}}}}:}}:}:}}}}}}}}}}}:}}}}:}}}}}}}}:}}:}:}}:}}}}}}:}}:}}}}:}}}}}}}:}}:}}}}}:}}:}}}}}:}}}}}}}}}:}}}}}:}:}}:}}}:+[[ ",
-" %%)}}3333331}}}}}}:}}:}}}:}}}}}}}}}}}}}}}}}}}}}:}}}:}}}}}:}}}}}}}}}}:}}}}:}}}}:}}:}}}:}}}}}}}}}}}:}}:}:}}}}:}}}}}}}}:}}}}}}}}}}}}:}}:}}}}}}}:}}}}}}:}}}}}}}}}}}}}}}:}}}}}}}}:}:}}}}}}}}}}}}}}}}:}}:[[/ ",
-" %%)}}$$33331}}}:}}}}}}}:}}}:}:}}:}}:}}:}}:}}:}}}}:}}}:}:}}}:}}}}}:}}}}}}}}}:}}}}}}}:}}}}:}}:}}}:}}}}}}}}:}}}}:}}:}}}}}:}}:}}}:}}}}}}}}:}}}:}}}}}:}}}}}}}:}}:}:}:}}}}}:}}}:}}}}}}:}}:}:}}}}}:}}}}}}:[[[ ",
-" ;%^}:333333*:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}:}}}}:}}}}}}}:}}}}}}}}:}}}}:}}}}}}}}}}}}}}}:}}}}}:}}}}}:}}:}}}}}}:}}}}:}}:}}}}:}}}}}:}}}}}:}:}}}}}}}}}}}:}}}:}}}}}}:}}}}}}}}}:}:}}}}}}:}}:[[/ ",
-" %;^}}$33333*}}:}}:}}}}:}}:}}}}:}:}:}}:}}:}}}}}}}:}}:}}}}}}}}}}}}:}:}}}}}:}:}}}:}}}}}}}}:}}}:}:}}:}:}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}}}:}}}}}:}}}}}}:}:}}}}}}}}}}}}}:}}}}}}:}:}}}}}}}}:}}:}}}}}:[[[ ",
-" %;)}}*333$33}}}}}}}:}}}}}}}:}}}}}}}}}}}}}}:}}:}}}}}}}:}}}}:}:}}}}}}:}}:}}}}}}}}}:}}:}}}}:}}}}}}}}}}}}:}:}}:}}:}}:}}:}}}}}}}}:}}}:}}}}}}}}}}}}:}}}}}:}}}}}}:}:}}:}}:}}}}}}}:}:}}}}}:}}}}}}}}}}}}:}}:[[/ ",
-" %;)}}$33<$33:}}:}}}}}:}}:}}}}}}}}}}:}}:}}}}}}}}:}}}}}}}:}}}}}}:}}}}}}}}}:}}:}}}}}}}}}}:}}}}:}}}:}}}:}}}}}}}}}}}:}}}}}:}}:}:}}}:}}}:}}:}:}}:}}}}}:}}}}}}}}}}}}}}}}:}}}:}}:}}}}}}}}}}:}:}}}:}}}:}}}}:[[[ ",
-" ;;^}:3$3$33$*}}}:}}}}}}}}}}}:}:}:}}}}}}}}:}}:}}}}:}}:}}}:}}}}}}}:}}}:}}}}}}}}}:}}:}}}}}:}}}}}}}}}}}}}}}}}:}:}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}:}:}:}}}}}:}}}}}}}}}}}}}}:}}:}}}}}}}}}}:}}}}}}}:[[/ ",
-" ;%^}}133333$*}}}}}:}:}}:}}:}}}}}}}:}}:}}}}}}}}:}}}}}}}}}}:}:}}}}}}:}}}:}}:}}}:}}}}}:}}}}}:}}:}}:}}:}}:}:}}}}}:}}}}}}}:}}:}}:}}:}}:}}}}:}}}:}}}}:}}}}}}}}}:}}}}}:}}:}}:}}}:}}}}}}:}}}}}:}}}}}}}}:}}:[[[ ",
-" ;;)}}*3333333}}}}}}}}}}}}}}}}}}:}}}}}}}}:}}:}}}}}}}:}}:}}}}}}}:}}}}}}}}}}}}}}}}:}}}:}}}}}:}}}}}}}}}}}}}}}}}}}}}:}}:}}}}}}}}}}}}}}}}:}}}:}}}}}}}}}:}}}}}}}}}:}}}}}}}}}}}:}}}}}:}}}}}:}}}:}}:}:}}}}}:[[/ ",
-" %)^}}13333333:}:}:}}}:}}:}}}:}}}}:}}:}}}}}}}}:}}:}}}}}}}}}}}:}}}:}}:}}:}}:}}}:}}}}}}}}:}}}}}:}}}:}}:}}}}:}}:}}}}}}}}:}}:}}:}}}:}}}}}}}}}}:}}:}}:}}}:}:}}}:}}}}:}}}:}}}}}}:}}}}}}:}}}}}}}:}}}}}:}}}:+[/ ",
-" ;;^}:1333333$:}}}}:}}}}}}:}}}}}}}}}}}}}:}}:}}}}}}}:}}:}:}:}}}}}}}}}}}}}}}}:}}}}}:}}}}}:}}}}}}:}}}}}}}:}}}}}}}:}}:}}}}}}}}}}:}}}}:}}:}}:}}}}}}}}}:}}}}}:}}}}}}}}:}}}:}}:}}}:}}:}}}}}}:}}}}}}:}}}:}}*[/[ ",
-" ;)^1}:3333333*}}}}}}:}}}}}}:}}:}:}}:}}}}}}}}:}}}}}}}}}}}}}}}:}}}:}}:}:}:}}}}}}:}}}}:}}}}:}}}}}}:}}}:}}}:}}}:}}}}}}:}}:}}:}}}}}:}}}}}}}}}:}}:}}}}}}}}}}}}}}:}}}:}}}}}}}}}}}}}}}}:}:}}}}:}}}}}}}}}}}<+/[ ",
-" ;;^3}:<3333333:}}}}}}}:}}}}}}}}}}}}}}}:}}:}}}}:}}:}}:}}}}}:}}}:}}}}}}}}}}}:}}}}}:}}}}}}}}}:}}}}}:}}}}}}}:}}}}}}:}}}}}}}}}}}:}}}}}:}}}:}}}}}}}:}}}:}:}}}:}}}:}}}}:}}}:}}:}}}}:}}}}}}}:}}}:}}:}}}:}}_[[/ ",
-" ;))$}}33<3333$}:}:}}}}}}:}:}}:}}}:}}:}}}}}}:}}}}}}}}}}:}}}}}}}}}:}}}}}:}}}}}:}}}}}}:}}:}}}}}:}}}}}}}:}}}}}:}}:}}}}:}}}:}}:}}}}}}}}}:}}}}:}}}}}}}}}}}}:}}}}}}}}}}}}:}}}}}:}}}}}}}}}}}}}}}}}}}}:}}}}<[[/ ",
-" );^$:}333333$$1}}}:}}:}}}}}}}}:}}}}}}}}}:}}}}}}}:}}:}}}}:}}}:}}}}}}:}}}}:}}}}}}:}}}}}}}}:}}}}:}}}:}}}:}}}}}}}}:}}}}:}}}}}}}}:}}:}}}}}:}}}:}}:}:}}:}}}}}}}:}}:}:}}}}}}:}}}}:}}:}:}:}}:}}:}}:}}}}:}}-[/[ ",
-" ;)^,}}333333333}}}}}}}}:}}}:}}}}:}}}}:}}}}:}}:}}}}}}}}}}}}:}}}:}}:}}}:}}}}}}:}}}}:}}:}}}}}:}}}}}}}}}}}}}:}}:}}}}}:}}}}}}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}:4[/ ",
-" %^^-:}$3333333$:}:}}:}}}:}}}}}}}}}:}}}}}}}}}}}}:}}:}:}:}}}}}}}}}}}}}}}}}}:}}}:}}}}}}}:}:}}}}}:}}:}:}}:}}}}}}}}}}}}}}:}:}}}}}}:}}}}:}}}:}}:}}:}}}}}:}}}}:}}}:}}}}}}:}}:}}}}}:}}}}}:}}:}}:}}}:}}}:}}4[[ ",
-" ;)^4}}*333333331}}}}}}}}}}}}}:}}}}}}:}}:}:}}}}}}}}}}}}}}:}}:}}:}}}:}}:}}}}}}:}}}}:}}}}}}}}}:}}}}}}}}}}}:}}:}}:}}}:}}}}}}:}}:}}}}:}}}:}}}}}}}}}:}}}}}}}}}}:}}}:}}}}}}}}}}}}}}}:}}}}}}}:}}}:}}}:}}}:(// ",
-" ;^^%}}*33333$<3*}:}}:}}}:}:}}}:}}:}}}}}}}}:}:}}:}}:}}}}}}}}}}}}}:}}}}}}:}}}}}}:}}}:}}}}:}}}}}:}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}:}}}:}:}}:}}:}}:}:}}}}}}}:}}}:}}:}:}:}:}}}}}:}}}}}}}}}}}}}}}:^[[ ",
-" ^^^}}:3333<3333}}}}}}:}}}}}}}}}}}}:}}:}}}}}}}}}}}}}:}}}:}}:}}}}}}:}}}}}}:}}}}}}}}}}:}}}}:}}}}}}:}}}:}}}:}:}}:}}:}}:}:}}:}}:}}}}}:}}}}}}}}}}}}}}}}}}}}}}}:}}:}}}}}}}}}}}}}}}}:}}}}:}}}:}}}:}}}}:}:+// ",
-" ^^^}}:3333$333$1}}:}}}}}}:}}:}}:}}}}}}}}}}}:}}}:}}}}:}}}}}}}}:}}}}:}}:}}}}:}}:}}:}}}}}}}}}}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}:}}}}}}}:}:}}}}}:}:}}:}}}}}}}}}}}:}}:}:}}}}}}}}}}}}}}:}}}:}}}}:}}}}*[[[ ",
-" )^2*}:33333$3333}}}}}}}:}}}}}}}}}:}}:}}}:}}}}:}}:}}}}}:}}:}:}}}:}}}}}}}}:}}}}}}}}}}:}:}}}:}}}}}:}}}}}}:}}:}}:}}:}}}:}}:}}}}}}}}:}}:}}}}}}:}}}}}}}}}}:}}}:}}}:}}}}}}}:}:}:}}:}:}:}}}}}}}}:}}}}}}}_[// ",
-" )^^<}}$333333333:}:}:}}}}}}:}}:}}}}}}:}}}}}}}}}}}}:}}}}}}}}}}}}}}}}:}}}}}}:}}:}}:}}}}}:}}}}}}}}}:}:}}}}}}}}}}}}}:}}}}}}}}:}}:}}}}}}:}}}}}}}:}}}:}}}}:}}}:}}}}}}:}}}}}}}}}:}}}}}}}}:}}:}}}}}}:}:}-[/[ ",
-" )2^-}}$333333333*}}}}}}}}:}}}}}}:}}}}}}:}}:}:}}}}}}:}}:}}}}}:}}:}}}}}:}}}}}}}}}}}}}}:}}}:}:}:}}}}}}}:}}:}}:}}:}}}}}:}}:}}}}}}}}:}}}}}:}}:}}}}:}}}:}}}}}}}}:}}}}}}:}}}}}}}}}}}}}}}}}}}}}:}}:}}}}:%[/ ",
-" ;2^%:}*333333333$:}}:}:}}}}}}:}}}}:}}}}}}}}}}}}:}}}}}}}}}:}}}}}}}}:}}}}:}}:}}:}}:}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}}:}}}}}}}}:}}:}}}}:}}}:}}}}:}}}}}}}}}:}:}}}}:}}:}}}}:}:}}}:}}:}:}}:}}:}}}}}}}}}}:^// ",
-" )22^}}:33333333331}}}}}}}}}:}}}}}}}}:}:}}:}}}:}}}}}:}}:}}}}:}:}}:}}}}:}}}}}}}}}}}}:}}}}}}:}}:}:}}}}}:}:}}:}}}:}}}}:}}:}}}}}}}}}}}}}}}}}}:}}}}:}}}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}:}}}}}:}}1[[/ ",
-" ^22:}}3333333333$}:}}:}:}}}}}:}}:}}}}}}}}:}}}}}:}:}}}}:}}}}}}}}}}}}}}}}:}}:}}:}}}}:}}:}}}}}}}}}}:}}}}}}}}:}}}}}}}}}}}}}:}}:}}:}}:}}}:}}}}}}}}}:}:}}}}:}}:}}}}}}}}}}:}}:}}}}:}}}:}}:}}}:}:}}}}}3[// ",
-" ^223}}33333333333:}}}}}}}}}:}}}}}}:}}}:}}}}}}}}}}}}}}}}}:}}}:}}}}:}}}:}}}}}}}}}:}}}}}}}}}:}}}}:}}}}}:}}}}}}:}}:}}:}}:}}}}}}}}}}}}}:}}}}:}}:}}}}}}}}:}}}}}}:}:}}}:}}}}}}}:}}}:}}}}}}}}}}}}}:}}:,[[/ ",
-" (22-}:*3<33333333*:}}}:}:}}}}}}:}}}:}}}}}}:}:}}}}}}:}}}}}:}}}}:}}}:}}}}:}}}:}}}}}}}:}}:}}}:}}}}}}:}}}:}}:}}}}}:}}}}}}}}:}}:}}:}:}}}}}}}}}}}:}:}}:}}}}}:}}}}}}}:}}}}:}:}}}}}}}}}:}}}:}}}:}}}}}})[/ ",
-" ^22;}}13333333333$:}:}}}}}}}:}}}}}}}}}}:}}}}}}:}:}}}:}}}}}}:}}}}}}}}}}}}}:}}}:}}:}}}}}}}}}}}:}}:}}}}}}}}}}}:}}}}}:}}:}}}}}}}}}}}}}}:}}:}:}}}}}}}}}}:}}}}:}}}:}}}}}}}}}}}}}:}}:}}}:}}}}}}}:}}::2// ",
-" 222}}}333<3333333$}}}}:}:}}}}}:}}}}:}}}}}:}}}}}}}}}}}}:}}}}}}:}}}:}}:}}}}}}}}}}}}:}}}:}:}}}}}}}}}:}}:}}:}}}}}:}}}}}}}}}}:}}:}}}:}}}}}}}}}}}}}}}:}}}:}}}}}}}}}}}:}}}}}:}:}}}}}}}}}}:}}:}}}}}}3[[/ ",
-" 22+$}:333$<3333333:}}}}}}}}}:}}}:}}}}:}}}}:}}}}:}}:}:}}}:}}}}}}:}}}}}}}:}}:}}:}}}}}:}}}}}}}}:}}}}}}}}}}}}}:}}}}:}}:}}:}}}}}}}:}}}:}:}}}}:}:}:}}}}:}}}}}:}}:}:}}}:}:}}}}}}:}}}:}}}}}}}}}:}}}}-//[ ",
-" 222-}}*333$3333333$:}}}:}:}}}}}}}}:}}}}:}}}}:}}}:}}}}}}}}}}:}}}}}:}}:}}}}}}}}}}:}}}}}}}:}:}}}}:}}:}}:}}:}}}}}}}}}}}}}}}:}}:}}}}}}}}}:}}}}}}}}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}:}}}:}}:}}:}}}:}}:;[/ ",
-" (+2;}}:333<$33333331}:}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}:}:}}}}:}}}}}}}}}}:}}:}}}}}}:}}}:}}}}}:}}}}}}}}}}}}}:}}:}}:}}:}}}}}}}}}}:}:}}}}}}:}}}}}}:}}:}}}}}}:}}}:}:}}}}:}}:}}}}}}}}}}}}}}}}}}}}}12// ",
-" 2++:}:33$$<33333333}}}}}:}:}}}}}:}:}:}}:}:}}:}}}}:}}}}}}:}}}}}:}}:}}}}:}}}}}:}}}}:}}}}}}}}}:}}}:}}:}}:}}}}}}}}}}}}}:}}:}}:}}}}}:}}}}}}}:}:}}}}}}}:}}}}}:}}}}}}:}}}}}}}:}}:}}}:}}:}}:}}}:}}<[// ",
-" 22+<}}$3$33333333331}}:}}}}}:}}}}}}}}}}}}}}}}:}}}}}}}:}}}}}:}}}}}}}:}}}}}:}}}}}}}}}}:}:}}}}}}:}}}}}}}}}:}}:}}:}}}:}}}}}}}}}}}}}}}:}}:}}}}}}}:}}:}}}:}}}}}}}}}}}:}}:}}}}}}}}:}}}}}}}}}:}}}}%[/[ ",
-" 2++%}}*3333333333333:}}}}:}}}:}}}}}}:}}}}}:}}}}:}}:}}}}:}}}}:}}:}}}}}}:}}}:}}}:}}}}}}}}}:}}}}}}}:}}}:}}}}}}}}}:}}}:}}}:}}:}}}:}}}}}}}}}}}:}}}}}}}}}}}:}}:}:}:}}}}}}}}}:}:}}}}}}:}}:}}}}}}:2[/ ",
-" (+22:}:33333333333333}}}}}}}}}}:}:}}}}:}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}}}}}}}:}}}:}:}}}:}}}:}}:}}}}:}}}}:}}:}}}}}}}}}:}}}}}}:}}}}:}}}:}}:}}}}:}}:}}}:}}}}}}}}}}}}:}}:}}}}}}}}}:}}}}}}}}:}}$[// ",
-" +++<}}33333<3333333$1:}}:}}}}}}}}}}:}}:}}:}:}}:}:}}}}}}:}:}}}:}}}}:}}:}}:}}}}}}}}}:}}}}}}}}}}}}}}}}:}}}}}}}}}}:}}}}}}}}:}}}}}}}:}}}}}}}}:}}}}}:}}}}}}}:}}}}}}:}}}}}}:}}:}:}}}}}}:}:}}}:}4[/[ ",
-" (+2%}}*3333$<33333333:}}}}:}:}}:}}}}}}}}}}}}}}}}}}}:}:}}}}}:}}}:}}}}}}}}}}}:}}}}}}}}}:}}:}}:}}:}}:}}}}:}}:}}:}}}:}}}:}}}}}:}}:}}}:}:}}}}}}}:}}}}}}}:}}}}:}:}}}}}:}}}}}}}}}}}}}:}}}}}}}}:2// ",
-" 2[+2:}:333333$<333333*}:}}}}}}}}}:}}}}:}}}}:}}}}:}}}}}}}}}}}}}}}}}:}}:}}:}}}}:}:}}}}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}:}}}}}:}}}}}}}}}}}}:}}}:}}}:}}}:}}}}:}}}}}}}:}}}}}}}}:}}:}:}}}}}}:}}}}3[// ",
-" +++_}}333333$$33333331}}:}}}:}}}}}}:}}}:}}}:}}}}}}:}}}:}}}:}}}:}}}}}}}}}}}:}}}}}:}:}}}:}}:}:}}:}}}}}}:}}:}}:}}}}}}}:}}}}:}:}}}:}}}}}}}}}}}}}}:}}}}:}}}}}:}}}}}}}:}:}}}}}}}}}}}}:}}}:}};[/[ ",
-" 2++;}}*3333$<3$<333333:}}:}}}:}}:}}}}}}}}}}}}:}:}}}}}}:}}}:}}}:}}}:}}:}}}:}}}}}}}}}:}}}}}}}}}}}}}}:}}}}}}}}}}:}}:}}}:}}}}}}}}}}:}}:}}:}}}:}}}}}}}}}}}:}}}}:}}:}}}}}}:}}:}}:}:}}}}}}}}:+[/ ",
-" (+++*}:$333333$33333333}}}}}}}}}}}}}:}}:}}}}}}}}}:}:}}}}}}}}}}}}:}}}}}}}}}}:}:}}}}}}}:}}:}}}:}}:}}}}:}}:}}}:}}}}}}}}}}:}}}:}}}}}}}}}}}}:}}}}:}}:}}:}}}}}:}}}}}:}}}}}}}}}}}}}}}}}}:}}},[// ",
-" +++|}}*<333333333333333}:}}}:}}:}:}}}}}}}:}}}:}}}}}}}}:}}}:}}}}}}}:}}}:}}}}}}:}}:}}}}}}}:}}}}}}}}}}}}}}:}}}}}:}}}:}}}}:}}}}:}}:}}}:}}}}:}}}}}}:}}}}}:}}}}:}}}}}}:}}:}}:}}}}:}:}}}}}:)[// ",
-" ([+2}}:$3<$3333<3333333*}}:}}}}}}}}:}}:}}}}:}}}}}}:}}}}}:}}}:}}:}}}}:}}}:}}}}}}}}}:}}}}}}}}:}}:}}:}}}:}}}}}:}}}:}}}}}}}}}:}}}}}}:}}}}}}}}}:}}}}}}:}}}}}}}}:}}}:}}}}}}}}}:}}}}}}:}}}3[/[ ",
-" +[+_}}$$$<33333333333331}}}}}}}}}}}}}}:}}}}}}:}}}}}:}}}}}}}}}}}}}}}}}}}}:}:}}}:}}}}}:}}:}}}}}}}}}:}}}}}:}}}}}}}}}}}:}}}}}}}:}}}}}}:}}:}}}}}}}:}}}}:}}:}}}}}}}}}}}:}}:}}}}}}:}}}}}:%[// ",
-" 2++(}}*$$3333333333333331}:}:}:}}}:}}}}}:}}}}}}:}}}}}}:}}:}}:}}:}:}}}:}}}}}}}}}}}:}}}}}}}:}}}:}}}}}}}}}}}}}:}}:}:}}}}:}}}:}}}:}}:}}}:}}}:}}:}}}}}}}}}}:}}}:}}:}:}}}}}}:}}:}}}:}}}1[[/ ",
-" ++[+$}}3333333333<3333333:}}}}}:}}}}:}}}}}:}:}}}}}}:}}}}}}}}}}}}}}:}}}}}}}}:}}:}}}:}}:}}}}:}}}}}}}:}}:}}:}}}}}}}}:}}}}:}}}}}}}}}}:}}}}}}}}}}}}}:}}:}}}}:}}}}}}}}}}}:}}}}}}}}}}}}:-[// ",
-" 2[+%:}*3333333333333333331}}}}}}}}}}}:}}}}}}}:}}:}}}}:}}:}}:}}}}}}}}:}}:}}}}}}}:}}}:}}}}}}}:}}:}}}}}}}:}}}:}}}}}}}:}}}}}:}:}}}}}}}}}:}}:}}}:}}}}}}}:}}}}}:}}:}}}:}}}:}}}}:}:}}}1+[// ",
-" 2+[+*}}3333333333333333333*}}}}:}:}}}}}}}}:}}}}}}}:}}}}}}}}}:}}:}}}}}}}}:}}:}}}}}}}}}:}}:}}}}}}:}}:}}}}:}}}}:}}:}}}}}}}}}}}}}:}}}:}}}}}}}}}:}}}:}}}}}}:}}}}}}}}}}}}}}}:}}}}}:}:,[/[ ",
-" +[+%:}*3333<333333<33333331}}}}}}}:}}:}}}}}:}}}}}}}}:}}:}}}}}}}}:}}}:}}}}}}}}}:}}}}}}}}}}}:}}}}}}}}:}}}}:}}}}}}}}:}:}:}}}:}}}}:}}}}:}}:}}}}}:}}}:}}}}}}}:}:}}:}}:}:}}}}}}}}}}:+[// ",
-" 2+++*}:33333333333333333333*}}:}}}}}}}}:}}}}}:}}:}}}}}}}:}}}}:}}}}}}}}:}:}}:}}}:}:}}:}}:}}}}:}}}:}}}}}}}}}}:}}:}}}}}}}}}}}:}}}}}:}}}:}}}}:}}}}}}}}}:}}}}}}}}}}}}}}}}}:}:}}}}}-[// ",
-" +[+;}}*333333333333333333331}}}:}:}}:}}}:}}}}}}}}}:}}}}}}:}}}}:}:}:}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}}:}}:}}}}}}}}}}}}}}:}:}}}}}}}}}}}}}}}:}}}}}:}}:}}}:}:}}}}:}}:}}}}:}}}}}:}::+[// ",
-" ([++*}:333<33333333333333333$}}}}}}}}}}}}}}:}}:}}}}:}:}}}}:}}}}}}}}}}}:}}:}}:}}}:}}:}}:}}:}}}}}:}}}}}}}:}}:}}:}:}:}}}}}}}}:}}:}}}:}}}}}:}}:}}}}}}}}}}}}:}}}}}}}:}}}}}:}}}}}-[// ",
-" +[+%}}*3333333333<33333333333}}}:}}}:}:}}}}}}}}}:}}}}}:}}}}}:}}}}}}:}}}}}}}}}:}}}}}}}}}}}}:}}}}}}:}}}}}}}}}}}}}}}}}}}:}}}}}:}}}:}}}:}}}}}}}:}}:}}}}}}}}}:}}}}}}}}}}}}}:}}:+[// ",
-" ([+[3:}33333<333333333333333331}}:}}}}}:}}:}}:}}}}}}}}}}}:}}}}}:}}}}}}:}}}}}}}}}:}}:}}:}}}}:}}:}}}}:}}:}}:}}}}}}}:}}}}}:}}}}}}}}}}}}}}}:}}}}}}}}}:}:}:}}}}:}}:}}:}}:}}}}:4[// ",
-" +[+)}::333333333333<33333333331}}}}}}}}}}}}}}}}}:}}:}}}}}}}:}}}}}}}:}}}:}:}}}:}}}}}}}}}:}}}}}}}}}}}}}}}}}}:}:}:}}}}:}}}}:}}:}}}:}}}:}}}}:}}:}}:}}}}}}}:}}}}}}}}}}}}}}}}*+//[ ",
-" ++[+,}}$3333<333333333333333333*::}:}}}:}}:}}:}}}}}}:}}:}}}}}:}}:}}}}}}}}}}}}}}}}:}}:}}}}}}}}:}:}}:}}:}:}}}}}}}}:}}}}}}}}}}:}}}}:}}}}}}}}}}}}}}}}}}:}}}}:}}:}}:}}:}:}}:%[/[ ",
-" +[+21}:$333333333333<3333333333$1}}}}}}}}}}}}}:}}}}}}}}}:}}}}}:}}}:}}}:}}}:}}:}}}}}}}:}}:}}}}}}}}}}}}}}}}:}}}}}}}}:}:}}}:}}}}:}}}:}:}:}}:}}}}}:}}}}}}}}}}}}}}}}}}}}}}<[// ",
-" +[[|}}*33333<333333333<333333333$:}:}}:}}:}}}}:}:}}:}}}}}:}}}}}}}:}}}}:}}}}}}:}}}:}}}}}:}}:}}}}:}}:}}:}}}:}:}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}:}}}}}:}}:}}:}}:}}:}}}}:}:([/[ ",
-" 2[[+3}}$333333333333333333333333331}}}}}}}}}:}}}}}}}}:}}:}}}}}:}}}}:}}}}:}}:}}}:}}}}:}}}}}}}:}}}}}}}}}}}}}}}}:}:}}}}}}}:}}:}}}}:}}}}:}}:}}}}}:}}}}}}}}}}}}}}}}:}}}}-[// ",
-" +[+(:}13333333333333333333333333333*:}}:}}}}}}}}}:}}}}}}}}:}}}}}}}}:}}}}}}}}}}}:}}}}}}}:}}}}}}:}:}}}}}:}}}}}}}}:}}}:}}}}}}}:}}}}:}}}}}}:}}:}}}:}}:}}:}}:}}:}}}}:}$+/// ",
-" 2[[+-}}*33333333333333333<3333333333*:}}}}:}}:}:}}}}}:}}:}}}}:}}:}}}}}:}}}}:}}}}}:}}:}}}}:}}:}}}}}:}:}}}:}:}}}}}}}}}}:}}}:}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}:^[/[ ",
-" +[[+3}}$333<3333333333333333333333333$:}}}}}}}}}}:}}}}}}}}}}}}}}}}:}}}}:}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}:}}}:}:}}}}:}}}}}:}:}}}}:}:}}}}:}}:}}:}}:}}:}}:}}}}}:,[// ",
-" +[+(}}}3333333333<33333333333333333333$1}:}}}}:}}}}}}}:}:}:}}}}:}}}}:}}}}:}}:}}:}}:}}:}}:}}:}}}:}}}:}}}}}}}:}}}}}}:}}}}}}}}}}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}}}}*+[// ",
-" ([[[|:}133333<33333333333<33333333333333$1}:}}}}}:}:}}}}}}}}:}}}}}}}}}:}}}}}}}}}}}}}}}}}}}}}:}}}}}}}:}}:}}}}}}}}}}}}:}}:}:}}}:}:}}}}}:}}:}}:}}:}}:}}:}}:}:}::^[// ",
-" +[[[3:}*333333333<333333333333333333333333*:}}:}}}}}}}}}}:}}}}:}:}}}}}}:}}:}}:}}:}}:}}:}}}}}}:}}:}}}}}}}}}}:}}:}}}}}}}}}}}}}}}}:}}}}}}}}}}}:}}}}}}}}}}}}}}}4[// ",
-" +[[(:}}$33333333333333333<33<3333333333$3$3$1:}}}:}:}:}}}}}}}}}}:}}:}}}}}}}}}}}}}}}}}}:}}:}}}}}}}}:}}:}:}}}}}:}}:}}}:}}}:}:}}}}}:}}}}}:}}}}}}}:}}:}}:}}}:3+//[ ",
-" ++[[)}:}333333333333<333333333333333333<$33333$*}}}}}}}}}:}:}}}}}}}}}:}}:}}:}}:}}:}}}}}}}}}}}}}}:}}}}}}}}}:}}}}}}}:}}}:}}}}}}}}}}}:}}}}:}}}:}}}}}}}}}}:}$2/// ",
-" ([[[|}:}<333333333333333333333<3333333333333$$33$*::}:}}}}}:}}:}}:}}}}}}}}}}}}}}}}:}}:}:}}:}:}}}}}:}}}:}}}}}}:}}}}}}}}}}}}:}:}}:}}}}}}}:}}}}}}}:}}:}}}:;//[ ",
-" +[+[<}}:333333333333333333333333333333333333333333$$*1}}}}}}}}}}}}:}}:}}:}}:}}}}}}}}}}}}}}}}}:}}}}}:}}}}}:}}}}:}}}:}}:}}}}}}}}}}:}:}}}}}:}}:}}}}}}}}}|[/// ",
-" +[[+3}}1333333333333333333333333333333333333333333333$$*::}:}}:}}}}}}}}}}}}}:}}:}}:}}:}:}}}}}}}:}}}}}:}}}:}}}}}}}}}}}:}:}}}:}}}}}}}}:}}}}}}}}:}}}:}_[/// ",
-" [+[(::}*3333333333333333333333333333333333333333333333$33$$**:}}:}}:}}:}}}}}}}}}}}}}}}}}:}}:}}}}}}}}}}}:}}}}:}}:}}}}}}}:}}}}}:}}:}}}}:}}:}}}}}:}}$+[// ",
-" ([[[(}}}*33333333333333333333<3333<3333333333333333333333$$$3333$$***:*:}:}}:}}:}}:}}:}}}}}}}}:}}:}}:}}}}:}}}}}}}:}}}}}}}}:}}}}}}}}}}}}}}}}:}}}}32/// ",
-" +[[+;:}}*33<333<3333<333333333333333<333333333333333333333$3333333$$$$33333$**::}}}}}}}}:}}:}}}}}}}}}}}}}}}:}}}}}}:}}}:}}}}}}:}}:}:}}:}}:}}}}}:^[/[ ",
-" +[[[;}}}13333333333333<333333333333333333333333~333333333333333333333~333$$$$$$$$$:}1}}}}}}}}:}}:}}:}}:}}}}:}:}:}}:}}}}}}:}}}}}}}}}}}}}}}}}:1;//// ",
-" +[[+|}}}13333333333333333333<33333333<33333333333333333333333333333333333333333$$$$$*}}:}}}}}}}}}}}}}}}}:}}}}}}}}}}}}:}}}}}:}}}}}:}}:}}}:}:%[/[/ ",
-" +[[[,:}}:333<3333333333<33333333333333333333333~333~33333~333333333333333333333$$3$$$*:}:}}:}}:}}:}}:}}}}}}}}:}}}}:}}:}}}}}:}:}}}}}}:}}}:-[/// ",
-" [[[[,}:}:$3333<33333333333333<33~3333333<33<333333333333333~33333333333333333333333333*:}:}}}}}}}}}}}}}}:}}}}}:}}}}}}}:}}}}}}}:}}}}}}}:|[//[ ",
-" +[[[,}}:}$333333<333333333333333333<3333333333333<33333333333333<33~333~3333333333333$$$*}}:}:}}:}}:}}}}}:}}}}:}}}}}}}}}}}:}}}:}}}:}:-[/[/ ",
-" [[[+|}}}}*$3333333~333333333333333333333333333333333<33333333333333333333333333333333$<$*}}}}}}}}}}}:}}}}}:}}}}:}:}}:}:}}}}}}}}:}}:-[[// ",
-" [[[+|:}}}*33333333333~33333333333333333333<3333333333333333333333<3333<333333333333$$$$$$*}}:}}:}}}}}:}}}}}}}}}}}}}}}}}}}:}}}}}}:-[/// ",
-" [[[[%}}}}:$3333333<3333333<33333333333333333333333333<333333333333333333<3333333333<3$3$3$}}}}}}:}}}}}:}}:}}:}}:}}:}}:}}}}:}}::4[/// ",
-" +[[[;:}:}}*33<3333333333333333~3333333<3333333333333333333333333333333333333333333$$$333$3}:}}}}}}:}}}}}}}}}}}}}}}}}}}:}}}:}:;[/// ",
-" [[/[(*}}}::33333333333333333333333333333333333<3333333<333333333333333333~333333333<$$333$}}}:}:}}}}:}}:}}}:}:}}:}}}}}}}}:1)[/[/ ",
-" +[[[(3}}}}}*3333333333333333333333333333<33333333333333333333333333~3333333<33333$<$<$333$:}}}}}:}}}}}}}:}}}}}}}}:}}}:}}*2[/// ",
-" [[[[+<:}:}}:33333<3333<333333<33333333333333333333333333<33333333333<33333333333333333333$}}}}}}}:}:}}}}}}}}:}}}}}:}}:<+[//[ ",
-" +[[[[|:}}}:}$33333333333333333333333333333333<333~333333333333<3333333<3333333333333333331:}:}}}}}}:}}}}:}}}}}:}}}}:-+//// ",
-" +/[/[)*}}}}}:$33333333<333333~3333333~3333333333333<33333<3333333333333333333333333333333}}}}:}}}}}}:}}}}}:}}}}:}1%[/[/ ",
-" [[[[+<:}}}}}13333333333333<333<333333~333333333333333333333333333333333333<333333333333*:}}}}:}}}}}}}}:}}}}:}}3([/// ",
-" [[[[[|:}}}}}:*3333333~33333333333333<3333<3333333333333333333333333<33333333333<3333333:}}}}}}:}}:}}}}}:}}}1,+//[/ ",
-" [/[[[(3:}}}}}}*3333333333333333333333333333<333333~3333333333333333333333333333333333$1}}:}}}}}}}}:}}}}}:*;[//// ",
-" [//[[|:}}}:}}}$333333333333<333333333333333~3333333<33333333333333333333<33333333333$}}}:}:}:}}}}:}:}:_+[/[/ ",
-" +/[[/(~:}}}}}}}*$3333333333333333<3333333333<33333333<333<333333<3333333333<3333333$}}}}}}}}}}}}}:}*%[[/// ",
-" [/[/[;*}}:}:}}}:$$333333333333333333333333333333333333333333333333333333333333333$}}:}}}}}:}}}}:,[[//[ ",
-" [[/[[+=:}}}}}}}}:*3333333~333333333<3333333<333333333333333333333333333333333333$}}}}}:}}}}::3([[/// ",
-" [[/[[(|:}}}}:}}}::$$333<3333~33333333333333333333~333<333333<333333333333333331}}:}}}}:}}*)[[/// ",
-" [[//[[(|::}}}}}}}}::$3333333~33333<3333333333<333333333333333<333333333<33333}:}}}}}}:*%[[//// ",
-" [/[/[[(|}::}}}:}}}}}1$33333333333333333~3333333333333333333333<33333333333*}}}:}:}$4[[//// ",
-" [/[/[/(|*:}}}}}}}}}}}:*$333333333~333333333<33333<33333333333333333333$*}}}}}}3;+/[/// ",
-" [/[/[[[=3}}}:}}:}}:}}}:1$$333333333333333333333333333333333333333333*}}:}1<)[[///[ ",
-" [/[/[/[(|::}}}}}}}}}}}}}:1*$33333<333333~3333333333333333<333<33$:}:}$|2[[///[ ",
-" [//[/[[+;<:}}}}}}}}:}}}}}}::**$$33333333<3333<33333333333333*:}}:,)+[///// ",
-" /[////[[)<1:}:}}}}}}:}}}}}}}}::*$$33333~3333333333333$*:}:1,;[//////[ ",
-" [[////[/[)|3:}:}}}}}}}}}:}}}}}}}}}}:::**1*$$**:*:::::$|)[[//[//[ ",
-" /[////[/[[(=<*:::}:}}}:}}}}}}:}}}}}}}}}}}}}:::<|)+[[/////[/ ",
-" [/////[[/[/((=|<31:::}:}}}}}:}:}:::1$<|=((/[////////[ ",
-" [////////[//[/[((((%|;=%|;=(((([[[[/[///[///[ ",
-" [////////[//[/[//[/////[///////////// ",
-" [[////////////[////////[/ ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" "};
diff --git a/perl-install/pixmaps/mouse_3b+_middle.png b/perl-install/pixmaps/mouse_3b+_middle.png
new file mode 100644
index 000000000..7b7547318
--- /dev/null
+++ b/perl-install/pixmaps/mouse_3b+_middle.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b+_mini.xpm b/perl-install/pixmaps/mouse_3b+_mini.xpm
deleted file mode 100644
index c4b4960b3..000000000
--- a/perl-install/pixmaps/mouse_3b+_mini.xpm
+++ /dev/null
@@ -1,211 +0,0 @@
-/* XPM */
-static char * mouse_3b+_mini_xpm[] = {
-"105 175 33 1",
-" c None",
-". c #0C1530",
-"+ c #FE9A02",
-"@ c #212F55",
-"# c #7C6535",
-"$ c #E8A518",
-"% c #B68725",
-"& c #DAA22A",
-"* c #95742E",
-"= c #E6A929",
-"- c #757C98",
-"; c #F7B01E",
-"> c #B2924F",
-", c #FDA106",
-"' c #61543C",
-") c #ACAECB",
-"! c #7E84A0",
-"~ c #AFB2CD",
-"{ c #878DAC",
-"] c #13234A",
-"^ c #E2A62E",
-"/ c #8D6F32",
-"( c #5B6485",
-"_ c #3A4461",
-": c #BABEDA",
-"< c #9A9ABD",
-"[ c #FEB212",
-"} c #D6A236",
-"| c #465173",
-"1 c #A6A8C6",
-"2 c #9EA0C0",
-"3 c #697293",
-"4 c #313C5E",
-" (3<|. ",
-" ((<|. ",
-" (-<4. ",
-" (-<4. ",
-" (3<@. ",
-" (!<]. ",
-" (|!<.. ",
-" (|!<]. ",
-" ((!{]. ",
-" (|<<.. ",
-" ||{<]. ",
-" (_!<.. ",
-" (|!<]. ",
-" (|!<]. ",
-" _!<@. ",
-" |3<@. ",
-" 33<4] ",
-" 2--<-@4 ",
-" {!!<<<!_] ",
-" (|<<<<<!]] ",
-" |_2<<<<<@. ",
-" |_{<<<<<_. ",
-" ||{<<<<<|] ",
-" |_!<<<<<3. ",
-" -(-<<<<<!]. ",
-" )13|_444__]_-! ",
-" ~)1{!((33-333((33--- ",
-" ~~1{{<~::~)11)111~:)<-(33 ",
-" ~~2{/|:12<<<<<<<<<<<<<:{]||(( ",
-" ~1{>;=@{2<<<<<<<<<<<<<<<|4[&'||| ",
-" ~){>;[[[|3)<<<<<<<<<<<<<<<]#[[[}|||| ",
-" ~1!^[;,;[#_:<<<<<<{<<<{<<<{]%[[[[;*4__ ",
-" ~<>;,+++[[%]:1<<<<<<<<<<<<<3]&[[[[[[&___ ",
-" ){>,,++++[[>]1~<<<<((((<<<<2(@[[[[[[[[='44 ",
-" 1!&,+++++[[[$]<:2<<@....]{<<1|4[[[[[[[[[;#@4@ ",
-" 1!^,+++++[[[[[@!:)<<@....]{<<)_'[[[[[[[[[;[#@@@ ",
-" 1!$++++++[[[[[[4-::<<].....{<<~@'[[[[[[[[[[[[#@@ ",
-" 1!&++++++[[[[[[[_3::1<4....4{<<:]/[[[[[[[[[[[[[#@@ ",
-" 1!&,+++++,[[[[[[['(:::<].....{<<:]/[[[[[[[[[[[[[;'@] ",
-" 1!}++++++;[[[[[[[['|:~:14....4{<<1]%[[[[[[[[[[[[[[[_@] ",
-" 1<>$+++++,[[[[[[[[[#|:::~@....]{<<1]%[[[[[[[[[[[[[[[$4]] ",
-" 1<!,+++++[[[[[[[[[[;/|::::4]..]4{<21]>[[[[[[[[[[[[[[[[>]]] ",
-" 2-;+++++,[[[[[[[[[[[/_::::......{<<{]}[[[[[[[[[[[[[[[[[*]] ",
-" 2!}+++++[[[[[[[[[[[[;/_:~::_....4{<2<]%[[[[[[[[[[[[[[[[[;']] ",
-" 1<*;++++,[[[[[[[[[[[[[%@::::].....{<<{]$[[[[[[[[[[[[[[[[[[&@]] ",
-" <-;++++;[[[[[[[[[[[[[[*4:::~@....@{<2<]=[[[[[[[[[[[[[[[[,[[*]] ",
-" 2!>,+++,[[[[[[[[[[[[[[[%@::::......{<<<]$[[[[[[[[[[[[[[[[[,[[_]] ",
-" <<![+++,[[[[[[[[[[[[[[[[*4:~::_...]4{<<!]=[[[[[[[[[[[[[[[[[[,[&]]] ",
-" <-$,++,[[[[[[[[[[[[[[[[[%@::::].....{<<!]&[[[[[[[[[[[[[[[[[[,,[#]] ",
-" <{%;++,[[[[[[[[[[[[[[[[[;*4:::~_....4{<<!]=[[[[[[[[[[[[[[[[[[,+[$@]] ",
-" <3=,+,[[[[[[[[[[[[[[[[[[[%@::~:......!<<!]=[[[[[[[[[[[[[[[[[[[+,[*]] ",
-" <!>;+,[[[[[[[[[[[[[[[[[[[[*@::::_...]_{<1{]=[[[[[[[[[[[[[[[[[[[,+,;@]] ",
-" <3[,+[[[[[[[[[[[[[[[[[[[[[*_::::......21:{]=[[[[[[[[[[[[[[[[[[[,++[*]] ",
-" <!>;+[[[[[[[[[[[[[[[[[[[[[[/_:~::_]..]_)::<]}[[[[[[[[[[[[[[[[[[[;+++[4]] ",
-" <3[,,[[[[[[[[[[[[[[[[[[[[[[/_::::......1::2]>[[[[[[[[[[[[[[[[[[[[+++,*]] ",
-" {!>[[[[[[[[[[[[[[[[[[[[[[[[[(|:~::|]..]|)::1]}[[[[[[[[[[[[[[[[[[[,++++[@]] ",
-" {-;[[[[[[[[[[[[[[[[[[[[[[[[['(::::......1::~]*[[[[[[[[[[[[[[[[[[[;++++,/]] ",
-" {{*[[[[[[[[[[[[[[[[[[[[[[[[[[_(::~:_]..]_)~::]%[[[[[[[[[[[[[[[[[[[,+++++,]]] ",
-" {3&[[[[[[[[[[[[[[[[[[[[[[[[[[_3::::......1:::@/[[[[[[[[[[[[[[[[[[[++++++;']] ",
-" {|%[[[[[[[[[[[[[[[[[[[[[[[[[[@-::~:4]..]_):::4#[[[[[[[[[[[[[[[[[[;++++++,_]] ",
-" {-_/[[[[[[[[[[[[[[[[[[[[[[[[[[]{::::......2:::||[[[[[[[[[[[[[[[[[[,++++++,@]]] ",
-" {33@[[[[[[[[[[[[[[[[[[[[[[[[[&]<:::~_]..]_1:::(|[[[[[[[[[[[[[[[[[,+++++++*]4(. ",
-" !{~@#[[[[[[[[[[[[[[[[[[[[[[[[%]~::::......1:::3][[[[[[[[[[[[[[[[[+++++++$@]{<]] ",
-" !3):{@>[[[[[[[[[[[[[[[[[[[[[[[*@:~:::(]..]3):~:{@[[[[[[[[[[[[[[[[+++++++,_]|::4] ",
-" !-::~3]*[[[[[[[[[[[[[[[[[[[[[[#_:::~::-(33:::::2]>[[[[[[[[[[[[[[++++++,$_](~2~3. ",
-" {-<~:::!@(;[[[[[[[[[[[[[[[[[[[[||::::::::~:::::::]>[[[[[[[[[[[[+++++++;%@]()2<)1]] ",
-" !3~:::::24@/;[[[[[[[[[[[[[[[[[[@-:~::~:::::~:~:~:4'[[[[[[[[[[[+++++,[%_]4{1<<<2:_] ",
-" !-:::::~::!4@(}[[[[[[[[[[[[[[[$]{::::::::::::::::(|[[[[[[[[,++,,,[$/4]@312<<<<<~-] ",
-" {-<~:~::::~::{|@@#>=[[[[[[[[[[[%]~:::::~::~:~:::::-][[[[[[[,[[;;%/_]]|!~1<<<<<<<11]] ",
-" !(~::::::::::::~!|@@4(*>=[[[[[['|:~:~:::~:::::::~:1]}[[[[[$%*#4@]]|-1~2<<<<{<<<<2:4] ",
-" --:::::~:::~:::::::2-(4@]@4|'#/@({<111)::::::~2)1<{@_/#'_@]]]4'-2~:22<<<<<<<<<<<<~3. ",
-" !-{::~::~:::~::~:::::::::){!((|_@@]]]]]]]]]]]]]]]]]]]@4||(-{1~::~22<<<<<<<<<<<<<<<11]] ",
-" -3~:::::::::::::::~::~::~~~)~~::::~:1112{<{<{<{)11~:::~::::~)12<<<<<<<<<<<{<<<{<<<2:@. ",
-" !3:::::::~::~::~:::::::::::~1<<<2111)~~~:~::::::~:~~~~111<<2<<<<<<<<<<<<<<<<<<<<<<<:(] ",
-" -{:~:~::~:::::::::~::~::::::::12<<<<<<<2<<<<<2<<<<<<<<<<<<<<<<<<<<<<<<{<<<<<<<<<<<<1{] ",
-" -32::::::::~:::~:::::::~:::::::::~2<<<<2{<<<<2{2{<<<<<<<<<<<<<<<<<<{<<<<<<<<<<<<<{<<1~]] ",
-" -(:::::~:::::~::::~::::::~:~:~:::::~1<<<<<<<<{2<2<<<<<<<<<<<{<<<<<<<<<<<<<<{<<{<<<<<<~_. ",
-" --::~::~::::::~:::::~::::::::::~:::::~1<2{<<2<2{<<<<<<<{<<<<<<{<<<<<<<<<<<<<<<<<<<<<<~3] ",
-" !3{:::::::~:::::::~::::~::~::::::::::::::122<<<<<<<<<<<<<<<<<<<<<<<<<<<<<{<<<<<<<<<<<21{]. ",
-" -32::::::::~::~:::::~::::::::~::::~:~::::::)<<<<<<<<<{<<<<<<<<<<<<<<<{<<<<<<<<<<<{<<<<2:]] ",
-" -3:::~::~::::::::~:::::~::::::~:~:::::~::~::~)<<<{<<<<<<<{<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~_. ",
-" -3::::::::::~::::~::~::::~:~::::::::~::::::::::)<<<<<<<<<<<<<{<<{<<<<<<<<<<<{<<<<<<<<<<~(] ",
-" 3{:~:::~::~:::~:::::::::::::~::~::::::~::::::::::1<<<<<<<<<<<<<<<<<<<{<<<<<<<<<{<<<{<<<1{] ",
-" -32:::~::::::::::::~:::~::~::::::::~:::::~:~:~::::::1<<<<<{<<<<<<<{<<<<<<<<<<<<<<<<<<<<<2~]. ",
-" -(::::::~::~:::~::::::::::::::~:~:::~:::::::::~:~:~:~~1<<<<<<<<<<<<<<<<<{<<<<<<<<<<<<<<<<~4. ",
-" 33::~::::::~:::~::~::~:~:::~::::::::::~::::::::::::::::~2<<<<<<<<<<{<<<<<<<<<<<<<<<<<<<<<~|] ",
-" 3!::::~:::::::::::::::::::::::::~:~:::::~:~:~::::::::~:::1<<<<<<<<<<<<<<<<<{<<<<<<<<<<<<<1-. ",
-" -3{:::::::~:::~:::~::::::~::~:~::::::::~:::::::~:~:~:::~:::~2<<{<<<<<<<<<<<<<<<{<<{<<{<<<<2<] ",
-" -(1:~:::~:::~:::~:::~:~::::::::~::::~::::::::::::::::::::~:::)2<<<<<{<<<{<<<<<<<<<<<<<<<<<<).] ",
-" 3(:::~:::::::::::::::::::~::~::::~:::::~::~:~::::::~::::::::::~1<<<<<<<<<<<<<<<<<<<<<<{<<<<:@. ",
-" 33:~::::~:::~:::~:~:::~:::::::::::~:::::::::::~:~::::~:~:::~::::)<<<<<<<<<{<<<<<<<<<<<<<<<<1|] ",
-" 3-:):::::~:::~:::::::::::~:::~::::::~:::~:::~::::~::::::~::::::::~1<<{<<<<<<<<<<<<<<<<<<{<<13. ",
-" 3{~~::~::::::::::::~::::::::::~:~::::~::::::::::::::~:::::~::::::::)2<<<<<<<<<{<<<<<<<<<<<<2!. ",
-" -(2~~::::::~::~::~::::~:~::~::::::::::::::~::~::::~::::::::::~:~::::::<<<{<<<<<<<<{<<<<<<<<<<2]. ",
-" 3(~1::~::~::::::::~::::::::::~::::~:~:~:::::::~:::::~::~::~::::::~:::::1<<<<{<<<<<<<<<<<<<<<<~]. ",
-" 3(:2:::::::~::~:::::~:~::~:~::::~:::::::~:~::::~::::::::::::~:~::::~::::~<<<<<<<<<<{<<<{<<<<<)@. ",
-" 33:2::~:::::::::~::::::::::::::::::::::::::::::::~:::~::~::::::::::::~::::2<<<<<<<<<<<<<<<{<<)|. ",
-" 33~1:::~::~::~:::::::::~::::~:~:~::~::~:::~:~:~:::~::::::~::::~:~:~::::::::1<{<<<<<<<<<<<<<<<2(] ",
-" ({11::::::::::::~:~:::::::~:::::::::::::::::::::::::~::::::~:::::::::~:~::~:)<<<<<{<<<<<<<<<<23. ",
-" ({1)~::~::~::~:::::::~::~::::::::~::~::~::~::::~:::::~::::::::~::::~:::::::::~<<<<<<<<{<<<<<<2!] ",
-" 3(22~::::::::::::::~::::::::~::~:::::::::::::~::::~:::::~:~::::::~:::::::~:::::~<<<<<<<<<<<<<<<<. ",
-" (()<~~::~::~::~::~:::::~:~:::::::::~::~:~::::::::::::~:::::~:~::::::~::~:::~:::::<<<<<<<{<<{<<<1]. ",
-" 3|:<~::::::::::::::~:~::::~::~:~::::::::::~:~:~::~:::::~:::::::~::::::::::::::::::2<<<<<<<<<<<<)]. ",
-" 3(~<~:~::~::~::~:::::::::::::::::~::~:::::::::::::::~::::::::~:::~:::~:::~:::~:~:::2<<<<<<<<<<<)@. ",
-" 33~<~:::::::::~::::::::::::~::::::::::~:~:~:~:::~:::::~::~::::::::~::::~::~::::::::~1<<<<<{<<{2)_. ",
-" (3)<~:::~::~::::~:~:~:~:~::::::~::~:~::::::::~:::::~:::::::~:~:~::::::::::::::::~::::2<<<<<<<<<1|. ",
-" (-1<~:~::::::::::::::::::~::~:::::::::~::::::::~:::::~::~:::::::~::~::::~:~:~:~:::~:::1<<<<<<<<1(. ",
-" (!2<~:::~::~:~::~:::~:::::::::::~:::~::::::~::::::~:::::::~::::::::::~::::::::::~:::~::2<<<<<<<1(] ",
-" ({2<~::::::::::::~:::~:~::~:~:~::::::::~:::::~::~:::~:::::::~:~::~::::::::~:::::::::::::2<<<<<<13. ",
-" ({2<):~::~:::~::::::::::::::::::~:::::::~:~:::::::::::~::~:::::::::~:~:~:::::~:::~:::~:::2<{<<<2!. ",
-" 3(22<)::::::~:::::::~::::~::::::::~:~:~::::::~:::::~:::::::~::::~::::::::~::~::~::::~::::::2<<<<2{] ",
-" (|2<<1:::~::::::~:~::::~:::~:~::::::::::::~:::~:~:::~::~::::::~::::::::::::::::::~::::~::~::2<<<1{. ",
-" 3|)<<1:~:::~::::::::::::::::::~:~::::::::::::::::::::::::~:~::::~:~:~::~::~::~::::::::::::::~2<<21. ",
-" (|)<<2::::::~:~:::~::~:~::::::::::~:~:~:~::~::::~:::::~:::::::~::::::::::::::::::::~::~::~:::~<<12]. ",
-" (|)<<2::~:::::::::::::::~:~:~::::::::::::~::::~:::~:~:::~:::::::~::~:~::~::~::~:~:::::::::::::~2)2]. ",
-" (|~<<<::~::~:::~:::~:::::::::::~::::::~::::~::::::::::::::~:~::::::::::::::::::::::~::~:::~::::::~.] ",
-" (|:<<<:::::::~:::~::::~::::::::::~:~:::~::::::::~::::~:::::::~:::~:~::~:~:::~::~::::::::~:::~::~::.. ",
-" ||:<<<):::~::::::::::::::~:~:~:~:::::::::::~:~::::~:::~::~:::::~:::::::::~::::::::~::~:::::::::::~]. ",
-" (|:2<<1::~::~:~::~:~:::::::::::::~:::::~:~:::::::::::::::::~:::::::~:::::::~::~::::::::~::~::~:::~]. ",
-" ||:<<<2::::::::::::::~:~:::~:::~::::~::::::::~:~::~::~::~::::~::~::::~::~::::::::~::~:::::::::::::.. ",
-" ||:2<<2:~::::~::::::::::~::::::::~:::::~::~:::::::::::::::~::::::~::::::::~::~::::::::~::~::~::~::]. ",
-" ||:2<<2~::~::::~:~:~:~:::::::::::::::~::::::::~::~::~::~:::::~::::::~::~::::::::~::~:::::::::::::)]. ",
-" |_)1<<{~::::~:::::::::::~:~:~::::~:~::::~::::::::::::::::~:::::~::~::::::~::~::::::::~::~::~::~::2.. ",
-" ||11<2<1:~:::~:::~::::~::::::::~::::::::::~::~::~::~::~:::::~:::::::::~::::::::~::~::::::::::::::2]. ",
-" (_<)<<<<:::::::~:::~::::::~:~:::::::~:~:::::::::::::::::~:::::~::::~::::~::~::::::::~::~::~::~:::{. ",
-" |_{)<<<<~~::~::::::::::::::::::~:~:::::::~::~::~::~::~:::::~::::~:::::::::::::~::~::::::::::::~::-. ",
-" _!~<<{<1:::::~::~::~:~:~:::~:::::~::~:~:::::::::::::::~:::::~::::~::~:~::~::::::::~::~::~:::::::(. ",
-" _3:<<<<<~:~:::::::::::::::::::::::::::::::~::~::~::~:::::~::::~:::::::::::::~::~::::::::::~:::~:|. ",
-" _|:2<<<<~:::~:~::~:::::~:~:::~:~::~:::~::::::::::::::~::::::::::~::~:::~::~::::::~::~:::::::~::~@. ",
-" 44:1<<<<<::::::::::~:~:::::~:::::::::::::~::~::~::~:::::~:~::~::::::~:::::::::~:::::::~::~:::::~.. ",
-" 442)<<<<<):::~:~::::::::::::::::~:~:~:::::::::::::::~::::::::::~::::::~::::~::::~::~:::::::::::{. ",
-" @!~<<<<<2~:::::~::~::::~::~:~:::::::~::~::~::~::~:::~:::~::~:::~:::::::~::::::::::::~::~::~:::(. ",
-" 4(:<<<<<<~:::::::::~:::::::::::::~::::::::::::::::::::~::::::::::~:~:::::~::~:~:::::::::::::~:_. ",
-" @4~1<{<<<2~:~::~:::::~:~:::::~::::::~::~::~::~::~:::::::~::~::::::::::~:::::::::~::~::~::~:::)]. ",
-" @@<~<2<<<<)::::::~::::::~::~::::::::::::::::::::::~:~::::::::~:~::~:::::~::~:::::::::::::::::-. ",
-" @(:<<<<<<<~::~::::~::::::::::~:~:~:::~::~::~::~::::::::::~::::::::::~::::::~::~::~::~::~::~:|. ",
-" @4:2<<{<<<2::::~:::::~::~:::::::::::::::::::::::~:::~:~::::~:::~::~:::~::::::::::::::::::::~]. ",
-" ]@{)<2<<<<<)~::::::~:::::::~:~::~:~::~:~::~::~:::~::::::::::~::::::::::~:::::~::~::~::~::~:-. ",
-" ](:<<<<<<<<~::~:~::::~::~:::::::::::::::::::::::::~:::~:~::::~::::~:::::~:~:::::::::::::::4. ",
-" ]])){<2{<<<2~:::::~::::::::::~:::~::::~::~::~::::::~:::::::::::~::::::::::::::~::~::~::~:<.. ",
-" @]3:<<<<<<<<<:::::::::~:::::::~::::~::::::::::~:~::::~:::~::~::::~::~:~::::~:::::::::::::|. ",
-" ]@:2<<2{<<<<<~:::~:~::::~:~:::~::::::::~::~::::::::::::::::::::::::::::~:::::::~::~::~:1]. ",
-" @]3:<{2<<<<<<<~:::::::~::::::::::~::~:::::::~:::~::~::~::~::~:~::~:::::::~::~:::::::::~(. ",
-" ]@~1<<<2{<<<<2~:::~:::::::~::~:::::::~::~:::::::::::::::::::::::::~::~::::::::~::~:::1.. ",
-" @]3:<<<<<<<<{2<1:::~::~::::::::~::::::::::~::~::~::~::~::~::::~::::::::~::~::::::::~:|. ",
-" ]]11<<<<<<<<<<<1:::::::~:~::::::~::~::~:::::::::::::::::::~:::::~::~::::::::~::~:::<.. ",
-" ](~2<{2<<<<<<<<<~:~:::::~::~:::::::::::~::~::~::~::~::~::::~::::::::~::~::::::::::_. ",
-" ]]{~<<<<<<<<<<{<<1~:::::::::::~::~::~:::::::::::::::::::::::::~::~::::::~::~::~::-.. ",
-" ]4~1<<{<<<<<<<<<<<1~::~:~::::::::::::~::~::~::~::~::~::~:~::::::::~::::::::::::2]. ",
-" ]](:2<<<{<<<<<<<<<<<1~:::~::~::~::~:::::::::::::::::::::::::~::~:::::~:::~::~:~|. ",
-" ]]{~2<<<<<<<<<<<<<<<<2)::::::::::::~::~::~::~::~::~::~:::~::::::~:::::~::::::3.. ",
-" ]]1~<<<<<<<<<<<<<<<<<<<2)~::~::~:::::::::::::::::::::~::::::~:::::~::::~:::<]. ",
-" ]4~)<{<<<<<<<<<<<<<<<<<<<<1~~:::~::~::~::~::~::~::::::::~::::~::::::::::~)@. ",
-" ]]|:1<<<<{<{<<<<<<<<<<<<<<<<<221)1~~~:::::::::::~::::~::::~::::~::~:::~::4. ",
-" ]](:1<<<<<<<{<{<<<<<<<<<<<<<<<<<<2<<<<221~~::::::~:::::::::::::::::~::~|.. ",
-" ]]3:1<<<<<<<<<<{<<<<<<<<<<<<<<<<<<<<<<<<2<1)::::::~:~::~:~::~::~::::~3.. ",
-" ]]3:)<<<<<<<<<<<<{<<<<<{<<<<<<<<<<<<<<<<<<<21:~::::::::::::::::::::3.. ",
-" ]]3:~2<<<<<<<<<<<<{<<<2{<<<<<<<<<<<<<<<<<<<<1:::::~:::~::~::~:~::(.. ",
-" ]](:~1<<<<<<<<<<<<<<<<<<<{<<{<<{<<<<<<<<<<<<<):~:::~::::::::::~(.. ",
-" .]|~:)<<<<<<<<<<<{<<<<<<<<<<<<<<<<<<<<<<<{<<<~:::::::~::~:::~|.. ",
-" ].42:~2<<<<<<<<<<<<<<<<<<<<<<<<{<<{<<<<<<<<<<~:::::::::::~14.. ",
-" ]]@!::~2{<<<<<<<<<{<<<<<<<<<<<<<<<<<<<<<<<<<2::~:~::~:::{]. ",
-" .]()::)2<{<<<<<<<<<<{<<<<{<<<<<<<{<<<<<<<<<~::::::::)3.. ",
-" ..@{:::)2<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<)::::~::{4.. ",
-" ..|2:::~1<<<<<{<<<<<<<<<<<{<<<<<<<{<<<<<):~:::)(.. ",
-" ].](1~::~12<<<<<<<<<<<<<<<<<<{<<<<<<<<<~:::~3].. ",
-" ..](2::::~)1<<<{<<<{<<<<<<<<<<<<<{<<1::)3@.. ",
-" ...|{~:::~:))2<<<<<<<<<<<<<<<<<<<1:2(].. ",
-" ...@({:::::::~)12<<<{<<<<{<<1)134... ",
-" ....]|3<~~:::::::::~~)~~1!(4.... ",
-" .....]@|((-!{{{!33|_]..... ",
-" .................. ",
-" ",
-" ",
-" "};
diff --git a/perl-install/pixmaps/mouse_3b.png b/perl-install/pixmaps/mouse_3b.png
new file mode 100644
index 000000000..c2a9585ba
--- /dev/null
+++ b/perl-install/pixmaps/mouse_3b.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b.xpm b/perl-install/pixmaps/mouse_3b.xpm
deleted file mode 100644
index 4c8a3bd9a..000000000
--- a/perl-install/pixmaps/mouse_3b.xpm
+++ /dev/null
@@ -1,386 +0,0 @@
-/* XPM */
-static char * mouse_3b_xpm[] = {
-"210 350 33 1",
-" c None",
-". c #0A1630",
-"+ c #FE9A02",
-"@ c #253359",
-"# c #C99121",
-"$ c #F3AE18",
-"% c #D6A02C",
-"& c #96762E",
-"* c #3E4862",
-"= c #B68626",
-"- c #FDB820",
-"; c #FE9E02",
-"> c #E6AA32",
-", c #A67E2A",
-"' c #F2B22A",
-") c #7B84A1",
-"! c #7C673B",
-"~ c #5C6888",
-"{ c #B79346",
-"] c #0E1A3A",
-"^ c #F2B22E",
-"/ c #BABEDA",
-"( c #848CAA",
-"_ c #4A5778",
-": c #FEA206",
-"< c #A7A9C8",
-"[ c #757C94",
-"} c #9A9ABE",
-"| c #9FA1C0",
-"1 c #11244D",
-"2 c #AFB0CD",
-"3 c #697392",
-"4 c #FEB212",
-" ~_3}}}]]. ",
-" ~_)}}}].. ",
-" ~_)}}3]. ",
-" __(}}3]. ",
-" ~~*|}}3]] ",
-" ~__}}}_]. ",
-" ~~*|}}_]. ",
-" __~}}}*]. ",
-" ~__|}}@]. ",
-" ~~_}}}*]. ",
-" ~_~}}(@]. ",
-" __3}}}@]. ",
-" __3}}}]]. ",
-" __~}}}1]. ",
-" __3}}(]]. ",
-" __~}}}1]] ",
-" __3}}(]]. ",
-" ~_[}}}1.] ",
-" __)}}(1.. ",
-" __)}}}]]] ",
-" _*)}}}].. ",
-" _*)}}}1]] ",
-" _*)}}(]]. ",
-" _*~}}}1.] ",
-" __~}}(1.. ",
-" __3}}}]]] ",
-" _*~}}}]]] ",
-" __~}}}@]. ",
-" **3}}}@]] ",
-" **_}}}*]. ",
-" **_}}}@]] ",
-" ___}}}*1] ",
-" ~_*}}}_1] ",
-" )3*}}}_111 ",
-" (3*}}})@1@@ ",
-" |(~[}}}}}*@@@ ",
-" }(~)}}}}}}}_*@@ ",
-" [)~)|}}}}}}}}_@11 ",
-" ~_~|}}}}}}}}}}~]1 ",
-" __*}}}}}}}}}}}}1]] ",
-" ***}}}}}}}(}}}}@1] ",
-" _**}}}}}}}}}}}}*]] ",
-" ***}}}(}}}}}}}}_1] ",
-" **[}}}}}}}}}}}[]] ",
-" **)}}}}}}}}}}}(]]] ",
-" _*)}}}}}}}}}}}}1]] ",
-" _*3}}}(}}}}}}}}@1] ",
-" **~}}}}}}(}}}}}_]] ",
-" __~}}}}}}}}}}}}~]] ",
-" 3_~}}}}}}}}}}}}31] ",
-" )~_[3____**__~~~111 ",
-" <)~@111111111111111*_[) ",
-" 2<<||(3*@11111@**11111@@*_3[)))) ",
-" 2<<||()3[[)(}///////////2}}[33~~333[[[ ",
-" 2<<}(3)(</////////////////2//////<([~~~3333 ",
-" 2<<}([(|///////2<<|||}}(}}}}}}}}|<22////|)__~~33 ",
-" 22|()~*)///22||}}}}}}}}}}}}(}}}}}}}}}}|2///)@@*__~~~ ",
-" 22|([[%_1@//}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}<//@11!!@*__~~ ",
-" 22|(3&'--#11[/|}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}2}11@4->!@*___~ ",
-" 22([)>-444-@1_/2}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}_11!4444%!@*____ ",
-" 22}[[%--4-444!11//}}(}}}}(}}}}}}}}}}}}}(}}}}}}}}}@11#44-444#*@*____ ",
-" 2|(3{--444444$,11(/2}}}}}}}}}}}}}}}}}}}}|(}}}}}}}(111444444-4-=@@**_* ",
-" 22}[['-444$::444%11[/2}}}}}}}}(}}(}}}}}}}}}}}}(}}}}[11*444444444-$!@@**_ ",
-" 2|(3{-444:++++444411_//|}}(}}}}}}}}}(}}}}}}}}}}}}}}}311!444444444444{@@**** ",
-" 2|)[$-4$+++++++4444*1*//2}}}}}}}}}}}}}}}}}}}}}}}}}}}<*11=4444-44-4444-$_@@*** ",
-" 22([,-44;+++++++44444!11///}}}}}}}}}}}}}}}}(}}}}}}(}}}/@11%4-4444444444444&@@*@* ",
-" 2<(3{-4;++++++++;44444!11<2/2}}}}}}}}}}}}(}}}}}}(}}}}}}/1114444-444444-444-4{@@@*@ ",
-" 2|(3>-$+++++++++;4-4444=11}///}(}}}}}}}}}}}}}}}}}}}}}}}<}11@44444-44-444444444%*@@*@@ ",
-" 2|)3'4;++++++++++$444-44#11[///<}}}}(}}(}}}}}}}}}}}}}}}}2}11*44-4444444444444444$*@@*@@ ",
-" <})&'4;++++++++++$4444444>113///2}}}}}}}}}}}}}}}}}}}}}}}}/311!44444-44-44-444444444_@@@@@ ",
-" <|[[-$+++++++++++:44444444411~2///}}}}}}}}}}}}(}}}}}}}(}}}/~11!444-444444444444444444!1@*@@ ",
-" <}[&-$+++++++++++:444-444-44@1*////2}}}}}}}(}}}}}(}}}}}}}}|/_11&-444444-44-44-44-44444'!1@@@1 ",
-" <}3[-:++++++++++++444444-4444*1*//2//}}}(}}}}}}}}}}}}(}}}}}</*11#4444-4444444444444-4444-!1@@@1 ",
-" <}[&-:+++++++++++:4444-4444444*1@////2<}}}}}}}}}}}}}}}}}}}}}</*11#4-4444-44-44-44-4444444$'!1@@11 ",
-" <|[[-$++++++++++++4444444444444!11//////}}}}}}}(}}}}}}}}}}}}}2/@11$444-4444444444444-44-44444_1@@11 ",
-" <})&-:++++++++++++44-444-44444-4&1]////2/|}}}}}}}}}}}}}}}}}}}}2/111444444444-44-44-444444444444!1@@11 ",
-" <|)3'$++++++++++++$4444-444-44444!11/2////2}}}(}}}}}}}}}}}}}}}}2/11144-444-4444444444-44444444444*1@@1 ",
-" |(~'4++++++++++++4444444444444444=11}//////|}}}}}}}}(}}(}}(}}}}//11@444-4444-44-44-4444-444444444$*1@11 ",
-" |(3%4++++++++++++$4444-444-44-4444#11}2/////2}}}}}(}}}}}}}}}}}}}/|11*-4444-444444444444444-44-44444$@1@11 ",
-" <(~%-++++++++++++444-444-444444444-=11}///2///}}}}}}}}}}}}}}}}}}}/}11*444444444-44-44-44-444444444444#@1111 ",
-" |}[=-;+++++++++++:444444444-4444444-#11(/////2/2}}}}}}}}}}}}}}}}}}2}11*44-4444-444444444444-4444-444444,1@111 ",
-" |}[[-:+++++++++++$4444-44-44444-44444>11(/2//////}}}}}}}}}}(}}}}}}|/}11_4444-444444-44-44-4444-444444444-!1111 ",
-" |)3'4+++++++++++:4444444444-44444-4444113///2///2<}}}}(}}}}}}}(}}}|/}11&444444-44-444444444-4444444444444-*1@]1 ",
-" |(3%-+++++++++++$444-4444-44444-444444^11~////////2}}}}}}}}}}}}}}}}}/(1]&444-444444444-44-444444-4444-44444:@1111 ",
-" |}~{4:++++++++++:444444-4444-44444444444113////2////<}}}}}}}}}}}}}}}|/311!44444-44-44-444444-44-444-4444-4444=1@111 ",
-" ||[[-:++++++++++44444-44444444-44-4444-4^11~/2///////2}}}}}}}(}}}}}}}|2311&44-444444444444-44444444444444444-44!1111 ",
-" })~44++++++++++;4444444-44-44444444-44444113//////////<}}(}}}}}}}(}}}|/311!-444-44-44-44-444-44-44-44-444444444-*1111 ",
-" |(~%-;+++++++++$44-44-444444-4444-44444444*1~///2/2////2}}}}}}}}}}}}}}|/311&444444444444444444444444444-444444444%111]1 ",
-" |}[,-:+++++++++;-4444444-444444-44444444444*1_/2//////2//<}}}}}}}}}}}}}|/~11=444-44-44-44-44-444-44-444444444$44444&1111 ",
-" })~'4+++++++++$444444-444-44-4444-44-444-44*1*/////2/////2}}}}(}}}}}}}}|/311#-444444444444444-444444-444-44444:44444*11]1 ",
-" }(~%';++++++++;4444-44444444444-444444444444*1*////////////<}}}}}}}}}}}}|/3]1#44-44-44-44-444444-444444-44444444;4444%11111 ",
-" }}[)4$++++++++:44444444-44-44-44444-44-444444*1*/2/////2////2}}}}}(}}}}}}|2311#444444444444-44-444-44-4444-444444::4444&111] ",
-" })~44++++++++;-444-44444444444444-44444444444*1*///2/////////<}}}}}}}(}}}|/311#444-444-444444444444444444444444444;$444-*1111 ",
-" |(3{-:+++++++:444444-44-444-444-44444-44-44444*1*///////2/2///2}}}}}}}}}}}}/311#-444-4444-44444-444-444-444-4444444:+4444#111]1 ",
-" }[344+++++++;4444-4444444-444-444444444444-444*1*/2//2/////////<}}}}}}}}}}}2_11#44444444444-44444-444-444-444-4444-4;;444-!111] ",
-" })~>-;++++++:4444444444-4444444444-44-44-444444*1*/////////2////2}}}(}}}}}}}/*11#4-444-44-44444-4444444444444444-44444+;444>@1111 ",
-" }(3,-4++++++;-444-444-4444-44-444-44444444444444*1*/2////////2////2}}}}}}}}}}/*11#444-444444-4444444-444-444-4444444444;+:444&111] ",
-" })3'4++++++:44-444-4444-444444-444444-44-44-4444*1*////2/2/////////|}}}}}}}}}/*11#4444444-4444-44-444-444-4444-44-44444:++444-@1111 ",
-" }(3{44++++++444444444-4444-444444-44-444444444444*1*//2////////2///2/}}(}}}}}}/*11#44-44-444-444444444444444-444444444444+++444#111] ",
-" ([3-4+++++;4444-44-44444444-44-4444444-44-44-4444*1*////////2///2////<}}}}}(}}/*11#444444444444-44-444-44-44444-44-44444-:++;444*1111 ",
-" }(~%4$+++++4444444444-44-44444444-4444444444444-44*1*///2/2//////////2/}}}}}}}|/*11#444-444-444444444-44444444-444444-44444+++$44;111]1 ",
-" ([344+++++44444444-44444444444-4444-44-44-44-44444*1*2////////////2////2}}}}}}}/*11#-444-444-44-44-4444-444-444444-44444444++++4-$!111] ",
-" })~$4$++++4444-44-444-44-44-44444444444444444444444*1_2///2//2/2/////////<}}}}}</~11#444444444444444444444-444-44-444-444444:++++44%1111] ",
-" (3&44++++$44444444444444444444-44-44-444-44-44-4444*1*/2////////////2/////|}}}}2/311#-444-4444-44-44-44-44444444444444-4444-:++++:44!11]1 ",
-" })~>-:+++:4444-4444-444-44-44-444444444-444444444-44*1*///2//2///2/////2////<}}|//~11#444444-4444444444444-44-444-44-4444-4444+++++44$@11]1 ",
-" ([[-4;++$44-4444-444-444444444444-44-444444-44-4444411~///////2///2///////2//22///311#-44-4444-44-44-44-444444-444444444444444+++++;44!111] ",
-" })~>44++;44444-44444444-44-4444-4444444-44-4444444444113/2//2////////2///2///////2/311,44444-4444444444444-444444-44-44-4444444;+++++:4$@111] ",
-" ([&-4++:444444444-44-4444444-4444-44-4444444-44-444--113///////2//////2////2///////311!44-4444444-44-44-444-44-4444444444444444:++++++44&11]1 ",
-" })~>-4+;444-4444-444444-44-4444-4444444-4444444444-4441132////////2/2/////////2////2311&4444-44-44444444444444444-44-44-44-44444:++++++;4>@11]] ",
-" ([&-4:+444444-444444-4444444-4444444-4444-44-44-444444113///2//2////////2///////2///}11!4444444444-44-444-4444-444444444444-4444:+++++++:4!1111 ",
-" ()~>'4+$444-4444-44-444-4444444-44-444444444444444444-#11[/2/////2////2////2/////////(11&444-44-44444444-444-4444-44-44-444444444:++++++++4%111] ",
-" (3[-4::444444-44444444444-44-444444444-44-444-44-44444#11}/////////2////////2/2///2//}11!444444444-44-444444444444444444-444-444-:+++++++;:4!111] ",
-" ((~#-4:444-44444-4444-444444444-44-44-444444-444444-444#11(///2/////////2////////2///2}11*4444-444444444-44-44-44-44-444444-444-44:+++++++++4%1111 ",
-" ([3-4$44444-444444-444-44-44-444444444444-444444-444444{11}////2/2///2///2/////////////11*4-444-44-44-444444444444444-44-44444444-++++++++++:4_11]] ",
-" ((~=-4:4444444-4444444444444444-44-44-44-444-44-44444444!11}/2//////2///////2/2/////2///11*4444444444444-44-44-44-444444444-44-4444+++++++++++4#111] ",
-" ([~-4444-444444-444-44-44-44-444444444444444444444-4444-!11///////////2//////////2////2/1114-44-44-44-4444444444444-4444-444444444$+++++++++++:4*111] ",
-" (3=44:4444-444444-444444444444-44-44-44-44-44444-444-444!11////2////////2//////2////////*11444444444444-44-44-4444444-4444-4444444:+++++++++++:4,111] ",
-" ()_{44444444-44-444444-44-44-44444444444444444-444444444-*11/2/////2///////2/2//////2///2*11444-44-44-4444444444-44-4444444444-4444+++++++++++++4#11]1 ",
-" (3*&4444-44444444-44-444444444-44-44-44-44-44444-44-44444*1*/////2///2////////////2///2//*11#4444444444-44-44-4444444-44-444-444444+++++++++++++4,1111] ",
-" ()~@!44444-4444-444444444-44-44444444444444444-44444444444@1*//2/////////2//////2/////////311#4444-44-4444444444-44-444444-4444-444++++++++++++++$!111]1 ",
-" ([_1@-444444-4444-4444-4444444-44-44-44-44-44444-4444-444411_///////2//////2/2///////2////311,44-444444-44-4444444444-4444444444444++++++++++++++:*1111]] ",
-" )~_@1%-44-444444444-4444-44-44444444444444444-4444-444444$11~//2/2/////2/////////2/////2//(11&444444-4444444-44-44-4444-444-44-444+++++++++++++++%1111111 ",
-" ([_}11!44444-44-444444-4444444-44-44-44-44-444444444444-44#113////////2///2////2////2//////}11!4444-444-44-4444444444-4444-444444-:++++++++++++++$&111@)1] ",
-" )33/*]1%44444444-44-4444444-444444444444444-44-44-44-444-4=11(/////2////////2////////////2/<1]*4-44444444444-44-44-4444-4444-44444++++++++++++++;;@111[/11] ",
-" ()~</}11*44-44-4444444-44-4444-44-44-44-4444444444444444444!11}/2////////2///////2/////2/////11@444-44-444444444444444444444444-44+++++++++++++++4_]11@//_1] ",
-" )3~///*11&444444444-44444444444444444444-44-44-44-44-44444$!112//2////2///////2///2/2/////2//@11444444444-44-44-44-44-444-44-4444+++++++++++++++4=1111(//|11] ",
-" )~(///<@11%4444-44444-44-44-444-44-4444444444444444444-4444*11/////2//////2//////////////////*11>4444-44444444444444444-44444444;++++++++++++++4#@111~///2*]] ",
-" ))_/////(111%-44444-444444444-44444444-4444-44-44-44-44444-4@1*/////////2//////2///////2///2//~11#4-44444-44-44-44-44-444444-444++++++++++++++:4#@111@2/2//311 ",
-" )33//2///[11@=44-4444-44-444444-44-44444-444444444444444444411_2/2///2//////2////2//2/////////[11&444-44444444444444444-44-444$++++++++++++++$4%@]11*2/2}2/<1]] ",
-" )~}///2///~111&4444444444-44-44444444-4444444-44-44-44-4444#113///2//////2/////////////2///2//}11!444444-44-44-44-44-44444444;+++++++++++++:44&]111*2/2}}<//*1] ",
-" )[_/////////)111*>444-444444444-44-44444-44-4444444444444444,11(///////2/////2//2/////2///////2<11*44-44444444444444444-4444$++++++++++++++$4:_1111_2/|}}}|//)1] ",
-" )3[/////2//2/}@111&444-44-44-44444444-4444444-44-44-44-444-4!11}////2/////2////////2/////2//////@1@44444-44-44-44-44-444444:++++++++++++;444&@11113/2|}}}}}2/211] ",
-" ))_<//2///////22_111@,444444444-44-44444-44-4444444444444-44-*11//2////////////2////////////2////*11>444444444444444444-44;++++++++++++;444#@1]11@}22}}}}}}}<//*1] ",
-" )3~//////2///////(@111@,4-44-44444444-4444444444-44-44-444444@1*//////2//2//2////2//2//2/////2/2/~11=-44-444-444-44-444$:+++++++++++;4444,@1111@3/2|}}}}}}}}}//(1] ",
-" )3[////////2//////23@111@!%444-44-44444-44-44-44444444444444%]1_///2///2//////2//////////2///////[11&44444-444-444444$+++++++++++:$444%!@11111_</2|}}}}}}(}}}2//11] ",
-" )[_<///2/////////////23@1111*&>444444-44444444444-44-44-44444,11)2/////////2/////////2////////////|1]*44-44444444444;+++++++;;:444-4:,*111111_</2}}}}}}}}}}}}}<//_]] ",
-" )3~//2///2///2//2//////2)@11111*&%44444-44-44-44444444444-444!11<///2////2//2//2/2/////2///2//2////@1@4444-44-44$;+++++;::$44-444#&*111111@3//2|}}}}}}}}}}}}}}}//(1] ",
-" )~[///////2//////2//2/////|_11111]@!,%4444444444-44-44-44444$*1@//////2///////////2/////2///////2//*11%44444$:;+;:::$44444444%,!@1111111~(//2|}}}}}}}(}}}}}}}}}2//11] ",
-" ))~<////2//////2///////2//////(_@1111]1@*&=%4-444444444444444%11_//2/////////2///////2///////2//////311&444$:444444444444$#!_@]111111@_)2//<|}}}}}}}}}}}}}}}(}}}<//*1] ",
-" [3_//2//////2/////2/////2////////|3*11111111@*!&#>4-44-44-444,11(////2//2/2//////2////////2//////2//|1]*44444444444%#&!*@111]11111*~}////2}}}}}}}}(}}}}}}}}}}}}}}//)1] ",
-" )3)//////////////////2////2//////////}3_11111111111@*!!,##$44*1@/2///////////2////2///2///////2//////@11%44##,!!**111111111111*3(2////2|}}}}}}}}}}}}}}}}}}}}}}}}}2/21]] ",
-" [_|///2//2////2///2//////////2/2/2//2////2(3**111111111111111111_~3~~(}(}(}(|//2///2//////|(}(}(}(3~3*11111111111111111]@*3)|//////2|}}}}}}}}}}}}}}}}}}(}}}}}}}}}<//*1] ",
-" )3_/////////2////////////2/////////////2//////2/}}3~**111111111111111111111111111111111111111111111111111111111111@*_~)}2////////<||}}}}}}}}}}}}}}}}(}}}}}}}}}(}}}}/2[1] ",
-" )33////2///////2///2//2////2////////////////////////////(}(33_***111111111111111111111111111111111111111***~~3}}<2///////////2<|}}}}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}}}2/<]1] ",
-" [~}//2///2///////2///////////2/2//2/2///2//2////<<22/2///////////////2}}}}}}}3333333~3~3~333(}}}(}}|//////////2///////2/22<|}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}2//@]] ",
-" )3_////////2/2//////2////2////////////2///////2////2|}|<<22/2///////////2/2/2///////////////////////////////////2///22<<|}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}//~1] ",
-" )33/////2//////2//////2////2/////2///////2//////2////2<}}}}}}||<<22///////////2/2//2//////2///2///2//2////2//2222||}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}(}}}(}}}}(}}}}}}}}2/(1] ",
-" 3~)//2////////////////////////2///////2////2///////2////<}}}}}}}}}}(}(|||<<<<222222////2///////222222<<<|||}}|}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}2//@1] ",
-" )[_2///////2//2///2//2///2///2/////2//////////2///2////2///2<}}}}}}}}}}}}}}}}}|}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}|//*]] ",
-" [3~////2///////2//////2///2/////2////////2//////////2////2///2<}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}(}}(}}}}}}(}}}}}}}}}}}}//[1] ",
-" [~)//2///2/////////2////////////////2/2////2///2///////////2////<|}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}(}}}}}}}}}}}(}}}}}}}}}}}(}}}}2/|1]] ",
-" [~(////////2////2/////2///2//2///2//////////2////////2////////////2|}}}}(}}}}}}}}}}}}}}(}}}}(}}}}}}}}}}}}}}}}}}}}(}}}(}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}<//@1] ",
-" [3_/////2/////2/////////////////2///////2////////2//////2////////////2<}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}(}}}}}(}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}//_1] ",
-" [33//2////////////2////2///2//////2//2///2////2////2/////2//2/2/////////2}}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}(}}}}}}}}}(}}}}}}}}(}}}}(}}}}(}}}}}}}}}}2/(]] ",
-" 3~)//////2//2///////2////////2/////////////2/////////2//////////2/////////2|}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}2/21]] ",
-" [_<///2////////2////////2////////////2////////2/2////////2////////2/2/2//2//2|}}}}}}}(}}(}}}(}}}}}}}}}}}(}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}|//@1] ",
-" [3_///////2///2///2///2////2///2/2//2///2//////////2///2////2//2///////////////2|}}}}}}}}}}}}}}}(}}}(}}}}}}(}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}(}}}}}}}}}}}}//~1] ",
-" 333////2////////////////////2////////////2//2///////2////////////2/////2/////////2<}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}(}}}}(}}}}}}}}}}(}}}}}}}}}}(}}}}}}}}}}(}}}}}2/)]] ",
-" [~(//2/////2////2///2///2/////////2///2///////2//2///////2///2///////////2/2///////2<}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}(}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}</21]] ",
-" 3_|/////2////2///////2//////2//2//////////2///////////2//////////2//2///////2/////////<}(}}(}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}(}}}|//@1] ",
-" [3~///////////////2///////2//////////2///////2//2///2//////2///2////////2////////////////<}}}}}}(}}}}}}}}}(}}}}}}(}}}}}}}}}}}}}}}}}}}}(}}}}}(}}}}}}}}}}}}}}(}}}}(}}}}}}}}}}}}//~]] ",
-" [~3///2//2/2///2///////2/////2////2/////2///////////////2////2////2//2////////2/2//2/2/////<}}}}}}}}(}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}}}}}}}}}}2/)1] ",
-" 3~(//////////2/////2///////////2//////////2///2///2///2//////////////////2/2///////////2////2<}}}}}}}}}}}}}}}(}}}}}}}}}}}}}(}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}(}</|1]] ",
-" 3_|2/2/2////////2///2////2/////////2/2/////2///2////////2//2/2/2//2///2/////2///2////////2/////|}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}|//@]] ",
-" [3_///////2////2///////2////2/2///2/////2///////////2//////////////////////////////2//2/////////22|}}}}(}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}(}}}}}}}(}}}}(}}}(}}}}}}}}}}}}}}}}}(}}}}}2/_1] ",
-" 33~/////////2////2//////////////////////////2////2/////////2////2///2//2/2////2/////////////2//////2}}}}}}}}}}}}}}}(}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}(}}}}}}}}}}}}}2/3]] ",
-" 3~)//2/2///////////2///2//2////2////2////2/////2/////2/2///////////////////2////2///2///2/2///2//////2|}}}}}}}}(}}}}}}}}}}}}}}}}}}}(}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}</}1] ",
-" 3_}//////2/2/2/2/////2//////2////2////2/////2//////2//////2//2///2//2////////////2/////////////////////<}}(}}}}}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}}(}}}}(}}}}(}}}}}}}}}}}}}}}}}}}}}}|//1]] ",
-" [3_/////////////////2////2////////////////////////2///2//2///////////////2//2/2///////2//////2///2/////2//<}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}2/*]] ",
-" 3~~/2/2/2////////2///////////2//2/2//2/2//2////2//////////////2///2///2////////////2//////2/////////2//////2<(}}}}}}}}(}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}(}}}}22~1] ",
-" 3~3///////2/2/2/////2/2//2/////////2////////2/////2///2///2///////////////2//2//2//////2//////2//2///////////2|}}}(}}}}}}}}(}}}}}}}}}}}}}(}}}}}}(}}}}(}}}}}}}}}}}(}}}}}}(}}}}}}}}</[]] ",
-" 3~(///////////////2////////2//2/////////2//////////////////////2///2///2////////////2//////2/////////2/2/2/////<}}}}}}}}}}}}}}}}}{}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}|/|1] ",
-" 3_|////2//////2//////2/////////2///2/2////2/2/2/2/2/2/2/2/2/2///////2////////2///2//////2/////2////2////////2////<}}}}}}}}{}}}}(}}}(}}}}}}}(}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}//1]] ",
-" 33_//2/////2//////2/////2/2//2//////////2////////////////////////2//////2/2///////////2/////2///2/////////2/////2//2}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}(}}}}}}}}}}}}}}}}}(}}}}}}}(}}}}}2/*]] ",
-" 33~/////2////2/2/////////////////2///////////2////////////////2////////////2/2/2///2//////2//////2/////2/////2///////<}}}}}}}(}}}}}}}}}(}}}}}}}}}}}}}}}}}(}}}}}}}(}}}}}}(}}}}}}}}}}</~1] ",
-" 3~3//2//////////////2/2////2//2////2/2//2/2////2///////////2/////2/2/2//////////2//////2////2/////////////2//////2////2<(}}}}}}}}}(}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}</(]] ",
-" 3~(//////2//////2///////2///////////////////////2/2/2/2/2///////////////////////////2/////////2//2//2/////////2/////////2|}}}}}}}}}}}{}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}/}1] ",
-" ~_}///2////2//2////////////2//2/2/////////2/2///////////////2/2//////2/2//2//2///2/////2//////////////2////2/////2/2/2///2<}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}(}}}}}}}}}(}}}}}}}}}}}}}}2/]]] ",
-" 33_//////////////2/2/2///////////////2/2//////////////////2/////////////////////2/////////2//2///2///////2//////////////////2|}}}}}}(}}(}}}}}}{}}}}}}}}}}}(}}}}}}(}}}}}}}(}}}}}}}}}}}2/*]] ",
-" 3~~/2/2//2//2//////////2/2///////2/2/////////2//2/2/2//2///////2/2/2/////2/2/////////2////////2/////2////////2/2///////2//////|}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}</_1] ",
-" 3~3//22///////2////////////2/2//////////2//////////////////2////////2////////2//2/2////2///2////2////2//2/////////2/2////2/2///2|}}}}}}}}}}}}}}(}}}}}}}(}}}}}}}}}}}(}}}}}}}}}}}}}}}}}|/3]] ",
-" ~~)//<///2///////2//2/////////////////2///2/////////2///2//////////////2////////////////2////////2////////2/////////////////2///2<}}}}}}}}}}}}}}}(}}}}}}}}}}(}}}}}}}}}(}}}}}}}}}}}}}}}/(1] ",
-" 3_|//<//////2//////////2/2////2/2/2/////////2/2/////////////2/2/2///2//////2//2//2/2/2////////2///////2/////2/2///////2///////////2|}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}(}}}}}/21]] ",
-" ~_<//|////////2//2//2///////2////////////////////2////2/2/2////////////2////////////////2//2///////2///////////2/2/2////2////2/////2<}}}}(}}}}}}}{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}2/1]] ",
-" 33_//2</2/2////////////////////////2/2/2/2/2////////2/////////////2///////2//2///////////////////2//////2/2////////////////2////2/////2|}}}}}}}}}}}}(}}}(}}}}}(}}}}}}}}(}}}}}}}}}}}}}}}</*]] ",
-" ~~~//<2/////2//2//////2///2////2//////////////2/2///////////2//2/////2//////////2/2/2////2////2//////2/////2//////////2////////////2////<}}(}}}(}}}}}}}}}(}}}}}}}}(}}}}}}}}}(}}}}}}}}}}|/~]] ",
-" 3~)//|2//////////2/2////////2////2///////////////2///2////2///////2///2/2/////////////2////2////2/2///////////2//2/2////2////2///2///2///2}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}(}}|/3]] ",
-" ~~(//}///2////////////2/2////////////2/2/2/2///////2///2////2//2///////////2/2/////////////////////////2///2//////////////2///2///////2////|}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}/(1] ",
-" ~_|/2}/////2/2/2//////////2///2///2/////////2/////////////////////////////////2/2/2////2////2/2///2//////////////////2///////////////////2//<}}}(}}}}}}}}}}}}}}}}}}}}(}}(}}}}}}}}}}}}}}}221] ",
-" ~_</<|/////////////2//////////////////////////2/2////2//2/2//2//2/2/2///2///////////2////2/////2////2//2///2//2/2//2///2//2////2/2///2///2//22}}}}(}}}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}}}}}}22]]] ",
-" 33_//||/2////////2////2/2///2///2///2//////////////2//////////////////2///2////////2//////////////////////2//////////////////2//////////2///////|}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}(}}}2/*]] ",
-" ~~~//|<///2///////////////////2////////2/2//2///////2///2///2//2/////////////2//2//////2////2////2//2///////////2/////2////////////2/////////2///<}}}}{(}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}/_]] ",
-" 3~3//}<////2/2/2//2//////2//////2/2///////////2///////2//////////2////////2////////2/////2////2///////2/////2/////2/////2/2////2/2///////2/////2//2}}}}}}}}}}}}}(}}}}(}}(}}}}}}}}}}}}}}}}}/~]] ",
-" ~~)/2}2/////////////2//2///2/////////2////2/////2/2///////2///2////2/2/2/////2///////2/////////////2///2/2/////////2////////2//////2//2/////////2//2}}}}}}(}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}/[]] ",
-" ~_(/<}2/////////2//////////////////////2////2///////2///2////2///2/////////////2/2/////2///2///2/2///////////2//2////2////////////////////2//////////|}}}}}}}}(}}}}}}}}}}}}}}}}}}(}}}}(}}}2(1] ",
-" ~_|/|}/2/2/2////////2///////2/2//2/2/////////2//2////////2//////////////2/2/////////2///2///2//////2//////2/////////////2////2/2//2//2/2/////2////2//2<}}}}}}}}}(}}}}}}}}}}}(}}}}}}}}}}}}}22]] ",
-" ~3_//}}///////2///2////2/2////////////2//2//////////2//////////2//2//2////////2////////////////////////2//////2////2///////2//////////////2/////2///////2}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}</1]] ",
-" ~~_//}(///////2////////////2///2//////////2//2//2////2/2////2//////////2///2/////2/2/2///2///2///2//2//////2////2/////2//2//////////2////////2////////2//2}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}<2*]] ",
-" ~~~/2}|/2//2////2//2/2///////////2/2///2//////////////////2////2/2//2//////////////////////////2/////2//2///////////2////////2/2/2////2//2//////2//2//////2|}}}}}}(}}}}}}}}}}}}}}}}(}}}}}}}|/*]] ",
-" ~~~/2}|/////////////////2///2///////2//////2//2///2////2////////////////////2/2///////2///2//////2//////////2////2///////2////////////////2///2////////2///2|}}}}}}}}}}}}}(}}}}}}}}}}(}}}}}|/~]] ",
-" ~~)/<}|//2//2//2////2//2///2///2///////2//2/////2///////////2////2//2/2/2//////2/2//2///////2//////2//2///2///2///////2////2///////2///2////////////2////////<}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}/~]] ",
-" ~_)/|}|//////////2//////////////2//2///////2//////2//2///2////2///////////2////////////2////////////////////////2//2///////////2////2//////2///2/2///////////2<}}}(}}}}}}}}(}}(}}}}}}}(}}}}}/(]] ",
-" ~_|/|}<//2//2//2///2///2/2//2////////2//2/////2////////2/////////2//2/////////////2//2///2///2/2///2//2/2//////////////2////2///2/////////////////////2//2/////2}}}}}}}}}}}}}}}}}}}}}}}}}(}}2(1] ",
-" ~_}/}}</////////////2/////////2//2////////////////2///////2//2/////////2//2//2////////////2/////2///////////2////2//2////2///////////2//2///2/////2/2///////////2}}}}}}}}}}}}}}(}}}}}}}}}}}}22]] ",
-" ~~_//(}<//2//2//2///////2//2//2/////2//2////2////2////2//////////2//2//////////2//////2//////////////2////2////2//////////////2////2//////2////2////////2//2/2////2}}}}}}}}}}}}}}}}}}}}}}}}}}</]]] ",
-" ~~*/2}}<//////////2//2//////////2////////////2//////////2////2///////2//2//2/////2/2/////////2////2////2////2/////2////2///2////2////2///////////////2/////////2////}}}}}(}}}}}}}}}}}}}}}}}}}<2@]] ",
-" ~~~/2}}<//2///2/////////2//////////2///2//2///////2///////2///////2//////////////////2/2//2////2////////2///////////2///2//////////////2////2///2//2////////////////2|}}}}}}}}(}}}(}}}}}}}}}}</*]] ",
-" ~~~/<}}<///////2////2/////2//2//////2//////////2/////2/////////2//////////////2///////////////////2/2////2//2//2/////////////2///2////////2///2//////2//2/2//2///2////|}}}}}}}}}}}}}}}}}(}}}}|2*]] ",
-" ~_3/|}}</2//2/////2//////2/////2////////2///2/////2////2//2//2/////2/2/2/2/2///2/2////2////2////////////////////2//2/////2/////2///2//2////////////////////////2/////2/|}}}}}}}}}}}}}}}}}}}}}|/~]] ",
-" ~~)/|}}</////////////2////2/////2////2////////2/////////////////2//////////////////2////2///2//2//////2///2/2/////////2////2//////////////////2//2/////////2//////2/////|}(}}}}(}}}}(}}}}}}}}}/~]] ",
-" ~_)/}}}<//2///2////2/////////2///////////2///////2//2////2////2/////2/////////////////2//////////2/2//////////2//2//2////////2////2////2/2//2//////2/2/2/////////////////|}}}}}}}}}}}}}}}(}}}}/[]] ",
-" ~_|/}}}<///////2//////2///////////2//2////2//2///////2////2//////////2//2//2/2//2////////////2/////////2////2///////////2///////2///2///////////////////////2//2///2//2///|}}}}}}}}}}}}}}}}}}}/(]] ",
-" ~_}/}}(<///2/////2///////2////2/////////////////2///////////2///2////////////////2/2//2//2/////2////2////2/////2//////2///2///////////////2///2/2///////2///////2//////////|}}}}(}}}}}}}}}}}}}/(1. ",
-" __|2}|}<////2//////2//////2////2//2///2///2///////2////2//////////2//2//2////2////////////2//////2//////////2///2//2/////////2///////2/2/////////2//2////2//2///////2///2///|}}}}}}(}}}}}(}}}}22]] ",
-" ~~_//}}}<///////2/////2//////////////2///////2///2////2////2//2/////////2////////////2///////2////////2//////////////2///2//////2/2/////////2//////////2///////////2////////2/|}}}}}}}}}}}}}}(}221]] ",
-" ~_*/2(}}<2///2//////////2///2///2///////2///////////////////////2///2//////2////2/2/////2//////2///2///2/2///2//2/2/////////2////////////2////2///2///////////2/2/////2//2/////|}}}}}}}}}}}}}}}2/]]. ",
-" ~~_/<|}}<////////2//2/////2///////2///////2//2////2////2////2/////2//////2//2////////2/////2///////////////2////////2///2/////2////2/2//////////////2////2/2////////////////////|}}}(}}}}}}}}}}2/@]] ",
-" ~_~/<}}}</2///2//////2///////2////////2///////2////2////2////2////////2///////////2/////2//////2///2/////////////////2////2/////2////////2//2////////2///////////2/////2//2//2///}}}}}}}}}}}}}}22*]. ",
-" ~~~/<}}(</////////2/////2//////2//2/////2////////2/////////////2///2////2///2/2//////2///////2///////2///2///2/2//2//////////2////////2///////2/2///////2////2////2/2////////////2|}}}}}}}}}}}}</*.] ",
-" ~_~/<}|}|//2//2///////////2/////////2//////2///////2//2///2/////////2//////////////////2//2/////2/////2///////////////2///2//////2/2//////2//////2///2///2///////////////2////2////}}(}}}(}}}}}<2*]. ",
-" ~_)/|}}}|///////2///2///////2////2///////2////2/////////2////2//2//////2//2////2/2/2//////////////2///////2/////2///2///2///////////////2//////////////////2//2///////2////2/////2/2|}}}}}}}}}}</~]] ",
-" ~_)/|}|(|/2//////////2//2/////2///////2/////////2//2////////////////2///////////////////2/2//2/////////2/////2//////////////2/2//////2/////2/2////2/////////////2//2//////////2/////2}}}}}}}}}}</~]. ",
-" __)/|}}}|////2///2////////2///////2/////2/2//2////////2///2///2///2////2///2/2//////2//////////2///2///////2/////2///2///2//////2/2////////////2////2//2//2///////////2//2///////////2}}}}}(}}}</~1. ",
-" __[/|}}}(/////2//////2/////////2////2//////////2///2//////2//////////////////////2////2///2/////2///2///2/////2///2///2///////////////2////////////////////2//2///2/////////2/////2///<}}}}}}}}</~]] ",
-" ~_(/|}}}}//2//////2/////2///2//////////2///2///////////2///////2///2//2/2/////2////////2////2/////////2/////////////////2//2/2/////2///2/2//2////2///2//////////2///2///2/////2////////<}}}}}}}</[]] ",
-" __}/|(}}}2////2///2//////2//////2/2/////2///2//2/2//2//////2///2////////////2////2/2////////////2/////////2///2////2//////////2/2//////////////2///2///2////2/////////////////////2//2//<}}}}}}</(]. ",
-" ~_}/}}}}}2///////////2//////2///////2////////////////////2/////////2///2/2/////////////2//2///////2/////2///////2////2//2/2///////2//2////2///////////////2////////2/2///2/2///2/////////<}}}}}2/(1] ",
-" _*|/}|(}}22////2/////////////2///2////2/////2///2//2//2////////2////2/////////2////2/////////2///////2/////2///////////////////2///////2////2//2//////2//////2//2///////////2/////2////2//|}}}}2/(]. ",
-" __}/}}}}}<///2////2///2/2//////2////2///2/////////////////2//2//////////2//2/////////2/2//2////2///2/////////2///2////2////2////2//2////2////////2/2////2/////////////2///////2/////2//////|}}}2/(1. ",
-" __(/}}}}}|////////////////2/2////////////2///2//2//2///2////////2////2////////2/2///////////////2////2//2/////2////2////2///2///////2//////2//2///////////2//2///2/2////2//2///2////////2///2}<//(]] ",
-" ~_//(}}}}|////2/2//2////2//////2/////////////////////2/////2///////2///2//////////2////2/2//2/////////////2//////////////////////2////2//2//////////2//////////2/////2///////////2///2////2//////}]] ",
-" ~__//}}}|(}2//////////2///////////2//2/2///2/2////2/////2/////2///////////2/2////////2////////////2///2////////2/2///2///2///2/2//////////////2/2/2////2//2//2/////2////2///2//////2//////////2///21] ",
-" __*//}(|}}}////2///2/////2/2///2///////////////2////////////2////2///2//2/////2/2////////2//2//2////////2///2//////////2////////////2///2///2///////2/////////2///////////2////2///////2////2/////2]]] ",
-" __*//}}}}|(22///2////2/////////////2////2//////////2/2//2////////2////////////////2///2///////////2//////2////////2//////2//////2////2////////////2////2//2/////2///2///////2///////2////2////2///21]. ",
-" ___//|}}}}}2///////2//////2//2//2/////2///2///2//2///////////2////////2//2///////////////2//////////2/////////2/////2//////2//////2//////2////2//////2//////2/////2///2/2///////2/////////////////21]. ",
-" __*//<(}}}}|///2///////2/////////////////////////////2////2////////2////////2//2///2////////2//2/////2/////2///2/////////////2////////2////2///2//2/////2////////////////////2///2////2///2////2///].] ",
-" __*//|}}}}}|///////2//////2////2/2//2///2//2///2///2////2////2//2//////2/2//////////2/2/2/2//2///2/////2/////////2///2//2//////2//////////////////////////2///2////2//////2////////2////2////////2/]]. ",
-" __*//|}}}}}}/2//2/////2/////2////////////////////////2//////////////2///////2//2/2//////////////////////2//2//////2///////2////////2///2///2//////2//2/////2////2//////2/////2////////////2/2/////21.] ",
-" __*//|}(|}(|2/////2//////////////2///2////2//2//2///////2///2///2///////2//////////////////2//2//2//2////////2////////2/////2///2////2///2///2/2///////2/////2//////2//////////2////2/////////2///21.. ",
-" __*//|}}}}}}22//////2//2//2///2////////2////////////2////2///////2//2////2//////////////2/////////////////////2////2/////////2///////////////////////////////////2/////2//2//////2////2////////2///]]] ",
-" __*//<}}}}(|<///2////////////////2////////2////2/2////2//////2/////////2///2/2//2/2/2///////2/2//2///2//2/2/////2//////2//2//////2/2///2///2////2//2/2///2////2/////////////2///////////2///2////2/].. ",
-" __*//<}}}}|(|////////2/////2/2//////2/2////2/////////////2////2/////2/////////////////2///2///////2/////////////////2/////////2//////////////2/////////////2//////2/2///2////2///2/2/////2////////2]]] ",
-" __*//<}}}}}}}2///2/////2////////2/////////////////2///2/////////2///////2/////2///////////////2/////2//////2//2///2/////2////////////2///2///////2////2////////2//////////2////2/////2/////////2//21.. ",
-" _**//2(}}}}}|</////2////2/////////2/////2///2//2///////2///2/////2///2////2//////2/2///2/////////2////2/2////////////2/////2///2//2///////////2////2////2///2////////2///////////////////2//2/////<]]. ",
-" **</2|}}}(|(<//2/////////2//2//////2/////////////2//////2////2//////////2//////////2///2//2//2/////////////2///2////////2////////////2///2///////////////2/////2//////2/////2///2////2///////////(]] ",
-" _*}/2}}}}}}}|///////2//////////2/////2///2//2///////2////////////2///2/////2/2//////////////////2//2////2///2////2///2/////2///2//2///////2////2////2///////2////2///////2////////2/////2///2////(]. ",
-" **|//}}}}}}(|2//2/////2//2//2/////////////////2//2//////2//2///2////////2/////2/////////2//2////////2//////////////2/////////2////////2/////2////2////2////////////2///2/////2////////////////2//(1. ",
-" _*}//(}}}}|(|<////2//////////2////2/2//2//2//////////2/////////////2////2////////2/2/2///////////2//////2///2////////2//2//////2///2////////////////////2///2/2/////2/////2///2///2//2///2///////[]. ",
-" **3//||(|}}}}|/////////2///////2//////////////2///2/////2///2///2////2//////////////////////2/2////2/2////////2/2/////////2//////2/////2//2///2///2/2/////2/////2//////////////////////2///2/////~]. ",
-" **3//||}}}}}|(2//2//2/////2//////////2////2////2////2/////////////////////2/2/2//////2/2//2/////////////2////////////2//////////////2//////2///2/////////////////////2////2///2///2///////////2/2~]. ",
-" **~//|}}}}(|(|2////////2//////2//2/////2//////////////2/2///2///2//2///2///////2/2/////////////2/2////2///2//////2/////2///2//2/////////2////////////2//2///2////2/////2////////2///2////2//////2*.. ",
-" **_//<(}}|}||(|//2/////////2//////2/////////2/////2//////////2//////2///2///////////////2///2//////2////////2/2/////////2////////2///2/////2///2//2///////////2///2/////////2/////////2////2////2*]. ",
-" *@_//2|}}}}}(||2///2///2///////2//////2//2////2////////2///////////////////2//////2/2///////////////2//2/////////2//2///////2//////2//////////////////2///2/////////2///2/////////2//////////2//21.. ",
-" **@///(|(}}}|(}<////2////2//2//////2/////////////2//2///2/2///2//2///2//2////2////////2//2///2//2/////////2///2//////////2////2///////2////2///2///2///2//////2///////2////2/2/2////////2///////<].. ",
-" *@<//}}}}}}}|}|///////////////2//////2//2///2/////////////////////////////////2/////////////////////2/2////2///2/2///2/////////2///////2////////2/////////2////2///////2/////////2//2////2/////(]. ",
-" **(//|}}}}|(}|(2//////2///2/////2/////////////2////2//2///2//2///2//2//2//2///////2//2//2/2/2//2/2//////2//////////2//////2///////2////////2//////2////2////////2/2/2///2//////2////////////2//3]. ",
-" *@)//|}}}}}}}}|<//2/////2///2/////2//2//2///////2//////////////2////////////2/2////////////////////////////2/////////2//2///2///2///2///2////2/////////////2//////////////2/2/////2///2///2///2_]. ",
-" *@_//<}}}|(}|(}(///2/2/////////2///////////2/2/////2///2//2//////////2//2///////2/////////////////2//2//2///2/2/2/2//////////2///////2////////////2/2///2/////2//////2/////////2///2///2////2//*]. ",
-" @@*//2}(|(|}}}||<//////2//2//2///////2//2////////2///2///////2///2////////2////////2//2////2/2///////////////////////2//2/////////2/////2//2///2//////2////2///2/2/////2////2/////////////////2].. ",
-" *@@2//|}|}}|(|(|(///////////////2/2///////////////////////2///////2///2//////2///2//////2///////2/2//2//2/////////2///////2///2/////////////2////////////2/////////2/////2/////2/2/2////2///2/}]. ",
-" @*}//}}}}}}}}}|}2//2///2//2//////////2//2//2/2/////2//2//////2/////2///2//2//2////2//////////////////////2//2/2/////2//////2///2///2///2//////2//2/2//////2/////////2///////////////2////////3]. ",
-" @@3//<(}}}|(|(|(|///2//////2/2///2/////////////2/////////2////2/////////////////////2///2//2/2///////////////////2////2/2////////2//2/////2//////////2/2/////2/2/////////2/2///////////2////2_]. ",
-" @@_//<|}}}}}}|}|(//////////////2///2///2///////////2//2//////////2///2//2/////2///////////////////2/2/2////////////////////2/2/////////2////2//2//////////2//////2///2///////2/2/2///////2//2@.. ",
-" @@@///(}}}}}|(}}|(////2//2///////////////2//2///2//////////2//////2///////2//////2//2/2/2////2//2///////2/2///2//2/2/////2//////2///2////////////2/2///2///////////////2////////////2///////|].. ",
-" @@|//|}}}}(|}|}(|2/////////2///2//2//////////2/////2//2/////2////////2/////2//////////////////////////////2/////////2///////2///////2//2/2/2//////////////2///2/2/2//////2/////2/////2///2/3]. ",
-" @@3//<(}}}}|(}||(|2///2/////2//////2//2//2/////////////2/////2////2/////2/////2/2////////2//2////2//2////////2////////2////////2/2///////////2/////2////2/////////////2//////////2////2///2_]. ",
-" @@_//<|}}}}}}}}}|}2/2////2/////2/////////////2//2//2//////2///////////2////2//////2///2///////2///////2////////2/2//////2////////////2/////////2/////2/////2///////2/////2/2///////2//////2@.. ",
-" 1@@2//}|(}}|(}|(|(|//////////////2//2////2//////////2/2////////2//2////2/////////////////2///////2//////2/2////////2//////2/2/////2///////2//////////////////////2////////////2/2/////2///}]. ",
-" @@(//|}}}}}}}}|}|(<//2///2//2////////2//////2/////////////2/////////////2//2///2//2///////2///////2/////////////////2////////2///////2////2/2/2/2/2//2/2///2/2/////2/2////2////////////2/~.. ",
-" 1@_//<}}}|(}|(|(||(///2//////2//2/2//////2////2/2///2//2////2///2///2///////2////////2///////2//////2/////2/2//2//////2//////////2/2///2/////////////////2/////////////2/////////2//////2@.. ",
-" 1@@//2|(|(|}}}}|}(||//////////////////2////////////////////2//////2////2//2/////2/2///2/2/2/////2/////2//////////2/////2/2/2//2////////////////////2//////////2//2/////////2/2/2///2////}].. ",
-" 1@(//|}|}}}}|(||(|(<///2//2//////2///////2//2/////2///2/////2//////////////2////////////////2//////////2///2//////2//////////////////////////2///////2////2////////2////2///////////2//~]. ",
-" 1@_//<}}}}(|}}}}||(|2///////2//2///2///2//////2/////2/////////2///2//2////2///2/////////////////2/2//////////2/////////////2//2//2/2/2/2/2/////2///////2/////////////2////////2///////2@]. ",
-" 11@///(}}}}}}|(|(||(|///2///////////////////////2////////2/////2///////2/////////2/2/////2///2//////2//2///////2//2/2//////////////////////2//////2///////2/2/2/2//////////2/////2////|].. ",
-" 1@)//|}}}}(}}}}|}|}(<//////2////2//2///2/2///2///2///2////2///////2//////2//2/2/////2///////////////////2/2//////////2/2//////2/////////////2/////2/2////////////2///2/2////2//2//2//_]. ",
-" 11_//<|(|}}}}|(|(}||(<//2////2//2/////////////////2////////////2/////2////////////////2//2///2//2/////////////2//////////2/2///////2/2/2//////2/////////////////////////////////////2@.. ",
-" 111<//}|}}}}}}}}|}(|||/////////////2/////2///////////2//2///2//////2/////2///2//2/2///////2///////2/2/2////2//////2////////////2////////2/2//////////2/2//2//2/2/2/2////2///2/////2/).. ",
-" 11~//<(}|(}}}}}}|}}(|(////2////2/////2///2//2/2//2////////////2/////2////2///////////2//////2/////////////////2////2/2////2/2///2////////////2/2//2///////////////////////////2///2*.. ",
-" 11*//<|}}}}}(|(|}(||(||/////2/////2////////////////2////2////////2//////////2////2////////////2///////2/2//////////////////////////////////////////////2//2////////2/2/2/2/2//////}].. ",
-" 111(//|}}}}}}|(}||(|}|(<2//////2///2/////2////2/////2////2//2/////////2//////2///2///2/2/2/////////////////2//2/2////2/2////////2//2/2//2/2////2////2///////////2/////////////2///~]. ",
-" 11*//<(|}}}}}}}}}|(|}|(////2////////2////////////////////////2////2////2//////////2///////2///2/2/2///////////////////////2/2/////////////2/////2/////////2/2/////////////2////2<1.. ",
-" 111|//}}}}}}}}|(}||(||((<//////2//////2///2/2//2/2//2///2//////2////////2//2//2/////////////2/////////2/2/2////2/2/////2///////2////2////////////////2/2///////2////////////////3]. ",
-" 11_//<}}}}(|}}}}(|}}|||(2//2////2////////////////////2////2//////2//2///////////2//2//2//////////2///////////////////////////////////2////2//2//2///////////////2/2/2//2/2//2/2@.. ",
-" 111|//}}}}}}}}||(|(|(}||(</////////2///2///2///2/////////////2////////////2//2//////////2////2/////2///////2////2/2/2//2/2/2//2/2//////2/////////2/////2/2/2/////////////////2[... ",
-" 11_//<}}}}(}}}}}|}}|}(||(2//2//2////////////2///2////2////2//////2///2////////2//2//2////2////2/////2//2//////////////////////////2///////2///////2/////////2///////2///2///2@.. ",
-" 111|//}}}}}}}}}|(}}}|(}||(<///////2//2//2////////2////2///////2////////2///2////////2/////2///////////////2/2//////2//////2////2///////2/////2/////2//////////2/2///////////3... ",
-" 11_//|}}}}(|}(}|}(|}|}(||(2//2//////////////2//////////2///2////2///2////////2//2////2//////2/2/2///2/////////////////////////////2//////2////2/////2//2/2///////2///2///2/@.. ",
-" 111|//}}}}}}|}}}}|(}}||(||(|/////2///2///2///2//2/2///////////////////2//2//////2////2//2/////////////2////2/2/2////2/2////2//2/////2/2////2////2/////////////////////2///3... ",
-" 11_//<}}}(|(|}}}}}}}(||(||(<2///////////////////////2///2///2//2///////////2//////////////2////2//2///2////////2///////2///////2////////2////2///2//2////2///2///2/////22@.. ",
-" 111(//|}}}}}|(}}}}}|(}|(||(|(<//2//2///2/////2///////2////////////2////2/////////2//2//2///2/////////////2///////2//////2//2/////2///2///2////////////2/////////////////~... ",
-" 11*//<}}}}}}|}}(|}}|}}|}}||}|<//////////2/////2/2//////2///2//2////2//////2//2//////////////2//2//2///2///2///////2/////////2/////2///////2/2///2//2////2/2/2/2//2/2//<1.. ",
-" 111)//|}|(|(}}}}}}}}|(|(|(|(}(}/2///2//////2////////////2//////////////2///////2///2//2//2/////////2////////2/2////2/2//2///2//2/////2///////2///////////////////////2_]. ",
-" 11@<//}}}}}}}}}(}}}}}}}}|}|||(|<//////2/////2//2//2/////////2//2///2//////2///////////////2///2//////2///2/////2//////////////////2////2///////2//2/2/////////2///2/(1.. ",
-" 111~2/<}}}}}}}}}}}}}}|(|(|(}|(|(}/2////2////////////2////2//////2/////2////2///2///2//2///2///2//2////2///2//////2///2//2///2//2////////////2////////2/////2///////2*.. ",
-" 111|//|}}(|}}}}}(}}}}}}}}|}}|||(|</////////2///2/////2//////////////////////////2//////////////////2///////2//////2//////2////////2////2///////2//////2//////////23].. ",
-" 11@2/2}}}}}}}}|}|(}}}}|(|(|(}}|(|(<////2///2///2////////2//2///2//2///2////2////////2//2///2///2//////2///2//2//////2////////2////2///2///2////2//2//////2/2/2//<1.. ",
-" 111[//<}}(|(|(|(||}}}}}}}}}|}}(|}|}|</////////////2//2//////////////2////2///////2///////////2//////2//////////2//////2///2//////////////////////////2/////////2*.. ",
-" 111|//|}}}}}}}|(|(|(}}}}|(}}}|(|(}|(|<//2//2//2/////////2///2//2//////////2//2/////2///2///////2/////2////2//////2////////////2///2///2//2//2///2/////////////)].. ",
-" 11@///}}}}}}}}}}}}|}}}}}}}}}}}}}}}|}}|2///////////2//2///////////2//2////////////////2///2//////2//////2//////2/////2///2//2/////////////////2///2/2/2//2/22<1.. ",
-" 111~//2}}}}}}}}}|(}|(}}}}|(}}}}|(|(}}|(|22//2//2////////2//2/////////2///2///2//2//////////2//////////////2/////2////2/////////2///2////2//////////////////2*].. ",
-" 111(//<}}}}}}}}}}}}}}}}}}}}}(|}}}|}}}}}(|<2///////2/////////2////2////////2//////2////2//////2//2//2///2///////////////2///2////2////2////2//2///////////23].. ",
-" 11@<//|}}(}}}}}}}}}|(}}}}|}}}}|(|(}}}|}}|(|<22////2///2/////2///////2////////////2///////2//////////////2//2////2//////2/////////////////////2//2/2/2///(1.. ",
-" 111_///|}}}}}}(|}(|(|}}}}}}}}}}}}}}}(|(|(|}}||</////////2////////2/////2///2//2//////2////////2///2//////////2////2///////2//2///2///2////2////////////|@]. ",
-" ]11~2//}}}}}}}}}}|}}|(|(}|(}}}}}}}}}}}}|(|(}}((|<<2/////2////2/////////2////////2////2///2////2////2///2//////////2///2//////////2////2/////2//////2/2_].. ",
-" ]11(//2}}}}}}}}}}}(|}}}}}|}}}}}(|}}}}}}|}}}}|}}}}||<2/////2////2//2///////2//////////////////////2//////2///2////////////2//2////////////2////2////23].. ",
-" 111(///(}}}}}}}}}}}}}}|(|(}}}|}}}}}}}}}}}}}}}|(|(}}}(|<</////////////2/////2////2////2//2///2/////2/////////2///2////2///////////2///2////////////(].. ",
-" 11*<//<}}}(}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}|}(|(}||<22///2//////////2////2/////////////////2///2/////////2///////2//2//2////////2//2///2|1.. ",
-" ]11@///<}}|(}}}}}}}|}}}}|(|(|(}}}}(|(|(}|(}}}}}}}}}}|}|}}}}}}}(}||<<222/2///////////2///2//2//2/////////2///2/////////2//////////2///2///////2/<@].. ",
-" ]11_///<}}}}}}(}}}}}}}}}}}}}}}}}}|}}}}}}|(|}}}}}(|}(|(|}}}}}}|}}}}}}}(|}}}||<22//////2/////////2///2/////////2///2///////2////////2////2////22*... ",
-" ]11_///2}}}}}|(}}}}}}}}}}}}|(}}(}}}}|(}}}}}}}}}}}}}}|(}|(}}}}}}|(}}|}}}}}}}}|(}|<2///////2/////////2////2////////2//2////2//2/////////2////2_... ",
-" ]113///2}}}}}}}}}}(}}}}}}}}}|}}}}}}}}}}}(|(|}}}}}}}}}}}}}}}}}}}|}(|(|(|}(|(|}}}}}}|2//2////2//2//////2/////2/////////////////2////2//////2_].. ",
-" ]113///2}}}}}}}}}}}}}}|(}}}}}}}}}}}}}}}}}}}|(}}}}}}}}}}}}(|(|(}}}}}}}}|}|}}}}}}}}}}}<2////////2///////2////2///2///2///2////////////2//23].. ",
-" ]11[///2|}(}}}}}}}}(}}}}}}(}}}}(}}}}}}}}}(|}}}}(}}}(|(|}|}}}}|}}}}}}}(|}(|(|(|}}(|}}}|2/////////2///////////2///////////2//2//2//////231.. ",
-" ]113////<}}(}}}}}}}}}}}}}}}}}}}|(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(|22///2////2////2////////2//2/////////////2///3].. ",
-" ]11[////|}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}(}}}}}}}}}}}}}(|(|}}}}}|}}<//////////2////2////2//////2////2///2///2231.. ",
-" .11[2///2}}}}}}}}(}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}|}}|(|(|(}|(}}(</2//2/////////2////////////2///////2///3].. ",
-" ]]1_////2|}}}}}}}}}(}}}(}}}}}}(}}}}}(}}}}(}}}(}}}}}}}(}}}}}}(}}}(}}}}}}}}}}}}}}}}}}|}}}}<//////2//2///////2//2/////////2/////<~].. ",
-" ]11_2////<}}}}}}}}}}}}}}}(}}}}}}}}|}(}}}}}}}}|(}}}}}}}(}}}}}}}}}}}}}}(}}}}}}}}}}|(}}}}|(}/2///////////2/////2//2///2///////2_].. ",
-" ]]1@2////<}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}(|}}}}}}}}|/////2//2//2////2//////2////2//2<*].. ",
-" ]11@}2////<}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}|(}}}}}}}}}(/2///////////////2////////////<@].. ",
-" ]]11(/////2|}}}(}}}}}}}}}(}}}(}}}}}(}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}(|}}}}}}}}}}}(|}}}(|}|///2//2//2/2//////2////2//2/(11.. ",
-" ]]11~/2////<}}|(}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}(}}}}}}}}}}}(}}}}}}}}}}}}}}}}}|///////////2//////2///////31... ",
-" ]]1*</////2<}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}(}}}}}}}}}}(|}}}}(}}}}}}}}}}}}}}}}(|(|}}}}(|///2/////2///2////////2/<_1... ",
-" ]]11(/2////2}}}}}}}}}(}}}}}}}}}}(}}}}(}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}|}(|//2//2////////2//2///2|@... ",
-" .]11~///////<|}}(}}}}}}}}}}}}(|}}}}}}}}}}}}(}}}}}}}}}}}(}}}}}(}}}}}}}}}(}}}}}}(|}}}}}}//////////2//2/////2/311.. ",
-" ].]1@}2//////2|}}}}}}(}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}|}}}}}}}|(}}}}}(<//2///2///////2///<_1... ",
-" ]]11~2///////<}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}}(}}}}}}}}}(|}}}}}}}}}}(}}}}(|}}}}}}}}}</////////2/////22)@].. ",
-" ].]1@(/2//////2|}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}(}}}}}}}}}}}}}|(}}}|(|//2//2/////2///<_]... ",
-" ]]]1_<2///////2<}}(}}}}}}}}}}}}}(}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}|////////////22)1]... ",
-" ]]]11~/2////////2|}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}(}}}}}}}}}}}}}}(}}(}}|(}|(|////2///2///(@]... ",
-" ]]]1@3/2////////2<|}}}(}}}}}}}}}}}}(}}}}}}}}}(}}}}}}}}}}}(}}}(}}}}}}}|}}}}}}}2/2////2//2|_1]].. ",
-" ]]]1@[2//2///////<<|}}}}(}}|(}}}}}}}}(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}|(}}}}}}/////////|~1]... ",
-" ].]]1@3/2//////////<<}}|}}}}}}}}}}(|}}}}}}}}}}}}}(}}}}}}}}}}}}}}(}}}}}}}}</2///2/|_11... ",
-" .]]]1@[<2//2//2/////2<|}}}}}}}}}}}}}(}}}}}(}}}}}}}}}(}}}}(}}}}}}}}}}}}|///2//(~1]... ",
-" ..]]11_|////////////2/<<|}}}}}}}}}}}}}(|}}}}}}}}}}}}}}}}}}}}}}(|(|(2////2(_11... ",
-" .]]1]1*32/2/////////////2<|}}}}}}}}}}}}}|(}}}}}}}}}}}}}}}}}}}}}|///2|3@].... ",
-" ...]11_)22/2//////2/////22<<|}}}}}}}}}}}}(}}}}(}}}}(}}}}}}<2/22)*@1]].. ",
-" ...]]11_)/2/2////////////////2<<|}}}}}}}}}}}}}}}}}}}|<<//2[_11..... ",
-" ..]]]]1*3(2/2/2/////////2////////222<<<<<<<<222///2|3*1]].... ",
-" ....]111@~(<2/2///2////////2///////////////2)~_1]]..... ",
-" ....]]]1]1@_3)(2222/2/////////2222<)[_*@]]].].... ",
-" ....]]]]1]111@@**_~_~~_~_*@*11]]]]....... ",
-" .........]]]]]]]]]]]]]]]......... ",
-" .................... ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" "};
diff --git a/perl-install/pixmaps/mouse_3b_left.png b/perl-install/pixmaps/mouse_3b_left.png
new file mode 100644
index 000000000..4115a3f8c
--- /dev/null
+++ b/perl-install/pixmaps/mouse_3b_left.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b_middle.png b/perl-install/pixmaps/mouse_3b_middle.png
new file mode 100644
index 000000000..c2c99f1f7
--- /dev/null
+++ b/perl-install/pixmaps/mouse_3b_middle.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b_mini.xpm b/perl-install/pixmaps/mouse_3b_mini.xpm
deleted file mode 100644
index d7ecefe60..000000000
--- a/perl-install/pixmaps/mouse_3b_mini.xpm
+++ /dev/null
@@ -1,211 +0,0 @@
-/* XPM */
-static char * mouse_3b_mini_xpm[] = {
-"105 175 33 1",
-" c None",
-". c #0C1834",
-"+ c #FE9A02",
-"@ c #303C5D",
-"# c #AB8128",
-"$ c #E7A418",
-"% c #DAA22A",
-"& c #95742E",
-"* c #E6A929",
-"= c #747C98",
-"- c #62543B",
-"; c #F7B01E",
-"> c #FEA005",
-", c #B7944C",
-"' c #ACAECB",
-") c #816834",
-"! c #7C85A3",
-"~ c #AFB2CF",
-"{ c #A28C5E",
-"] c #5F6A8B",
-"^ c #E2A62E",
-"/ c #14254C",
-"( c #424E6E",
-"_ c #FEB212",
-": c #BABEDA",
-"< c #6B7491",
-"[ c #848BA9",
-"} c #9A9ABE",
-"| c #D6A236",
-"1 c #A6A8C7",
-"2 c #9FA0C0",
-"3 c #515D7F",
-"4 c #CB9420",
-" ]]}3. ",
-" 3]}(. ",
-" ]<}@. ",
-" 3=}@. ",
-" 3=}/ ",
-" 3!}/ ",
-" 3!}. ",
-" (!}. ",
-" 3[}. ",
-" ([}. ",
-" (}}. ",
-" (!}. ",
-" (!}. ",
-" (!}/ ",
-" (=}/ ",
-" (=}@ ",
-" ]<}@. ",
-" ==}<@@ ",
-" !!}}}!@/ ",
-" 3}}}}}[/ ",
-" (}}}}}}/ ",
-" @}}}}}}(. ",
-" ([}}}}}3. ",
-" (!}}}}}<. ",
-" 3!}}}}}!/ ",
-" ](@@@@@@/( ",
-" '2}[]3<]==<]3]]=== ",
-" 2}[2'::~'~1111'':1}=]]] ",
-" ~2[=(:22}}}}}}}}}}}}2:[/3(]3 ",
-" 2[,_$/}1}}}}}}}}}}}}}}2(@_%-(33 ",
-" '[,;___(]'}}}}}}}}}}}}}}}/)___4((( ",
-" 2[^_;>__)@:}}}}}}}}}[}}}}!/#_____&@(( ",
-" ~}{_>+++__#/:1}}}}}}}}}}}}}</$______4@@@ ",
-" '[,;>+++>__4/~~}}}}}}}}}}}}2]/________;-@@ ",
-" 1!%>+++++___*/}:2}}[}}}}}}}}13@_________;)@@ ",
-" 2!*>+++++_____/[:'}}}}}}}}}}}1@-_________;;)/@ ",
-" 1!$++++++______@=::}}}}}}}[}}}~@-____________)// ",
-" 2!%++++++_______(]::'}}}}}}}}}}:/&_____________)@/ ",
-" 1!%>+++++>_______-3:~:}}}}}}}}}}:/)______________-// ",
-" [,>+++++_________-3:::2}[}}}}}}}1/#_______________(// ",
-" }{>+++++>_________)3:::~2}}}}}}[21/#_______________$@// ",
-" }=_+++++;__________)(~:::2}}}}}}}}1/4________________4// ",
-" 2!$+++++>___________)(:~::~}}}}}}}2}/4_________________&// ",
-" [4>++++_____________&(:::::2}[}}}}2[/4__________________(// ",
-" }{;++++>_____________#@~::~:~2}}}}}2}/%__________________$// ",
-" }=*++++_______________&@::::::2}}}}}}}/*________________>__&// ",
-" !4>+++>_______________#@~:::::~}}}}}}[/$_________________>__(/. ",
-" [!_+++>________________&@:~:~:::2}}[}2!/*__________________>_%// ",
-" =*>++>_________________#@:::::::~}}}}}!/%__________________>>_)/. ",
-" [{_++>__________________&@~:::~:::'}}}}!/*__________________;+;;// ",
-" }<;++>___________________#@::~::::::2}}}!/*___________________++_&// ",
-" !,;+>____________________&@::::~:::~:}}1[/*___________________>+>;@/ ",
-" [=_+>_____________________&@~:::::::::~1~}/$___________________>>+;&// ",
-" !,;>______________________)(::::~:::~::::}/|___________________;+++_@/ ",
-" [=_>;______________________)(:~:::::::::::}/4____________________+++>#./ ",
-" [{_>_______________________-(::::~::~:::~:1/,___________________>++++;@. ",
-" <__________________________]3::~::::::::::~/#____________________++++>&// ",
-" !#__________________________(]:::::::~:~::::/#___________________>+++++;/. ",
-" <|;_________________________@]::::~:::::~:::@)___________________>+++++>-/. ",
-" [(4__________________________@!:~:::~:~::::::@)__________________;++++++>-// ",
-" =@)__________________________.[:::::::::::~::((__________________>++++++>/// ",
-" !<<@_________________________%/}:::~::::~:::::](_________________>+++++++#/@3. ",
-" ![~/)________________________,/':~:::::::~::::</_________________+++++++$//[2/ ",
-" <~:[/,_______________________&/::::~:~::::::::[/________________+++++++>(/3::@. ",
-" !<:::</#______________________)@::::::::~::~:::1/,______________++++++>$@/3~2:</ ",
-" =}::::!/3_____________________(3:~::::~:::::::::/{____________++++++>_#//]'}}1'. ",
-" ]~:::::2(/)___________________@<:::~:::::~:~:~::@)___________>++++>_#(/@[12}}}:(. ",
-" !=::~:::::!@@]|_______________%/}:~::::~:::::::::3(________>++>>>_$&@//=~2}}}}}~=/ ",
-" =}:::::~::::!(/@],*___________#/~:::::::::::~::::</________>__;4)@//([~2}}}}}}}1'/ ",
-" ]~::~::~::::::'=3/@@3&,*______-(::~:~::~:~:::::::'/,_____$4&)@///(=''2}}}}}}}}}2:@. ",
-" ==::::::::~::::::::2=3(///@(-)&/3}}1111::::::~121}[@(&)-@////@3=2::1}}}}}}}}}}}}}~=/ ",
-" =[::::::::::~:::~:::::::~[!<3(@@/////////////////////@(3]=[2::~'1}}}}}}}}}}}[}}}}11. ",
-" ]~:~:~::~::~:::~::::~:::~''~~:::::~1112[}[[}[}111~::::~:::~'122}}}}}}}}}}}}}}}}}}2:@. ",
-" =<::::::::::::::::~::::::::~1}}2221'~~~:~:::::::~:~~~''112}}}}}}}}}}}}}}}}}}}}}}}}}~]. ",
-" =[:::::~::~:::~:::::~::~::::::12}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}[}}}}}}[}}}}'[/ ",
-" ]1~:~:::::~::::~::::::::::::::::~2}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}1~/ ",
-" ]::::::~:::::~::::~::~:~:~:~:~::::~1}}}}}}}}}}[2}}}}[}}}}}}}}}}}}[}}}}}}}}}}}}}}}}}}:(. ",
-" ==::::::::::::::~::::::::::::::::::::~1}}}}}}}}}}}}}}}}}}}}}}}[}}}}}}[}}}}[}}}}}}}}}}'<. ",
-" <[:~::::::~:::~::::~::::~::::::~:~:::::~12[}}}}}}}}}}}}[}}}}}}}}}}}}}}}}}}}}}}}[}}}}}1}. ",
-" <1:::~:~::::::::~::::~::::~:~:::::::::::::'}}}}}[}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}2:/ ",
-" ]::::::::~:~:::::::::::::::::~::::~::::::::~'2}}}}}}}}}}}[}}}}}[}}}}}[}}}}[}}}}}}}}}}}:(. ",
-" <=::::~:::::::~:::~::::~:::::::::::::~:~:::::::'}}}}}[}}}}}}}}}}}}}}}}}}}}}}}}}}}}[}}}}']. ",
-" <[:~::::~:::::::::::~:::~:~:~::~:~::::::~::::~::~'}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}1[/ ",
-" ]1::~:::~::~:~:::::::::::::::::::::~::::::~::::::~:1}}}}}}}}[}}}}}[}}}}}}[}}}}}}}}}[}}}2~. ",
-" ]::::::::::::::~:~::~:~::::::~:~::::::~::::~::::::::~2}}}}}}}}}[}}}}}[}}}}}}[}}}}}}}}}}}:@ ",
-" <]:::::::~:::~:::::::::::~::~::::::::~:::~::::~::::::::'}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}'3. ",
-" <!~::::::::~::::::~:::::::::::::~:~::::::::::::~:~::::::~1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}1=. ",
-" <[::~:~:::::::::~:::::~:::~:~::::::::~::::~:::::::~:~:::::~2}{}}}}[}}}}}}}[}}}}[}}}}}}}}}2}. ",
-" ]1:::::::::::~::::~::::~::::::~:::~:::~::::~:~::::::::~:::::~2}}}}}}}}[}}}}}}}}}}}}}}[}}}}~/ ",
-" ]:::~:~:~:~:::::::::~:::::::~:::~:::::::~::::::~:::~::::::::~:2}}}}}}}}}}}}}}}}}}}}}}}}}}}~@ ",
-" ]:~::::::::~::~:~::::~:~::::::::::::~::::~:::::::::::~::~:~::::~}}}}}}}}}}[}}}}[}}}}}}}}}}'(. ",
-" ]!:~:::::::::::::::~::::::~::~:::~:~:::~:::::~::~::~::::::::::::::2}}}}}}}}}}}}}}}}}}}}}}}}1]. ",
-" ][~~:~:~:~:::~::::::::::::::::~::::::::::::::::::::::~::~::::~:::::'}}}}}}}}}}}}}}}}}}[}}}}2[. ",
-" ]2':::::::::::::~:::~:::~:~::::::::~:::::~:~::~:::~::::::::::::~::::~}}}[}}}[}}}}[}}}}}}}}}}2. ",
-" ]~1:::::~:~:::~::~:::~::::::~::~::::~:~:::::::::~:::~::~::~::~:::~::::'}}}}}}}}}}}}}}}}}}}}}~/ ",
-" 3:2~:~::::::~::::::::::::::::::::::::::::::~:~:::::::::::::::::::::::::~}}}}}}}}}}}}}}}}}}}}'@ ",
-" <:1::::::::::::~:~:~:~::~:~::~:~::~:::~:~:::::::::~::~::~:::::~::~::~::::2}}}[}}}}[}}}}[}}}}1(. ",
-" ]<'1::~:~::~:~:::::::::::::::::::::::::::::::~::~:::::::::~:~::::::::::~:::2}}}}}}}}}}}}}}}}}13. ",
-" ][11::::::::::::::::::~::~::~:::~:::~:::::::::::::~::~:::::::::~::~::::::~::'}}}[}}}}}}}}}}}}2<. ",
-" ][1':::::~::::~::::~::::::::::::::~::~:~:~:~:~:~::::::~:~::::::::::::~:::::::~}}}}}}[}}}}}}}}}[. ",
-" ]22'::~::::~:::~::::~:~:::~::~:::::::::::::::::::~::::::::~:~::::~:~::::~::~::~2}}}}}}}}}[}}}}}. ",
-" 3'}~~:::~::::::::~::::::::::::::~:~::::~:~::~::::::~::::~:::::~:::::~::::::::::~}}}}}}}}}}}}}}'. ",
-" 3:}~::::::::~:::::::::~:~::~:~::::::~:::::::::~::::::~::::~:::::::::::~::~::~::::2}}}[}}}}}}}}~/ ",
-" ]~}~::~::~:::~:~::~::::::::::::::::::::::~:~:::~::~:::::~:::~::~::::::::::::::::::2}}}}}}}}}}}~/ ",
-" ]~}~::::~:::::::::::~::::~:::~:::~::::::::::::::::::~:::::::::::~::~::::~::::~::~::1}}}}}}}[}}~( ",
-" ]<1}~~:::::~::::~::~::::~:::::::~::~:~:~::::~:::::~:::::~:::::~:::::::~::::~:::::::~:2}}}}}}}}}1(. ",
-" ]=1}~::~:::::~::::::::~::::~:::::::::::::~::::~:~:::~::::~:~::::::~:::::::::::~:::::::2}}}}}}}}13. ",
-" 3!1}~::::::~::::~::~::::::::~:~:~::~:::~:::~:::::::::::~:::::::~:::~:::~:::~::::~:::~::2}}}}}}}1]. ",
-" ][1}~:~:~:::::::::::~::~:~::::::::::~::::::::::::~:~:::::~::~:::::::~:::~:::::::::~:::::2}}}}}}2=. ",
-" 3[}}'::::::~:~::~:::::::::::::::~::::::~::~:~:~:::::~::~::::::~:~::::::::::::~:::::::~:~:2}}}}}1=. ",
-" 312}':::~:::::::::~::~::::~:~:::::~:::::::::::::::::::::::~:::::::::~:~::~:~:::~:::~::::::}}}}}2}. ",
-" 3}}}'~:::::::~:::::::::~::::::::::::~::~:~::::~:~:::::~:::::::~::~::::::::::::::~::::::~:~:}}}}1[. ",
-" 31}}1::~::~:::~:~::~::::::::~:~:~:::::::::::~:::::~:~::~:~:~::::::~::~:~::~::~:::::::~:::::~}}}22. ",
-" (~}}2:::::::::::::::::::~:~:::::::::~::::~:::::~:::::::::::::::~::::::::::::::::~:~:::::::::~}}11. ",
-" 3'}}2::~::~:~::::~::~:~:::::::~::~::::~::::::::::~::::~:::~:~:::~:::::~::~::::~::::::::~:::::~2'1. ",
-" 3~}}}::::::::::~::::::::::::~:::::::~:::~::~::~::::~:::::::::::::::~:::::::~::::::~:~::::~::::::~. ",
-" (:}}}~:~:::::~::::~:::~::~:::::~:::::::::::::::::::::~:~:::~:~::~::::::~::::::::~:::::~::::~::~::. ",
-" (:}}}~:::~:~:::~::::~::::::::::::~::~::~::~::~:~::~::::::::::::::::~:~::~::~:~:::::~::::~::::::::. ",
-" (:}}}':::::::::::::::::~::~:~:::::::::::::::::::::::~::~:~::~:~:~:::::::::::::::::::::::::~:::::~/ ",
-" (:}}}2:~:::~:::~:~::~:::::::::~::~::~::~::~:::~::~::::::::::::::::~::~::::~::~::~:::~::~::::~:~::. ",
-" (:1}}}::::::~::::::::~::~:::::::::::::::::::~::::::~:::~::~::::::::::::~::::::::::~::::::~::::::~. ",
-" (:2}}}~:~::::::~::~:::::::~:~:~::~::~:~::~::::::~:::~:::::::~:~::~::~::::~::~::~::::::~::::::~:::. ",
-" ('1}}}~:::~:::::::::~:~:::::::::::::::::::::::~:::::::~::::::::::::::::::::::::::~::~:::~::::::~1. ",
-" (11}}}2:~:::~:~::~::::::::::::~::~::~:~::~:~:::::~:::::::~:::~::~::~:~::~::~::~::::::::::~::~:::2. ",
-" (}~}}}}::::::::::::::~:~:~:::::::::::::::::::::::::~:~:::::~::::::::::::::::::::~::::~::::::::::[. ",
-" @[~}}}}~~::~:::~::~::::::::~::~::~::::~::::~:~::~:::::::~::::~::~:::~::~::~::~::::~::::::~::~:::=. ",
-" (!~}}}}1:::::~:::::::::~:::::::::::~::::~:::::::::~:::~:::::::::::~::::::::::::~::::~::~::::::~:]. ",
-" @]:2[}}}::~::::~::~:~::::::~::~::~::~:::::::~::~:::~::::::~::::~::::::~::~::~::::::::::::::~::::(. ",
-" @3:}}}}}1:::~::::~:::::~:::::::::::::::~::~::::::::::~::~:::~:::::::~:::::::::~::~:~:::::~:::::~@ ",
-" @:1}}}}2:::::~::::::~:::~:~::~::~::~:::::::~:::~::::::::::::::~:~::::::~::~::::::::~:~:::::~::~. ",
-" @2~}}}}}~~::::::~::::::::::::::::::::~:::::::~:::~:~::::~:~::::::::::~::::::~::~:::::::::::::~[. ",
-" /!:}[}}}2:~::~::::~:~:~:::~::~:::~:::::~:::::::::::::~:::::::~::~:~::::::~:::::::::::~:~::~:::]. ",
-" @3:}}}}}}~:::::~::::::::::::::::::::~::::~:~::~::::::::::::~:::::::::::~:::~::~::~::::::::::::@. ",
-" @:1}}}}}2:~::::~::::::~::~::~:~:~:::::::::::::~:~::~:~:~::::::~::~:~:::::::::::::~:::~::~:~:~. ",
-" /}~}}}}}}1:::::::~:~::::::::::::::~::~:::~::::::::::::::::::~::::::::::~:::~::~::::~::::::::!. ",
-" /]~}}}}}}2~~::~:::::::~::~::~::~::::::~::::~:::~::~::::~:~::::~:::~:~:::~::::::::::::~::::~:(. ",
-" @:1}[}}}}2:::::~::~:::::::::::::::~:::::::::~::::::~:::::::::::~:::::::::~::::~:::::::~:::'/ ",
-" /[~}}}}}}}~~:::::::::~::~::~:~:~::::::~::~::::::~::::~:::~:::::::::~::~::::~::::~:::::::::=. ",
-" /3:}}}}}}}}~::~::::::::::::::::::~::~:::::::::~::::::::~:::~:~:::~::::::~::::~::::~:~::~:~@. ",
-" /~1}}[}}}}}~::::~:~:~::~:::~:::::::::~::~:~:::::~::~:::::::::~::::::~:::::::::::::::::::2. ",
-" /<:}}}}}}}}2~:~:::::::::::::~::~:::::::::::::::::::::~::~:::::::::~:::~::~:~::~:::~::~::3. ",
-" /~1}2[}}}}}}:::::::~::~:~:::::::~::~::~::~:~::~::~::::::~:::~:~:::::::::::::::~:::::::1. ",
-" /=~}}}}}}}}}}~::::::::::::~:~::::::::::::::::::::::~::::::~::::::::~::~::::~::::~::~::3. ",
-" /@~1}}}}}}}}}}~:~::~::~:::::::::~::~::~:::~::~::~:::~:::::::::~:~:::::::~::::::::::::1. ",
-" /<:}}[}}}}}}}}~:::::::~::~::~::::::::::~:::::::::::::~:~:::~:::::~::~::::~::~:~::~::3. ",
-" /1'}}}}[}}}}}}1~:~::::::::::::::~::~::::~::~::~::::::::~:::::~::::::::::::::::::::}. ",
-" /3:}}}}}}}}}}}}2~::::~:~::~::~::::::::::::::::::~:~::::::::::::~::~::~:~::~:::~::~@. ",
-" /[~}}}}}[}}}}}}}1~~:::::::::::~::~::~::::~::~:::::~:::::~::~::::::::::::::~:::::!. ",
-" /@~1}}}}}}}}}}}}}21:~:::~:::::::::::::~:::::::~:::::~:~::::::~::~::~:::~::::~::1/. ",
-" /3:}}}}}}}[}}}}}}}}'~::::~::~::~::~::::~::~::::::::::::::~:::::::::~:::::::::~(. ",
-" /[:}}}}}}}}}}}}}}}}}2':~:::::::::::~:::::::~::~::~:::~::::~::~:::::::::~::::<. ",
-" //1~}}}}}}}}}}}}}}}}}}}1':~::~::~:::::::~:::::::::~:::::::::::~:::~:~::::~:}.. ",
-" /@~'}}}}}[}}}}}}}}}}}}}}}21~~::::~::~::::~::~::::::~::~:~::::::~:::::::::'@. ",
-" /(:1}}}}}}}}}}}}}}}}}}}}}}}}}211~~~:::::::::~:::::::::::~::~::::::~:~::~@. ",
-" /3:1}}}}}[}}}}}}}}}}}}}}}}}}}}}}}}}}}22'~::::~:~::~:::::::::::~::::::~3. ",
-" /]:'}}}}}}[}}[}}}}}}}}}}}}}}}}}}}}}}}}}}}1~:::::::~:::~:::~::::::::~]. ",
-" /<:'}}}}}}}}}}}[}}[}}}}}}}}}}}}}}[}}}}}}}}2~:~:::::~:::~:::~:~:~::]. ",
-" /<:~}}}}}}}}}}}}}}}}}}[}}}}}}}}}}}}}}}}}}}}2:::~::::::::::::::::]. ",
-" .3::1}}}}}}}}}}}}}}}}}}}}[}}}}}}}}}}}}}}}}}}~::::~::~:~:::::~:3. ",
-" /(~:'}}}}}}}}}}}}}}}}}}}}}}}}}}}}}[}}}}}}}}}~~::::::::~:~::~(. ",
-" .@2:~1}[}}}}}[}}}}}}}}}}}}}}}}}}}}}}[}}}}}}}:~::~::::::::1@. ",
-" ./!::~2}[}}}}}[}}}}}}}}}[}}}}}}}}}}}}}}}}}}2::::~::~:::[/. ",
-" ./3~::~2}}}}}}}}}}}}}}}}}}}[}}}}}}}}}[}}}}}~::::::::~].. ",
-" //[:::'2}}}}}}}[}}}}}}}}}}}}}}}}}}}}}}}}}~~::~:~:}@. ",
-" ./(1:::~1}}}}}}}}}}}}}}}}}}}[}}}}}}}}}}}~:::::'3.. ",
-" ./31:::~1}}}}}}}}}[}}}}}}}}}}}}}}}}}}}~~::~=/. ",
-" ./32::::~12}}[}}}}}}}}}}}}}}[}}}}}}1::~</.. ",
-" ./([::::~:~'2}}}}[}}}}}}}}}}[}}}':2]/.. ",
-" ../3}::::::~~'122}}}}}}}}}2211<@.. ",
-" ../(<}~::::::~:~~'~~~~1!]@... ",
-" ....@(3<=[[[[[<]3@/.... ",
-" ............. ",
-" ",
-" ",
-" "};
diff --git a/perl-install/pixmaps/mouse_3b_right.png b/perl-install/pixmaps/mouse_3b_right.png
new file mode 100644
index 000000000..f7a04d530
--- /dev/null
+++ b/perl-install/pixmaps/mouse_3b_right.png
Binary files differ
diff --git a/perl-install/pixmaps/mouse_left.xpm b/perl-install/pixmaps/mouse_left.xpm
deleted file mode 100644
index 13fce0362..000000000
--- a/perl-install/pixmaps/mouse_left.xpm
+++ /dev/null
@@ -1,142 +0,0 @@
-/* XPM */
-static char * mouse_left_xpm[] = {
-"59 91 48 1",
-" c None",
-". c #AFB0CD",
-"+ c #A7A9C8",
-"@ c #9FA1C0",
-"# c #9A9ABE",
-"$ c #848CAA",
-"% c #697392",
-"& c #7B84A1",
-"* c #122450",
-"= c #757C94",
-"- c #BABEDA",
-"; c #4D283C",
-"> c #B52E19",
-", c #5C2937",
-"' c #C42F14",
-") c #FF3300",
-"! c #D3300F",
-"~ c #302646",
-"{ c #4A5778",
-"] c #7A2B2D",
-"^ c #21254B",
-"/ c #892C28",
-"( c #E1310A",
-"_ c #FF4000",
-": c #FF6000",
-"< c #FF7300",
-"[ c #FF7900",
-"} c #972C23",
-"| c #FF5900",
-"1 c #FF8000",
-"2 c #FF9900",
-"3 c #FF4D00",
-"4 c #3E2741",
-"5 c #FF8C00",
-"6 c #FF9300",
-"7 c #3E4862",
-"8 c #6B2A32",
-"9 c #F03205",
-"0 c #FF5300",
-"a c #FF3900",
-"b c #FF4600",
-"c c #FF8600",
-"d c #FF6600",
-"e c #5C6888",
-"f c #FF6C00",
-"g c #A62D1E",
-"h c #11244D",
-"i c #253359",
-" .+",
-" .++@@",
-" .++#$%&",
-" .***$=$@--",
-" .******&---.",
-" .****;>,**--##",
-" .****;'))!**=-@#",
-" ****;')))))~*{-.#",
-" .***~')))))))]**--#",
-" .**^/)))))))))>**$-.",
-" .***;()))_:<[_))(**=-.",
-" .**^})))|122223)))^*{--",
-" ***4!))|5222226))));*7--",
-" .***89)052222222|))))]**--",
-" .***})_1222222221)))))/**+.",
-" .**^')|6222222226a)))))'**#-",
-" .**~!a<2222222226b))))))'**=-",
-" +**49bc2222222222|))))))))**%-",
-" +**49b62222222222d)))))))))**e.",
-" +**49|22222222222<))))))))));*7-",
-" +**49|22222222222<)))))))))));*7-",
-" +**49|22222222222ca))))))))))),**-",
-" +**49|22222222222ca))))))))))))/**-",
-" +**49|22222222222ca)))))))))))))/**-",
-" +**^(b22222222222ca))))))))))))))}**-",
-" **^!b622222222226b)))))))))))))))'**#",
-" ***>a522222222226b))))))))))))))))'**#",
-" +**})122222222226b)))))))))))))))))'**#",
-" @**8)f22222222226b))))))))))))))))))(**$",
-" @**49|22222222226b))))))))))))))))))))**$",
-" **^!_62222222226b)))))))))))))))))))))**%",
-" @**>)c2222222226b))))))))))))))))))))))**e",
-" @**])d22222222220)))))))))))))))))))))))**%",
-" @**4932222222222|))))))))))))))))))))))))**e",
-" ***!a5222222222|)))))))))))))))))))))))))4*%",
-" @**/)f222222222|))))))))))))))))))))))))));*e",
-" @**;)3222222222|)))))))))))))))))))))))))));*{",
-" **^()c22222222|))))))))))))))))))))))))))));*7",
-" #**/)d22222222|)))))))))))))))))))))))))))));*7",
-" #**4)_62222222|))))))))))))))))))))))))))))));*7",
-" #**!)[2222222:)))))))))))))))))))))))))))))));*7",
-" @**])32222222<))))))))))))))))))))))))))))))));*7",
-" **^9)5222222<)))))))))))))))))))))))))))))))));*7",
-" #**g)|222222<))))))))))))))))))))))))))))))))));*7",
-" #**;)a622222<)))))))))))))))))))))))))))))))))));*7",
-" #**')d22222[))))))))))))))))))))))))))))))))))));*7",
-" #**8)a62222ca))))))))))))))))))))))))))))))))))));*7",
-" $*^()f2222ca)))))))))))))))))))))))))))))))))))));*7",
-" #**/)_22225a))))))))))))))))))))))))))))))))))))));*7",
-" **^9)<2226b)))))))))))))))))))))))))))))))))))))));*7",
-" #**/)_2226b))))))))))))))))))))))))))))))))))))))));*{",
-" **~))<2220)))))))))))))))))))))))))))))))))))))))));*7",
-" #**g)a222|))))))))))))))))))))))))))))))))))))))))));*7",
-" **~))d22f)))))))))))))))))))))))))))))))))))))))))))4*e",
-" #**g)a62[))))))))))))))))))))))))))))))))))))))))))))**%",
-" **~)):2ca))))))))))))))))))))))))))))))))))))))))))))**%",
-" #**g))56b)))))))))))))))))))))))))))))))))))))))))))))**%",
-" $*^))|20))))))))))))))))))))))))))))))))))))))))))))))**%",
-" $**/))1f))))))))))))))))))))))))))))))))))))))))))))))9**=",
-" $*^9)bc)))))))))))))))))))))))))))))))))))))))))))))))'**#",
-"$**/))<b)))))))))))))))))))))))))))))))))))))))))))))))'**$",
-"$**()a:))))))))))))))))))))))))))))))))))))))))))))))))'**#",
-"**8))|_))))))))))))))))))))))))))))))))))))))))))))))))}**#",
-"**!)):)))))))))))))))))))))))))))))))))))))))))))))))))/**-",
-"*4))0_)))))))))))))))))))))))))))))))))))))))))))))))))/**-",
-"*;))3)))))))))))))))))))))))))))))))))))))))))))))))))),*h-",
-"*4)))))))))))))))))))))))))))))))))))))))))))))))))))));*7-",
-"**)))))))))))))))))))))))))))))))))))))))))))))))))))))4*7-",
-"**>))))))))))))))))))))))))))))))))))))))))))))))))))))**{-",
-"**8))))))))))))))))))))))))))))))))))))))))))))))))))))**e-",
-"h*^9))))))))))))))))))))))))))))))))))))))))))))))))))'**%-",
-"7**/))))))))))))))))))))))))))))))))))))))))))))))))))'**$-",
-"#h**!)))))))))))))))))))))))))))))))))))))))))))))))))/**#-",
-"-7**49))))))))))))))))))))))))))))))))))))))))))))))))]**.-",
-"-+i**8))))))))))))))))))))))))))))))))))))))))))))))));*h--",
-"--$h**8)))))))))))))))))))))))))))))))))))))))))))))))~*7--",
-"---=h**89)))))))))))))))))))))))))))))))))))))))))))))**{.-",
-".---eh**4()))))))))))))))))))))))))))))))))))))))))))'**%--",
-"-----&h**^}))))))))))))))))))))))))))))))))))))))))))g**$--",
-"-.--.-#i***;!))))))))))))))))))))))))))))))))))))))))/**#--",
-"------..{****8())))))))))))))))))))))))))))))))))))));*h--.",
-"-.-------$i****8!))))))))))))))))))))))))))))))))))))^*7---",
-"---.------.%i****4g9))))))))))))))))))))))))))))))))(**{---",
-"------------.%i****^8>))))))))))))))))))))))))))))))>**&.--",
-".---.--.------.&i*****^,g())))))))))))))))))))))))))]**+---",
-"-.------.--.-----@{h******~8g())))))))))))))))))))))4*i----",
-"-----.-------.------${i*******~,/'())))))))))))))))9**{--.-",
-"--.-----.-----.--------@%7h********^;8/'!))))))))))g**$----",
-"-----------.----.----------#%{h***********^;,//>'');**-.---",
-"----.---.----------.-.-.--.----.$%77h****************h{e%ee",
-"-.------------.-------------.------.-##%e77h*********hhhhhh"};
diff --git a/perl-install/pixmaps/mouse_middle.xpm b/perl-install/pixmaps/mouse_middle.xpm
deleted file mode 100644
index 1724c9190..000000000
--- a/perl-install/pixmaps/mouse_middle.xpm
+++ /dev/null
@@ -1,89 +0,0 @@
-/* XPM */
-static char * mouse_middle_xpm[] = {
-"13 62 24 1",
-" c None",
-". c #999ABD",
-"+ c #9E9EC1",
-"@ c #FF3310",
-"# c #77819E",
-"$ c #FF330C",
-"% c #FF330B",
-"& c #FF3300",
-"* c #FF3308",
-"= c #FF3307",
-"- c #142753",
-"; c #384365",
-"> c #6F7892",
-", c #0F1C3D",
-"' c #FF3304",
-") c #FF3303",
-"! c #606C8C",
-"~ c #525E81",
-"{ c #6D6E91",
-"] c #898BA4",
-"^ c #A3A4C3",
-"/ c #AEB2CF",
-"( c #A9ADCA",
-"_ c #BABEDA",
-".+@@@@@@@@@..",
-"##$$$$$$$$%##",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&********=&&",
-"#-$$$$$$$$%##",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&********=&&",
-"#-$$$$$$$$%##",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&$$$$$$$$%&&",
-"#;$$$$$$$$%;#",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&********=&&",
-"##********=.>",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&$$$$$$$$%&&",
-"-#********=,#",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"##$$$$$$$$%&&",
-"&&'''''''').#",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"!!@@@@@@@@@~#",
-"&&'''''''')&&",
-"&&&&&&&&&&&&&",
-"&&'''''''')&&",
-"{!@@@@@@@@@~]",
-"&&'''''''')&&",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"!!@@@@@@@@@{.",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&'''''''')&&",
-"!{@@@@@@@@@!^",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&'''''''')&&",
-".]@@@@@@@@@./",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&'''''''')&&",
-"!!@@@@@@@@@!(",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&'''''''')&&",
-"!!$$$$$$$$%!^",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&********=&&",
-"!!@@@@@@@@@!+",
-"&&&&&&&&&&&&&",
-"&&&&&&&&&&&&&",
-"&&********=&&",
-"/_@@@@@@@@@/_",
-"__@@@@@@@@@__"};
diff --git a/perl-install/pixmaps/mouse_right.xpm b/perl-install/pixmaps/mouse_right.xpm
deleted file mode 100644
index 97c6824cb..000000000
--- a/perl-install/pixmaps/mouse_right.xpm
+++ /dev/null
@@ -1,143 +0,0 @@
-/* XPM */
-static char * mouse_right_xpm[] = {
-"61 91 49 1",
-" c None",
-". c #7B84A1",
-"+ c #697392",
-"@ c #757C94",
-"# c #848CAA",
-"$ c #5C6888",
-"% c #BABEDA",
-"& c #9FA1C0",
-"* c #4A5778",
-"= c #122450",
-"- c #AFB0CD",
-"; c #9A9ABE",
-"> c #A7A9C8",
-", c #253359",
-"' c #4D283C",
-") c #C42F14",
-"! c #B52E19",
-"~ c #FF3300",
-"{ c #E1310A",
-"] c #6B2A32",
-"^ c #21254B",
-"/ c #5C2937",
-"( c #3E2741",
-"_ c #972C23",
-": c #3E4862",
-"< c #F03205",
-"[ c #A62D1E",
-"} c #7A2B2D",
-"| c #892C28",
-"1 c #D3300F",
-"2 c #11244D",
-"3 c #0E1A3A",
-"4 c #FF5300",
-"5 c #FF4000",
-"6 c #FF6600",
-"7 c #FF3900",
-"8 c #302646",
-"9 c #FF7300",
-"0 c #FF8000",
-"a c #FF9300",
-"b c #FF4600",
-"c c #FF8600",
-"d c #FF7900",
-"e c #FF9900",
-"f c #FF6000",
-"g c #FF4D00",
-"h c #FF8C00",
-"i c #FF6C00",
-"j c #FF5900",
-"... ",
-"+++@@@ ",
-"#@$$$++++ ",
-"%%%&.*===++ ",
-"-%%%.======$$ ",
-";>%%,=')'====$$ ",
-";;-;==!~~{]====*$ ",
-";;;*=^~~~~~{/====** ",
-";;;==]~~~~~~~)(===*** ",
-";;#==_~~~~~~~~~_^===*: ",
-";;@==)~~~~~~~~~~</===:* ",
-";;+==~~~~~~~~~~~~~[^==::: ",
-";>:=(~~~~~~~~~~~~~~{(===:: ",
-";%==/~~~~~~~~~~~~~~~~}===,: ",
-";%==|~~~~~~~~~~~~~~~~~[^==:, ",
-">;==_~~~~~~~~~~~~~~~~~~1^==:,, ",
-"-;==)~~~~~~~~~~~~~~~~~~~{(==:,, ",
-"%+==1~~~~~~~~~~~~~~~~~~~~<(==,,, ",
-"%$==~~~~~~~~~~~~~~~~~~~~~~<]==:,, ",
-"%*==~~~~~~~~~~~~~~~~~~~~~~~~]==,,2 ",
-"%:='~~~~~~~~~~~~~~~~~~~~~~~~~]==,,2 ",
-"%:='~~~~~~~~~~~~~~~~~~~~~~~~~~]==,22 ",
-"%==/~~~~~~~~~~~~~~~~~~~~~~~~~~~'==,22 ",
-"%==|~~~~~~~~~~~~~~~~~~~~~~~~~~~<(==,22 ",
-"%==|~~~~~~~~~~~~~~~~~~~~~~~~~~~~<(==,2 ",
-"%==|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1^==22 ",
-"&==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1===22 ",
-";==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[===22 ",
-";==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}==222 ",
-";==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~'==22 ",
-";==<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<^==32 ",
-"#==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~)===22 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|==222 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~'==22 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{^==22 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~45~~~~[==232 ",
-"$==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~67~~~~/==22 ",
-"+=8~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~79~~~~<^==32 ",
-"+='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~46~~~~[==222 ",
-"+='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~04~~~~'==23 ",
-"+='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~5ab~~~{^==22 ",
-"+='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~6c7~~~|==232 ",
-"*='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~7ad~~~~8==23 ",
-":='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~6ef~~~)==222 ",
-":='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~7eeg~~~/==23 ",
-":='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~9ea7~~{===22 ",
-":='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~bee0~~~|==23 ",
-":='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ceef~~<^==22 ",
-":='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~feeeb~~_==232 ",
-":='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~5eeec7~~8==23 ",
-"$='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~heeei~~[==223 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ieeeeg~~8==32 ",
-"$==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~jeeeeh7~!==232 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~beeeeei~~'==23 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~eeeeeeg~)==223 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aeeeeeh~~(==32 ",
-"+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~0eeeeee6~[==233 ",
-";==1~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~0eeeeeea5~8==22 ",
-"#==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~0eeeeeee9~[==23 ",
-";==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~0eeeeeeee5~8=223 ",
-";==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aeeeeeeee9~_==22 ",
-"%==|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~eeeeeeeeee5<^=233",
-"%==|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~geeeeeeeeee9~}==23",
-"%==|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~feeeeeeeeeea7{==22",
-"%:=/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~0eeeeeeeeeeej~/=22",
-"-:='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~5eeeeeeeeeeee9~]=23",
-"%:=(~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~6eeeeeeeeeeee0~'=22",
-"%+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~7aeeeeeeeeeeeee~^=22",
-"%+==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~6eeeeeeeeeeeeec1==22",
-"%#==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~5aeeeeeeeeeeeee6}==22",
-"%;==)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~0eeeeeeeeeeeeeh7^=22,",
-"%>==_~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~6eeeeeeeeeeeeeeb_==22@",
-"%%==|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~jeeeeeeeeeeeeeej{^==2,%",
-"%%,=/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~jeeeeeeeeeeeeeej~'==22#%",
-"%%:='~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~jeeeeeeeeeeeeea4~]==22$%%",
-"%%$==~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~6eeeeeeeeeeeeec5~]==22,-%-",
-"%%@=={~~~~~~~~~~~~~~~~~~~~~~~~~~~7deeeeeeeeeeeea6~~]==22:-%-;",
-"%%;==)~~~~~~~~~~~~~~~~~~~~~~~~~~gheeeeeeeeeeee95~<'==22:-%-;;",
-"%->==|~~~~~~~~~~~~~~~~~~~~~~~~79eeeeeeeeeeee95~~!^==22*-%&;;;",
-"%%%==]~~~~~~~~~~~~~~~~~~~~~~76aeeeeeeeeeea65~~{'===22+%-&;;;;",
-"%%%:=(~~~~~~~~~~~~~~~~~~~~76aeeeeeeeeeed4~~~{]====2,;--;;;;;;",
-"%-%$==~~~~~~~~~~~~~~~~~~56aeeeeeeeeedj7~~~{]====2,+%-&;;;;;;;",
-"%%%@==)~~~~~~~~~~~~~~~4deeeeeeeeci4~~~~~['====22*>%-&;;;;;;#;",
-"%%%&==_~~~~~~~~~~~~49aeeeeee0i47~~~~~!]^====22*>%-;;;;;;;;;;;",
-"%%%%==]~~~~~~~~7j9aeeee0ifg~~~~~~<[]^=====2,+%%-&;;;;;;;;;;;;",
-"%-%%:=8~~~~74ice006fg7~~~~~~~{!}(======22$#%%-&;;;;;;;#;;;;;;",
-"%%%%+==1~~bggb~~~~~~~~~~<)|/8=======2,*.-%%>&;;;;;;;;;;;;;;;#",
-"%-%%&==_~~~~~~~~~~1)|}'^========22:$;%%%%-;;;;;;;;#;;;;;;;;;;",
-"%%%%%,=(~1)!||/'8===========22:+#-%%%%-&;;;;;;;;;;;;;;;;;;;;;",
-";#+$+:================23,:+.&%%%%%%-&;;;;;;;;;;;;;;;;;;#;;;;;",
-"222222=========22,:*$.;-%%%%%%%%>&&;;;;;;;;;;;;;;;;#;;;;;;;;;"};
c-format
msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
+"Which ISDN configuration do you prefer?\n"
"\n"
-"You may prefer to replay the installation.\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"ÀÚµ¿ ¼³Ä¡´Â ¿øÇÑ´Ù¸é ¿Ïº®ÇÑ ÀÚµ¿È­°¡ °¡´ÉÇÕ´Ï´Ù.\n"
-"ÀÌ·² °æ¿ì, ÇÏµå µå¶óÀ̺긦 Á¡À¯ÇØ ¹ö¸³´Ï´Ù!\n"
-"(ÀÌ°ÍÀº ¶Ç ´Ù¸¥ ÄÄÇ»ÅÍ¿¡ µ¿ÀÏÇÏ°Ô ¼³Ä¡ÇÒ ¶§¸¦ À§ÇÑ °ÍÀÔ´Ï´Ù.)\n"
+"¾î¶² ISDN ¼³Á¤ ¹æ½ÄÀ» ¼±È£ÇϽʴϱî?\n"
+"\n"
+"* ±âÁ¸ÀÇ ¼³Á¤Àº ISDN4NETÀ» »ç¿ëÇÕ´Ï´Ù. °­·ÂÇÏÁö¸¸ Ãʺ¸ÀÚ¿¡°Õ\n"
+" ¾î·Æ°í ¶ÇÇÑ Ç¥ÁØÀÌ ¾Æ´Õ´Ï´Ù.\n"
+"\n"
+"* »õ·Î¿î ¼³Á¤Àº ½±°í º¸´Ù Ç¥ÁØÀûÀÌÁö¸¸, °­·ÂÇÑ µµ±¸´Â µð¼Ò\n"
+" ºÎÁ·ÇÕ´Ï´Ù.\n"
+"\n"
+"¡¸ISDN-LIGHT¡¹¸¦ ÃßõÇÕ´Ï´Ù.\n"
"\n"
-"ÀϹÝÀûÀ¸·Î Á÷Á¢ ¼³Ä¡ÇÏ´Â °ÍÀÌ ÁÁ½À´Ï´Ù.\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
-msgid "Generate auto install floppy"
-msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ µð½ºÅ© »ý¼º"
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Reboot"
-msgstr "·çÆ®"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Run config tool"
+msgstr "¼³Á¤ µµ±¸ ½ÇÇà"
-#: ../../install_steps_interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"¸î¸î ´Ü°è°¡ ¿ÏÀüÈ÷ ³¡³ªÁö ¾Ê¾Ò½À´Ï´Ù.\n"
-"\n"
-"Á¤¸» Áö±Ý Á¾·á ÇϽðڽÀ´Ï±î?"
+msgid "Bootloader installation"
+msgstr "ºÎÆ®·Î´õ ¼³Ä¡"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Creating auto install floppy..."
-msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ µð½ºÅ© »ý¼º Áß"
+msgid "Root partition size in MB: "
+msgstr "·çÆ® ÆÄƼ¼Ç Å©±â(MB): "
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "%s µå¶óÀ̺꿡 ºó Ç÷ÎÇÇ µð½ºÅ©¸¦ ³ÖÀ¸¼¼¿ä"
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "ÀÌ°ÍÀº ÇʼöÀûÀÎ ÆÑÅ°ÁöÀÔ´Ï´Ù. ¹Ýµå½Ã ¼±ÅõǾî¾ß ÇÕ´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../services.pm:1
#, c-format
msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"ºÎÆ®·Î´õ°¡ Á¦´ë·Î ÀÛµ¿Çϱâ À§Çؼ­´Â °ø°³ Æß¿þ¾î ºÎÆ® ÀåÄ¡¸¦ º¯°æÇÒ Çʿ伺ÀÌ\n"
-"ÀÖÀ» ¼öµµ ÀÖ½À´Ï´Ù. ¸¸¾à ÀçºÎÆÃÈÄ¿¡ ºÎÆ®·Î´õ ÇÁ·ÒÇÁÆ®°¡ ³ªÅ¸³ªÁö ¾Ê´Â´Ù¸é,\n"
-"ÀçºÎÆýÿ¡ ¸í·É-¿É¼Ç-O-F¸¦ °è¼Ó ´©¸£°í ÀÖ´Ù°¡ ´ÙÀ½°ú °°ÀÌ ÀÔ·ÂÇϼ¼¿ä:\n"
-"setenv boot-device %s,\\\\:tbxi\n"
-"shut-down\n"
-"±×·¯°í³ª¸é ´ÙÀ½ºÎÅÍ´Â ºÎÆ®·Î´õ ÇÁ·ÒÇÁÆ®¸¦ º¼ ¼ö ÀÖÀ» °ÍÀÔ´Ï´Ù."
+"NAMED(BIND)´Â È£½ºÆ® À̸§À¸·Î IP ÁÖ¼Ò¸¦ ã¾Æ³»´Âµ¥ »ç¿ëµÇ´Â\n"
+"µµ¸ÞÀÎ ³×ÀÓ ¼­¹öÀÔ´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "ºÎÆ®·Î´õ ¼³Ä¡°¡ ½ÇÆÐÇß½À´Ï´Ù. ´ÙÀ½°ú °°Àº ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù:"
+msgid "Disconnect..."
+msgstr "¿¬°á ²÷±â..."
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Installing bootloader"
-msgstr "ºÎÆ®·Î´õ ¼³Ä¡ Áß"
+msgid "Saint Lucia"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+msgid "Report"
+msgstr "º¸°í"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Palau"
msgstr ""
-"aboot ¼³Ä¡ ½ÇÆÐ. \n"
-"ù¹ø° ÆÄƼ¼ÇÀ» ÈѼÕÇÒÁö¶óµµ °­Á¦ ¼³Ä¡ÇÒ±î¿ä?"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "aboot¸¦ »ç¿ëÇϽðڽÀ´Ï±î?"
+msgid "level"
+msgstr "·¹º§"
-#: ../../install_steps_interactive.pm:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX or some other means to boot your machine"
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Preparing bootloader..."
-msgstr "ºÎÆ® ·Î´õ ÁغñÁß"
+msgid "Package Group Selection"
+msgstr "ÆÑÅ°Áö ±×·ì ¼±ÅÃ"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Domain Admin Password"
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Domain Admin User Name"
-msgstr "µµ¸ÞÀÎ °ü¸®ÀÚ »ç¿ëÀÚ¸í"
+msgid "You can configure each parameter of the module here."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid "Windows Domain"
-msgstr "À©µµ¿ìÁî µµ¸ÞÀÎ"
+msgid "Choose the resolution and the color depth"
+msgstr "ÇØ»óµµ¿Í »ö»óÀ» ¼±ÅÃÇϼ¼¿ä"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/mousedrake:1
#, c-format
-msgid "Authentication Windows Domain"
-msgstr "ÀÎÁõ À©µµ¿ìÁî µµ¸ÞÀÎ"
+msgid "Emulate third button?"
+msgstr "3¹öÆ° ¿¡¹Ä·¹ÀÌÆ®?"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "NIS Server"
-msgstr "NIS ¼­¹ö"
+msgid "Mount"
+msgstr "¸¶¿îÆ®"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "NIS Domain"
-msgstr "NIS µµ¸ÞÀÎ"
+msgid "Creating auto install floppy"
+msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ »ý¼º"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "ÀÎÁõ NIS"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Install updates"
+msgstr "½Ã½ºÅÛ ¾÷µ¥ÀÌÆ® ¼³Ä¡"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "NIS"
-msgstr "NIS"
+msgid "text box height"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "LDAP Server"
-msgstr "LDAP ¼­¹ö"
+msgid "State"
+msgstr "»óÅÂ:"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP ±â¹Ý DN"
+msgid "Be sure a media is present for the device %s"
+msgstr "%s ÀåÄ¡¿¡ ¸Åü°¡ µé¾îÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
-#: ../../install_steps_interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Authentication LDAP"
-msgstr "ÀÎÁõ LDAP"
+msgid "Enable multiple profiles"
+msgstr "´ÙÁß profiles Çã¿ë"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Local files"
-msgstr "Áö¿ª ÆÄÀϵé"
+msgid "Local printer"
+msgstr "·ÎÄà ÇÁ¸°ÅÍ"
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Authentication"
-msgstr "»ç¿ëÀÚ ÀÎÁõ"
+msgid "Files Restored..."
+msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "ÀÌ ¾ÏÈ£´Â ³Ê¹« ´Ü¼øÇÕ´Ï´Ù.( Àû¾îµµ %d ±ÛÀÚ´Â ³Ñ¾î¾ß ÇÕ´Ï´Ù)"
+msgid "Package selection"
+msgstr "ÆÑÅ°Áö ¼±ÅÃ"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "No password"
-msgstr "¾ÏÈ£ ¾øÀ½"
+msgid "Mauritania"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Set root password"
-msgstr "root ¾ÏÈ£ ¼³Á¤"
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
+"\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
+"for you.\n"
+"\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
+msgid ""
+"No local printer found! To manually install a printer enter a device name/"
+"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
msgstr ""
-# #msgid "Services: %d activated for %d registered"
-# #msgstr "¼­ºñ½º: µî·ÏµÈ %2$d Áß %1$d È°¼ºÈ­µÊ"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, fuzzy, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "¼­ºñ½º: µî·ÏµÈ %2$d Áß %1$d È°¼ºÈ­µÊ"
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Services"
-msgstr "¼­ºñ½º"
+msgid "All primary partitions are used"
+msgstr "¸ðµç ÁÖÆÄƼ¼ÇÀÌ »ç¿ëÁßÀÔ´Ï´Ù."
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "System"
-msgstr "½Ã½ºÅÛ"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "%s on %s"
-msgstr "Æ÷Æ®"
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+"¿Ï·áµÈ ÈÄ¿¡, X¸¦ ´Ù½Ã ½ÃÀÛÇÏ¿© È£½ºÆ®¸í º¯°æ¿¡ µû¸¥\n"
+"¹®Á¦ ¹ß»ýÀ» ÇÇÇϽñ⠹ٶø´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Bootloader"
-msgstr "»ç¿ëÇÒ ºÎÆ®·Î´õ"
+#: ../../services.pm:1
+#, c-format
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "ºÎÆýÿ¡ ÀÚµ¿ Çϵå¿þ¾î °Ë»ö ¹× ¼³Á¤."
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakpxe:1
#, fuzzy, c-format
-msgid "Boot"
-msgstr "·çÆ®"
+msgid "Installation Server Configuration"
+msgstr "°í±Þ ¼³Á¤"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "disabled"
-msgstr "ÇØÁ¦"
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE ¼³Á¤Áß"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "activated"
-msgstr "Áö±Ý È°¼ºÈ­"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Network functionality not configured"
+msgstr "³×Æ®¿÷ ±â´ÉÀÌ ¼³Á¤µÇÁö ¾Ê¾Ò½À´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Firewall"
-msgstr "¹æÈ­º®/¶ó¿ìÅÍ"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Configure module"
+msgstr "¸ðµâ ¼³Á¤"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Security"
-msgstr "º¸¾È"
+msgid "Cocos (Keeling) Islands"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/net_monitor:1
#, fuzzy, c-format
-msgid "Security Level"
-msgstr "º¸¾È ¼öÁØ"
+msgid "Disconnecting from the Internet "
+msgstr "ÀÎÅͳݿ¡ ¿¬°á"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Network"
-msgstr "³×Æ®¿÷"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Network & Internet"
-msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º"
+msgid "You'll need to reboot before the modification can take place"
+msgstr "º¯°æµÈ°ÍÀ» Àû¿ëÇϱâ À§Çؼ± ¸®ºÎÆÃÀÌ ÇÊ¿äÇÕ´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Graphical interface"
-msgstr "½ÃÀ۽à ¹Ù·Î X ½ÇÇà"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider phone number"
+msgstr "°ø±ÞÀÚ ÀüÈ­¹øÈ£"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/main.pm:1
#, fuzzy, c-format
-msgid "Hardware"
-msgstr "ÇÏµå µå·¹ÀÌÅ©"
+msgid "Host %s"
+msgstr "È£½ºÆ®¸í:"
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "TV card"
-msgstr "TV Ä«µå"
+msgid "Armenia"
+msgstr "¾Æ¸£¸Þ´Ï¾Æ"
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
+msgid "Fiji"
+msgstr "ÇÇÁö"
-#: ../../install_steps_interactive.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgid ""
+"Arguments: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "ISA »ç¿îµå Ä«µå°¡ ÀÖ½À´Ï±î?"
-
-#: ../../install_steps_interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Sound card"
-msgstr "»ç¿îµå Ä«µå"
+msgid "Second floppy drive"
+msgstr "µÎ¹ø° Ç÷ÎÇÇ µå¶óÀ̺ê"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Remote CUPS server"
-msgstr "¿ø°Ý CUPS ¼­¹ö"
+msgid "About Harddrake"
+msgstr "ÇÏµå µå·¹ÀÌÅ© Á¤º¸"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "No printer"
-msgstr "ÇÁ¸°ÅÍ ¾øÀ½"
+msgid "Drive capacity"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Printer"
-msgstr "ÇÁ¸°ÅÍ"
+msgid ""
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
+msgstr ""
+"Ç÷ÎÇÇ µð½ºÅ©¸¦ µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä\n"
+"Ç÷ÎÇÇ µð½ºÅ©ÀÇ ¸ðµç ÀڷḦ ÀÒ°Ô µË´Ï´Ù."
-#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Mouse"
-msgstr "¸¶¿ì½º"
+msgid "Size: %s"
+msgstr "Å©±â: %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Timezone"
-msgstr "½Ã°£´ë"
+msgid "Control and Shift keys simultaneously"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Keyboard"
-msgstr "Å°º¸µå"
+msgid "secondary"
+msgstr "µÎ¹ø°"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Summary"
-msgstr "¿ä¾à¼³¸í"
+msgid "View Backup Configuration."
+msgstr "¹é¾÷ ¼³Á¤ º¸±â"
-#: ../../install_steps_interactive.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "NTP Server"
-msgstr "NTP ¼­¹ö"
+msgid "if set to yes, report check result to syslog."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#. -PO: keep this short or else the buttons will not fit in the window
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "ÀÚµ¿ ½Ã°£ µ¿±âÈ­ (NTP »ç¿ë)"
+msgid "No password"
+msgstr "¾ÏÈ£ ¾øÀ½"
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Çϵå¿þ¾î ½Ã°è GMT ¼³Á¤"
+msgid "Nigeria"
+msgstr "³ªÀÌÁö¸®¾Æ"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Which is your timezone?"
-msgstr "´ÔÀÇ ½Ã°£´ë´Â ¾îµðÀԴϱî?"
+msgid "There is no existing partition to use"
+msgstr "»ç¿ëÇÒ ±âÁ¸ÀÇ ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Would you like to try again?"
-msgstr "Àμ⠼³Á¤À» ÇϽðڽÀ´Ï±î?"
+msgid ""
+"The following scanners\n"
+"\n"
+"%s\n"
+"are available on your system.\n"
+msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Unable to contact mirror %s"
-msgstr "ºÐ±âÇÒ ¼ö ¾ø½À´Ï´Ù: %s"
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"¼ÒÄÏ ÇÁ¸°ÅÍ·Î ÀμâÇϱâ À§Çؼ­´Â, ÇÁ¸°ÅÍÀÇ È£½ºÆ®¸í°ú \n"
+"Æ÷Æ® ¹øÈ£(¿É¼Ç)¸¦ ÁöÁ¤ÇØ¾ß ÇÕ´Ï´Ù. HP JetDirect ¼­¹ö»ó¿¡¼­´Â\n"
+"ÀϹÝÀûÀ¸·Î 9100 Æ÷Æ®¸¦ »ç¿ëÇÏÁö¸¸, ´Ù¸¥ ¼­¹ö»ó¿¡¼­´Â °¢±â\n"
+"´Ù¸¦ ¼ö ÀÖ½À´Ï´Ù. Çϵå¿þ¾î ¼³¸í¼­¸¦ ÂüÁ¶Çϼ¼¿ä."
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "»ç¿ë°¡´ÉÇÑ ÆÑÅ°ÁöÀÇ ¸®½ºÆ®¸¦ ¹Ì·¯ »çÀÌÆ®¿¡ Á¢¼ÓÇؼ­ ¹Þ½À´Ï´Ù."
+msgid "Hard drive information"
+msgstr "ÇÏµå µð½ºÅ© Á¤º¸"
-#: ../../install_steps_interactive.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "ÆÑÅ°Áö¸¦ ¹ÞÀ» ¹Ì·¯ »çÀÌÆ®¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
+msgid "Russian"
+msgstr "·¯½Ã¾Æ"
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Jordan"
+msgstr "¿ä¸£´Ü"
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "À¯È¿ÇÑ ¹Ì·¯ ¸ñ·ÏÀ» ¹Þ±â À§ÇØ ¸Çµå·¹ÀÌÅ© ¸®´ª½º À¥»çÀÌÆ®¿¡ Á¢¼Ó Áß..."
+msgid "Hide files"
+msgstr "ÆÄÀÏ ¼û±â±â"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect printers connected to this machine"
+msgstr "ÇÁ¸°ÅÍ ÀÚµ¿°Ë»ö"
+
+#: ../../standalone/drakxtv:1
#, c-format
msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
+"XawTV isn't installed!\n"
"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
"\n"
-"Do you want to install the updates ?"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "¾÷µ¥ÀÌÆ® ¸ðµâ Ç÷ÎÇǸ¦ %s µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä"
-
-#: ../../install_steps_interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "ºÎÆà Ç÷ÎÇǸ¦ %s µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä"
+msgid "Sorry, no floppy drive available"
+msgstr "Á˼ÛÇÕ´Ï´Ù. »ç¿ë°¡´ÉÇÑ Ç÷ÎÇÇ µå¶óÀ̺갡 ¾ø½À´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Post-install configuration"
-msgstr "¼³Ä¡Àü ȯ°æ¼³Á¤"
+msgid "Bolivia"
+msgstr "º¼¸®ºñ¾Æ"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Installing package %s\n"
-"%d%%"
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
msgstr ""
-" %s ÆÑÅ°Áö ¼³Ä¡ Áß... \n"
-"%d%%"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "¼³Ä¡ ÁغñÁßÀÔ´Ï´Ù"
-
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "¡¸%s¡¹¶ó°í Ç¥½ÃµÈ CDROM"
+msgid "Bad package"
+msgstr "À߸øµÈ ÆÑÅ°Áö"
-#: ../../install_steps_interactive.pm:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
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."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-"¸¸¾à ¾Æ·¡¿¡ ¿­°ÅµÈ ¸ðµç CD¸¦ °¡Áö°í ÀÖ´Ù¸é, ¡¸È®ÀΡ¹À», \n"
-"ÀüÇô °¡Áö°í ÀÖÁö ¾Ê´Ù¸é, ¡¸Ãë¼Ò¡¹¸¦, \n"
-"ÀϺθ¸ °¡Áö°í ÀÖ´Ù¸é, ¾ø´Â CD¸¦ ¼±ÅÃÇØÁ¦ÇÑ ÈÄ¿¡ ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä."
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
+#: ../../security/level.pm:1
#, c-format
-msgid "All"
-msgstr "¸ðµÎ"
+msgid "DrakSec Basic Options"
+msgstr "DrakSec ±âº» ¿É¼Ç"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/draksound:1
#, c-format
-msgid "Truly minimal install (especially no urpmi)"
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "With basic documentation (recommended!)"
+msgid "Romania"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "With X"
-msgstr ""
+msgid "choose device"
+msgstr "ÀåÄ¡ ¼±ÅÃ"
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
+msgid "Canada"
+msgstr "ij³ª´Ù"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Type of install"
-msgstr ""
+msgid "Remove from LVM"
+msgstr "LVMÀ¸·ÎºÎÅÍ Á¦°Å"
-#: ../../install_steps_interactive.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Selected size is larger than available space"
-msgstr "¼±ÅÃµÈ ¿ë·®ÀÌ »ç¿ëÇÒ ¼ö ÀÖ´Â °ø°£º¸´Ù Å®´Ï´Ù."
+msgid "Timezone"
+msgstr "½Ã°£´ë"
-#: ../../install_steps_interactive.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "ÆÑÅ°Áö ¼±Åøñ·Ï Ç÷ÎÇÇ µð½ºÅ©¸¦ ³ÖÀ¸¼¼¿ä."
+msgid "German"
+msgstr "µ¶ÀÏ"
-#: ../../install_steps_interactive.pm:1
+#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Loading from floppy"
-msgstr "Ç÷ÎÇÇ¿¡¼­ Àд Áß"
+msgid "Next ->"
+msgstr "´ÙÀ½ ->"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Package selection"
-msgstr "ÆÑÅ°Áö ¼±ÅÃ"
+msgid ""
+"Turning on this allows to print plain text files in japanese language. Only "
+"use this function if you really want to print text in japanese, if it is "
+"activated you cannot print accentuated characters in latin fonts any more "
+"and you will not be able to adjust the margins, the character size, etc. "
+"This setting only affects printers defined on this machine. If you want to "
+"print japanese text on a printer set up on a remote machine, you have to "
+"activate this function on that remote machine."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
+msgstr ""
+"\n"
+"ÀÌ ÆÄƼ¼ÇÀº µå¶óÀ̹ö ÆÄƼ¼ÇÀÔ´Ï´Ù.\n"
+"±×³É µÎ´Â °ÍÀÌ ÁÁ½À´Ï´Ù.\n"
+
+#: ../../lang.pm:1
#, c-format
-msgid "Save on floppy"
-msgstr "Ç÷ÎÇÇ¿¡ ÀúÀå"
+msgid "Guinea-Bissau"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../Xconfig/monitor.pm:1
#, c-format
-msgid "Load from floppy"
-msgstr "Ç÷ÎÇÇ¿¡¼­ Àбâ"
+msgid "Horizontal refresh rate"
+msgstr "¼öÆò ÁÖÆļö"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Ç÷ÎÇÇ¿¡ ÆÑÅ°Áö ¼±Åøñ·ÏÀ» ÀûÀç ¶Ç´Â ÀúÀåÇÒÁö¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
-"Çü½Ä(Æ÷¸Ë)Àº ÀÚµ¿¼³Ä¡ »ý¼º Ç÷ÎÇÇ¿Í µ¿ÀÏÇÕ´Ï´Ù."
+"ÀÌ ÆÄƼ¼ÇÀº loopbackÀ¸·Î ¼³Á¤µÇ¾î ÀÖÀ¸¹Ç·Î ¸¶¿îÆ® Æ÷ÀÎÆ®¸¦ º¯°æÇÒ¼ö ¾ø½À´Ï"
+"´Ù.\n"
+"loopbackÀ» ¸ÕÀú Á¦°ÅÇϼ¼¿ä."
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr "¼³Ä¡ ¶Ç´Â ¾÷±×·¹À̵带 À§ÇÑ µð½ºÅ© °ø°£ÀÌ ºÎÁ·ÇÕ´Ï´Ù. (%d > %d)"
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network is accessable after booting your "
+"system and correct the configuration using the Mandrake Control Center, "
+"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
+"printer, also using the Mandrake Control Center, section \"Hardware\"/"
+"\"Printer\""
+msgstr ""
+"¼³Ä¡°úÁ¤¿¡¼­ ¼³Á¤ÇÑ ³×Æ®¿÷À» ½ÃÀÛÇÒ ¼ö ¾ø½À´Ï´Ù. ½Ã½ºÅÛÀÌ ºÎÆÃµÉ ¶§, ³×Æ®¿÷"
+"ÀÌ ÀÚµ¿ ½ÇÇàµÇµµ·Ï µÇ¾î ÀÖ´ÂÁö È®ÀÎÇÏ°í, ¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ(¡¸³×Æ®¿÷°ú ÀÎÅÍ"
+"³Ý¡¹/¡¸¿¬°á¡¹)¸¦ ÀÌ¿ëÇÏ¿© ¿Ã¹Ù¸£°Ô ¼³Á¤Çϼ¼¿ä.±×¸®°í³ª¼­ ´Ù½Ã ¸Çµå·¹ÀÌÅ© Á¦"
+"¾î ¼¾ÅÍ(¡¸Çϵå¿þ¾î¡¹/¡¸ÇÁ¸°ÅÍ¡¹)¸¦ ÀÌ¿ëÇÏ¿©, ÇÁ¸°ÅÍ ¼³Á¤À» ´Ù½Ã ÇØ º¸¼¼¿ä."
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Looking for available packages..."
-msgstr "À¯È¿ÇÑ ÆÑÅ°Áö¸¦ ã°í ÀÖ½À´Ï´Ù."
+msgid "USB controllers"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "¾÷±×·¹À̵åÇÒ ÆÑÅ°Áö¸¦ °Ë»öÁßÀÔ´Ï´Ù."
+msgid "What norm is your TV using?"
+msgstr "TV Ä«µå°¡ ¾î¶² ³ðÀ» »ç¿ëÇմϱî?"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Looking at packages already installed..."
-msgstr "ÀÌ¹Ì ¼³Ä¡µÈ ÆÑÅ°Áö ã´Â Áß..."
+msgid "Type:"
+msgstr "À¯Çü: "
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "À¯È¿ÇÑ ÆÑÅ°Áö °Ë»ö ¹× RPM µ¥ÀÌÅͺ£À̽º ÀçÁ¶ÇÕ Áß..."
+msgid "Share name"
+msgstr "°øÀ¯ À̸§"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "½º¿Ò ¸Þ¸ð¸®°¡ ºÎÁ·ÇÕ´Ï´Ù. Á» ´õ Ãß°¡Çϼ¼¿ä."
+msgid "enable"
+msgstr "Çã¿ë"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "¹èµå ºí·° °Ë»ç¸¦ Çմϱî?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Æ÷¸ËÇÒ ÆÄƼ¼ÇÀ» ¼±ÅÃÇϼ¼¿ä"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "ÆÄƼ¼Ç Å×ÀÌºí º¯°æ»çÇ×À» Àû¿ëÇÏ·Á¸é ¸®ºÎÆÃÀ» ÇØ¾ß ÇÕ´Ï´Ù."
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "À¯È¿ÇÑ ¹Ì·¯ ¸ñ·ÏÀ» ¹Þ±â À§ÇØ ¸Çµå·¹ÀÌÅ© ¸®´ª½º À¥»çÀÌÆ®¿¡ Á¢¼Ó Áß..."
-#: ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm:1
#, c-format
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"
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"1MB ºÎÆ®½ºÆ®·¦ °ø°£ ºÎÁ·! ¼³Ä¡´Â °è¼ÓÇÒ ¼ö ÀÖÁö¸¸, ½Ã½ºÅÛÀ» ºÎÆÃÇϱâ À§Çؼ­"
-"´Â µð½ºÅ©µå·¹ÀÌÅ©¿¡¼­ ºÎÆ®½ºÆ®·¦ ÆÄƼ¼ÇÀ» ¸¸µé¾î¾ß ÇÕ´Ï´Ù."
+"³×Æ®¿÷À» ´Ù½Ã ½ÃÀÛÇÏ´Â µµÁß¿¡ ¹®Á¦°¡ ¹ß»ýÇß½À´Ï´Ù:\n"
+"\n"
+"%s"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Choose the mount points"
-msgstr "¸¶¿îÆ® À§Ä¡¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
+msgid "Remove the loopback file?"
+msgstr "·çÇÁ¹é ÆÄÀÏÀ» Á¦°ÅÇմϱî?"
#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "¸¶¿îÆ® À§Ä¡¸¦ ã±âÀ§ÇØ ÆÄƼ¼ÇµéÀ» °Ë»ö Áß"
+msgid "Selected size is larger than available space"
+msgstr "¼±ÅÃµÈ ¿ë·®ÀÌ »ç¿ëÇÒ ¼ö ÀÖ´Â °ø°£º¸´Ù Å®´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "No partition available"
-msgstr "»ç¿ë°¡´ÉÇÑ ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù."
+msgid "NCP server name missing!"
+msgstr "NCP ¼­¹ö À̸§À» ãÀ» ¼ö ¾øÀ½!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE ¼³Á¤Áß"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Please choose your country."
+msgstr "¾î¶² Á¾·ùÀÇ ¸¶¿ì½º¸¦ »ç¿ëÇϽʴϱî?"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "Hard Disk Backup files..."
+msgstr "ÇÏµå µð½ºÅ© ¹é¾÷ ÆÄÀϵé"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIS Ä«µå ȯ°æ¼³Á¤Áß..."
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Laotian"
+msgstr "¶óÆ®¹Ù¾Æ"
-#: ../../install_steps_interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+msgid "Samoa"
+msgstr "»ç¸ð¾Æ"
-#: ../../install_steps_interactive.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Button 3 Emulation"
-msgstr "¹öÆ° 3 ¿¡¹Ä·¹À̼Ç"
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"rstat ÇÁ·ÎÅäÄÝÀº ³×Æ®¿÷»óÀÇ »ç¿ëÀÚ°¡ ±¸ ³×Æ®¿ö»ó¿¡ ÀÖ´Â \n"
+"¸ðµç ÄÄÇ»ÅÍ¿¡ ´ëÇÏ¿© ¼öÇà´É·Â ¸ÞÆ®¸¯½º¸¦ ¾Ë¾Æ º¼ ¼ö ÀÖ°Ô ÇÕ´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Button 2 Emulation"
-msgstr "¹öÆ° 2 ¿¡¹Ä·¹À̼Ç"
+msgid "Re-generating list of configured scanners ..."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "¹öÆ° ¿¡¹Ä·¹À̼Ç"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Scanner"
+msgstr "½ºÄ³³Ê ¼±ÅÃ"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#: ../../Xconfig/test.pm:1
#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "¾î¶² ½Ã¸®¾ó Æ÷Æ®¿¡ ¸¶¿ì½º°¡ ¿¬°áµÇ¾î ÀÖ³ª¿ä?"
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#: ../../any.pm:1
#, c-format
-msgid "Mouse Port"
-msgstr "¸¶¿ì½º Æ÷Æ®"
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr "»ç¿ëÀÚ¸íÀº ¿µ¹® ¼Ò¹®ÀÚ³ª ¼ýÀÚ, '-' ±×¸®°í '_' ¸¸ Æ÷ÇԵɼö ÀÖ½À´Ï´Ù."
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Please choose your type of mouse."
-msgstr "¸¶¿ì½º Á¾·ù¸¦ ¼±ÅÃÇϼ¼¿ä."
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "¾Ïȣȭ Å°"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Upgrade %s"
-msgstr "¾÷±×·¹À̵å"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "¼³Ä¡ÇÕ´Ï±î ¾Æ´Ï¸é ¾÷µ¥ÀÌÆ® Çմϱî?"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Install/Upgrade"
-msgstr "¼³Ä¡/¾÷µ¥ÀÌÆ®"
+msgid "Menudrake"
+msgstr "¸Þ´º µå·¹ÀÌÅ©"
-#: ../../install_steps_interactive.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Áö¿øµÇ´Â Å°º¸µå ¸ñ·ÏÀÌ ¿©±â¿¡ ÀÖ½À´Ï´Ù."
+msgid "Welcome To Crackers"
+msgstr "º¸¾È¿¡ ½Å°æ¾È¾¸"
-#: ../../install_steps_interactive.pm:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Å°º¸µå ·¹À̾ƿô ¼±ÅÃÀ» ¼±ÅÃÇϼ¼¿ä."
+msgid "Module options:"
+msgstr "¸ðµâ ¿É¼Çµé:"
-#: ../../install_steps_interactive.pm:1 ../../Xconfig/main.pm:1
-#: ../../diskdrake/dav.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/draksplash:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/scannerdrake:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Quit"
-msgstr "Á¾·á"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "License agreement"
-msgstr "»ç¿ë µ¿ÀǼ­"
+msgid "Go on without configuring the network"
+msgstr "³×Æ®¿÷ ¼³Á¤ ¾øÀÌ °è¼Ó"
-#: ../../install_steps_interactive.pm:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "An error occurred"
-msgstr "¿À·ù ¹ß»ý"
+msgid "Abort"
+msgstr "ÁßÁö"
-#: ../../install_steps_newt.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgid "No password prompt on %s at port %s"
msgstr ""
-" <Tab>/<Alt-Tab> Ç׸ñ°£ À̵¿ | <Space> ¼±Åà | <F12> ´ÙÀ½ È­¸é"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "¸®´ª½º-¸Çµå·¹ÀÌÅ© ¼³Ä¡ %s"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "¹é¾÷Çϱâ Àü¿¡ Å×ÀÔÀ» Áö¿ïÁö È®ÀÎÇϼ¼¿ä."
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Ç÷ÎÇÇ µå¶óÀ̺긦 »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù."
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Usage of remote scanners"
+msgstr "ºó °ø°£ »ç¿ë"
-#: ../../install_steps.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Welcome to %s"
-msgstr "%s¿¡ ¿À½Å°ÍÀ» ȯ¿µÇÕ´Ï´Ù."
+msgid "\t-CDROM.\n"
+msgstr ""
-#: ../../install_steps.pm:1
+#: ../../install_interactive.pm:1
#, c-format
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"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"ÀϺΠÁß¿äÇÑ ÆÑÅ°ÁöµéÀÌ ¿Ã¹Ù¸£°Ô ¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù.\n"
-"CDROM µå¶óÀÌºê ¶Ç´Â ¹Ìµð¾î°¡ ¼Õ»óµÇ¾ú½À´Ï´Ù.\n"
-"ÀÌ¹Ì ¼³Ä¡°¡ ¿Ï·áµÈ ÄÄÇ»ÅÍ¿¡¼­ ¡¸rpm -qpl Mandrake/RPMS/*.rpm¡¹¸í·ÉÀ¸·Î Á¡°Ë"
-"ÇØ º¸¼¼¿ä.\n"
+"À©µµ¿ìÁî ÆÄƼ¼ÇÀÌ ½ÉÇÏ°Ô Á¶°¢³ª ÀÖ½À´Ï´Ù. ¸ÕÀú ``µð½ºÅ© Á¶°¢ ¸ðÀ½''À» Çϼ¼¿ä."
-#: ../../install_steps.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Duplicate mount point %s"
-msgstr "¸¶¿îÆ® Æ÷ÀÎÆ® Áߺ¹ %s"
+msgid "Dvorak (Norwegian)"
+msgstr "µåº¸¶ô(³ë¸£¿þÀÌ)"
-#: ../../install_steps.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+msgid "Hard Disk Backup Progress..."
msgstr ""
-"¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù. ±×·¯³ª ÀûÀýÈ÷ ó¸®ÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
-"À§ÇëÀ» °¨¼öÇÒ·Á¸é °è¼ÓÇϼ¼¿ä."
-#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Please wait"
-msgstr "±â´Ù·Á ÁÖ¼¼¿ä"
+msgid "Unable to fork: %s"
+msgstr "ºÐ±âÇÒ ¼ö ¾ø½À´Ï´Ù: %s"
-#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
-#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Ok"
-msgstr "È®ÀÎ"
+msgid "Type: "
+msgstr "À¯Çü: "
-#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Á¾·á"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "<-- Edit Client"
+msgstr "<-- Ŭ¶óÀ̾ðÆ® »èÁ¦"
-#: ../../interactive.pm:1 ../../standalone/draksec:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Basic"
-msgstr ""
+msgid "no fonts found"
+msgstr "ÆùÆ®¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù."
-#: ../../interactive.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Advanced"
-msgstr "°í±Þ"
-
-#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, fuzzy, c-format
-msgid "Remove"
-msgstr "Á¦°Å ¸ñ·Ï"
+msgid "Mouse"
+msgstr "¸¶¿ì½º"
-#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../bootloader.pm:1
#, c-format
-msgid "Modify"
-msgstr "º¯°æ"
+msgid "not enough room in /boot"
+msgstr "/boot¿¡ °ø°£ÀÌ ºÎÁ·ÇÕ´Ï´Ù."
-#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "Add"
-msgstr "Ãß°¡"
+msgid "Choosing an arbitratry driver"
+msgstr ""
-#: ../../interactive.pm:1
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
-msgid "Choose a file"
-msgstr "ÆÄÀÏ ¼±ÅÃ"
+msgid "Host name"
+msgstr "È£½ºÆ®¸í:"
-#: ../../keyboard.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
+msgid "Liechtenstein"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Right \"Windows\" key"
+msgid "the color of the progress bar"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Left \"Windows\" key"
-msgstr ""
+msgid "Suppress Fonts Files"
+msgstr "ÆùÆ® ÆÄÀϵé ÀºÆó"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "\"Menu\" key"
-msgstr ""
+msgid "Add to RAID"
+msgstr "RAID¿¡ Ãß°¡"
-#: ../../keyboard.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Alt and Shift keys simultaneously"
+msgid ""
+"You can add additional entries in yaboot for other operating systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSs, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is the name you will have to type at the yaboot prompt to\n"
+"select this boot option.\n"
+"\n"
+" * Image: this is the name of the kernel to boot. Typically, vmlinux or a\n"
+"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 often used to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button\n"
+"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
+"The following are some examples:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"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 4096 Kbytes. If you\n"
+"need to allocate a large ramdisk, this option can be used to specify a\n"
+"ramdisk larger than the default.\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially mounted as\n"
+"read-only, to allow a file system check before the system becomes ``live''.\n"
+"You can override the default with 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 pressing ENTER at the yaboot prompt. This entry will also be\n"
+"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Ctrl and Alt keys simultaneously"
+msgid ""
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "CapsLock key"
+msgid "No floppy drive available!"
+msgstr "À¯È¿ÇÑ ÇÁ·ÎÇÇ µå¶óÀ̺긦 ãÀ» ¼ö ¾ø½À´Ï´Ù!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"To know about the options available for the current printer read either the "
+"list shown below or click on the \"Print option list\" button.%s%s%s\n"
+"\n"
msgstr ""
+"ÇöÀç ÇÁ¸°ÅÍ¿¡ »ç¿ëÇÒ ¼ö ÀÖ´Â ¿É¼Ç ¸ñ·ÏÀ» º¸·Á¸é, ¡¸ÀÎ¼â ¿É¼Ç ¸ñ·Ï¡¹À» ´©¸£¼¼"
+"¿ä.\n"
+"\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr ""
+msgid "Continue anyway?"
+msgstr "°è¼ÓÇϽðڽÀ´Ï±î?"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Both Shift keys simultaneously"
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Right Alt key"
-msgstr ""
+msgid "Printer"
+msgstr "ÇÁ¸°ÅÍ"
-#: ../../keyboard.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "À¯°í½½¶óºñ¾Æ (¶óƾ)"
+msgid "Saudi Arabia"
+msgstr "»ç¿ìµð¾Æ¶óºñ¾Æ"
-#: ../../keyboard.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "º£Æ®³² (¼ýÀÚ¿­ QWERTY)"
+msgid "Internet"
+msgstr "ÀÎÅͳÝ"
-#: ../../keyboard.pm:1
+#: ../../standalone/service_harddrake:1
#, c-format
-msgid "US keyboard (international)"
-msgstr "US Å°º¸µå (±¹Á¦)"
+msgid "Some devices were added:\n"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "US keyboard"
-msgstr "¹Ì±¹"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "À§Ä¡: %s ½Ç¸°ÅÍ, %s Çìµå, %s ¼½ÅÍ\n"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "UK keyboard"
-msgstr "¿µ±¹"
+msgid "Printing on the printer \"%s\""
+msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Ukrainian"
-msgstr "¿ìÅ©¶óÀ̳ª"
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "ÅÍÅ° (Çö´ë ¡¸Q¡¹¸ðµ¨"
+msgid "Restore From Tape"
+msgstr "Å×ÀÔÀ¸·ÎºÎÅÍ º¹±¸"
-#: ../../keyboard.pm:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Åͱâ (ÀüÅë ¡¸F¡¹¸ðµ¨"
+msgid "Choose the profile to configure"
+msgstr "¼³Á¤ÇÒ ÇÁ·ÎÆÄÀÏÀ» ¼±ÅÃÇϼ¼¿ä."
-#: ../../keyboard.pm:1
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
-msgid "Tajik keyboard"
-msgstr "ŸÁöÅ© Å°º¸µå"
+msgid ""
+"\n"
+"\n"
+"Enter a Zeroconf host name without any dot if you don't\n"
+"want to use the default host name."
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Thai keyboard"
-msgstr "ű¹"
+msgid "Backup Now from configuration file"
+msgstr "Áö±Ý ¼³Á¤ ÆÄÀϷκÎÅÍ ¹é¾÷"
-#: ../../keyboard.pm:1
+#: ../../fsedit.pm:1
#, fuzzy, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "¹Ì±¹ (ŸÀÚ±â)"
+msgid "Mount points should contain only alphanumerical characters"
+msgstr "ÇÁ¸°ÅÍ À̸§¿¡´Â ¹®ÀÚ, ¼ýÀÚ ±×¸®°í ¹ØÁÙ(Underscore)¸¸ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr ""
+msgid "Restarting printing system..."
+msgstr "Àμ⠽ýºÅÛ Àç½ÇÇà Áß ..."
-#: ../../keyboard.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "¼¼¸£ºñ¾Æ (½Ã¸±)"
+msgid ""
+"Arguments: (name)\n"
+"\n"
+"Add the name as an exception to the handling of password aging by msec."
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "½½·Î¹ÙÅ°¾Æ (QWERTY)"
+msgid "See hardware info"
+msgstr "Çϵå¿þ¾î Á¤º¸ º¸±â"
-#: ../../keyboard.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "½½·Î¹ÙÅ°¾Æ (QWERTZ)"
+msgid "First sector of boot partition"
+msgstr "ºÎÆ® ÆÄƼ¼ÇÀÇ Ã¹¹ø° ¼½ÅÍ"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Slovenian"
-msgstr "½½·Îº£´Ï¾Æ"
+msgid "Printer manufacturer, model"
+msgstr "ÇÁ¸°ÅÍ Á¦Á¶¾÷ü, ¸ðµ¨"
-#: ../../keyboard.pm:1
+#: ../../printer/data.pm:1
#, c-format
-msgid "Swedish"
-msgstr "½º¿þµ§"
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../keyboard.pm:1
+#: ../../standalone.pm:1
#, c-format
-msgid "Russian (Yawerty)"
-msgstr "·¯½Ã¾Æ (Yawerty)"
+msgid ""
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Russian"
-msgstr "·¯½Ã¾Æ"
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Romanian (qwerty)"
-msgstr "·Î¸¸ (QWERTY)"
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../Xconfig/monitor.pm:1
#, c-format
-msgid "Romanian (qwertz)"
-msgstr "·Î¸¸ (QWERTZ)"
+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"
+"Àß ¸ð¸£°Ú´Ù¸é, ¾ÈÀüÇÏ°Ô ³·Àº ¼³Á¤°ªÀ» ¼±ÅÃÇϼ¼¿ä"
-#: ../../keyboard.pm:1
+#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
-msgid "Canadian (Quebec)"
-msgstr "ij³ª´Ù (Äùº¤)"
+msgid "Modify"
+msgstr "º¯°æ"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Portuguese"
-msgstr "Æ÷·çÅõÄ®"
+msgid ""
+"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
+msgstr ""
+"\n"
+"¡¸%s¡¹¿Í¡¸%s¡¹¸í·ÉÀº ¶ÇÇÑ Æ¯Á¤ Àμâ ÀÛ¾÷À» À§ÇÑ ¿É¼Ç ¼³Á¤À» ¼öÁ¤ÇÒ ¼ö ÀÖ°Ô ÇÕ"
+"´Ï´Ù. ¸í·ÉÇà¿¡ ¿øÇÏ´Â ¼³Á¤°ªÀ» Ãß°¡Çϼ¼¿ä, ¿¹: ¡¸%s <ÆÄÀÏ>¡¹.\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Æú¶õµå (QwertZ)"
+msgid "Need hostname, username and password!"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../diskdrake/dav.pm:1
#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Æú¶õµå (QwertY)"
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Norwegian"
-msgstr "³ë¸£¿þÀÌ"
+msgid "HardDrake"
+msgstr "ÇÏµå µå·¹ÀÌÅ©"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Dutch"
-msgstr "³×µ¨¶õµå"
+msgid "new"
+msgstr "»õ·Î ¸¸µé±â"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Would you like to try again?"
+msgstr "Àμ⠼³Á¤À» ÇϽðڽÀ´Ï±î?"
-#: ../../keyboard.pm:1
+#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "Maltese (UK)"
-msgstr ""
+msgid "Wizard"
+msgstr "¸¶¹ý»ç"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "¼¼¸£ºñ¾Æ (½Ã¸±)"
+msgid "Edit selected server"
+msgstr "%s ¹ß°ß"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Myanmar (Burmese)"
-msgstr ""
+msgid "Please choose where you want to backup"
+msgstr "¹é¾÷ÇÒ °÷À» ¼±ÅÃÇϼ¼¿ä."
-#: ../../keyboard.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Macedonian"
-msgstr "¸¶Äɵµ´Ï¾Æ"
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "ÆÄƼ¼Ç Å×ÀÌºí º¯°æ»çÇ×À» Àû¿ëÇÏ·Á¸é ¸®ºÎÆÃÀ» ÇØ¾ß ÇÕ´Ï´Ù."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Malayalam"
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/keyboarddrake:1
#, c-format
-msgid "Latvian"
-msgstr "¶óÆ®¹Ù¾Æ"
+msgid "Please, choose your keyboard layout."
+msgstr "Å°º¸µå ·¹À̾ƿô ¼±ÅÃ"
-#: ../../keyboard.pm:1
+#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "¸®Åõ¾Æ´Ï¾Æ (À½¼ºÇÐ QWERTY)"
+msgid "Standard"
+msgstr "Ç¥ÁØ"
-#: ../../keyboard.pm:1
+#: ../../standalone/mousedrake:1
#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "¸®Åõ¾Æ´Ï¾Æ (¼ýÀÚ¿­ QWERTY)"
+msgid "Please choose your mouse type."
+msgstr "¾î¶² Á¾·ùÀÇ ¸¶¿ì½º¸¦ »ç¿ëÇϽʴϱî?"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "¸®Åõ¾Æ´Ï¾Æ AZERTY (½ÅÇü)"
+msgid "Connect..."
+msgstr "¿¬°á..."
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Failed to configure printer \"%s\"!"
+msgstr "ÇÁ¸°ÅÍ ¡¸%s¡¹ ¼³Á¤ Áß ..."
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "Àç¼³Á¤"
+
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "¸®Åõ¾Æ´Ï¾Æ AZERTY (±¸Çü)"
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakfont:1
#, fuzzy, c-format
-msgid "Laotian"
-msgstr "¶óÆ®¹Ù¾Æ"
+msgid "About"
+msgstr "ÁßÁö"
-#: ../../keyboard.pm:1
+#: ../../network/network.pm:1
#, c-format
-msgid "Latin American"
-msgstr "¶óƾ ¾Æ¸Þ¸®Ä«"
+msgid "Proxies configuration"
+msgstr "ÇÁ¶ô½Ã ¼³Á¤"
-#: ../../keyboard.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Korean keyboard"
-msgstr "ÇÑ±Û Å°º¸µå"
+msgid "GlidePoint"
+msgstr "ALPS ±Û¶óÀ̵åÆ÷ÀÎÆ®"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Japanese 106 keys"
-msgstr "ÀϺ» 106Å°"
+msgid "Start: sector %s\n"
+msgstr "½ÃÀÛ: ¼½ÅÍ %s\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Inuktitut"
+msgid "Network interface already configured"
+msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º´Â ÀÌ¹Ì ¼³Á¤µÇ¾î ÀÖ½À´Ï´Ù."
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Italian"
-msgstr "ÀÌÅ»¸®¾Æ"
+msgid "connecting to Bugzilla wizard ..."
+msgstr "¹öÁú¶ó ¸¶¹ý»ç¿¡ ¿¬°á Áß ..."
-#: ../../keyboard.pm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "Icelandic"
-msgstr "¾ÆÀ̽½·£µå"
+msgid "Mail Server"
+msgstr "¸ÞÀÏ ¼­¹ö"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "Iranian"
-msgstr "À̶õ"
+msgid "Please click on a partition"
+msgstr "ÆÄƼ¼ÇÀ» Ŭ¸¯Çϼ¼¿ä"
-#: ../../keyboard.pm:1
+#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "À̽º¶ó¿¤ (À½¼ºÇÐ)"
+msgid "Linux"
+msgstr "¸®´ª½º"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Israeli"
-msgstr "À̽º¶ó¿¤"
+msgid "Have a nice day!"
+msgstr "Áñ°Å¿î ÇϷ縦!"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Croatian"
-msgstr "Å©·Î¾ÆƼ¾Æ"
+msgid "across Network"
+msgstr "³×Æ®¿÷ °æÀ¯"
-#: ../../keyboard.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Hungarian"
-msgstr "Çë°¡¸®"
+msgid "/dev/fd0"
+msgstr "/dev/fd0"
-#: ../../keyboard.pm:1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "¾÷±×·¹À̵å"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Gurmukhi"
-msgstr ""
+msgid "Select Printer Connection"
+msgstr "ÇÁ¸°ÅÍ ¿¬°á¹æ¹ýÀ» ¼±ÅÃÇϼ¼¿ä."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Gujarati"
+msgid "Scanning for TV channels in progress ..."
+msgstr "TV ä³Î °Ë»ö ÁøÇà Áß..."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Greek"
-msgstr "±×¸®½º"
+msgid "IP Range Start:"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "±×·çÁö¾Æ (¶óƾ)"
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+"(Åë»óÀûÀ¸·Î inetd¶ó°í ÇÏ´Â) ÀÎÅÍ³Ý ¼öÆÛ ´ë¸óÀº ´Ù¾çÇÑ ÀÎÅÍ³Ý ¼­¹ö¸¦\n"
+"ÇÊ¿äÇÑ ¶§ ½ÇÇà ½Ãŵ´Ï´Ù. ÅÚ³Ý, FTP, RSH, RLOGIN µî°ú °°Àº ¸¹Àº \n"
+"¼­ºñ½º¸¦ °ü¸®ÇÕ´Ï´Ù. ÀÌ°ÍÀÌ ½ÇÇàµÇ¾î ÀÖÁö ¾ÊÀ¸¸é, ¶ÇÇÑ ÀÌ°ÍÀÌ °ü¸®ÇÏ´Â\n"
+"¿©·¯ ¼­ºñ½ºµµ ¶ÇÇÑ ºÒ°¡´ÉÇÏ°Ô µË´Ï´Ù."
-#: ../../keyboard.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "±×·çÁö¾Æ(·¯½Ã¾Æ¾î)"
+msgid "the height of the progress bar"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "French"
-msgstr "ÇÁ¶û½º"
+msgid ""
+"\n"
+"- Save via %s on host: %s\n"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
-msgid "Finnish"
-msgstr "Çɶõµå"
+msgid "Argentina"
+msgstr "¾Æ¸£ÇîƼ³ª"
-#: ../../keyboard.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Spanish"
-msgstr "½ºÆäÀÎ"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse broadcasted icmp echo."
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "Estonian"
-msgstr "¿¡½ºÅä´Ï¾Æ"
+msgid "Domain Name Server"
+msgstr "µµ¸ÞÀÎ ³×ÀÓ ¼­¹ö"
-#: ../../keyboard.pm:1
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Level:"
+msgstr "º¸¾È ¼öÁØ"
+
+#: ../../fsedit.pm:1
#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "µåº¸¶ô(½º¿þµ§)"
+msgid "Mount points must begin with a leading /"
+msgstr "¸¶¿îÆ® À§Ä¡´Â ¹Ýµå½Ã ¡¸/¡¹·Î ½ÃÀÛÇÏ¿©¾ß ÇÕ´Ï´Ù."
-#: ../../keyboard.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "µåº¸¶ô(³ë¸£¿þÀÌ)"
+msgid "Postfix Mail Server"
+msgstr "Æ÷½ºÆ®ÇȽº ¸ÞÀÏ ¼­¹ö"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Dvorak (US)"
-msgstr "µåº¸¶ô(US)"
+msgid "Quit without saving"
+msgstr "ÀúÀåÇÏÁö ¾Ê°í Á¾·áÇϽðڽÀ´Ï±î?"
-#: ../../keyboard.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Danish"
-msgstr "µ§¸¶Å©"
+msgid "Yemen"
+msgstr "¿¹¸à"
-#: ../../keyboard.pm:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Devanagari"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "German (no dead keys)"
-msgstr "µ¶ÀÏ (dead Å° ¾øÀ½)"
+msgid ""
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "German"
-msgstr "µ¶ÀÏ"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../steps.pm:1
#, c-format
-msgid "Czech (QWERTY)"
-msgstr "üÄÚ (QWERTY)"
+msgid "Hard drive detection"
+msgstr "ÇÏµå µð½ºÅ© ¼±ÅÃ"
-#: ../../keyboard.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "üÄÚ (QWERTZ)"
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../diskdrake/dav.pm:1
#, c-format
-msgid "Swiss (French layout)"
-msgstr "½ºÀ§½º (ºÒ¾î)"
+msgid "Please enter the WebDAV server URL"
+msgstr "WebDAV ¼­¹ö URLÀ» ÀÔ·ÂÇϼ¼¿ä."
-#: ../../keyboard.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Swiss (German layout)"
-msgstr "½ºÀ§½º (µ¶¾î)"
+msgid "Tajikistan"
+msgstr "ŸÁöÅ°½ºÅº"
-#: ../../keyboard.pm:1
+#: ../../help.pm:1 ../../install_steps_gtk.pm:1
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
-msgid "Belarusian"
-msgstr "º§¶ó·ç½Ã¾Æ"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bosnian"
-msgstr "¿¡½ºÅä´Ï¾Æ"
+msgid "Accept"
+msgstr "µ¿ÀÇ"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "ºê¶óÁú (ABNT-2)"
+msgid "Description"
+msgstr "¼³¸í"
-#: ../../keyboard.pm:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "ºÒ°¡¸®¾Æ (BDS)"
+msgid "Error opening %s for writing: %s"
+msgstr "%s¸¦ ¾²±âÀ§ÇØ ¿©´ÂÁß ¿À·ù¹ß»ý: %s"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "ºÒ°¡¸®¾Æ (À½¼ºÇÐ)"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bengali"
-msgstr "Çã¿ë"
+msgid "Mouse type: %s\n"
+msgstr "¸¶¿ì½º Á¾·ù: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Belgian"
-msgstr "º§±â¿¡"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "´ÔÀÇ Ä«µå´Â XFree %s·Î 3D Çϵå¿þ¾î °¡¼Ó±â´ÉÀ» Áö¿øÇÕ´Ï´Ù."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjani (¶óƾ)"
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "CD/DVD ¿ë·®À» ¼±ÅÃÇϼ¼¿ä."
-#: ../../keyboard.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Arabic"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Armenian (phonetic)"
-msgstr "¹Ì±¹ (À½¼ºÇÐ)"
+msgid "Expert Area"
+msgstr "Àü¹®°¡ ¿µ¿ª"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/monitor.pm:1
#, c-format
-msgid "Armenian (typewriter)"
-msgstr "¹Ì±¹ (ŸÀÚ±â)"
+msgid "Choose a monitor"
+msgstr "¸ð´ÏÅ͸¦ ¼±ÅÃÇϼ¼¿ä"
-#: ../../keyboard.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Armenian (old)"
-msgstr "¹Ì±¹ (±¸¹öÀü)"
+msgid "Empty label not allowed"
+msgstr "ºó Ç׸ñ¸íÀº Çã¿ëµÇÁö ¾Ê½À´Ï´Ù."
#: ../../keyboard.pm:1
#, c-format
-msgid "Albanian"
-msgstr "¾Ë¹Ù´Ï¾Æ"
+msgid "Maltese (UK)"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Polish"
-msgstr "Æú¶õµå"
+msgid "I can't add any more partition"
+msgstr "´õÀÌ»ó ÆÄƼ¼ÇÀ» Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù."
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Dvorak"
-msgstr "µåº¸¶ô"
+msgid "Size in MB: "
+msgstr "Å©±â(MB) :"
-#: ../../lang.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Zimbabwe"
-msgstr "Áü¹Ùºê¿þ"
+msgid "Remote printer"
+msgstr "¿ø°Ý ÇÁ¸°ÅÍ"
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Zambia"
-msgstr "Àáºñ¾Æ"
+msgid "Please choose a language to use."
+msgstr "»ç¿ëÇÒ ¾ð¾î¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../network/network.pm:1
#, c-format
-msgid "South Africa"
-msgstr "³²¾ÆÇÁ¸®Ä«"
+msgid ""
+"WARNING: this device has been previously configured to connect to the "
+"Internet.\n"
+"Simply accept to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"°æ°í: ÀÌ ÀåÄ¡´Â ÀÌ¹Ì ÀÎÅÍ³Ý ¿¬°á¿ëÀ¸·Î ¼³Á¤µÇ¾î ÀÖ½À´Ï´Ù.\n"
+"±×³É ÇöÀç ¼³Á¤À» À¯ÁöÇϼ¼¿ä.\n"
+"¾Æ·¡ ÀԷ¶õÀ» º¯°æÇϸé ÇöÀç ¼³Á¤À» µ¤¾î¾²°Ô µË´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, fuzzy, c-format
-msgid "Serbia"
-msgstr "½Ã¸®¾ó ¸¶¿ì½º"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
+msgid "I can set up your computer to automatically log on one user."
msgstr ""
+"ÀÚµ¿À¸·Î ƯÁ¤ »ç¿ëÀڷμ­ ·Î±×Àεǵµ·Ï ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
+"ÀÌ·± Ư¼ºÀ» ¿øÇϼ¼¿ä?"
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Floppy format"
+msgstr "Æ÷¸Ë"
+
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Yemen"
-msgstr "¿¹¸à"
+msgid ""
+"the WP flag in the CR0 register enforce write proctection at the memory page "
+"level, thus enabling the processor to prevent kernel accesses)"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Samoa"
-msgstr "»ç¸ð¾Æ"
+msgid "Generic Printers"
+msgstr "ÀÏ¹Ý ÇÁ¸°ÅÍ"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Wallis and Futuna"
+msgid ""
+"Please choose the printer to which the print jobs should go or enter a "
+"device name/file name in the input line"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Vanuatu"
+msgid "The scanners on this machine are available to other computers"
msgstr ""
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, fuzzy, c-format
-msgid "Vietnam"
-msgstr "º£Æ®³²"
+msgid "First sector of the root partition"
+msgstr "ºÎÆ® ÆÄƼ¼ÇÀÇ Ã¹¹ø° ¼½ÅÍ"
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr ""
+msgid "Alternative drivers"
+msgstr "´ëü µå¶óÀ̹öµé"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Virgin Islands (British)"
+msgid ""
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Venezuela"
-msgstr "º£³×¼ö¿¤¶ó"
+msgid "Initrd"
+msgstr "ÃʱâÈ­ ·¥µð½ºÅ©"
#: ../../lang.pm:1
#, c-format
-msgid "Saint Vincent and the Grenadines"
+msgid "Cape Verde"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Vatican"
-msgstr "¶óÆ®¹Ù¾Æ"
-
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Uzbekistan"
-msgstr "¿ìÁŰ½ºÅº"
+msgid "whether this cpu has the Cyrix 6x86 Coma bug"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Uruguay"
-msgstr "¿ì·ç°úÀÌ"
+msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr ""
+msgid "Guam"
+msgstr "±¡"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Uganda"
-msgstr "¿ì°£´Ù"
+msgid ""
+"Please choose the port that your printer is connected to or enter a device "
+"name/file name in the input line"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Ukraine"
-msgstr "¿ìÅ©¶óÀ̳ª"
+msgid "/Options/Test"
+msgstr "¿É¼Ç(O)/Å×½ºÆ®"
-#: ../../lang.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "Tanzania"
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive. It must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
+"ÀÌ µî±ÞÀ» »ç¿ëÇÒ·Á¸é ¸Å¿ì ÁÖÀÇÇÏ¿©¾ß ÇÕ´Ï´Ù. ½Ã½ºÅÛÀ» »ç¿ëÇϱ⿡´Â \n"
+"¿ëÀÌÇÏ°ÚÁö¸¸ ¸Å¿ì ¹Î°¨ÇÏ°Ô ÀÛµ¿ÇÕ´Ï´Ù: ÀÎÅͳÝÀ̳ª ³×Æ®¿÷¿¡ ¿¬°áµÈ ½Ã½ºÅÛ¿ë\n"
+"À¸·Î´Â »ç¿ëÇÏÁö ¸¶¼¼¿ä. ¾ÏÈ£±â´ÉÀÌ ¾ø½À´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../fs.pm:1
#, fuzzy, c-format
-msgid "Taiwan"
-msgstr "ű¹"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr ""
+msgid "Mounting partition %s"
+msgstr "%s ÆÄƼ¼Ç Æ÷¸ËÁß"
-#: ../../lang.pm:1
+#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Trinidad and Tobago"
-msgstr ""
+msgid "User name"
+msgstr "»ç¿ëÀÚ¸í"
-#: ../../lang.pm:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Turkey"
-msgstr "ÅÍÅ°"
+msgid "New configuration (isdn-light)"
+msgstr "»õ·Î¿î ¼³Á¤ (ISDN-LIGHT)"
-#: ../../lang.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Tonga"
-msgstr "Åë°¡"
+msgid "Userdrake"
+msgstr "»ç¿ëÀÚ µå·¹ÀÌÅ©"
-#: ../../lang.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Tunisia"
-msgstr "Æ¢´ÏÁö"
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "¾î´À ÆÄƼ¼ÇÀ» Linux4Win¿ëÀ¸·Î »ç¿ëÇÏ°Ú½À´Ï±î?"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Turkmenistan"
-msgstr ""
+msgid "Backup system"
+msgstr "¹é¾÷ ½Ã½ºÅÛ"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "East Timor"
-msgstr "µ¿Æ¼¸ð¸£"
+msgid "Test pages"
+msgstr "½ÃÇè ÆäÀÌÁö"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Tokelau"
+msgid ""
+"List of data to restore:\n"
+"\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "ŸÁöÅ°½ºÅº"
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Checking %s"
+msgstr "%s º¹»ç Áß"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Thailand"
-msgstr "ű¹"
+msgid "TCP/Socket Printer Options"
+msgstr "TCP/¼ÒÄÏ ÇÁ¸°ÅÍ ¿É¼Ç"
-#: ../../lang.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Togo"
-msgstr "Åë°í"
+msgid "Card mem (DMA)"
+msgstr "Ä«µå ¸Þ¸ð¸® (DMA)"
-#: ../../lang.pm:1
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "French Southern Territories"
-msgstr ""
+msgid "France"
+msgstr "ÇÁ¶û½º"
-#: ../../lang.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Chad"
-msgstr ""
+msgid "browse"
+msgstr "ã¾Æº¸±â"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Turks and Caicos Islands"
-msgstr ""
+msgid "Checking installed software..."
+msgstr "¼³Ä¡µÈ ¼ÒÇÁÆ®¿þ¾î È®ÀÎ Áß ..."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Swaziland"
-msgstr ""
+msgid "Remote printer name missing!"
+msgstr "¿ø°Ý ÇÁ¸°Å͸íÀÌ ºüÁ³½À´Ï´Ù!!"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Syria"
-msgstr "¼ö¸®³²"
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"ÀÌ ÇÁ¸°ÅÍ(%s)¸¦\n"
+"±âº» ÇÁ¸°ÅÍ·Î ÇϽðڽÀ´Ï±î?"
#: ../../lang.pm:1
#, c-format
-msgid "El Salvador"
-msgstr ""
+msgid "Turkey"
+msgstr "ÅÍÅ°"
-#: ../../lang.pm:1
+#: ../../network/adsl.pm:1
#, c-format
-msgid "Sao Tome and Principe"
-msgstr ""
+msgid "Alcatel speedtouch usb"
+msgstr "¾ËÄ«ÅÚ ½ºÇǵåÅÍÄ¡ USB"
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Suriname"
-msgstr "¼ö¸®³²"
+msgid "Number of buttons"
+msgstr "¹öÆ° ¼ö"
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Somalia"
-msgstr "¼Ò¸»¸®¾Æ"
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "º£Æ®³² (¼ýÀÚ¿­ QWERTY)"
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Senegal"
-msgstr "¼¼³×°¥"
+msgid "Module"
+msgstr "¸ðµâ"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "San Marino"
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
+"±×¸®°í ¶ÇÇÑ, ÀÌ ÇÁ·Î±×·¥À̳ª ¡¸Foomatic ¼³Á¤¡¹À¸·Î »ý¼ºµÇÁö ¾ÊÀº Å¥´Â Àü¼ÛµÉ "
+"¼ö ¾ø½À´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Hardware"
+msgstr "ÇÏµå µå·¹ÀÌÅ©"
+
+#: ../../keyboard.pm:1
#, c-format
-msgid "Sierra Leone"
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../lang.pm:1
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Slovakia"
-msgstr "½½·Î¹ÙÅ°¾Æ"
+msgid "United States"
+msgstr "¹Ì±¹"
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr ""
+msgid "Default OS?"
+msgstr "񃧯 OS?"
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Slovenia"
-msgstr "½½·Îº£´Ï¾Æ"
+msgid "Swiss (German layout)"
+msgstr "½ºÀ§½º (µ¶¾î)"
-#: ../../lang.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Saint Helena"
-msgstr ""
+msgid "Configure all heads independently"
+msgstr "¸ðµç Çìµå¸¦ µ¶¸³ÀûÀ¸·Î ¼³Á¤"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Singapore"
-msgstr "½Ì°¡Æ÷¸£"
+msgid ""
+"Please choose the printer you want to set up. The configuration of the "
+"printer will work fully automatically. If your printer was not correctly "
+"detected or if you prefer a customized printer configuration, turn on "
+"\"Manual configuration\"."
+msgstr ""
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Sudan"
-msgstr "¼ö´Ü"
+msgid "NTP Server"
+msgstr "NTP ¼­¹ö"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Seychelles"
-msgstr ""
+msgid "Load/Save on floppy"
+msgstr "Ç÷ÎÇÇ¿¡ ÀúÀå/ÀûÀç"
-#: ../../lang.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Solomon Islands"
+msgid "This theme does not yet have a bootsplash in %s !"
msgstr ""
-#: ../../lang.pm:1
+#: ../../pkgs.pm:1
#, c-format
-msgid "Saudi Arabia"
-msgstr "»ç¿ìµð¾Æ¶óºñ¾Æ"
+msgid "nice"
+msgstr "ÁÁÀº ÆÑÅ°Áö"
-#: ../../lang.pm:1
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Leaving in %d seconds"
+msgstr "%d ÃÊ"
+
+#: ../../network/modem.pm:1
#, c-format
-msgid "Rwanda"
-msgstr ""
+msgid "Please choose which serial port your modem is connected to."
+msgstr "¾î¶² ½Ã¸®¾ó Æ÷Æ®¿¡ ¸¶¿ì½º°¡ ¿¬°áµÇ¾î ÀÖ³ª¿ä?"
-#: ../../lang.pm:1
+#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Russia"
-msgstr "·¯½Ã¾Æ"
+msgid "Country"
+msgstr "±¹°¡:"
-#: ../../lang.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Romania"
-msgstr ""
+msgid "Property"
+msgstr "¼Ó¼º"
-#: ../../lang.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Reunion"
-msgstr ""
+msgid "Ghostscript"
+msgstr "°í½ºÆ®½ºÅ©¸³Æ®"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Qatar"
-msgstr ""
+msgid "LAN Configuration"
+msgstr "LAN ¼³Á¤"
#: ../../lang.pm:1
#, c-format
-msgid "Palau"
+msgid "Ghana"
+msgstr "°¡³ª"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Path or Module required"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Paraguay"
-msgstr "ÆĶó°úÀÌ"
+msgid "Advanced Options"
+msgstr "°í±Þ ¿É¼Ç"
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Portugal"
-msgstr "Æ÷¸£Åõ°¥"
+msgid "Coma bug"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../help.pm:1
#, fuzzy, c-format
-msgid "Palestine"
-msgstr "°æ·Î ¼±ÅÃ"
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandrake Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by 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"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it doesn't always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": unchecking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": 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 understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"ÀÌÁ¦ ¾î´À ÆÄƼ¼ÇÀÌ ¸Çµå·¹ÀÌÅ© ¸®´ª½ºÀÇ ¼³Ä¡¿ëÀ¸·Î »ç¿ëµÇ¾î¾ß ÇÒÁö¸¦\n"
+"¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù. ÀÌÀü¿¡ ´Ù¸¥ GNU/¸®´ª½º¸¦ ¼³Ä¡ÇÑ ÀûÀÌ Àְųª, ´Ù¸¥ ÆÄƼ¼Ç\n"
+"µµ±¸¸¦ »ç¿ëÇÏ¿© ÀÌ¹Ì ÆÄƼ¼ÇµéÀÌ Á¤ÀǵǾî ÀÖ´Ù¸é, ±âÁ¸ ÆÄƼ¼ÇÀ» ±×´ë·Î »ç¿ë\n"
+"ÇÒ ¼ö ÀÖ½À´Ï´Ù. ±×·¸Áö ¾Ê´Ù¸é Çϵåµð½ºÅ©ÀÇ ÆÄƼ¼ÇµéÀ» Áö±Ý ¸¸µé¾î¾ß ÇÕ´Ï´Ù.\n"
+"\n"
+"ÆÄƼ¼ÇÀ» ¸¸µé·Á¸é, ¸ÕÀú Çϵåµð½ºÅ©¸¦ ¼±ÅÃÇϼ¼¿ä. ÆÄƼ¼ÇÀ» ¸¸µé¿©´Â Çϵåµð½ºÅ©"
+"°¡\n"
+"ù ¹ø° IDE µð½ºÅ©¶ó¸é ¡¸hda¡¹, µÎ ¹ø° IDE µð½ºÅ©¶ó¸é ¡¸hdb¡¹¿Í °°Àº ½ÄÀÌ"
+"¸ç,\n"
+"ù ¹ø° SCSI µð½ºÅ©¶ó¸é ¡¸sda¡¹¿Í °°Àº ½ÄÀÔ´Ï´Ù.\n"
+"\n"
+"ÆÄƼ¼ÇÀ» ³ª´­ ¶§, ´ÙÀ½ ¿É¼ÇÀ» »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù:\n"
+"\n"
+" ¡Û ¡¸¸ðµÎ »èÁ¦¡¹: ¼±ÅÃµÈ µð½ºÅ©ÀÇ ¸ðµç ±âÁ¸ ÆÄƼ¼ÇÀ» »èÁ¦ÇÕ´Ï´Ù.\n"
+"\n"
+" ¡Û ¡¸ÀÚµ¿ ÇҴ硹: ¼±ÅÃµÈ µð½ºÅ©ÀÇ ºó °ø°£¿¡ ÀÚµ¿À¸·Î EXT2¿Í ½º¿Ò ÆÄƼ¼ÇÀ»\n"
+"ÇÒ´çÇÕ´Ï´Ù.\n"
+"\n"
+" ¡Û ¡¸ÆÄƼ¼Ç Å×ÀÌºí º¹±¸¡¹: ÆÄƼ¼Ç Å×À̺íÀÌ ¼Õ»óµÇ¾î ÀÖÀ» °æ¿ì, ÀÌ ¿É¼ÇÀ¸"
+"·Î\n"
+"¼Õ»êµÈ Å×À̺íÀ» º¹±¸ÇÕ´Ï´Ù. !!ÁÖÀÇ!! º¹±¸½Ãµµ°¡ ½ÇÆÐÇÒ ¼öµµ ÀÖ´Ù´Â °ÍÀ»\n"
+"¸í½ÉÇϼ¼¿ä.\n"
+"\n"
+" ¡Û ¡¸µÇµ¹¸®±â¡¹: º¯°æ »çÇ×À» Ãë¼ÒÇÕ´Ï´Ù.\n"
+"\n"
+" ¡Û ¡¸´Ù½Ã Àб⡹: ¸ðµç º¯°æ »çÇ×À» Ãë¼ÒÇÏ°í, Ãʱâ ÆÄƼ¼Ç Å×À̺íÀ» ´Ù½Ã ÀнÀ"
+"´Ï´Ù.\n"
+"\n"
+" ¡Û ¡¸¸¶¹ý»ç¡¹: ¸¶¹ý»ç¸¦ ½ÇÇàÇÏ¿© ÆÄƼ¼ÇÀ» ³ª´¯´Ï´Ù. ÆÄƼ¼Ç ³ª´©±â¿¡ ´ëÇÑ Áö"
+"½ÄÀÌ\n"
+"ºÎÁ·ÇÏ´Ù¸é, ÀÌ ¿É¼ÇÀ» »ç¿ëÇϼ¼¿ä.\n"
+"\n"
+" ¡Û ¡¸Ç÷ÎÇǷκÎÅÍ º¹±¸¡¹: ÀÌÀü¿¡ Ç÷ÎÇÇ¿¡ ÀúÀåÇصРÆÄƼ¼Ç Á¤º¸À» »ç¿ëÇÏ¿©\n"
+"ÆÄƼ¼Ç Å×À̺íÀ» º¹±¸ÇÕ´Ï´Ù.\n"
+"\n"
+" ¡Û ¡¸Ç÷ÎÇÇ¿¡ ÀúÀ塹: ÆÄƼ¼Ç Á¤º¸¸¦ Ç÷ÎÇÇ¿¡ ÀúÀåÇÕ´Ï´Ù. ´ÙÀ½¿¡ ÆÄƼ¼Ç Å×ÀÌ"
+"ºíÀ» º¹±¸ÇÒ\n"
+"ÀÏÀÌ »ý±æ ¶§ »ç¿ëµË´Ï´Ù. ÀÌ °úÁ¤À» ¼öÇàÇÒ °ÍÀ» ±ÇÀåÇÏ´Â ¹ÙÀÔ´Ï´Ù.\n"
+"\n"
+" ¡Û ¡¸¿Ï·á¡¹: ÆÄƼ¼Ç ³ª´©±â ÀÛ¾÷À» ³¡¸¶Ä¡¸é, ÀÌ ¿É¼ÇÀ¸·Î º¯°æ »çÇ×À» ÀúÀåÇÕ"
+"´Ï´Ù.\n"
+"\n"
+"Á¤º¸: Å°º¸µå·Î ¿É¼ÇÀ» ¼±ÅÃÇÒ ¼öµµ ÀÖ½À´Ï´Ù. ÆÄƼ¼Çµé°£ÀÇ À̵¿Àº [Tab]Å°¿Í\n"
+"[Up/Down]Å°¸¦ »ç¿ëÇϼ¼¿ä.\n"
+"\n"
+"ÆÄƼ¼ÇÀ» ¼±ÅÃÇÏ°í ³­ ÈÄ¿¡´Â ´ÙÀ½ Å°¸¦ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù:\n"
+"\n"
+" ¡Û ¡¸Ctrl + c¡¹: (ºó ÆÄƼ¼ÇÀÌ ¼±ÅÃµÈ °æ¿ì,) »õ ÆÄƼ¼Ç ¸¸µé±â.\n"
+"\n"
+" ¡Û ¡¸Ctrl + d¡¹: ÆÄƼ¼Ç »èÁ¦Çϱâ.\n"
+"\n"
+" ¡Û ¡¸Ctrl + m¡¹: ¸¶¿îÆ® À§Ä¡ ÁöÁ¤Çϱâ.\n"
+"\n"
+"¸¸¾à PPC ÄÄÇ»ÅÍ¿¡¼­ ¼³Ä¡ÇÏ°í ÀÖ´Â ÁßÀ̶ó¸é, YABOOT ºÎÆ®·Î´õ°¡ »ç¿ëÇÒ ÃÖ¼Ò "
+"1MB\n"
+"ÀÇ HFS ¡¸ºÎÆ®½ºÆ®·¦¡¹ÆÄƼ¼ÇÀ» ¸¸µé ÇÊ¿ä°¡ ÀÖ½À´Ï´Ù. ¸¸¾à ±× ÆÄƼ¼ÇÀ» º¸´Ù Å©"
+"°Ô\n"
+"(°¡·É, 50MB) ¸¸µé¸é, ÀÀ±Þ »óȲ½Ã¿¡ »ç¿ëÇÒ ¿©ºÐÀÇ Ä¿³Î°ú ·¥µð½ºÅ© À̹ÌÁö¸¦\n"
+"ÀúÀåÇÒ ¼ö ÀÖ´Â À¯¿ëÇÑ Àå¼Ò°¡ µÉ °ÍÀÔ´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Puerto Rico"
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs."
msgstr ""
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Pitcairn"
-msgstr ""
+msgid "There was an error installing packages:"
+msgstr "´ÙÀ½ ÆÑÅ°Áö¸¦ ¼³Ä¡Áß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù: "
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr ""
+msgid "Lexmark inkjet configuration"
+msgstr "·º½º¸¶Å© À×Å©Á¬ ¼³Á¤"
-#: ../../lang.pm:1
+#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Poland"
-msgstr "Æú¶õµå"
+msgid "Undo"
+msgstr "µÇµ¹¸®±â"
-#: ../../lang.pm:1
+#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Pakistan"
-msgstr "ÆÄÅ°½ºÅº"
+msgid "Save partition table"
+msgstr "ÆÄƼ¼Ç Å×À̺í ÀúÀå"
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Philippines"
-msgstr "Çʸ®ÇÉ"
+msgid "Finnish"
+msgstr "Çɶõµå"
#: ../../lang.pm:1
#, c-format
-msgid "Papua New Guinea"
-msgstr "ÆÄǪ¾Æ´º±â´Ï"
+msgid "Macedonia"
+msgstr "¸¶Äɵµ´Ï¾Æ"
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "French Polynesia"
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user to this group."
msgstr ""
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Peru"
-msgstr "Æä·ç"
+msgid "Slovenian"
+msgstr "½½·Îº£´Ï¾Æ"
#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Æijª¸¶"
+#, fuzzy, c-format
+msgid "Libya"
+msgstr "¶óÀ̺£¸®¾Æ"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Oman"
-msgstr "¿À¸¸"
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "½ºÅ©¸³Æ® ¼³Á¤ Áß, ¼ÒÇÁÆ®¿þ¾î ¼³Ä¡ Áß, ¼­¹ö ½ÃÀÛ Áß..."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "New Zealand"
-msgstr "´ºÁú·£µå"
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Niue"
-msgstr ""
+msgid "Table"
+msgstr "Å×À̺í"
-#: ../../lang.pm:1
+#: ../../fs.pm:1
#, c-format
-msgid "Nauru"
-msgstr "³ª¿ì·ç"
+msgid "I don't know how to format %s in type %s"
+msgstr "%s´Â %s À¯ÇüÀ̹ǷΠÆ÷¸ËÇÒ¼ö ¾ø½À´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Nepal"
-msgstr "³×ÆÈ"
+msgid "Model"
+msgstr "¸ðµ¨"
-#: ../../lang.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Nicaragua"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Nigeria"
-msgstr "³ªÀÌÁö¸®¾Æ"
+msgid "Stop Server"
+msgstr "¼­¹ö ÁßÁö"
-#: ../../lang.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Norfolk Island"
+msgid ""
+"\n"
+"Select the theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separately"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Modem"
+msgstr "¸ðµ¨"
-#: ../../lang.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "New Caledonia"
+msgid ""
+"Arguments: (arg, listen_tcp=None)\n"
+"\n"
+"Allow/Forbid X connections. First arg specifies what is done\n"
+"on the client side: ALL (all connections are allowed), LOCAL (only\n"
+"local connection) and NONE (no connection)."
msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "Namibia"
-msgstr "³ª¹Ìºñ¾Æ"
+msgid "Tuvalu"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../help.pm:1 ../../network/netconnect.pm:1
#, c-format
-msgid "Mozambique"
-msgstr "¸ðÀáºñÅ©"
+msgid "Use auto detection"
+msgstr "ÀÚµ¿°Ë»ö »ç¿ë"
-#: ../../lang.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Malaysia"
-msgstr "¸»·¹À̽þÆ"
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPMÀº ÅؽºÆ® ±â¹Ý ÇÁ·Î±×·¥µé¿¡°Ô ¸¶¿ì½º ±â´ÉÀ» Áö¿øÇÕ´Ï´Ù.\n"
+"¶ÇÇÑ ÄÜ¼Ö È­¸é¿¡¼­ Àß¶ó¼­ ºÙÀ̱â¿Í Æ˾÷ ¸Þ´º ±â´ÉÀ» \n"
+"Áö¿øÇÕ´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Mexico"
-msgstr "¸ß½ÃÄÚ"
+msgid "Started on boot"
+msgstr "ºÎÆýà ½ÃÀÛµÊ"
-#: ../../lang.pm:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
-msgid "Malawi"
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/draksec:1
#, c-format
-msgid "Maldives"
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Mauritius"
+msgid "Automatically find available printers on remote machines"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Malta"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "Montserrat"
-msgstr ""
+msgid "East Timor"
+msgstr "µ¿Æ¼¸ð¸£"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Mauritania"
-msgstr ""
+msgid "Del profile..."
+msgstr "ÇÁ·ÎÆÄÀÏ Áö¿ì±â"
-#: ../../lang.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Martinique"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid the list of users on the system on display managers (kdm and "
+"gdm)."
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Northern Mariana Islands"
-msgstr ""
+msgid "Installing Foomatic..."
+msgstr "Foomatic ¼³Ä¡ Áß..."
-#: ../../lang.pm:1
+#: ../../standalone/XFdrake:1
#, c-format
-msgid "Mongolia"
-msgstr "¸ù°ñ¶ó"
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "·Î±×¾Æ¿ôÇÏ°í Crtl-Alt-BackSpaceÅ°¸¦ ´©¸£¼¼¿ä."
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "detected"
+msgstr "%s ¹ß°ß"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "¸»¸®"
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "The network needs to be restarted. Do you want to restart it ?"
+msgstr "ÆÑÅ°Áö %s°¡ ÇÊ¿äÇÕ´Ï´Ù. ¼³Ä¡ÇÏ°Ú½À´Ï±î?"
-#: ../../lang.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Macedonia"
-msgstr "¸¶Äɵµ´Ï¾Æ"
+msgid "Package: "
+msgstr "ÆÑÅ°Áö:"
-#: ../../lang.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Marshall Islands"
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Madagascar"
-msgstr "¸¶´Ù°¡½ºÄ«¸£"
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Moldova"
-msgstr "¸ôµµ¹Ù"
+msgid "StarOffice"
+msgstr "½ºÅ¸ ¿ÀÇǽº"
-#: ../../lang.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Monaco"
-msgstr "¸ð³ªÄÚ"
+msgid "No, I don't want autologin"
+msgstr "¾Æ´Ï¿À, ÀÚµ¿·Î±×ÀÎÀ» »ç¿ëÇÏÁö ¾Ê½À´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Morocco"
-msgstr "¸ð·ÎÄÚ"
+msgid "Windows Migration tool"
+msgstr "À©µµ¿ìÁî ÀÌÁÖ µµ±¸"
-#: ../../lang.pm:1
+#: ../../any.pm:1 ../../help.pm:1
#, fuzzy, c-format
-msgid "Libya"
-msgstr "¶óÀ̺£¸®¾Æ"
+msgid "All languages"
+msgstr "¾ð¾î ¼±ÅÃ"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Latvia"
-msgstr "¶óÆ®ºñ¾Æ"
+msgid "Removing %s"
+msgstr "%s Á¦°Å Áß"
-#: ../../lang.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Luxembourg"
-msgstr ""
+msgid "Testing your connection..."
+msgstr "¿¬°á Å×½ºÆ® Áß..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "¸®Åõ¾Æ´Ï¾Æ"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cache size"
+msgstr "Å©±â"
-#: ../../lang.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "Lesotho"
+msgid ""
+"Passwords are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"¾ÏÈ£±â´ÉÀÌ Àû¿ëµÇÁö¸¸, ³×Æ®¿÷¿¡ ¿¬°áµÈ ÄÄÇ»ÅÍ·Î »ç¿ëÇϱ⿡´Â ¾ÆÁ÷ ÀûÀýÇÏÁö ¾Ê"
+"½À´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Liberia"
-msgstr "¶óÀ̺£¸®¾Æ"
+msgid "Start sector: "
+msgstr "½ÃÀÛ ¼½ÅÍ: "
#: ../../lang.pm:1
#, c-format
-msgid "Sri Lanka"
+msgid "Congo (Brazzaville)"
msgstr ""
-#: ../../lang.pm:1
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
-msgid "Liechtenstein"
-msgstr ""
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "ÆÑÅ°Áö %s°¡ ÇÊ¿äÇÕ´Ï´Ù. ¼³Ä¡ÇÏ°Ú½À´Ï±î?"
#: ../../lang.pm:1
#, c-format
-msgid "Saint Lucia"
+msgid "Seychelles"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "·¹¹Ù³í"
-
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Laos"
+msgid ""
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
+"\n"
+"For your printer Printerdrake has found:\n"
+"\n"
+"%s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Ä«ÀÚÈ彺ź"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "¾ÏÈ£ ¾øÀ½"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Cayman Islands"
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "Kuwait"
-msgstr "Äí¿þÀÌÆ®"
+msgid "Zambia"
+msgstr "Àáºñ¾Æ"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Korea"
-msgstr "Ãß°¡ ¿É¼Ç"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security Administrator (login or email)"
+msgstr "º¸¾È °ü¸®ÀÚ (·Î±×ÀÎ ¶Ç´Â À̸ÞÀÏ)"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Korea (North)"
-msgstr ""
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Á˼ÛÇÕ´Ï´Ù. 2.4 Ä¿³Î¸¸ Áö¿øµË´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr ""
+msgid "Romanian (qwerty)"
+msgstr "·Î¸¸ (QWERTY)"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Comoros"
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../lang.pm:1
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "Kiribati"
-msgstr ""
+msgid "Czech Republic"
+msgstr "üÄÚ °øÈ­±¹"
#: ../../lang.pm:1
#, c-format
-msgid "Cambodia"
-msgstr "įº¸µð¾Æ"
+msgid "Egypt"
+msgstr "ÀÌÁýÆ®"
-#: ../../lang.pm:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Kyrgyzstan"
-msgstr ""
+msgid "Old configuration (isdn4net)"
+msgstr "±âÁ¸ÀÇ ¼³Á¤ (ISDN4NET)"
-#: ../../lang.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Kenya"
-msgstr "ÄɳÄ"
+msgid "Sound card"
+msgstr "»ç¿îµå Ä«µå"
-#: ../../lang.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Japan"
-msgstr "ÀϺ»"
+msgid "Import Fonts"
+msgstr "ÆùÆ® ¼öÀÔ"
-#: ../../lang.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
-msgid "Jordan"
-msgstr "¿ä¸£´Ü"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "ÀÚ¸ÞÀÌÄ«"
+msgid ""
+"You have one big MicroSoft Windows partition.\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
+msgstr ""
+"ÇϳªÀÇ Å« µµ½º ÆÄƼ¼ÇÀ» °¡Áö°í ÀÖ½À´Ï´Ù.\n"
+"(ÀϹÝÀûÀ¸·Î ¸¶ÀÌÅ©·Î¼ÒÇÁÆ®ÀÇ µµ½º/À©µµ¿ìÁî¿¡¼­ »ç¿ë).\n"
+"¸ÕÀú ±× ÆÄƼ¼ÇÀÇ Å©±â¸¦ Á¶Á¤ÇÒ °ÍÀ» ±ÇÀåÇÕ´Ï´Ù.\n"
+"(±×°ÍÀ» Ŭ¸¯ÇÑÈÄ, \"Å©±âÁ¶Á¤\"À» Ŭ¸¯Çϼ¼¿ä.)"
-#: ../../lang.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Iceland"
-msgstr "¾ÆÀ̽º·£µå"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Iran"
-msgstr "À̶óÅ©"
+msgid "Suppress Temporary Files"
+msgstr "Àӽà ÆÄÀÏ ÀºÆó"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Iraq"
-msgstr "À̶óÅ©"
+msgid "Change partition type"
+msgstr "ÆÄƼ¼Ç À¯Çü º¯°æ"
-#: ../../lang.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "British Indian Ocean Territory"
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"hardware. Choose the one that best suits your needs (you will be able to\n"
+"change that after installation though). A sample of the chosen\n"
+"configuration is shown in the monitor."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Àεµ"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Network Options"
+msgstr "Ãß°¡ ¿É¼Ç"
-#: ../../lang.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Israel"
-msgstr "À̽º¶ó¿¤"
+msgid ""
+"Display theme\n"
+"under console"
+msgstr ""
+"ÄܼÖÇÏ¿¡¼­\n"
+"Å׸¶ º¸À̱â"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "Ireland"
-msgstr "¾ÆÀÏ·£µå"
+msgid "Statistics"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/cups.pm:1
#, c-format
-msgid "Indonesia"
-msgstr "Àεµ³×½Ã¾Æ"
+msgid "(on %s)"
+msgstr "(%s¿¡)"
-#: ../../lang.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Hungary"
-msgstr "Çë°¡¸®"
+msgid "MM Series"
+msgstr "MM ½Ã¸®Áî"
-#: ../../lang.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "Haiti"
-msgstr "ÇÏÀÌƼ"
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr "¹öÆÛ ³ÑħÀ̳ª Çü½ÄÈ­ ¹®ÀÚ¿­ °ø°ÝÀ» ¸·´Â ¶óÀ̺귯¸®."
-#: ../../lang.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "Croatia"
-msgstr "Å©·Î¾ÆƼ¾Æ"
+msgid "average"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Honduras"
-msgstr "È¥µÎ¶ó½º"
+msgid "New printer name"
+msgstr "»õ ÇÁ¸°ÅÍ À̸§"
#: ../../lang.pm:1
#, c-format
-msgid "Heard and McDonald Islands"
+msgid "Equatorial Guinea"
msgstr ""
-#: ../../lang.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Hong Kong"
-msgstr "È«Äá"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid autologin."
+msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "China"
-msgstr "Áß±¹"
+msgid "Build Backup"
+msgstr "¹é¾÷ ºôµå"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Guyana"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
+"¸í·ÉÇà(Å͹̳ΠÀ©µµ¿ì)¿¡¼­ ÆÄÀÏÀ» ÀμâÇÏ·Á¸é, ¡¸%s <ÆÄÀÏ>¡¹ ¶Ç´Â ¡¸%s <ÆÄÀÏ>¡¹"
+"¸í·ÉÀ» »ç¿ëÇϼ¼¿ä.\n"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Guinea-Bissau"
+msgid "Currently, no alternative possibility is available"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "±¡"
-
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Guatemala"
-msgstr ""
+msgid "Romanian (qwertz)"
+msgstr "·Î¸¸ (QWERTZ)"
-#: ../../lang.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
+msgid "Write Config"
+msgstr "¼³Á¤ ±â·Ï"
-#: ../../lang.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Equatorial Guinea"
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
msgstr ""
+"Routed µ¥¸óÀº RIP ÇÁ·ÎÅäÄÝÀ» ÅëÇØ ÀÚµ¿À¸·Î IP ¶ó¿ìÅÍ Å×À̺íÀÌ °»½ÅµÇµµ·Ï ÇÕ´Ï"
+"´Ù.\n"
+"RIP´Â ¼Ò±Ô¸ð ³×Æ®¿÷À» À§ÇÑ °ÍÀ̱⠶§¹®¿¡, ´ë±Ô¸ð ³×Æ®¿÷À» À§Çؼ­´Â º¸´Ù º¹Àâ"
+"ÇÑ\n"
+"¶ó¿ìÆà ÇÁ·ÎÅäÄÝÀÌ ÇÊ¿äÇÕ´Ï´Ù."
#: ../../lang.pm:1
#, c-format
-msgid "Guadeloupe"
+msgid "Kiribati"
msgstr ""
-#: ../../lang.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Guinea"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid remote root login."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Àáºñ¾Æ"
-
-#: ../../lang.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Greenland"
-msgstr "±×¸°·£µå"
+msgid "Browse"
+msgstr "ã¾Æº¸±â"
-#: ../../lang.pm:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Gibraltar"
+msgid "CDROM"
msgstr ""
-#: ../../lang.pm:1
+#: ../../network/tools.pm:1
#, c-format
-msgid "Ghana"
-msgstr "°¡³ª"
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Áö±Ý ÀÎÅÍ³Ý ¿¬°áÀ» ½ÃµµÇØ º¸½Ã°Ú½À´Ï±î?"
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "French Guiana"
-msgstr ""
+msgid "Belgian"
+msgstr "º§±â¿¡"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Georgia"
-msgstr "Á¶Áö¾Æ"
+msgid "Do you have an ISA sound card?"
+msgstr "ISA »ç¿îµå Ä«µå°¡ ÀÖ½À´Ï±î?"
-#: ../../lang.pm:1
+#: ../../network/ethernet.pm:1
#, c-format
-msgid "Grenada"
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"¾î¶°ÇÑ ³×Æ®¿÷ ¾î´ðÅ͵µ °¨ÁöµÇÁö ¾Ê¾Ò½À´Ï´Ù.\n"
+"¿¬°á ¼³Á¤À» ÇÒ ¼ö ¾ø½À´Ï´Ù."
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "¿µ±¹"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Windows"
+msgstr "À©µµ¿ìÁî µµ¸ÞÀÎ"
-#: ../../lang.pm:1
+#: ../../common.pm:1
#, c-format
-msgid "Gabon"
-msgstr "°¡ºÀ"
+msgid "Can't make screenshots before partitioning"
+msgstr "ÆÄƼ¼ÇÀ» ³ª´©±â Àü¿¡´Â ½ºÅ©¸°¼¦À» ¸¸µé ¼ö ¾ø½À´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Faroe Islands"
-msgstr ""
+msgid "Host Name"
+msgstr "È£½ºÆ®¸í"
-#: ../../lang.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Micronesia"
-msgstr "¹ÌÅ©·Î³×½Ã¾Æ"
+msgid "/File/Save _As"
+msgstr "/ÆÄÀÏ(F)/´Ù¸¥ À̸§À¸·Î ÀúÀå(_A)"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Falkland Islands (Malvinas)"
+msgid ""
+"To get access to printers on remote CUPS servers in your local network you "
+"only need to turn on the \"Automatically find available printers on remote "
+"machines\" option; the CUPS servers inform your machine automatically about "
+"their printers. All printers currently known to your machine are listed in "
+"the \"Remote printers\" section in the main window of Printerdrake. If your "
+"CUPS server(s) is/are not in your local network, you have to enter the IP "
+"address(es) and optionally the port number(s) here to get the printer "
+"information from the server(s)."
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Fiji"
-msgstr "ÇÇÁö"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Finland"
-msgstr "Çɶõµå"
+msgid "Delay before booting default image"
+msgstr "±âº» À̹ÌÁö·Î ºÎÆÃµÉ ¶§±îÁö Áö¿¬½Ã°£"
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Ethiopia"
-msgstr "¿¡Æ¼¿ÀÇǾÆ"
+msgid "Restrict command line options"
+msgstr "¸í·ÉÇà ¿É¼ÇÀ» Á¦ÇÑÇÕ´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Spain"
-msgstr "½ºÆäÀÎ"
+msgid "East Europe"
+msgstr "µ¿À¯·´"
-#: ../../lang.pm:1
+#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
-msgid "Eritrea"
-msgstr ""
+msgid "Use free space"
+msgstr "ºó °ø°£ »ç¿ë"
-#: ../../lang.pm:1
+#: ../../network/adsl.pm:1
#, c-format
-msgid "Western Sahara"
-msgstr ""
+msgid "use dhcp"
+msgstr "DHCP »ç¿ë"
-#: ../../lang.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Egypt"
-msgstr "ÀÌÁýÆ®"
+msgid "Mail alert"
+msgstr "¸ÞÀÏ °æ°í"
-#: ../../lang.pm:1
+#: ../../network/tools.pm:1
#, c-format
-msgid "Estonia"
-msgstr "¿¡½ºÅä´Ï¾Æ"
+msgid "Internet configuration"
+msgstr "ÀÎÅÍ³Ý ¼³Á¤"
#: ../../lang.pm:1
#, c-format
-msgid "Ecuador"
-msgstr "¿¡Äâµµ¸£"
+msgid "Uzbekistan"
+msgstr "¿ìÁŰ½ºÅº"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Algeria"
-msgstr "¾ËÁ¦¸®"
+msgid "Detected %s"
+msgstr "%s ¹ß°ß"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "µµ¹Ì´ÏÄ« °øÈ­±¹"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _printers"
+msgstr "ÀÚµ¿ °Ë»öµÊ"
-#: ../../lang.pm:1
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive/newt.pm:1
#, c-format
-msgid "Dominica"
-msgstr "µµ¹Ì´ÏÄ«"
+msgid "Finish"
+msgstr "Á¾·á"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Denmark"
-msgstr "µ§¸¶Å©"
+msgid "Show automatically selected packages"
+msgstr "ÀÚµ¿À¸·Î ¼±ÅÃµÈ ÆÑÅ°Áöµé º¸À̱â"
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Djibouti"
+msgid "CPU flags reported by the kernel"
msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "Cyprus"
-msgstr ""
+msgid "Togo"
+msgstr "Åë°í"
-#: ../../lang.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Christmas Island"
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../lang.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Cape Verde"
-msgstr ""
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../lang.pm:1
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Cuba"
-msgstr "Äí¹Ù"
+msgid "Please try again"
+msgstr "´Ù½Ã ½ÃµµÇϼ¼¿ä."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Colombia"
-msgstr "ÄÝ·Òºñ¾Æ"
+msgid "The model is correct"
+msgstr "¸ðµ¨ÀÌ Á¤È®ÇÕ´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Cameroon"
-msgstr "Ä«¸Þ·é"
+msgid "FAT resizing failed: %s"
+msgstr "FATÅ©±âÁ¶Á¤ ½ÇÆÐ: %s"
-#: ../../lang.pm:1
+#: ../../help.pm:1 ../../install_steps_gtk.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Chile"
-msgstr ""
+msgid "Individual package selection"
+msgstr "°³º° ÆÑÅ°Áö ¼±ÅÃ"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Cook Islands"
-msgstr ""
+msgid "This partition is not resizeable"
+msgstr "ÀÌ ÆÄƼ¼ÇÀº Å©±âº¯°æÀÌ Çã¿ëµÇÁö ¾Ê½À´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Cote d'Ivoire"
-msgstr ""
+msgid "Location"
+msgstr "À§Ä¡"
-#: ../../lang.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Switzerland"
-msgstr "½ºÀ§½º"
+msgid "USA (cable-hrc)"
+msgstr "¹Ì±¹ (ÄÉÀ̺í-HRC)"
-#: ../../lang.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "Congo (Brazzaville)"
-msgstr ""
+msgid "Journalised FS"
+msgstr "Àú³ÎÈ­ FS"
#: ../../lang.pm:1
#, c-format
-msgid "Central African Republic"
+msgid "Guatemala"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "This machine"
+msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Congo (Kinshasa)"
-msgstr ""
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS µå¶óÀÌºê ¹®ÀÚ: %s (´ÜÁö ÃßÃøÀÏ »ÓÀÓ)\n"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Select the files or directories and click on 'OK'"
+msgstr "ÆùÆ® ÆÄÀÏÀ̳ª µð·ºÅ丮¸¦ ¼±Åà ÈÄ, 'Ãß°¡'¸¦ ´©¸£¼¼¿ä."
#: ../../lang.pm:1
#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr ""
+msgid "Bahrain"
+msgstr "¹Ù·¹ÀÎ"
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Canada"
-msgstr "ij³ª´Ù"
+msgid "omit scsi modules"
+msgstr "SCSI ¸ðµâ »ý·«"
-#: ../../lang.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Belize"
+msgid "family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../lang.pm:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Belarus"
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
+"Áö±Ý ³×Æ®¿÷À» »ç¿ëÇÏ¿© ¼³Ä¡ÇÏ°í ÀÖ´Â ÁßÀ̹ǷÎ, ³×Æ®¿÷ ¼³Á¤Àº ÀÌ¹Ì µÇ¾î ÀÖ½À´Ï"
+"´Ù.\n"
+"¡¸È®ÀΡ¹À» ´­·¯ ÇöÀç ¼³Á¤À» À¯ÁöÇϰųª, ¡¸Ãë¼Ò¡¹¸¦ ´­·¯ ÀÎÅͳÝ/³×Æ®¿÷ ¿¬°áÀ» "
+"´Ù½Ã ¼³Á¤Çϼ¼¿ä.\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Botswana"
-msgstr ""
+msgid "Keyboard layout: %s\n"
+msgstr "Å°º¸µå ÇüÅÂ: %s\n"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Bouvet Island"
+msgid ""
+"Here you can choose whether the printers connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../lang.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Bhutan"
-msgstr "ºÎź"
+msgid "Maltese (US)"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Bahamas"
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
+"³×Æ®¿÷ ÆÄÀÏ ½Ã½ºÅÛ(NFS), »ï¹Ù(SMB/·£ °ü¸®ÀÚ/À©µµ¿ìÁî), ±×¸®°í\n"
+"NCP(³Ý¿þ¾î)¸¦ ¸¶¿îÆ®ÇÏ°í ¾ð¸¶¿îÆ®ÇÕ´Ï´Ù."
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "ºê¶óÁú"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Tvcard"
+msgstr "TV Ä«µå"
-#: ../../lang.pm:1
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "ÀÏ¹Ý ¸ðµå·Î Àüȯ"
+
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Bolivia"
-msgstr "º¼¸®ºñ¾Æ"
+msgid "Size"
+msgstr "Å©±â"
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "GRUB"
+msgstr "GB"
#: ../../lang.pm:1
#, c-format
-msgid "Brunei Darussalam"
-msgstr ""
+msgid "Greenland"
+msgstr "±×¸°·£µå"
-#: ../../lang.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Bermuda"
-msgstr "¹ö¹Â´Ù"
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "·ÎÁöÅØ ¸¶¿ì½º¸Ç+/ÆÛ½ºÆ®¸¶¿ì½º+"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Benin"
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Burundi"
+msgid ""
+"The setup of Internet Connection Sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
+"ÀÎÅÍ³Ý ¿¬°á°øÀ¯ ¼³Á¤Àº ÀÌ¹Ì ¿Ï·áµÇ¾ú½À´Ï´Ù.\n"
+"ÇöÀç °¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù.\n"
+"\n"
+"¹«½¼ ÀÛ¾÷À» ÇϽðڽÀ´Ï±î?"
-#: ../../lang.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Bahrain"
-msgstr "¹Ù·¹ÀÎ"
+msgid "Delete All NBIs"
+msgstr "¸ðµç NBI »èÁ¦"
-#: ../../lang.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Bulgaria"
-msgstr "ºÒ°¡¸®¾Æ"
+msgid ""
+"This dialog allows you to fine tune your bootloader:\n"
+"\n"
+" * \"%s\": there are three choices for your bootloader:\n"
+"\n"
+" * \"%s\": if you prefer grub (text menu).\n"
+"\n"
+" * \"%s\": if you prefer LILO with its text menu interface.\n"
+"\n"
+" * \"%s\": if you prefer LILO with its graphical interface.\n"
+"\n"
+" * \"%s\": in most cases, you will not change the default (\"%s\"), but if\n"
+"you prefer, the bootloader can be installed on the second hard drive\n"
+"(\"%s\"), or even on a floppy disk (\"%s\");\n"
+"\n"
+" * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
+"given to the user at the console to select a boot entry other than the\n"
+"default.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
+"system! Be sure you know what you are doing before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
+"are normally reserved for the expert user."
+msgstr ""
-#: ../../lang.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Burkina Faso"
+msgid ""
+"if set, send the mail report to this email address else send it to root."
msgstr ""
-#: ../../lang.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Bangladesh"
-msgstr "¹æ±Û¶óµ¥½Ã"
+msgid "Which configuration of XFree do you want to have?"
+msgstr "¾î´À XFree ¼³Á¤À» ¼±ÅÃÇϽðڽÀ´Ï±î?"
-#: ../../lang.pm:1
+#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Barbados"
-msgstr ""
+msgid "More"
+msgstr "Ãß°¡ ¿É¼Ç"
-#: ../../lang.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "Bosnia and Herzegovina"
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
+"ÀÌ º¸¾Èµî±ÞÀ¸·Î ÀÌ ½Ã½ºÅÛÀ» ¼­¹ö·Î ¿î¿ëÇÒ ¼ö ÀÖ°Ô µË´Ï´Ù.\n"
+"ÀÌ º¸¾Èµî±ÞÀº ¿ÜºÎÀÇ Å¬¶óÀ̾ðÆ®µéÀÇ Á¢¼ÓÀ» ¹Þ¾ÆµéÀ̴µ¥ À־ \n"
+"ÃæºÐÈ÷ ³ôÀº º¸¾Èµî±ÞÀÔ´Ï´Ù. ÁÖÀÇ: ÀÎÅÍ³Ý Å¬¶óÀ̾ðÆ®·Î ÄÄÇ»Å͸¦ »ç¿ëÇÑ´Ù¸é, "
+"´õ ³·Àº µî±ÞÀ» ¼±ÅÃÇϼ¼¿ä."
-#: ../../lang.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Azerbaijan"
-msgstr ""
+msgid "Account Password"
+msgstr "°èÁ¤ ¾ÏÈ£"
-#: ../../lang.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Aruba"
+msgid ""
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Australia"
-msgstr "¿À½ºÆ®·¹Àϸ®¾Æ"
+msgid "Tajik keyboard"
+msgstr "ŸÁöÅ© Å°º¸µå"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "American Samoa"
-msgstr "¹Ì±¹·É »ç¸ð¾Æ"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
+"½ºÇ®·¯ %s¸¦ À§ÇØ »ç¿ëÇÑ ÇÁ¸°ÅÍ ¼³Á¤À» ÇöÀç ½ºÇ®·¯ÀÎ %s·Î º¹»çÇÒ ¼ö ÀÖ½À´Ï´Ù. "
+"¸ðµç ¼³Á¤ µ¥ÀÌÅÍ(ÇÁ¸°Å͸í, ¼³¸í, À§Ä¡, ¿¬°á À¯Çü, ±×¸®°í ±âº» ¿É¼Ç°ªµé)°¡ ³Ñ"
+"°ÜÁú °ÍÀÔ´Ï´Ù. ±×·¯³ª ÀÛ¾÷µéÀº Àü¼ÛµÇÁö ¾Ê½À´Ï´Ù.\n"
+"´ÙÀ½°ú °°Àº ÀÌÀ¯·ÎÀÎÇÏ¿© ¸ðµç Å¥°¡ Àü¼ÛµÉ ¼ö´Â ¾ø½À´Ï´Ù:\n"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Argentina"
-msgstr "¾Æ¸£ÇîƼ³ª"
+msgid "Font List"
+msgstr "ÆùÆ® ¸ñ·Ï"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Antarctica"
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
msgstr ""
+"ºÎÆ®·Î´õ°¡ Á¦´ë·Î ÀÛµ¿Çϱâ À§Çؼ­´Â °ø°³ Æß¿þ¾î ºÎÆ® ÀåÄ¡¸¦ º¯°æÇÒ Çʿ伺ÀÌ\n"
+"ÀÖÀ» ¼öµµ ÀÖ½À´Ï´Ù. ¸¸¾à ÀçºÎÆÃÈÄ¿¡ ºÎÆ®·Î´õ ÇÁ·ÒÇÁÆ®°¡ ³ªÅ¸³ªÁö ¾Ê´Â´Ù¸é,\n"
+"ÀçºÎÆýÿ¡ ¸í·É-¿É¼Ç-O-F¸¦ °è¼Ó ´©¸£°í ÀÖ´Ù°¡ ´ÙÀ½°ú °°ÀÌ ÀÔ·ÂÇϼ¼¿ä:\n"
+"setenv boot-device %s,\\\\:tbxi\n"
+"shut-down\n"
+"±×·¯°í³ª¸é ´ÙÀ½ºÎÅÍ´Â ºÎÆ®·Î´õ ÇÁ·ÒÇÁÆ®¸¦ º¼ ¼ö ÀÖÀ» °ÍÀÔ´Ï´Ù."
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "¾Ó°ñ¶ó"
-
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Netherlands Antilles"
+msgid ""
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
msgstr ""
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Armenia"
-msgstr "¾Æ¸£¸Þ´Ï¾Æ"
+msgid "Select file"
+msgstr "ÆÄÀÏÀ» ¼±ÅÃÇϼ¼¿ä."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Albania"
-msgstr "¾Ë¹Ù´Ï¾Æ"
+msgid ""
+"Choose the network or host on which the local printers should be made "
+"available:"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Anguilla"
+msgid ""
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "Antigua and Barbuda"
-msgstr ""
+msgid "Japan"
+msgstr "ÀϺ»"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "United Arab Emirates"
-msgstr ""
+msgid "Print option list"
+msgstr "ÇÁ¸°ÅÍ ¿É¼Ç ¸ñ·Ï"
-#: ../../lang.pm:1
+#: ../../standalone/localedrake:1
#, c-format
-msgid "Andorra"
-msgstr "¾Èµµ¶ó"
+msgid "The change is done, but to be effective you must logout"
+msgstr "º¯°æÀÌ ¿Ï·á µÇ¾úÁö¸¸, Àû¿ëµÇ±â À§Çؼ­´Â Àç·Î±×ÀÎÇØ¾ß ÇÕ´Ï´Ù."
-#: ../../lang.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "Afghanistan"
-msgstr "¾ÆÇÁ°¡´Ï½ºÅº"
+msgid "Search servers"
+msgstr "¼­¹ö °Ë»ö"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+msgid "NCP queue name missing!"
+msgstr "NCP Å¥ À̸§À» ãÀ» ¼ö ¾øÀ½!"
-#: ../../loopback.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "Circular mounts %s\n"
-msgstr "¼øȯ ¸¶¿îÆ® %s\n"
+msgid ""
+"Warning, another internet connection has been detected, maybe using your "
+"network"
+msgstr ""
-#: ../../lvm.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "³í¸® º¼·ýÀ» ¸ÕÀú Á¦°ÅÇØ ÁÖ¼¼¿ä.\n"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "¡¸%s¡¹¶ó°í Ç¥½ÃµÈ CDROM"
-#: ../../modules.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
+"°íÇ°ÁúÀÇ ³­¼ö »ý¼ºÀ» À§ÇØ ½Ã½ºÅÛ ¿£Æ®·ÎÇÇ Ç®À» ÀúÀåÇÏ°í \n"
+"º¹±¸ÇÕ´Ï´Ù."
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "¸¶¿ì½ºÈÙÀ» ¿òÁ÷¿© º¸¼¼¿ä."
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "To activate the mouse,"
-msgstr "¸¶¿ì½º¸¦ È°¼ºÈ­ÇÏ·Á¸é"
+msgid "Turn your computer into a reliable server"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../network/network.pm:1
#, c-format
-msgid "Please test the mouse"
-msgstr "¸¶¿ì½º¸¦ Å×½ºÆ®Çϼ¼¿ä."
+msgid " (driver %s)"
+msgstr " (%s µå¶óÀ̹ö)"
-#: ../../mouse.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "No mouse"
-msgstr "¸¶¿ì½º ¾øÀ½"
+msgid ""
+"Loopback file(s):\n"
+" %s\n"
+msgstr ""
+"·çÇÁ¹é ÆÄÀÏ(µé):\n"
+" %s\n"
-#: ../../mouse.pm:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "none"
-msgstr "¾øÀ½"
+msgid "I don't know"
+msgstr "¸ð¸£°ÚÀ½"
-#: ../../mouse.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "3 buttons"
-msgstr "3 ¹öÆ°"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "2 buttons"
-msgstr "2 ¹öÆ°"
+msgid ""
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
+"\n"
+"With that feature, you will be able to replay the installation you've "
+"performed on this computer, being interactively prompted for some steps, in "
+"order to change their values.\n"
+"\n"
+"For maximum safety, the partitioning and formatting will never be performed "
+"automatically, whatever you chose during the install of this computer.\n"
+"\n"
+"Do you want to continue?"
+msgstr ""
+"ÀÌÁ¦ ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇǸ¦ ¸¸µé °ÍÀÔ´Ï´Ù. ÀÌ°ÍÀº ´Ù¼Ò À§ÇèÇÑ ÀÛ¾÷ÀÌ µÉ ¼ö ÀÖÀ¸"
+"¸ç, ½ÅÁßÇÏ°Ô »ç¿ëµÇ¾îÁ®¾ß ÇÕ´Ï´Ù.\n"
+"\n"
+"ÀÌ°ÍÀÇ Æ¯Â¡Àº, ÀϺΠ°ªÀ» º¯°æÇϱâ À§ÇÏ¿© ÀϺΠ°úÁ¤¿¡¼­ ´ëÈ­¸ðµå°¡ ³ªÅ¸³ª±â´Â "
+"ÇÏÁö¸¸, ±âº»ÀûÀ¸·Î ÀÌ ÄÄÇ»ÅÍ¿¡¼­ ¼öÇàÇÑ ¼³Ä¡ÀÛ¾÷À» ÀÚµ¿¹Ýº¹ÇÏ°Ô ÇÕ´Ï´Ù.\n"
+"\n"
+"¾ÈÀü»óÀÇ ÀÌÀ¯·Î, ÀÌ ÄÄÇ»Åͻ󿡼­ÀÇ ¼³Ä¡°úÁ¤°ú´Â »ó°ü¾øÀÌ, ÆÄƼ¼Ç ³ª´©±â¿Í Æ÷"
+"¸ËÇϱâ´Â ÀÚµ¿À¸·Î ÀÌ·ç¾îÁöÁö ¾Ê½À´Ï´Ù.\n"
+"\n"
+"°è¼Ó ÁøÇàÇմϱî?"
-#: ../../mouse.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "1 button"
-msgstr "1 ¹öÆ°"
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "busmouse"
-msgstr "¹ö½º¸¶¿ì½º"
+msgid "Post Uninstall"
+msgstr "ÈÄ¹Ý ¼³Ä¡Á¦°Å"
-#: ../../mouse.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Ä˽ÌÅÏ ¾ÅÅ· ¸¶¿ì½º"
+msgid " ("
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "·ÎÁöÅØ ¸¶¿ì½º (½Ã¸®¾ó, ¿À·¡µÈ C7 ÇüÅÂ)"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cpuid level"
+msgstr "º¸¾È ¼öÁØ"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM È÷ƮŸºí·¿"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Mongolian (cyrillic)"
+msgstr "¼¼¸£ºñ¾Æ (½Ã¸±)"
-#: ../../mouse.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "MM Series"
-msgstr "MM ½Ã¸®Áî"
+msgid "Add a module"
+msgstr "¸ðµâ Ãß°¡"
-#: ../../mouse.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Genius NetMouse"
-msgstr "Áö´Ï¾î½º ³Ý¸¶¿ì½º"
+msgid "Profile to delete:"
+msgstr "Áö¿ï ÇÁ·ÎÆÄÀÏ"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "·ÎÁöÅØ ¸¶¿ì½º¸Ç+/ÆÛ½ºÆ®¸¶¿ì½º+"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Local measure"
+msgstr "Áö¿ª ÆÄÀϵé"
#: ../../mouse.pm:1
#, c-format
-msgid "Logitech CC Series"
-msgstr "·ÎÁöÅØ CC ½Ã¸®Áî"
+msgid "busmouse"
+msgstr "¹ö½º¸¶¿ì½º"
-#: ../../mouse.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Mouse Systems"
-msgstr "¸¶¿ì½º ½Ã½ºÅÛ"
+msgid "Account Login (user name)"
+msgstr "·Î±×ÀÎ °èÁ¤(»ç¿ëÀÚ¸í)"
-#: ../../mouse.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Logitech MouseMan"
-msgstr "·ÎÁöÅØ ¸¶¿ì½º¸Ç"
+msgid "Fdiv bug"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "¸¶ÀÌÅ©·Î¼ÒÇÁÆ® ÀÎÅÚ¸®¸¶¿ì½º"
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "ÀϹÝÀûÀÎ 3¹öÆ° ¸¶¿ì½º"
+msgid "Benin"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "ÀϹÝÀûÀÎ 2¹öÆ° ¸¶¿ì½º"
+msgid "Uruguay"
+msgstr "¿ì·ç°úÀÌ"
-#: ../../mouse.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "serial"
-msgstr "½Ã¸®¾ó ¸¶¿ì½º"
+msgid "Path selection"
+msgstr "°æ·Î ¼±ÅÃ"
-#: ../../mouse.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Microsoft Explorer"
-msgstr "¸¶ÀÌÅ©·Î¼ÒÇÁÆ® ÀͽºÇ÷η¯"
+msgid "Name/IP address of host:"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Wheel"
-msgstr "ÈÙ ¸¶¿ì½º"
+msgid "Monitor: %s\n"
+msgstr "¸ð´ÏÅÍ: %s\n"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#: ../../partition_table/raw.pm:1
+#, fuzzy, c-format
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
+msgstr ""
+"Çϵåµå½ºÅ©¿¡ ÀÌ»óÀÌ ¹ß»ýÇß½À´Ï´Ù. \n"
+"µ¥ÀÌÅÍ ¹«°á¼º °Ë»ç°¡ ½ÇÆÐÇß½À´Ï´Ù. \n"
+"ÀÌ°ÍÀº µð½ºÅ©¿¡ ±â·ÏµÇ´Â µ¥ÀÌÅ͸¦ ÀÒ¾î ¹ö¸°´Ù´Â °ÍÀ» ÀǹÌÇÕ´Ï´Ù."
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Generic"
-msgstr "ÀÏ¹Ý ¸¶¿ì½º"
+msgid "Printer host name or IP missing!"
+msgstr "ÇÁ¸°ÅÍ È£½ºÆ®¸í ¶Ç´Â IP°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù!"
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Genius NetScroll"
-msgstr "Áö´Ï¾î½º ³Ý½ºÅ©·Ñ"
+msgid "Please check all users that you want to include in your backup."
+msgstr "¹é¾÷¿¡ Æ÷ÇÔÇÒ ¸ðµç »ç¿ëÀÚ¸¦ È®ÀÎÇϼ¼¿ä."
-#: ../../mouse.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "GlidePoint"
-msgstr "ALPS ±Û¶óÀ̵åÆ÷ÀÎÆ®"
+msgid ""
+"The %s must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "ÀϹÝÀûÀÎ PS2 ÈÙ ¸¶¿ì½º"
+msgid "Bangladesh"
+msgstr "¹æ±Û¶óµ¥½Ã"
-#: ../../mouse.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Logitech MouseMan+"
-msgstr "·ÎÁöÅØ ¸¶¿ì½º¸Ç/ÆÛ½ºÆ®¸¶¿ì½º (½Ã¸®¾ó)"
+msgid "Japan (cable)"
+msgstr "ÀϺ» (ÄÉÀ̺í)"
-#: ../../mouse.pm:1 ../../security/level.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Standard"
-msgstr "Ç¥ÁØ"
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) and your Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - ¸¶¿ì½º"
+msgid "Initial tests"
+msgstr "ÃʱâÈ­ Å×½ºÆ®"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "±×·ìº°/ÆÑÅ°Áöº° Á¤·Ä Àüȯ"
+msgid "Continue"
+msgstr "°è¼Ó"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Collapse Tree"
-msgstr "Æ®¸® Á¢±â"
+msgid "Custom Restore"
+msgstr "»ç¿ëÀÚ Á¤ÀÇ º¹±¸"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Expand Tree"
-msgstr "Æ®¸® È®Àå"
+msgid ""
+"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
+"If you notice the sound card displayed is not the one that is actually\n"
+"present on your system, you can click on the button and choose another\n"
+"driver."
+msgstr ""
-#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Info"
-msgstr "Á¤º¸"
+msgid "Script-based"
+msgstr "½ºÅ©¸³Æ® ±â¹Ý"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
-msgid "Is this correct?"
-msgstr "ÀÌ°ÍÀÌ ¸Â½À´Ï±î?"
+msgid "Error reading file %s"
+msgstr "%s ÆÄÀÏÀ» ÀдÂÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù."
-#: ../../my_gtk.pm:1
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr ""
-"-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-1,-*-gulim-bold-r-normal--"
-"25-*-*-*-c-*-ksc5601.1987-0,*-r-*"
+msgid "PLL setting:"
+msgstr "PLL ¼³Á¤:"
-#: ../../partition_table.pm:1
+#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
-msgid "Error writing to file %s"
-msgstr "%s ÆÄÀÏ¿¡ ¾²±â ¿À·ù"
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "¡¸/boot/efi¡¹¿¡ ¸¶¿îÆ®µÈ FAT ÆÄƼ¼ÇÀÌ ÀÖ¾î¾ß¸¸ ÇÕ´Ï´Ù."
-#: ../../partition_table.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Bad backup file"
-msgstr "À߸øµÈ ¹é¾÷ ÆÄÀÏ"
+msgid " on "
+msgstr ""
-#: ../../partition_table.pm:1
+#: ../../diskdrake/dav.pm:1
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "%s ÆÄÀϷκÎÅÍÀÇ º¹±¸ ½ÇÆÐ: %s"
+msgid "The URL must begin with http:// or https://"
+msgstr ""
-#: ../../partition_table.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions."
+"You can specify directly the URI to access the printer. The URI must fulfill "
+"either the CUPS or the Foomatic specifications. Note that not all URI types "
+"are supported by all the spoolers."
msgstr ""
-"ÆÄƼ¼Ç Å×ÀÌºí¿¡¼­ ºó °ø°£ÀÌ ÀÖÁö¸¸ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
-"À¯ÀÏÇÑ ÇØ°áÃ¥Àº ÁÖ ÆÄƼ¼ÇµéÀÌ È®Àå ÆÄƼ¼ÇµéÀÇ µÚ¿¡ ÀÖ´Â ºó °ø°£À» Â÷ÁöÇϵµ·Ï "
-"¿È±â´Â °ÍÀÔ´Ï´Ù."
+"ÇÁ¸°ÅÍ ¾×¼¼½º ÁÖ¼Ò¸¦ Á÷Á¢ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù. ÁÖ¼Ò´Â CUPS ¶Ç´Â Foomatic ±ÔÁ¤"
+"À» ÁؼöÇØ¾ß ÇÕ´Ï´Ù. ±×·¸Áö ¾ÊÀº ÁÖ¼Ò´Â ¸ðµç ½ºÇ®·¯°¡ Áö¿øÇÏÁö ¾Ê½À´Ï´Ù."
-#: ../../partition_table.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "ÀÌ ½Ã½ºÅÛ¿¡¼­´Â È®ÀåÆÄƼ¼ÇÀÌ Áö¿øµÇÁö ¾Ê½À´Ï´Ù."
+msgid "Other OS (SunOS...)"
+msgstr "±âŸ OS (SunOS...)"
-#: ../../partition_table.pm:1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "¼³Ä¡/¾÷µ¥ÀÌÆ®"
+
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "mount failed: "
-msgstr "¸¶¿îÆ® ½ÇÆÐ: "
+msgid "%d packages"
+msgstr "%d ÆÑÅ°Áö"
-#: ../../pkgs.pm:1
+#: ../../standalone.pm:1
#, c-format
-msgid "maybe"
-msgstr "±¦ÂúÀº ÆÑÅ°Áö"
+msgid ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
+"\n"
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
+msgstr ""
-#: ../../pkgs.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "nice"
-msgstr "ÁÁÀº ÆÑÅ°Áö"
+msgid "Domain Authentication Required"
+msgstr "µµ¸ÞÀÎ ÀÎÁõÀÌ ÇÊ¿äÇÕ´Ï´Ù."
-#: ../../pkgs.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "very nice"
-msgstr "ÈǸ¢ÇÑ ÆÑÅ°Áö"
+msgid ""
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
+msgstr ""
-#: ../../pkgs.pm:1
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "important"
-msgstr "Áß¿äÇÑ ÆÑÅ°Áö"
+msgid "Costa Rica"
+msgstr "ÄÚ½ºÅ¸¸®Ä«"
-#: ../../pkgs.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "must have"
-msgstr "Çʼö ÆÑÅ°Áö"
+msgid "Use libsafe for servers"
+msgstr "¼­¹ö¿¡ ´ëÇØ libsafe »ç¿ë"
-#: ../../raid.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "RAID ·¹º§ %d¸¦ À§ÇÑ ÆÄƼ¼ÇµéÀÌ ÃæºÐÇÏÁö ¾Ê½À´Ï´Ù.\n"
+msgid "Icelandic"
+msgstr "¾ÆÀ̽½·£µå"
-#: ../../raid.pm:1
+#: ../../standalone.pm:1
#, c-format
-msgid "mkraid failed"
-msgstr "mkraid ½ÇÆÐ"
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../raid.pm:1
+#: ../../standalone/XFdrake:1
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ½ÇÆÐ (raidtoolÀÌ ¼³Ä¡µÇ¾î ÀÖÁö ¾ÊÀ» ¼ö ÀÖ½À´Ï´Ù.)"
+msgid "Please relog into %s to activate the changes"
+msgstr "º¯°æ»çÇ×À» Àû¿ëÇÏ·Á¸é %s·Î Àç·Î±×ÀÎ Çϼ¼¿ä."
-#: ../../raid.pm:1
+#: ../../my_gtk.pm:1
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Æ÷¸ËµÈ RAID md%d¿¡ ÆÄƼ¼ÇÀ» Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù."
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+"-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-1,-*-gulim-bold-r-normal--"
+"25-*-*-*-c-*-ksc5601.1987-0,*-r-*"
-#: ../../services.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Stop"
-msgstr "ÁßÁö"
+msgid "Lilo/grub mode"
+msgstr "LILO/Grub ¸ðµå"
-#: ../../services.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Start"
-msgstr "½ÃÀÛ"
+msgid "Output"
+msgstr "Ãâ·Â"
-#: ../../services.pm:1
+#: ../../loopback.pm:1
#, c-format
-msgid "On boot"
-msgstr "ÀÚµ¿½ÇÇà"
+msgid "Circular mounts %s\n"
+msgstr "¼øȯ ¸¶¿îÆ® %s\n"
-#: ../../services.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
+msgid "Martinique"
msgstr ""
-"Á˼ÛÇÕ´Ï´Ù.\n"
-"ÀÌ ¼­ºñ½º¿¡ ´ëÇÑ Ãß°¡Á¤º¸°¡ ¾ø½À´Ï´Ù."
-#: ../../services.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Services and deamons"
-msgstr "¼­ºñ½º¿Í ´ë¸ó"
+msgid "HardDrive / NFS"
+msgstr "ÇÏµå µð½ºÅ© / NFS"
-#: ../../services.pm:1
+#: ../../modules/parameters.pm:1
#, c-format
-msgid "stopped"
-msgstr "Á¤ÁöµÊ"
+msgid "a number"
+msgstr "¹øÈ£"
-#: ../../services.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "running"
-msgstr "½ÇÇàÁß"
+msgid "Swedish"
+msgstr "½º¿þµ§"
-#: ../../services.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "¾î¶² ¼­ºñ½º°¡ ºÎÆýÿ¡ ÀÚµ¿ ½ÇÇàµÇ¾î¾ß ÇÒÁö ¼±ÅÃÇϼ¼¿ä."
+msgid "Which %s driver should I try?"
+msgstr "¾î¶² %s µå¶óÀ̹ö¸¦ ½ÃµµÇØ º¾´Ï±î?"
-#: ../../services.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Database Server"
-msgstr "µ¥ÀÌÅͺ£À̽º ¼­¹ö"
+msgid ""
+"You will receive an alert if one of the selected services is no longer "
+"running"
+msgstr ""
-#: ../../services.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "Remote Administration"
-msgstr "¿ø°Ý °ü¸®"
+msgid "Filesystem types:"
+msgstr "ÆÄÀϽýºÅÛ À¯Çü:"
-#: ../../services.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "File sharing"
-msgstr "ÆÄÀÏ °øÀ¯"
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
-#: ../../services.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Internet"
-msgstr "ÀÎÅͳÝ"
+msgid "Northern Mariana Islands"
+msgstr ""
-#: ../../services.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Printing"
-msgstr "Àμâ"
+msgid "none"
+msgstr "¾øÀ½"
-#: ../../services.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "X ÆùÆ® ¼­¹ö ½ÃÀÛ (X À©µµ¿ì¸¦ ¿î¿µÇϱâ À§Çؼ­´Â ÇʼöÀÔ´Ï´Ù)."
+msgid "user :"
+msgstr "»ç¿ëÀÚ:"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "USB ÀåÄ¡¿ë µå¶óÀ̹ö ÀûÀç."
+msgid "Please enter your password"
+msgstr "ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇϼ¼¿ä."
-#: ../../services.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
-"Syslog´Â ¿©·¯ µ¥¸óµéÀÇ ·Î±× ¸Þ¼¼Áö¸¦ ¿©·¯ Á¾·ùÀÇ ½Ã½ºÅÛ ·Î±× ÆÄÀÏ·Î\n"
-"³²±â´Âµ¥ À¯¿ëÇÕ´Ï´Ù. Ç×»ó Syslog¸¦ ½ÇÇà½ÃÅ°´Â°ÍÀÌ ÁÁ½À´Ï´Ù."
+"¸¸µé ÇÁ·ÎÆÄÀÏ À̸§ (»õ ÇÁ·ÎÆÄÀÏÀº ÇöÀç ÇÁ·ÎÆÄÀÏÀÇ »çº»À¸·Î¼­ ¸¸µé¾î Áý´Ï´Ù.):"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "ÀÌ ÄÄÇ»ÅÍ¿¡¼­ »ç¿îµå ½Ã½ºÅÛ ½ÇÇà"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Floppy"
+msgstr "ºÎÆ® Ç÷ÎÇÇ"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+
+#: ../../standalone/drakfont:1
#, c-format
-msgid ""
-"The rwho protocol lets remote users get a list of all of the users\n"
-"logged into a machine running the rwho daemon (similiar to finger)."
-msgstr ""
-"rwho ÇÁ·ÎÅäÄÝÀº (finger¿Í ºñ½ÁÇÏ°Ô) rwho ´ë¸óÀÌ ½ÇÇàµÇ°í\n"
-"ÀÖ´Â ÄÄÇ»ÅÍ¿¡ ·Î±×ÀÎÇÑ »ç¿ëÀÚ ¸ñ·ÏÀ» ¿ø°Ý »ç¿ëÀÚ°¡ º¼ ¼ö ÀÖ°Ô ÇÕ´Ï´Ù."
+msgid "Ghostscript referencing"
+msgstr "°í½ºÆ®½ºÅ©¸³Æ® ÂüÁ¶"
-#: ../../services.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Bootloader"
+msgstr "»ç¿ëÇÒ ºÎÆ®·Î´õ"
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers ÇÁ·ÎÅäÄÝÀº ³×Æ®¿÷»óÀÇ »ç¿ëÀÚµéÀÌ ´Ù¸¥ ÄÄÇ»ÅÍ»ó¿¡ ·Î±×ÀÎÇÑ \n"
-"»ç¿ëÀÚµéÀÇ ½Å¿øÀ» ¾Ë ¼ö ÀÖ°Ô ÇÕ´Ï´Ù."
+msgid "Move"
+msgstr "À̵¿"
-#: ../../services.pm:1
+#: ../../any.pm:1 ../../help.pm:1
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat ÇÁ·ÎÅäÄÝÀº ³×Æ®¿÷»óÀÇ »ç¿ëÀÚ°¡ ±¸ ³×Æ®¿ö»ó¿¡ ÀÖ´Â \n"
-"¸ðµç ÄÄÇ»ÅÍ¿¡ ´ëÇÏ¿© ¼öÇà´É·Â ¸ÞÆ®¸¯½º¸¦ ¾Ë¾Æ º¼ ¼ö ÀÖ°Ô ÇÕ´Ï´Ù."
+msgid "Bootloader to use"
+msgstr "»ç¿ëÇÒ ºÎÆ®·Î´õ"
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"Routed µ¥¸óÀº RIP ÇÁ·ÎÅäÄÝÀ» ÅëÇØ ÀÚµ¿À¸·Î IP ¶ó¿ìÅÍ Å×À̺íÀÌ °»½ÅµÇµµ·Ï ÇÕ´Ï"
-"´Ù.\n"
-"RIP´Â ¼Ò±Ô¸ð ³×Æ®¿÷À» À§ÇÑ °ÍÀ̱⠶§¹®¿¡, ´ë±Ô¸ð ³×Æ®¿÷À» À§Çؼ­´Â º¸´Ù º¹Àâ"
-"ÇÑ\n"
-"¶ó¿ìÆà ÇÁ·ÎÅäÄÝÀÌ ÇÊ¿äÇÕ´Ï´Ù."
+msgid "SMB server host"
+msgstr "SMB ¼­¹ö È£½ºÆ®"
-#: ../../services.pm:1
+#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"¿À¶óŬ °°Àº ÇÁ·Î±×·¥À» »ç¿ëÇϱâ À§ÇØ ³¯(RAW) ÀåÄ¡¸¦\n"
-"(Çϵåµð½ºÅ© ÆÄƼ¼Ç °°Àº) ºí·Ï ÀåÄ¡·Î ÇÒ´ç."
+msgid "Name Servers:"
+msgstr "»ï¹Ù ¼­ºñ½º"
-#: ../../services.pm:1
+#: ../../install_messages.pm:1
#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
msgstr ""
-"°íÇ°ÁúÀÇ ³­¼ö »ý¼ºÀ» À§ÇØ ½Ã½ºÅÛ ¿£Æ®·ÎÇÇ Ç®À» ÀúÀåÇÏ°í \n"
-"º¹±¸ÇÕ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-"Æ÷½ºÆ®ÇȽº(Postfix)´Â ÄÄÇ»Å͵鰣¿¡ ¸ÞÀÏÀ» ÁÖ°í¹Þ´Â \n"
-"¸ÞÀÏ Àü¼Û ¿¡ÀÌÀüÆ® ÇÁ·Î±×·¥ÀÔ´Ï´Ù."
#: ../../services.pm:1
#, c-format
msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-"Æ÷Æ®¸ÊÆÛ(portmapper)´Â NFS¿Í NIS °°Àº ÇÁ·ÎÅäÄÝ¿¡ ÀÇÇØ »ç¿ëµÇ´Â\n"
-"RPC ¿¬°áÀ» °ü¸®ÇÕ´Ï´Ù. Æ÷Æ®¸Ê ¼­¹ö´Â RPC ¸ÞÄ¿´ÏÁòÀ» ÀÌ¿ëÇÏ´Â ÇÁ·ÎÅäÄÝ¿ë ¼­¹ö"
-"·Î\n"
-"»ç¿ëµÇ°í ÀÖ´Â ÄÄÇ»ÅÍ¿¡´Â ¹Ýµå½Ã ½ÇÇàµÇ°í ÀÖ¾î¾ß ÇÕ´Ï´Ù."
+"¸®´ª½º °¡»ó ¼­¹ö, °í¼º´É ¼­¹ö ±¸Ãà¿¡\n"
+"»ç¿ëµË´Ï´Ù."
-#: ../../services.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It won't get started unless configured so it is safe to "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA´Â º¸Åë ·¦Å¾(³ëÆ®ºÏ)¿¡ ÀÖ´Â ÀÌ´õ³Ý Ä«µå¿Í ¸ðµ©°°Àº ÀåÄ¡\n"
-"µéÀ» Áö¿øÇϱâ À§ÇÑ °ÍÀÔ´Ï´Ù. Ãß°¡ ¼³Á¤ÀÌ ¾øÀ¸¸é ½ÃÀÛµÇÁö ¾Ê±â ¶§¹®¿¡,\n"
-"ÀÌ·¯ÇÑ ÀåÄ¡°¡ ¾ø´Â ÄÄÇ»ÅÍ¿¡ ¼³Ä¡µÇ¾î À־ ¾ÈÀüÇÕ´Ï´Ù."
+msgid "4 billion colors (32 bits)"
+msgstr "40¾ï »ö»ó (32 bits)"
-#: ../../services.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "OKI 4w ¹× ȣȯ ÇÁ¸°ÅÍ Áö¿ø."
+msgid "Micronesia"
+msgstr "¹ÌÅ©·Î³×½Ã¾Æ"
-#: ../../services.pm:1
+#: ../../steps.pm:1
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+msgid "License"
msgstr ""
-"ºÎÆýÿ¡ ÀÚµ¿À¸·Î Äְܼú X ȯ°æ¿¡¼­\n"
-"¼ýÀÚÅ° Àá±Ý ¸ðµå »ç¿ë."
-#: ../../services.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+msgid "This may take a moment to generate the keys."
msgstr ""
-"NFS´Â TCP/IP ³×Æ®¿÷À¸·Î ÆÄÀÏÀ» °øÀ¯ÇÏ´Â ÀαâÀÖ´Â ÇÁ·ÎÅäÄÝÀÔ´Ï´Ù.\n"
-"ÀÌ ¼­ºñ½º´Â NFS ÆÄÀÏ Àá±Ý ±â´ÉÀ» Á¦°øÇÕ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-"NFS´Â TCP/IP ³×Æ®¿÷À¸·Î ÆÄÀÏÀ» °øÀ¯ÇÏ´Â ÀαâÀÖ´Â ÇÁ·ÎÅäÄÝÀÔ´Ï´Ù.\n"
-"ÀÌ ¼­ºñ½º´Â /etc/export ÆÄÀÏÀ» ¼³Á¤ÇÔÀ¸·Î½á NFS ¼­¹öÀÇ ±â´ÉÀ» °¡´ÉÇÏ°Ô\n"
-"ÇÕ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../network/adsl.pm:1
#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+msgid "Sagem (using pppoa) usb"
msgstr ""
-"ºÎÆýÿ¡ ½ÃÀÛÇϵµ·Ï ¼³Á¤µÈ ¸ðµç ³×Æ®¿÷ ÀÎÅ×ÆäÀ̽º¸¦ \n"
-"È°¼ºÈ­/ºñÈ°¼ºÈ­ ÇÕ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-"³×Æ®¿÷ ÆÄÀÏ ½Ã½ºÅÛ(NFS), »ï¹Ù(SMB/·£ °ü¸®ÀÚ/À©µµ¿ìÁî), ±×¸®°í\n"
-"NCP(³Ý¿þ¾î)¸¦ ¸¶¿îÆ®ÇÏ°í ¾ð¸¶¿îÆ®ÇÕ´Ï´Ù."
+"¿À·ù ¹ß»ý - »õ·Î¿î ÆÄÀÏ ½Ã½ºÅÛÀ» ¸¸µé ¾î¶² ¿Ã¹Ù¸¥ ÀåÄ¡µµ ãÀ» ¼ö ¾ø½À´Ï´Ù.ÀÌ "
+"¹®Á¦¸¦ ÇØ°áÇϽ÷Á¸é, Çϵå¿þ¾î¸¦ Á¡°ËÇØ º¸½Ã±â ¹Ù¶ø´Ï´Ù."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"NAMED(BIND)´Â È£½ºÆ® À̸§À¸·Î IP ÁÖ¼Ò¸¦ ã¾Æ³»´Âµ¥ »ç¿ëµÇ´Â\n"
-"µµ¸ÞÀÎ ³×ÀÓ ¼­¹öÀÔ´Ï´Ù."
+msgid "Starting the printing system at boot time"
+msgstr "ºÎÆýà Àμ⠽ýºÅÛ ÀÚµ¿½ÇÇà"
-#: ../../services.pm:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"¸®´ª½º °¡»ó ¼­¹ö, °í¼º´É ¼­¹ö ±¸Ãà¿¡\n"
-"»ç¿ëµË´Ï´Ù."
+msgid "Do you want to start the connection at boot?"
+msgstr "ºÎÆýÿ¡ ¿¬°áÇϵµ·Ï ÇÏ°Ú½À´Ï±î?"
-#: ../../services.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
+msgid "Processor ID"
msgstr ""
-"LPD´Â lpr ¸í·ÉÀÌ ¿Ã¹Ù¸£°Ô ÀÛµ¿Çϱâ À§ÇØ ÇÊ¿äÇÑ Àμ⠴ë¸óÀÔ´Ï´Ù.\n"
-"±Ùº»ÀûÀ¸·Î Àμâ ÀÛ¾÷µéÀ» ÇÁ¸°ÅÍ·Î ÁßÀçÇØ ÁÖ´Â ¼­¹öÀÔ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+msgid "Sound trouble shooting"
msgstr ""
-"¸®´ª½º ¼³Á¤(Linuxconf)Àº ½Ã½ºÅÛ ¼³Á¤À» À¯ÁöÇϱâ À§ÇÏ¿©\n"
-"ºÎÆýÿ¡ ´Ù¾çÇÑ ÀÛ¾÷ ¼öÇàÀ» ÁغñÇÕ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "ºÎÆýÿ¡ ÀÚµ¿ Çϵå¿þ¾î °Ë»ö ¹× ¼³Á¤."
+msgid "Polish (qwerty layout)"
+msgstr "Æú¶õµå (QwertY)"
-#: ../../services.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"¡¸/usr/include/linux/{autoconf,version}.h¡¹¿¡ ´ëÇØ\n"
-"¡¸/boot¡¹¿¡ Ä¿³Î Çì´õ¸¦ ÀÚµ¿ »ý¼º."
+msgid "activate now"
+msgstr "Áö±Ý È°¼ºÈ­"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"ÀÌ ÆÑÅ°Áö´Â ¡¸/etc/sysconfig/keyboard¡¹¿¡ ¼³Á¤µÇ¾î ÀÖ´Â \n"
-"Å°º¸µå ¸ÊÀ» ÀûÀçÇÕ´Ï´Ù. Å°º¸µå´Â ¡¸kbdconfig¡¹¸í·ÉÀ¸·Î ¼±ÅÃÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
-"´ëºÎºÐÀÇ ½Ã½ºÅÛ¿¡¼­ ÇÊ¿äÇÑ °ÍÀÔ´Ï´Ù."
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
+"\n"
+"This printing system runs a daemon (background process) which waits for "
+"print jobs and handles them. This daemon is also accessable by remote "
+"machines through the network and so it is a possible point for attacks. "
+"Therefore only a few selected daemons are started by default in this "
+"security level.\n"
+"\n"
+"Do you really want to configure printing on this machine?"
msgstr ""
-"2.2 Ä¿³Î ½Ã¸®Áî¿ë ÆÐŶ ÇÊÅ͸¦ ½ÇÇà, ³×Æ®¿÷ °ø°ÝÀ¸·ÎºÎÅÍ\n"
-"ÄÄÇ»Å͸¦ º¸È£ÇÏ´Â ¹æÈ­º®À» ±¸ÃàÇÕ´Ï´Ù."
+"Áö±Ý ´ÔÀº º¸¾È¼öÁØ %2$s·Î ¿î¿ëµÇ´Â ½Ã½ºÅÛ¿¡\n"
+"Àμ⠽ýºÅÛ %1$sÀ» ¼³Ä¡ÇÏ·Á°í ÇÕ´Ï´Ù.\n"
+"\n"
+"Àμ⠽ýºÅÛÀº ÀμâÀÛ¾÷À» ±â´Ù·È´Ù°¡ ó¸®ÇÏ´Â\n"
+"´ë¸ó(¹é±×¶ó¿îµå ÇÁ·Î¼¼½º)¸¦ ½ÇÇà½Ãŵ´Ï´Ù.\n"
+"¿ø°Ý ½Ã½ºÅÛ¿¡¼­ ³×Æ®¿÷À¸·Î ÀÌ ´ë¸ó¿¡ Á¢±ÙÇÒ ¼öµµ\n"
+"Àֱ⠶§¹®¿¡, Å©·¡Ä¿µéÀÇ »ç³É°¨ÀÌ µÇ±âµµ ÇÕ´Ï´Ù.\n"
+"µû¶ó¼­ ÇöÀç º¸¾È ¼öÁØ¿¡¼­´Â ´ÜÁö ¸î¸îÀÇ ¸Å¸óµé¸¸\n"
+"½ÇÇàµÇµµ·Ï ¼±ÅõǴ °ÍÀÌ ±âº»ÀÔ´Ï´Ù.\n"
+"\n"
+"Á¤¸»·Î ÀÌ ÄÄÇ»ÅÍ»óÀÇ Àμ⠼³Á¤À»\n"
+"¿øÇϽʴϱî? "
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
+msgid "Host \"%s\", port %s"
msgstr ""
-"(Åë»óÀûÀ¸·Î inetd¶ó°í ÇÏ´Â) ÀÎÅÍ³Ý ¼öÆÛ ´ë¸óÀº ´Ù¾çÇÑ ÀÎÅÍ³Ý ¼­¹ö¸¦\n"
-"ÇÊ¿äÇÑ ¶§ ½ÇÇà ½Ãŵ´Ï´Ù. ÅÚ³Ý, FTP, RSH, RLOGIN µî°ú °°Àº ¸¹Àº \n"
-"¼­ºñ½º¸¦ °ü¸®ÇÕ´Ï´Ù. ÀÌ°ÍÀÌ ½ÇÇàµÇ¾î ÀÖÁö ¾ÊÀ¸¸é, ¶ÇÇÑ ÀÌ°ÍÀÌ °ü¸®ÇÏ´Â\n"
-"¿©·¯ ¼­ºñ½ºµµ ¶ÇÇÑ ºÒ°¡´ÉÇÏ°Ô µË´Ï´Ù."
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"¾ÆÆÄÄ¡(Apache)´Â À¥ ¼­¹öÀÔ´Ï´Ù. ÀÌ°ÍÀº HTMLÀ̳ª CGI ÆÄÀÏ ¼­ºñ½º¸¦\n"
-"Çϴµ¥ »ç¿ëµË´Ï´Ù."
+msgid "This partition can't be used for loopback"
+msgstr "ÀÌ ÆÄƼ¼ÇÀº loopbackÀ¸·Î »ç¿ëµÉ ¼ö ¾ø½À´Ï´Ù."
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"Çϵåµå·¹ÀÌÅ©´Â Çϵå¿þ¾î °Ë»öÀ» ¼öÇàÇϸç, ÇÊ¿äÇÏ´Ù¸é\n"
-"»õ/º¯°æµÈ Çϵå¿þ¾î¸¦ ¼³Á¤ÇÕ´Ï´Ù."
+msgid "File already exists. Use it?"
+msgstr "ÆÄÀÏÀÌ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù. ±×°ÍÀ» »ç¿ëÇմϱî?"
-#: ../../services.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
+msgid "received: "
msgstr ""
-"GPMÀº ÅؽºÆ® ±â¹Ý ÇÁ·Î±×·¥µé¿¡°Ô ¸¶¿ì½º ±â´ÉÀ» Áö¿øÇÕ´Ï´Ù.\n"
-"¶ÇÇÑ ÄÜ¼Ö È­¸é¿¡¼­ Àß¶ó¼­ ºÙÀ̱â¿Í Æ˾÷ ¸Þ´º ±â´ÉÀ» \n"
-"Áö¿øÇÕ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
+msgid "Right Alt key"
msgstr ""
-"cronÀº »ç¿ëÀÚ°¡ ÁöÁ¤ÇÑ ÇÁ·Î±×·¥À» ÁÖ±âÀûÀ¸·Î ƯÁ¤ ½Ã°£¿¡ ½ÇÇà½ÃÅ°´Â \n"
-"Ç¥ÁØ UNIX ÇÁ·Î±×·¥ÀÔ´Ï´Ù. vixie cronÀº ÀÌ ±âº» UNIX Cron¿¡ Çâ»óµÈ º¸¾È°ú \n"
-"´õ °­·ÂÇÑ ¼³Á¤¿É¼Ç µîÀÇ ¸¹Àº Ư¡À» Ãß°¡ÇÕ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-"Á¤ÇØÁØ ½Ã°£¿¡ Çѹø¿¡ Çϳª¾¿ ½ÇÇà½Ãŵ´Ï´Ù. at´Â batch ¸í·ÉµéÀ» ½Ã½ºÅÛ\n"
-"·ÎµåÀ²ÀÌ ³·À»¶§ ¼öÇà½Ãŵ´Ï´Ù."
-#: ../../services.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"apmd´Â ¹èÅ͸® »óÅÂ¿Í syslog¸¦ °ÅÃļ­ ·Î±× ±â·ÏÀ» °¨½ÃÇϴµ¥ »ç¿ëµË´Ï´Ù.\n"
-"¶ÇÇÑ ¹èÅ͸®·®ÀÌ ¹Ì¾àÇÒ¶§ ÀÚµ¿À¸·Î ½Ã½ºÅÛÀ» ¼Ë´Ù¿î ½ÃÄÑÁÖ´Â ±â´Éµµ ÇÕ´Ï´Ù."
+msgid "Gateway"
+msgstr "°ÔÀÌÆ®¿þÀÌ"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scanner sharing"
+msgstr "ÆÄÀÏ °øÀ¯"
+
+#: ../../lang.pm:1
#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "AnancronÀº ÁÖ±âÀûÀÎ ¸í·É ½ºÄÉÁì·¯ ÀÔ´Ï´Ù."
+msgid "Tonga"
+msgstr "Åë°¡"
-#: ../../services.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "ALSA (Áøº¸µÈ ¸®´ª½º »ç¿îµå ¾ÆÅ°ÅØó) »ç¿îµå ½Ã½ºÅÛ ½ÇÇà"
+msgid "Tunisia"
+msgstr "Æ¢´ÏÁö"
-#: ../../standalone.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Installing packages..."
-msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
+msgid "Profile: "
+msgstr "ÇÁ·ÎÆÄÀÏ: "
-#: ../../standalone.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+"Click on a device in the left tree in order to display its information here."
msgstr ""
-#: ../../standalone.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-msgstr ""
+msgid "XawTV isn't installed!"
+msgstr "XawTV°¡ ¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù!"
-#: ../../standalone.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation don't ask first confirmation question in "
-"MandrakeUpdate mode\n"
-" --no-verify-rpm don't verify packages signatures\n"
-" --changelog-first display changelog before filelist in the "
-"description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../any.pm:1
+#, c-format
+msgid "This label is already used"
+msgstr "ÀÌ Ç׸ñ¸íÀº ÀÌ¹Ì »ç¿ëµÇ°í ÀÖ½À´Ï´Ù."
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : don't be interactive. To be used with (dis)connect."
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../standalone.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr ""
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "%s ÆÄƼ¼ÇÀ» Æ÷¸ËÇϸé, ¸ðµç µ¥ÀÌŸ¸¦ ÀÒ°Ô µË´Ï´Ù."
-#: ../../standalone.pm:1
+#: ../../standalone/net_monitor:1
#, fuzzy, c-format
-msgid "[keyboard]"
-msgstr "Å°º¸µå"
+msgid "Connection Time: "
+msgstr "¿¬°á À¯Çü: "
-#: ../../standalone.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid ""
-"[OPTIONS]...\n"
-"Mandrake Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires "
-"username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, "
-"nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, "
-"IP, nbi image name)"
+msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../standalone/livedrake:1
#, c-format
msgid ""
-"Font Importation and monitoring "
-"application \n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : strong verification of font.\n"
-"--install : accept any font file and any directry.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"¼³Ä¡ CD-ROMÀ» ³ÖÀº ÈÄ¿¡ ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä.\n"
+"CD-ROMÀÌ ¾ø´Ù¸é, ¡¸Ãë¼Ò¡¹¸¦ ¶óÀÌºê ¾÷±×·¹À̵带 Ãë¼ÒÇϼ¼¿ä."
-#: ../../standalone.pm:1
+#: ../../standalone/drakperm:1
#, c-format
+msgid "Use group id for execution"
+msgstr "½ÇÇà½Ã ±×·ì ¾ÆÀ̵ð »ç¿ë"
+
+#: ../../any.pm:1
+#, c-format
+msgid "Choose the default user:"
+msgstr "±âº» »ç¿ëÀÚ¸¦ ¼±ÅÃÇϼ¼¿ä:"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gabon"
+msgstr "°¡ºÀ"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
+"Printers on remote CUPS servers do not need to be configured here; these "
+"printers will be automatically detected."
msgstr ""
+"\n"
+"¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ´Â ¿©±â¼­ ¼³Á¤ÇÒ ÇÊ¿ä°¡ \n"
+"¾ø½À´Ï´Ù; ÀÌ·± ÇÁ¸°ÅÍ´Â ÀÚµ¿À¸·Î °¨ÁöµÇ¾î Áý´Ï´Ù. ÀÌ¿Í °°Àº °æ¿ì\n"
+"¡¸¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ¡¹¸¦ ¼±ÅÃÇϼ¼¿ä."
-#: ../../standalone.pm:1
+#: ../../any.pm:1
#, c-format
msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr "¼³Ä¡ÈÄ ´Ù¸¥ ´Ù¸¥ ¾ð¾î¸¦ ¼±ÅÃÇÒ¼ö ÀÖ½À´Ï´Ù."
-#: ../../standalone.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Domain"
+msgstr "µµ¸ÞÀÎ"
+
+#: ../../any.pm:1
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "¿É¼Ç: Á¤È®ÇÑ ¸Þ¸ð¸® ¿ë·® (%d MB ¹ß°ß)"
+
+#: ../../help.pm:1
#, c-format
msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. DrakX will analyze the disk boot sector and act according to\n"
+"what it finds there:\n"
"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. This way you will be able to load either GNU/Linux or another\n"
+"OS.\n"
"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
+"\n"
+"If it cannot make a determination, DrakX will ask you where to place the\n"
+"bootloader."
msgstr ""
-#: ../../steps.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Exit install"
-msgstr "¼³Ä¡ Á¾·á"
-
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Install updates"
-msgstr "½Ã½ºÅÛ ¾÷µ¥ÀÌÆ® ¼³Ä¡"
+msgid "Provider dns 2 (optional)"
+msgstr "°ø±ÞÀÚ DNS 2 (¿É¼Ç)"
-#: ../../steps.pm:1
+#: ../../any.pm:1 ../../help.pm:1
#, c-format
-msgid "Configure services"
-msgstr "¼­ºñ½º ¼³Á¤"
+msgid "Boot device"
+msgstr "ºÎÆ® ÀåÄ¡"
-#: ../../steps.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Configure X"
-msgstr "X ¼³Á¤"
+msgid "Which partition do you want to resize?"
+msgstr "¾î¶² ÆÄƼ¼ÇÀÇ Å©±â¸¦ Á¶Á¤ÇϽðڽÀ´Ï±î?"
-#: ../../steps.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Install bootloader"
-msgstr "ºÎÆ®·Î´õ ¼³Ä¡"
+msgid "United States Minor Outlying Islands"
+msgstr ""
-#: ../../steps.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Configure networking"
-msgstr "³×Æ®¿÷ ¼³Á¤"
+msgid "A tool to monitor your logs"
+msgstr "·Î±× ºÐ¼® µµ±¸"
-#: ../../steps.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Add a user"
-msgstr "»ç¿ëÀÚ Ãß°¡"
+msgid "Djibouti"
+msgstr ""
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Root password"
-msgstr "¾ÏÈ£ ¾øÀ½"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected on port %s"
+msgstr "%s Æ÷Æ®¿¡¼­ ¹ß°ß"
-#: ../../steps.pm:1
+#: ../../printer/data.pm:1
#, c-format
-msgid "Install system"
-msgstr "½Ã½ºÅÛ ¼³Ä¡"
+msgid "LPD"
+msgstr "LPD"
-#: ../../steps.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Choose packages to install"
-msgstr "¼³Ä¡ ÆÑÅ°Áö ¼±ÅÃ"
+msgid "Graphics card: %s\n"
+msgstr "±×·¡ÇÈ Ä«µå: %s\n"
-#: ../../steps.pm:1
+#: ../../bootloader.pm:1
#, c-format
-msgid "Format partitions"
-msgstr "ÆÄƼ¼Ç Æ÷¸Ë"
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../steps.pm:1
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
-msgid "Partitioning"
-msgstr "Àμâ"
+msgid "Please check if you are using a DVDRAM device"
+msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
-#: ../../steps.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Choose your keyboard"
-msgstr "Å°º¸µå ¼±ÅÃ"
+msgid "Splash selection"
+msgstr "½ºÇ÷¡½¬ ¼±ÅÃ"
-#: ../../steps.pm:1
+#: ../../partition_table.pm:1
#, c-format
-msgid "Select installation class"
-msgstr "¼³Ä¡ Ŭ·¡½º ¼±ÅÃ"
+msgid "Extended partition not supported on this platform"
+msgstr "ÀÌ ½Ã½ºÅÛ¿¡¼­´Â È®ÀåÆÄƼ¼ÇÀÌ Áö¿øµÇÁö ¾Ê½À´Ï´Ù."
-#: ../../steps.pm:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Hard drive detection"
-msgstr "ÇÏµå µð½ºÅ© ¼±ÅÃ"
+msgid "ISDN Configuration"
+msgstr "ISDN ¼³Á¤"
-#: ../../steps.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Configure mouse"
-msgstr "¸¶¿ì½º ¼³Á¤"
+msgid "high"
+msgstr "³ôÀ½"
-#: ../../steps.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "License"
-msgstr ""
+msgid "Internet Connection Sharing"
+msgstr "ÀÎÅÍ³Ý ¿¬°á °øÀ¯"
-#: ../../steps.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Language"
-msgstr "¾ð¾î ¼±ÅÃ"
+msgid "Choose file"
+msgstr "ÆÄÀÏ ¼±ÅÃ"
-#: ../../ugtk2.pm:1
+#: ../../network/shorewall.pm:1
#, c-format
-msgid "utopia 25"
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fixes after installation."
msgstr ""
+"°æ°í! ±âÁ¸ÀÇ ¹æÈ­º® ¼³Á¤ÀÌ °¨ÁöµÇ¾ú½À´Ï´Ù. ¼³Ä¡°¡ ³¡³­ ÈÄ¿¡ Á÷Á¢ ¼öÁ¤ÇÒ ÇÊ¿ä"
+"°¡ ÀÖ½À´Ï´Ù."
-#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../network/netconnect.pm:1
-#: ../../standalone/drakTermServ:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "OK"
-msgstr "È®ÀÎ"
-
-#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "·Î±×µå·¹ÀÌÅ©"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
-#: ../../ugtk.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-"-adobe-helvetica-bold-r-normal--16-*-75-75-p-*-iso8859-1,-*-gulim-bold-r-"
-"normal--16-*-75-75-*-*-ksc5601.1987-0,*-r-*"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (¼³Ä¡ Ç¥½Ã µå¶óÀ̹ö)"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "ÇÁ¸°ÅÍ ¸ðµ¨ ¼±ÅÃ"
-#: ../../Xconfig/card.pm:1
+#: ../../mouse.pm:1
#, 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"
-"ÁÖÀÇ: ÀÌ°ÍÀº ½ÇÇèÀûÀÎ Áö¿øÀÌ¸ç ´ÔÀÇ ÄÄÇ»Å͸¦ ¸ØÃß°Ô ÇÒ ¼ö ÀÖ½À´Ï´Ù."
+msgid "Generic PS2 Wheel Mouse"
+msgstr "ÀϹÝÀûÀÎ PS2 ÈÙ ¸¶¿ì½º"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s¸¦ »ç¿ëÇÑ ½ÇÇèÀû 3D Çϵå¿þ¾î °¡¼Ó"
+msgid "Removing old printer \"%s\"..."
+msgstr "±âÁ¸ ÇÁ¸°ÅÍ ¡¸%s¡¹ Á¦°Å Áß ..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "´ÔÀÇ Ä«µå´Â XFree %s·Î 3D Çϵå¿þ¾î °¡¼Ó±â´ÉÀ» Áö¿øÇÕ´Ï´Ù."
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Select a device !"
+msgstr "½ºÄ³³Ê ¼±ÅÃ"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s¸¦ »ç¿ëÇÑ 3D Çϵå¿þ¾î °¡¼Ó"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remove selected server"
+msgstr "¼±Åà Ç׸ñ Á¦°Å"
-#: ../../Xconfig/card.pm:1
+#: ../../lang.pm:1
#, 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."
+msgid "French Southern Territories"
msgstr ""
-"´ÔÀÇ Ä«µå´Â XFree %s·Î¸¸ °¡´ÉÇÑ 3D Çϵå¿þ¾î °¡¼Ó±â´ÉÀÌ Áö¿øµË´Ï´Ù.\n"
-"ÁÖÀÇ: ÀÌ°ÍÀº ½ÇÇèÀûÀÎ Áö¿øÀÌ¸ç ´ÔÀÇ ÄÄÇ»Å͸¦ ¸ØÃß°Ô ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
-"´ÔÀÇ Ä«µå´Â ¾î¼¸é º¸´Ù Çâ»óµÈ 2D ¼º´ÉÀ» º¸ÀÏ ¼ö ÀÖ´Â XFree %sÀ» Áö¿øÇÕ´Ï´Ù."
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/harddrake2:1
#, 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."
+msgid "the vendor name of the processor"
msgstr ""
-"´ÔÀÇ Ä«µå´Â XFree %s·Î¸¸ °¡´ÉÇÑ 3D Çϵå¿þ¾î °¡¼Ó±â´ÉÀÌ Áö¿øµË´Ï´Ù.\n"
-"´ÔÀÇ Ä«µå´Â ¾î¼¸é º¸´Ù Çâ»óµÈ 2D ¼º´ÉÀ» º¸ÀÏ ¼ö ÀÖ´Â XFree %sÀ» Áö¿øÇÕ´Ï´Ù."
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+msgid "All data on this partition should be backed-up"
+msgstr "ÀÌ ÆÄƼ¼ÇÀÇ ¸ðµç µ¥ÀÌŸ¸¦ ¹é¾÷ÇÏ¿©¾ß ÇÕ´Ï´Ù."
-#: ../../Xconfig/card.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "¡¸%s¡¹%s Ä«µå¸¸ ¼³Á¤"
+msgid "Installing package %s"
+msgstr "%s ÆÑÅ°Áö ¼³Ä¡Áß"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Use Xinerama extension"
-msgstr "Xinerama È®Àå »ç¿ë"
+msgid "Checking device and configuring HPOJ..."
+msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Configure all heads independently"
-msgstr "¸ðµç Çìµå¸¦ µ¶¸³ÀûÀ¸·Î ¼³Á¤"
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"´õ ¸¹Àº ÆÄƼ¼ÇÀ» ¸¸µå½Ç·Á¸é, È®Àå ÆÄƼ¼ÇÀ» ¸¸µé¼ö ÀÖµµ·Ï ÁÖÆÄƼ¼Ç Çϳª¸¦ Áö¿ì"
+"¼¼¿ä."
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "¾î´À XFree ¼³Á¤À» ¼±ÅÃÇϽðڽÀ´Ï±î?"
+msgid ""
+"Your printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
+msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../steps.pm:1
#, c-format
-msgid "XFree configuration"
-msgstr "XFree ¼³Á¤"
+msgid "Choose packages to install"
+msgstr "¼³Ä¡ ÆÑÅ°Áö ¼±ÅÃ"
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "±×·¡ÇÈ Ä«µåÀÇ ¸Þ¸ð¸® ¿ë·®À» ¼±ÅÃÇϼ¼¿ä"
-
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"´ÔÀÇ ½Ã½ºÅÛÀº ´ÙÁß Çìµå ¼³Á¤À» Áö¿øÇÕ´Ï´Ù.\n"
-"¾î¶»°Ô ÇϽðڽÀ´Ï±î?"
-#: ../../Xconfig/card.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Multi-head configuration"
-msgstr "´ÙÁß Çìµå ¼³Á¤"
-
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Choose an X server"
-msgstr "X ¼­¹ö ¼±ÅÃ"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "%s µå¶óÀÌºê »óÀÇ ¸ðµç ±âÁ¸ ÆÄƼ¼Ç°ú µ¥ÀÌÅÍ°¡ ¼Õ½ÇµÉ °ÍÀÔ´Ï´Ù."
-#: ../../Xconfig/card.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "X server"
-msgstr "X ¼­¹ö"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr "¼³Ä¡ ¶Ç´Â ¾÷±×·¹À̵带 À§ÇÑ µð½ºÅ© °ø°£ÀÌ ºÎÁ·ÇÕ´Ï´Ù. (%d > %d)"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"Every printer needs a name (for example \"printer\"). The Description and "
+"Location fields do not need to be filled in. They are comments for the users."
+msgstr ""
+"¸ðµç ÇÁ¸°ÅÍ´Â À̸§ÀÌ ÀÖ¾î¾ß ÇÕ´Ï´Ù.(¿¹, lp)\n"
+"¼³¸í°ú À§Ä¡ ºÎºÐÀ» ÀÔ·ÂÇÒ ÇÊ¿ä´Â ¾ø½À´Ï´Ù.\n"
+"±×°ÍµéÀº ´ÜÁö »ç¿ëÀÚµéÀ» À§ÇÑ ºÎ¿¬¼³¸íÀÏ »ÓÀÔ´Ï´Ù."
+
+#: ../../help.pm:1
#, c-format
-msgid "64 MB or more"
-msgstr "16 MB ÀÌ»ó"
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to setup a new printer. The interface presented there is\n"
+"similar to the one used during installation."
+msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+msgid "Bhutan"
+msgstr "ºÎź"
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "16 MB"
-msgstr "16 MB"
+msgid "Network interface"
+msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+msgid "Reading printer data..."
+msgstr "ÇÁ¸°ÅÍ µ¥ÀÌÅÍ Àд Áß ..."
-#: ../../Xconfig/card.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+msgid "Korean keyboard"
+msgstr "ÇÑ±Û Å°º¸µå"
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+msgid "Not connected"
+msgstr "¿¬°á ¾ÈµÊ"
-#: ../../Xconfig/card.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+msgid "Greek"
+msgstr "±×¸®½º"
-#: ../../Xconfig/card.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "512 kB"
-msgstr "512 kB"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
+"\\fP = NONE no issues are\n"
+"allowed else only /etc/issue is allowed."
+msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+msgid "Saint Kitts and Nevis"
+msgstr ""
-#: ../../Xconfig/main.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-"%s"
-msgstr ""
-"º¯°æ»çÇ×À» ÀúÀåÇÒ±î¿ä?\n"
-"ÇöÀç ¼³Á¤:\n"
+"ssh -i %s %s\\@%s\n"
"\n"
-"%s"
+"without being prompted for a password."
+msgstr ""
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
+#: ../../any.pm:1
#, c-format
-msgid "Options"
-msgstr "¿É¼Çµé"
+msgid "Enable OF Boot?"
+msgstr "OF ºÎÆà Çã¿ë?"
-#: ../../Xconfig/main.pm:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "Test"
-msgstr "Å×½ºÆ®"
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "16MB ¹Ì¸¸ÀÇ ÆÄƼ¼Ç¿¡´Â JFS ÆÄÀÏ ½Ã½ºÅÛÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù."
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Resolution"
-msgstr "ÇØ»óµµ"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "¸ð´ÏÅÍ ¼öÁ÷ÁÖÆļö: %s\n"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Monitor"
-msgstr "¸ð´ÏÅÍ"
+msgid "path"
+msgstr "°æ·Î"
-#: ../../Xconfig/main.pm:1
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "Graphic Card"
-msgstr "±×·¡ÇÈ Ä«µå"
+msgid "Mount point"
+msgstr "¸¶¿îÆ® À§Ä¡"
-#: ../../Xconfig/monitor.pm:1
+#: ../../Xconfig/test.pm:1
#, c-format
-msgid "Vertical refresh rate"
-msgstr "¼öÁ÷ ÁÖÆļö"
+msgid ""
+"An error occurred:\n"
+"%s\n"
+"Try to change some parameters"
+msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Horizontal refresh rate"
-msgstr "¼öÆò ÁÖÆļö"
+msgid "Restore system"
+msgstr "½Ã½ºÅÛ º¹±¸"
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
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."
+"These are the machines on which the locally connected scanner(s) should be "
+"available:"
msgstr ""
-"¼öÁ÷ ±×¸®°í ´õ¿í Áß¿äÇÑ ¼öÆò ÁÖÆļö¶ó´Â µÎ °³ÀÇ Áß¿äÇÑ ÀÎÀÚ°¡ ÀÖ½À´Ï´Ù. ¼öÁ÷ "
-"ÁÖÆļö´Â \n"
-"Àüüȭ¸éÀÌ °»½ÅµÇ´Â ÁÖ±âÀ̸ç, ¼öÆò ÁÖÆļö´Â ½ºÄµ¶óÀεéÀÌ °»½ÅµÇ´Â ÁÖ±âÀÔ´Ï"
-"´Ù.\n"
-"\n"
-"¸Å¿ì Áß¿ä: ´ÔÀÇ ½ÇÁ¦ ¸ð´ÏÅÍÀÇ ´É·ÂÄ¡¸¦ ³Ñ¾î¼­´Â ¸ðµ¨À» ¼±ÅÃÇÏÁö ¸¶¼¼¿ä: \n"
-"´ÔÀÇ ¸ð´ÏÅÍ°¡ ÈÑ¼ÕµÉ ¼ö ÀÖ½À´Ï´Ù.\n"
-"Àß ¸ð¸£°Ú´Ù¸é, ¾ÈÀüÇÏ°Ô ³·Àº ¼³Á¤°ªÀ» ¼±ÅÃÇϼ¼¿ä"
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakpxe:1
#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgid "The DHCP end ip"
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "Vendor"
-msgstr "»óÇ¥"
+msgid "Another one"
+msgstr "¶Ç ´Ù¸¥ °Í"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Drakbackup"
+msgstr "µå·¹ÀÌÅ© ¹é¾÷"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Colombia"
+msgstr "ÄÝ·Òºñ¾Æ"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play"
msgstr "Ç÷¯±×¾ØÇ÷¹ÀÌ"
-#: ../../Xconfig/monitor.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Choose a monitor"
-msgstr "¸ð´ÏÅ͸¦ ¼±ÅÃÇϼ¼¿ä"
+msgid "Reunion"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "Graphics card: %s"
-msgstr "±×·¡ÇÈ Ä«µå: %s"
+msgid "Details"
+msgstr "»ó¼¼¼³¸í"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "ÇØ»óµµ¿Í »ö»óÀ» ¼±ÅÃÇϼ¼¿ä"
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "º¸¾È»óÀÇ ÀÌÀ¯·Î ÀÌÁ¦ ¿¬°áÀ» ²÷À» °ÍÀÔ´Ï´Ù."
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Resolutions"
-msgstr "ÇØ»óµµ"
+msgid "Synchronization tool"
+msgstr "µ¿±âÈ­ µµ±¸"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "40¾ï »ö»ó (32 bits)"
+msgid "Checking your system..."
+msgstr "½Ã½ºÅÛ °Ë»ç Áß..."
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "õ6¹é¸¸ »ö»ó (24bits)"
+msgid "Print"
+msgstr "Àμâ"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "6¸¸5õ »ö»ó (16 bits)"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "3¸¸2õ »ö»ó (15 bits)"
+msgid "Mongolia"
+msgstr "¸ù°ñ¶ó"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 »ö»ó (8 bits)"
+msgid "Mounted\n"
+msgstr "¸¶¿îÆ® µÇ¾úÀ½\n"
-#: ../../Xconfig/test.pm:1
+#: ../../help.pm:1
#, fuzzy, c-format
-msgid "Is this the correct setting?"
-msgstr "ÀÌ°ÍÀÌ ¸Â½À´Ï±î?"
+msgid "Graphical Interface"
+msgstr "½ÃÀ۽à ¹Ù·Î X ½ÇÇà"
-#: ../../Xconfig/test.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Users"
+msgstr "»ç¿ëÀÚµé º¹±¸"
+
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d ÃÊ"
+msgid "Encryption key for %s"
+msgstr "¾Ïȣȭ Å°"
-#: ../../Xconfig/test.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
+"Æ÷Æ®¸ÊÆÛ(portmapper)´Â NFS¿Í NIS °°Àº ÇÁ·ÎÅäÄÝ¿¡ ÀÇÇØ »ç¿ëµÇ´Â\n"
+"RPC ¿¬°áÀ» °ü¸®ÇÕ´Ï´Ù. Æ÷Æ®¸Ê ¼­¹ö´Â RPC ¸ÞÄ¿´ÏÁòÀ» ÀÌ¿ëÇÏ´Â ÇÁ·ÎÅäÄÝ¿ë ¼­¹ö"
+"·Î\n"
+"»ç¿ëµÇ°í ÀÖ´Â ÄÄÇ»ÅÍ¿¡´Â ¹Ýµå½Ã ½ÇÇàµÇ°í ÀÖ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../Xconfig/test.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
+msgid "Detected hardware"
+msgstr "°Ë»öµÈ Çϵå¿þ¾î"
-#: ../../Xconfig/test.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "ÀÌ ¼³Á¤À» Å×½ºÆ®ÇØ º¸½Ã°Ú½À´Ï±î?"
+msgid "Mauritius"
+msgstr ""
-#: ../../Xconfig/test.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Test of the configuration"
-msgstr "¼³Á¤ Å×½ºÆ®"
+msgid "Myanmar (Burmese)"
+msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Enabling swap partition %s"
+msgstr "%s ÆÄƼ¼Ç Æ÷¸ËÁß"
+
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"loopback·Î »ç¿ëÇϰųª Å©±â¸¦ Á¶Á¤ÇÒ FAT ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù. (¶Ç´Â µð½ºÅ© °ø°£"
+"ÀÌ ºÎÁ·ÇÕ´Ï´Ù.)"
+
+#: ../../keyboard.pm:1
#, c-format
-msgid "What norm is your TV using?"
-msgstr "TV Ä«µå°¡ ¾î¶² ³ðÀ» »ç¿ëÇմϱî?"
+msgid "Armenian (old)"
+msgstr "¹Ì±¹ (±¸¹öÀü)"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
msgstr ""
+"ÇÁ¸°ÅÍ ¡¸%s¡¹°¡ ÀÌ¹Ì %sÇÏ¿¡ Á¸ÀçÇÔ´Ï´Ù.\n"
+"µ¤¾î ¾µ·Á¸é ¡¸Àü¼Û¡¹À» ´©¸£¼¼¿ä.\n"
+"»õ À̸§À» ÀÔ·ÂÇϰųª ÀÌ ÇÁ¸°Å͸¦ Áö³ªÄ¥ ¼öµµ ÀÖ½À´Ï´Ù."
-#: ../../Xconfig/various.pm:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(XFree) upon booting.\n"
-"Would you like XFree to start when you reboot?"
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform."
msgstr ""
-"ºÎÆýÿ¡ ÀÚµ¿À¸·Î XÀ©µµ¿ì°¡ ½ÃÀ۵ǵµ·Ï ÇÒ¼ö ÀÖ½À´Ï´Ù.\n"
-"´Ù½Ã ºÎÆÃÇßÀ»¶§ ÀÚµ¿À¸·Î XÀ©µµ°¡ ½ÃÀÛµÇ±æ ¿øÇϼ¼¿ä?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "½ÃÀ۽à ¹Ù·Î X ½ÇÇà"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 µå¶óÀ̹ö: %s\n"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 ¼­¹ö: %s\n"
+msgid ", host \"%s\", port %s"
+msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Resolution: %s\n"
-msgstr "ÇØ»óµµ: %s\n"
+msgid "Monaco"
+msgstr "¸ð³ªÄÚ"
-#: ../../Xconfig/various.pm:1
+#: ../../fs.pm:1
#, c-format
-msgid "Color depth: %s\n"
-msgstr "»ö»ó ½Éµµ: %s\n"
+msgid "%s formatting of %s failed"
+msgstr "%s Æ÷¸Ë ½ÇÆÐ(µå¶óÀ̺ê %s)"
-#: ../../Xconfig/various.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "ºñµð¿À ¸Þ¸ð¸®: %s kB\n"
+msgid "Partitioning failed: %s"
+msgstr "ÆÄƼ¼Ç ³ª´©±â ½ÇÆÐ: %s"
-#: ../../Xconfig/various.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Graphics card: %s\n"
-msgstr "±×·¡ÇÈ Ä«µå: %s\n"
+msgid "Canada (cable)"
+msgstr "ij³ª´Ù (ÄÉÀ̺í)"
-#: ../../Xconfig/various.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "¸ð´ÏÅÍ ¼öÁ÷ÁÖÆļö: %s\n"
+msgid "Upgrade"
+msgstr "¾÷±×·¹À̵å"
-#: ../../Xconfig/various.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "¸ð´ÏÅÍ ¼öÆòÁÖÆļö: %s\n"
+msgid "Workstation"
+msgstr "¿öÅ©½ºÅ×À̼Ç"
-#: ../../Xconfig/various.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Monitor: %s\n"
-msgstr "¸ð´ÏÅÍ: %s\n"
+msgid ""
+"Installing package %s\n"
+"%d%%"
+msgstr ""
+" %s ÆÑÅ°Áö ¼³Ä¡ Áß... \n"
+"%d%%"
-#: ../../Xconfig/various.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Mouse device: %s\n"
-msgstr "¸¶¿ì½º ÀåÄ¡: %s\n"
+msgid "Kyrgyzstan"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "¸¶¿ì½º Á¾·ù: %s\n"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "¹®¼­"
-#: ../../Xconfig/various.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Å°º¸µå ÇüÅÂ: %s\n"
+msgid "Anacron is a periodic command scheduler."
+msgstr "AnancronÀº ÁÖ±âÀûÀÎ ¸í·É ½ºÄÉÁì·¯ ÀÔ´Ï´Ù."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Options: %s"
-msgstr "¿É¼Çµé: %s"
+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"
+"±×¸®°í ³ª¼­, ``¸¶¿îÆ® À§Ä¡''¸¦ Ŭ¸¯ÇÑÈÄ '/'À¸·Î ¼³Á¤Çϼ¼¿ä."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../network/network.pm:1
#, c-format
-msgid "Mount point: "
-msgstr "¸¶¿îÆ® À§Ä¡: "
+msgid "Proxy should be http://..."
+msgstr "ÇÁ¶ô½Ã À̸§Àº httP://... À̾î¾ß ÇÕ´Ï´Ù."
-#: ../../diskdrake/dav.pm:1
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
-msgid "Server: "
-msgstr "¼­¹ö:"
+msgid "South Africa"
+msgstr "³²¾ÆÇÁ¸®Ä«"
-#: ../../diskdrake/dav.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "The URL must begin with http:// or https://"
+msgid "Western Sahara"
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "WebDAV ¼­¹ö URLÀ» ÀÔ·ÂÇϼ¼¿ä."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Mount point"
-msgstr "¸¶¿îÆ® À§Ä¡"
+msgid "Etherboot Floppy/ISO"
+msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Server"
-msgstr "¼­¹ö"
+msgid "Modify printer configuration"
+msgstr "ÀÎÅÍ³Ý ¼³Á¤ º¯°æ"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Mount"
-msgstr "¸¶¿îÆ®"
+msgid "Choose a partition"
+msgstr "ÆÄƼ¼Ç ¼±ÅÃ"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Unmount"
-msgstr "¾ð¸¶¿îÆ®"
+msgid "Edit current rule"
+msgstr "ÇöÀç ±ÔÄ¢ ÆíÁý"
-#: ../../diskdrake/dav.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "New"
-msgstr "»õ·Î ¸¸µé±â"
+msgid "%s"
+msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "´ë½Å¿¡ ¡¸%s¡¹¸¦ »ç¿ëÇÕ´Ï´Ù"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Type"
-msgstr "À¯Çü"
+msgid "Please test the mouse"
+msgstr "¸¶¿ì½º¸¦ Å×½ºÆ®Çϼ¼¿ä."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "¡¸¾ð¸¶¿îÆ®¡¹¸¦ ¸ÕÀú »ç¿ëÇϼ¼¿ä"
+msgid "Other Media"
+msgstr "´Ù¸¥ ¸Åü"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Delete"
-msgstr "»èÁ¦"
+msgid "Backup system files"
+msgstr "½Ã½ºÅÛ ÆÄÀÏ ¹é¾÷"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Create"
-msgstr "»ý¼º"
+msgid "Logitech MouseMan+"
+msgstr "·ÎÁöÅØ ¸¶¿ì½º¸Ç/ÆÛ½ºÆ®¸¶¿ì½º (½Ã¸®¾ó)"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Filesystem types:"
-msgstr "ÆÄÀϽýºÅÛ À¯Çü:"
+msgid "Sector"
+msgstr "¼½ÅÍ"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Empty"
-msgstr "ºó°ø°£"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "Windows"
-msgstr "À©µµ¿ìÁî µµ¸ÞÀÎ"
+msgid "Qatar"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "HFS"
-msgstr "HFS"
+msgid "LDAP Base dn"
+msgstr "LDAP ±â¹Ý DN"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "µð½ºÅ© °ø°£ÀÌ ºÎÁ·Çϱ⠶§¹®¿¡ ÀÌ ÆÑÅ°Áö¸¦ ¼±ÅÃÇÒ ¼ö ¾ø½À´Ï´Ù."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "½º¿Ò"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "generate auto-install floppy"
+msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ µð½ºÅ© »ý¼º"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Journalised FS"
-msgstr "Àú³ÎÈ­ FS"
+msgid "Dialing mode"
+msgstr "´ÙÀÌ¾ó¸µ ¸ðµå"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+msgid "File sharing"
+msgstr "ÆÄÀÏ °øÀ¯"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "No hard drives found"
-msgstr "ÇÏµå µð½ºÅ©¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù."
+msgid "Clean /tmp at each boot"
+msgstr "ºÎÆýà /tmp µð·ºÅ丮 ÀÚµ¿ û¼Ò"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Please click on a partition"
-msgstr "ÆÄƼ¼ÇÀ» Ŭ¸¯Çϼ¼¿ä"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+msgid "Malawi"
msgstr ""
-"ÇϳªÀÇ Å« µµ½º ÆÄƼ¼ÇÀ» °¡Áö°í ÀÖ½À´Ï´Ù.\n"
-"(ÀϹÝÀûÀ¸·Î ¸¶ÀÌÅ©·Î¼ÒÇÁÆ®ÀÇ µµ½º/À©µµ¿ìÁî¿¡¼­ »ç¿ë).\n"
-"¸ÕÀú ±× ÆÄƼ¼ÇÀÇ Å©±â¸¦ Á¶Á¤ÇÒ °ÍÀ» ±ÇÀåÇÕ´Ï´Ù.\n"
-"(±×°ÍÀ» Ŭ¸¯ÇÑÈÄ, \"Å©±âÁ¶Á¤\"À» Ŭ¸¯Çϼ¼¿ä.)"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Choose action"
-msgstr "ÇൿÀ» ¼±ÅÃÇϼ¼¿ä"
+msgid "Please choose your type of mouse."
+msgstr "¸¶¿ì½º Á¾·ù¸¦ ¼±ÅÃÇϼ¼¿ä."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Wizard"
-msgstr "¸¶¹ý»ç"
+msgid "class of hardware device"
+msgstr "Çϵå¿þ¾î ÀåÄ¡ ¹üÁÖ"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
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"
+"These are the machines and networks on which the locally connected printer"
+"(s) should be available:"
msgstr ""
-"¸¸¾à aboot¸¦ »ç¿ëÇÒ °èȹÀ̶ó¸é, µð½ºÅ©ÀÇ ½ÃÀۺκп¡ ÃæºÐÇÑ °ø°£ (2048 ¼½ÅÍ "
-"¸é ÃæºÐÇÔ)\n"
-"À» ³²±âµµ·Ï ÁÖÀÇÇϼ¼¿ä."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Please make a backup of your data first"
-msgstr "¸ÕÀú µ¥ÀÌÅ͸¦ ¹é¾÷Çϼ¼¿ä."
+msgid "United Kingdom"
+msgstr "¿µ±¹"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Read carefully!"
-msgstr "ÁÖÀDZí°Ô ÀÐÀ¸¼¼¿ä!"
+msgid "running"
+msgstr "½ÇÇàÁß"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Encryption key (again)"
-msgstr "¾Ïȣȭ Å° (È®ÀÎ)"
+msgid "default"
+msgstr "±âº»°ª"
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Encryption key"
-msgstr "¾Ïȣȭ Å°"
+msgid "Indonesia"
+msgstr "Àεµ³×½Ã¾Æ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "The encryption keys do not match"
-msgstr "¾Ïȣȭ Å°°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù."
+msgid "France [SECAM]"
+msgstr "ÇÁ¶û½º [SECAM]"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "ÀÌ ¾Ïȣȭ Å°´Â ³Ê¹« ´Ü¼øÇÕ´Ï´Ù.( Àû¾îµµ %d ±ÛÀÚ´Â ³Ñ¾î¾ß ÇÕ´Ï´Ù)"
+msgid "restrict"
+msgstr "Á¦ÇÑ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../pkgs.pm:1
#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "ÆÄÀÏ ½Ã½ºÅÛ ¾Ïȣȭ Å° ¼±ÅÃ"
+msgid "must have"
+msgstr "Çʼö ÆÑÅ°Áö"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Filesystem encryption key"
-msgstr "ÆÄÀϽýºÅÛ ¾Ïȣȭ Å°"
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+"CUPS´Â ³ëº§ ¼­¹ö»óÀÇ ÇÁ¸°Åͳª ÀÚÀ¯Çü½Ä ¸í·É¾î·Î µ¥ÀÌÅ͸¦ º¸³»´Â ÇÁ¸°ÅÍ´Â Áö¿ø"
+"ÇÏÁö ¾Ê½À´Ï´Ù.\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Type: "
-msgstr "À¯Çü: "
+msgid "Senegal"
+msgstr "¼¼³×°¥"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "%d ¹ö½º»ó¿¡¼­ ID %d\n"
+msgid "Command line"
+msgstr "µµ¸ÞÀÎ À̸§"
-#: ../../diskdrake/interactive.pm:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Partition table type: %s\n"
-msgstr "ÆÄƼ¼Ç Å×À̺í À¯Çü: %s\n"
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-µð½ºÅ© %s\n"
+msgid "access to administrative files"
+msgstr "½Ã½ºÅÛ °ü¸®ÆÄÀÏ ¾×¼¼½º"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Info: "
-msgstr "Á¤º¸: "
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "À§Ä¡: %s ½Ç¸°ÅÍ, %s Çìµå, %s ¼½ÅÍ\n"
+msgid ", multi-function device on parallel port \\#%s"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Size: %s\n"
-msgstr "Å©±â: %s\n"
+msgid ""
+"Arguments: (val)\n"
+"\n"
+"Set the shell timeout. A value of zero means no timeout."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Read-only"
+msgid "Montserrat"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "Device: "
-msgstr "ÀåÄ¡: "
+msgid "Automatic dependencies"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"ÀÌ Æ¯º°ÇÑ ºÎÆ®½ºÆ®·¦\n"
-"ÆÄƼ¼ÇÀº ½Ã½ºÅÛÀ» \n"
-"µà¾ó ºÎÆÃÇϱâ À§ÇÑ °ÍÀÔ´Ï´Ù.\n"
+msgid "Swap"
+msgstr "½º¿Ò"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/net_monitor:1
#, fuzzy, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"ÀÌ ÆÄƼ¼ÇÀº µå¶óÀ̹ö ÆÄƼ¼ÇÀÔ´Ï´Ù.\n"
-"±×³É µÎ´Â °ÍÀÌ ÁÁ½À´Ï´Ù.\n"
+msgid "Connecting to the Internet "
+msgstr "ÀÎÅͳݿ¡ ¿¬°á"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Loopback file name: %s"
-msgstr "·çÇÁ¹é ÆÄÀÏ À̸§: %s"
+msgid "Restore Other"
+msgstr "´Ù¸¥ °Íµé º¹±¸"
-#: ../../diskdrake/interactive.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "RAID-disks %s\n"
-msgstr "·¹À̵å-µð½ºÅ© %s\n"
+msgid "TV card"
+msgstr "TV Ä«µå"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Chunk size %s\n"
-msgstr "Å©±â %s\n"
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "»ï¹Ù/À©µµ¿ìÁî 95/98/NT»óÀÇ ÇÁ¸°ÅÍ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Level %s\n"
-msgstr "%s µî±Þ\n"
+msgid ", "
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
+"Arguments: (umask)\n"
+"\n"
+"Set the root umask."
msgstr ""
-"±âº»ÀûÀ¸·Î ºÎÆõǴ ÆÄƼ¼Ç\n"
-" (lilo¸¦ À§ÇÑ°ÍÀÌ ¾Æ´Ï¶ó MS-DOS boot¸¦ À§ÇÑ°ÍÀÓ)\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remove selected host/network"
+msgstr "¼±Åà Ç׸ñ Á¦°Å"
+
+#: ../../services.pm:1
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-"·çÇÁ¹é ÆÄÀÏ(µé):\n"
-" %s\n"
+"Æ÷½ºÆ®ÇȽº(Postfix)´Â ÄÄÇ»Å͵鰣¿¡ ¸ÞÀÏÀ» ÁÖ°í¹Þ´Â \n"
+"¸ÞÀÏ Àü¼Û ¿¡ÀÌÀüÆ® ÇÁ·Î±×·¥ÀÔ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "RAID md%s\n"
-msgstr "·¹À̵å ÀåÄ¡ %s\n"
+msgid "Disconnection from the Internet failed."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Mounted\n"
-msgstr "¸¶¿îÆ® µÇ¾úÀ½\n"
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Æ÷¸Ë ¾ÈµÇ¾úÀ½\n"
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Network Hotplugging"
+msgstr "³×Æ®¿÷ ȯ°æ ¼³Á¤"
-#: ../../diskdrake/interactive.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Formatted\n"
-msgstr "Æ÷¸ËµÇ¾úÀ½\n"
+msgid "if set to yes, reports check result to tty."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "½Ç¸°´õ %d¿¡¼­ %d±îÁö\n"
+msgid "Restore From CD"
+msgstr "CD·ÎºÎÅÍ º¹±¸"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ¼½ÅÍ"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid ""
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
+msgstr ""
+"ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯¸¦ À§Çؼ­ ´ÔÀÇ ÄÄÇ»Å͸¦ ¼³Á¤ÇÏ·Á°í ÇÕ´Ï´Ù.\n"
+"ÀÌ·ÎÀÎÇØ, Áö¿ª ³×Æ®¿÷ÀÇ ´Ù¸¥ ÄÄÇ»Å͵鵵 ÀÌ ÄÄÇ»ÅÍÀÇ ÀÎÅÍ³Ý ¿¬°áÀ» »ç¿ëÇÒ ¼ö "
+"ÀÖ°Ô µË´Ï´Ù.\n"
+"\n"
+"ÁÖÀÇ: Áö¿ª ³×Æ®¿÷(·£)À» ¸ñÀûÀ¸·Î ¼³Ä¡µÈ ³×Æ®¿÷ ¾î´ðÅÍ°¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/ethernet.pm:1
#, c-format
-msgid "Size: %s"
-msgstr "Å©±â: %s"
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet."
+msgstr "¾î¶² ¾î´ðÅÍ·Î ÀÎÅͳݿ¡ ¿¬°áÇÒ °ÍÀÎÁö ¼±ÅÃÇϼ¼¿ä."
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Start: sector %s\n"
-msgstr "½ÃÀÛ: ¼½ÅÍ %s\n"
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Name: "
-msgstr "À̸§:"
+msgid ""
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS µå¶óÀÌºê ¹®ÀÚ: %s (´ÜÁö ÃßÃøÀÏ »ÓÀÓ)\n"
+msgid "Internet Connection Sharing is now disabled."
+msgstr "ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ ±ÝÁöµÇ¾ú½À´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "partition %s is now known as %s"
+msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "%s Á¦°Å Áß"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Copying %s"
-msgstr "%s º¹»ç Áß"
+msgid "Latin American"
+msgstr "¶óƾ ¾Æ¸Þ¸®Ä«"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "»õ ÆÄƼ¼ÇÀ¸·Î ÆÄÀÏ ¿È±â´Â Áß"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Japanese text printing mode"
+msgstr "Àμâ½Ã½ºÅÛ º¯°æ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-"µð·ºÅ丮 %s¿¡´Â ÀÌ¹Ì µ¥ÀÌÅÍ°¡ ÀÖ½À´Ï´Ù.\n"
-"(%s)"
+msgid "Old device file"
+msgstr "¿À·¡µÈ ÀåÄ¡ ÆÄÀÏ"
#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Hide files"
-msgstr "ÆÄÀÏ ¼û±â±â"
+msgid "Info: "
+msgstr "Á¤º¸: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "Move files to the new partition"
-msgstr "»õ ÆÄƼ¼ÇÀ¸·Î ÆÄÀÏ ¿È±â±â"
+msgid "Button `%s': %s"
+msgstr "¹öÆ° ¡¸%s¡¹: %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
+#: ../../standalone/service_harddrake:1
#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "%s ÆÄƼ¼ÇÀ» Æ÷¸ËÇϸé, ¸ðµç µ¥ÀÌŸ¸¦ ÀÒ°Ô µË´Ï´Ù."
+msgid "Please wait"
+msgstr "±â´Ù·Á ÁÖ¼¼¿ä"
-#: ../../diskdrake/interactive.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "º¯°æµÈ°ÍÀ» Àû¿ëÇϱâ À§Çؼ± ¸®ºÎÆÃÀÌ ÇÊ¿äÇÕ´Ï´Ù."
+msgid "Genius NetMouse"
+msgstr "Áö´Ï¾î½º ³Ý¸¶¿ì½º"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "%s µå¶óÀ̺êÀÇ ÆÄƼ¼Ç Å×À̺íÀ» ÀúÀåÇÕ´Ï´Ù."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "None"
+msgstr "¿Ï·á"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "ÆÑÅ°Áö %s°¡ ÇÊ¿äÇÕ´Ï´Ù. ¼³Ä¡ÇÏ°Ú½À´Ï±î?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The entered IP is not correct.\n"
+msgstr "¸ðµ¨ÀÌ Á¤È®ÇÕ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "What type of partitioning?"
-msgstr "¾î¶² À¯ÇüÀÇ ÆÄƼ¼ÇÀԴϱî?"
+msgid "Ethernet Card"
+msgstr "ÀÌ´õ³Ý Ä«µå"
-#: ../../diskdrake/interactive.pm:1
+#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "ÁÖÀÇ : ÀÌ Á¶ÀÛÀº À§ÇèÇÕ´Ï´Ù."
+msgid "Info"
+msgstr "Á¤º¸"
-#: ../../diskdrake/interactive.pm:1
+#: ../../help.pm:1 ../../install_steps_gtk.pm:1
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
-msgid "chunk size"
-msgstr "Å©±â"
+msgid "Install"
+msgstr "¼³Ä¡"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "·¹º§"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", 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 \"%s\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+"ÀÌ Çϵåµð½ºÅ©»óÀÇ ¸ðµç µ¥ÀÌÅÍ¿Í ÆÄƼ¼ÇÀ» »èÁ¦ÇÏ·Á¸é, ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä.\n"
+"!!ÁÖÀÇÇϼ¼¿ä!!ÀÏ´Ü ¡¸È®ÀΡ¹À» ´©¸£°Ô µÇ¸é, MS À©µµ¿ìÁî µ¥ÀÌÅи£ Æ÷ÇÔÇÏ¿© ÀÌ "
+"µð½ºÆ®»óÀÇ ¸ðµç\n"
+"µ¥ÀÌÅÍ¿Í ÆÄƼ¼ÇÀº º¹±¸°¡ ºÒ°¡´ÉÇØ Áý´Ï´Ù.\n"
+"\n"
+"ÀÌ ÀÛ¾÷À» Ãë¼ÒÇÏ·Á¸é, Áö±Ý ¡¸Ãë¼Ò¡¹¸¦ ´©¸£¼¼¿ä. ¾î¶°ÇÑ µ¥ÀÌÅÍ¿Í ÆÄƼ¼Çµµ\n"
+"¼Õ»óµÇÁö ¾ÊÀ» °ÍÀÔ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
+#: ../../steps.pm:1
#, c-format
-msgid "device"
-msgstr "ÀåÄ¡"
+msgid "Exit install"
+msgstr "¼³Ä¡ Á¾·á"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Various"
-msgstr "´Ù¾çÇÑ"
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+"¸ðµç °ÍÀÌ ¼³Á¤µÇ¾ú½À´Ï´Ù.\n"
+"ÀÌÁ¦ ÀÚµ¿ ³×Æ®¿÷ ¼³Á¤±â´É(DHCP)À¸·Î Áö¿ª ³×Æ®¿ö»óÀÇ ´Ù¸¥ ÄÄÇ»ÅÍ¿Í ÀÎÅÍ³Ý ¿¬"
+"°á °øÀ¯¸¦ ÇÒ ¼ö ÀÖ½À´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Mount options"
-msgstr "¸¶¿îÆ® ¿É¼Çµé:"
+msgid "Remote CUPS server"
+msgstr "¿ø°Ý CUPS ¼­¹ö"
-#: ../../diskdrake/interactive.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "File already exists. Use it?"
-msgstr "ÆÄÀÏÀÌ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù. ±×°ÍÀ» »ç¿ëÇմϱî?"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "´Ù¸¥ ·çÇÁ¹éÀÌ ÀÌ ÆÄÀÏÀ» »ç¿ëÇÏ°í ÀÖ½À´Ï´Ù, ´Ù¸¥ °ÍÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä."
+msgid "Sun - Mouse"
+msgstr "Sun - ¸¶¿ì½º"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Give a file name"
-msgstr "ÆÄÀÏ À̸§À» ÀÔ·ÂÇϼ¼¿ä."
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
+msgstr ""
+"½Ã½ºÅÛ¿¡ ¿ÀÁ÷ ÇϳªÀÇ ¼³Á¤µÈ ³×Æ®¿÷ ¾î´ðÅÍ°¡ ÀÖ½À´Ï´Ù:\n"
+"\n"
+"%s\n"
+"\n"
+"±× ¾î´ðÅÍ·Î Áö¿ª ³×Æ®¿÷À» ¼³Á¤ÇÒ °ÍÀÔ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Filesystem type: "
-msgstr "ÆÄÀϽýºÅÛ À¯Çü: "
+msgid "Minimal install"
+msgstr "ÃÖ¼Ò ¼³Ä¡"
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Size in MB: "
-msgstr "Å©±â(MB) :"
+msgid "Ethiopia"
+msgstr "¿¡Æ¼¿ÀÇǾÆ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Loopback file name: "
-msgstr "·çÇÁ¹é ÆÄÀÏ À̸§: "
+msgid "Devanagari"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Loopback"
-msgstr "·çÇÁ¹é"
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "ÀÌ ÆÄƼ¼ÇÀº loopbackÀ¸·Î »ç¿ëµÉ ¼ö ¾ø½À´Ï´Ù."
+msgid "Total size: %d / %d MB"
+msgstr "Àüü Å©±â: %d / %d MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM À̸§?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "disabled"
+msgstr "ÇØÁ¦"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "»õ·Î ¸¸µé±â"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Search for new scanners"
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Ãß°¡ÇÒ LVM¸¦ ¼±ÅÃÇϼ¼¿ä"
+msgid "Disabling servers..."
+msgstr "¼­¹ö ÁßÁö Áß..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Ãß°¡ÇÒ ±âÁ¸ RAID¸¦ ¼±ÅÃÇϼ¼¿ä."
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr ""
+"¹é¾÷°£ ½Ã°£ °£°ÝÀ»\n"
+"¼±ÅÃÇϼ¼¿ä."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Moving partition..."
-msgstr "ÆÄƼ¼Ç À̵¿ Áß..."
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%s ¼³Ä¡ ½ÇÆÐ. ´ÙÀ½°ú °°Àº ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù:"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Moving"
-msgstr "À̵¿ Áß"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "¾î¶² ¼½Å͸¦ À̵¿ÇÏ°í ½ÍÀ¸½Ê´Ï±î?"
+#: ../../install_any.pm:1
+#, fuzzy, 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 ones could be found. In that case, you must make sure\n"
+"to upgrade 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"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Sector"
-msgstr "¼½ÅÍ"
+msgid "Network printer (TCP/Socket)"
+msgstr "³×Æ®¿÷ ÇÁ¸°ÅÍ (TCP/¼ÒÄÏ)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "¾î¶² µð½ºÅ©¸¦ À̵¿ÇÏ°í ½ÍÀ¸½Ê´Ï±î?"
+msgid "Backup User files..."
+msgstr "»ç¿äÀÚ ÆÄÀÏ ¹é¾÷..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../steps.pm:1
#, c-format
-msgid "Move"
-msgstr "À̵¿"
+msgid "Install system"
+msgstr "½Ã½ºÅÛ ¼³Ä¡"
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "New size in MB: "
-msgstr "»õ·Î¿î ¿ë·®(MB):"
+msgid "First DNS Server (optional)"
+msgstr "ù¹ø° DNS ¼­¹ö (¿É¼Ç)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Choose the new size"
-msgstr "»õ·Î¿î Å©±â¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä"
+msgid ""
+"Alternatively, you can specify a device name/file name in the input line"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Resize"
-msgstr "Å©±âÁ¶Á¤"
+msgid "dhcpd Config..."
+msgstr "DHCPD ¼³Á¤ Áß..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "%s ÆÄƼ¼ÇÀÇ Å©±â¸¦ º¯°æÇϸé, ¸ðµç µ¥ÀÌŸ¸¦ ÀҰԵ˴ϴÙ."
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "¼³Á¤Àº ÀÌ¹Ì ¿Ï·áµÇ¾úÁö¸¸, ÇöÀç ÇØÁ¦µÈ »óÅÂÀÔ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "ÀÌ ÆÄƼ¼ÇÀÇ ¸ðµç µ¥ÀÌŸ¸¦ ¹é¾÷ÇÏ¿©¾ß ÇÕ´Ï´Ù."
+msgid "LILO/grub Installation"
+msgstr "LILO/GRUB ¼³Ä¡"
-#: ../../diskdrake/interactive.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "This partition is not resizeable"
-msgstr "ÀÌ ÆÄƼ¼ÇÀº Å©±âº¯°æÀÌ Çã¿ëµÇÁö ¾Ê½À´Ï´Ù."
+msgid "Israeli"
+msgstr "À̽º¶ó¿¤"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "µµ½º ÆÄÀϽýºÅÛÀÇ ¹üÀ§ °è»êÁß"
+msgid "load setting"
+msgstr "¼³Á¤ Àбâ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "%s¸¦ ¾îµð¿¡ ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+msgid "Floppy can be removed now"
msgstr ""
-"ÀÌ ÆÄƼ¼ÇÀº loopbackÀ¸·Î ¼³Á¤µÇ¾î ÀÖÀ¸¹Ç·Î ¸¶¿îÆ® Æ÷ÀÎÆ®¸¦ º¯°æÇÒ¼ö ¾ø½À´Ï"
-"´Ù.\n"
-"loopbackÀ» ¸ÕÀú Á¦°ÅÇϼ¼¿ä."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "ÀåÄ¡ %s¸¦ ¾îµð¿¡ ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"
-#: ../../diskdrake/interactive.pm:1
+#: ../../help.pm:1
#, fuzzy, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "%sÆÄÀÏÀ» ¾îµð¿¡ ·çÇÁ¹éÀ¸·Î ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"
+msgid "Truly minimal install"
+msgstr "ÃÖ¼Ò ¼³Ä¡"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Denmark"
+msgstr "µ§¸¶Å©"
#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "EXT2¿¡¼­ EXT3·Î º¯°æ"
+msgid "Moving partition..."
+msgstr "ÆÄƼ¼Ç À̵¿ Áß..."
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Which filesystem do you want?"
-msgstr "¾î¶² ÆÄÀÏ ½Ã½ºÅÛÀ» ¿øÇϼ¼¿ä?"
+msgid "(This) DHCP Server IP"
+msgstr "DHCP ¼­¹ö IP"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/test.pm:1
#, c-format
-msgid "Change partition type"
-msgstr "ÆÄƼ¼Ç À¯Çü º¯°æ"
+msgid "Test of the configuration"
+msgstr "¼³Á¤ Å×½ºÆ®"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
+
+#: ../../help.pm:1
#, c-format
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "%sÀÇ ÆÄƼ¼Ç À¯ÇüÀ» º¯°æÈÄ ÀÌ ÆÄƼ¼Ç³»ÀÇ ¸ðµç ÀڷḦ ÀÒ°Ô µË´Ï´Ù."
+"If you told the installer that you wanted to individually select packages,\n"
+"it will present a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right to let you know the purpose of the package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you will be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandrake Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that that\n"
+"security holes were 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 \"%s\". Clicking \"%s\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default during boot. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages have relationships between each other such\n"
+"that installation of a package requires that some other program is also\n"
+"rerquired to be installed. The installer can determine which packages are\n"
+"required to satisfy a dependency to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert a floppy disk previously created at the\n"
+"end of another installation. See the second tip of last step on how to\n"
+"create such a floppy."
+msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Remove the loopback file?"
-msgstr "·çÇÁ¹é ÆÄÀÏÀ» Á¦°ÅÇմϱî?"
+msgid "Choose your filesystem encryption key"
+msgstr "ÆÄÀÏ ½Ã½ºÅÛ ¾Ïȣȭ Å° ¼±ÅÃ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"You can't create a new partition\n"
-"(since you reached the maximal number of primary partitions).\n"
-"First remove a primary partition and create an extended partition."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Preference: "
-msgstr "»ç¿ëÀÚ Á¤ÀÇ"
+msgid "Andorra"
+msgstr "¾Èµµ¶ó"
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Start sector: "
-msgstr "½ÃÀÛ ¼½ÅÍ: "
+msgid "Sierra Leone"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Create a new partition"
-msgstr "»õ ÆÄƼ¼Ç ¸¸µé±â"
+msgid "Botswana"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "·çÇÁ¹éÀ¸·Î »ç¿ë"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "(default value: %s)"
+msgstr " (±âº»°ª)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Modify RAID"
-msgstr "RAID ¼öÁ¤"
+msgid "Alternative test page (Letter)"
+msgstr "´Ù¸¥ ½ÃÇè ÆäÀÌÁö (Letter)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Remove from LVM"
-msgstr "LVMÀ¸·ÎºÎÅÍ Á¦°Å"
+msgid ""
+"DHCP Server Configuration.\n"
+"\n"
+"Here you can select different options for the DHCP server configuration.\n"
+"If you don't know the meaning of an option, simply leave it as it is.\n"
+"\n"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "RAID·ÎºÎÅÍ Á¦°Å"
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Choose an X server"
+msgstr "X ¼­¹ö ¼±ÅÃ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Add to LVM"
-msgstr "LVM¿¡ Ãß°¡"
+msgid "Swap partition size in MB: "
+msgstr "½º¿Ò ÆÄƼ¼Ç Å©±â(MB): "
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Add to RAID"
-msgstr "RAID¿¡ Ãß°¡"
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Format"
-msgstr "Æ÷¸Ë"
+msgid "No changes to backup!"
+msgstr "¹é¾÷ÇÒ º¯°æ»çÇ×ÀÌ ¾ø½À´Ï´Ù!"
#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Detailed information"
-msgstr "ÀÚ¼¼ÇÑ Á¤º¸"
+msgid "Formatted\n"
+msgstr "Æ÷¸ËµÇ¾úÀ½\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Trying to rescue partition table"
-msgstr "ÆÄƼ¼Ç Å×ÀÌºí º¹±¸ ½Ãµµ Áß..."
+msgid "Type of install"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "»ï¹Ù/À©µµ¿ìÁî 95/98/NT»óÀÇ ÇÁ¸°ÅÍ"
+
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
-"Ç÷ÎÇÇ µð½ºÅ©¸¦ µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä\n"
-"Ç÷ÎÇÇ µð½ºÅ©ÀÇ ¸ðµç ÀڷḦ ÀÒ°Ô µË´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Warning"
-msgstr "°æ°í"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../modules/parameters.pm:1
#, c-format
-msgid "Select file"
-msgstr "ÆÄÀÏÀ» ¼±ÅÃÇϼ¼¿ä."
+msgid "%d comma separated numbers"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
-"¹é¾÷ ÆÄƼ¼Ç Å×À̺í Å©±â°¡ °°Áö ¾Ê½À´Ï´Ù.\n"
-"°è¼Ó ÇϽðڽÀ´Ï±î?"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Å»Âø½Ä ¹Ìµð¾î ÀÚµ¿ ¸¶¿îÆ®"
+"rusers ÇÁ·ÎÅäÄÝÀº ³×Æ®¿÷»óÀÇ »ç¿ëÀÚµéÀÌ ´Ù¸¥ ÄÄÇ»ÅÍ»ó¿¡ ·Î±×ÀÎÇÑ \n"
+"»ç¿ëÀÚµéÀÇ ½Å¿øÀ» ¾Ë ¼ö ÀÖ°Ô ÇÕ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Reload partition table"
-msgstr "ÆÄƼ¼Ç Å×ÀÌºí ´Ù½Ã Àбâ"
+msgid "Automatic Steps Configuration"
+msgstr "ÀÚµ¿ °úÁ¤ ¼³Á¤±â"
-#: ../../diskdrake/interactive.pm:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Rescue partition table"
-msgstr "ÆÄƼ¼Ç Å×À̺í ÀÀ±Þóġ"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Restore partition table"
-msgstr "ÆÄƼ¼Ç Å×ÀÌºí º¹±¸"
+msgid "Barbados"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Save partition table"
-msgstr "ÆÄƼ¼Ç Å×À̺í ÀúÀå"
+msgid "Please select data to backup..."
+msgstr "¹é¾÷ÇÒ µ¥ÀÌÅ͸¦ ¼±ÅÃÇϼ¼¿ä..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"´õ ¸¹Àº ÆÄƼ¼ÇÀ» ¸¸µå½Ç·Á¸é, È®Àå ÆÄƼ¼ÇÀ» ¸¸µé¼ö ÀÖµµ·Ï ÁÖÆÄƼ¼Ç Çϳª¸¦ Áö¿ì"
-"¼¼¿ä."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "I can't add any more partition"
-msgstr "´õÀÌ»ó ÆÄƼ¼ÇÀ» Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù."
+msgid "received"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "All primary partitions are used"
-msgstr "¸ðµç ÁÖÆÄƼ¼ÇÀÌ »ç¿ëÁßÀÔ´Ï´Ù."
+msgid "/File/_New"
+msgstr "/ÆÄÀÏ(F)/»õ·Î ¸¸µé±â(_N)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The DNS Server IP"
+msgstr "DHCP ¼­¹ö IP"
+
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Hard drive information"
-msgstr "ÇÏµå µð½ºÅ© Á¤º¸"
+msgid "IP Range End:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "Auto allocate"
-msgstr "ÀÚµ¿ ÇÒ´ç"
+msgid "High"
+msgstr "³ôÀ½"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Clear all"
-msgstr "¸ðµÎ »èÁ¦"
+msgid "NoVideo"
+msgstr "ºñµð¿À ¾øÀ½"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "this field describes the device"
+msgstr "ÀÌ Çʵå´Â ÀåÄ¡¸¦ ¼³¸íÇÕ´Ï´Ù."
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "¡¸/etc/fstab¡¹ÀÇ º¯°æ»çÇ×À» ÀúÀåÇϽðڽÀ´Ï±î?"
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "ÆÄƼ¼ÇÀ» ±â·ÏÇÏÁö ¾Ê°í Á¾·áÇϽðڽÀ´Ï±î?"
+msgid "Local Printers"
+msgstr "·ÎÄà ÇÁ¸°ÅÍ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Installation image directory"
+msgstr "Xpmac (¼³Ä¡ Ç¥½Ã µå¶óÀ̹ö)"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Quit without saving"
-msgstr "ÀúÀåÇÏÁö ¾Ê°í Á¾·áÇϽðڽÀ´Ï±î?"
+msgid "NIS Server"
+msgstr "NIS ¼­¹ö"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Port: %s"
+msgstr "Æ÷Æ®"
+
+#: ../../lang.pm:1
#, c-format
-msgid "Continue anyway?"
-msgstr "°è¼ÓÇϽðڽÀ´Ï±î?"
+msgid "Spain"
+msgstr "½ºÆäÀÎ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Toggle to expert mode"
-msgstr "Àü¹®°¡ ¸ðµå·Î Àüȯ"
+msgid "This user name has already been added"
+msgstr "ÀÌ »ç¿ëÀÚ¸íÀº ÀÌ¹Ì Ãß°¡µÇ¾î ÀÖ½À´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive.pm:1
#, c-format
-msgid "Toggle to normal mode"
-msgstr "ÀÏ¹Ý ¸ðµå·Î Àüȯ"
+msgid "Choose a file"
+msgstr "ÆÄÀÏ ¼±ÅÃ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Undo"
-msgstr "µÇµ¹¸®±â"
+msgid "Apply"
+msgstr "Àû¿ë"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Auto-detect available ports"
+msgstr "ÀÚµ¿ °Ë»öµÊ"
+
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Exit"
-msgstr "Á¾·á"
+msgid "Internet Connection Sharing currently disabled"
+msgstr "ÇöÀç ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ ºÒ°¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù."
-#: ../../diskdrake/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Choose a partition"
-msgstr "ÆÄƼ¼Ç ¼±ÅÃ"
+msgid "San Marino"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Choose another partition"
-msgstr "Ãß°¡ ÆÄƼ¼Ç ¼±ÅÃ"
+msgid "Belgium"
+msgstr "º§±â¿¡"
-#: ../../diskdrake/removable.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Change type"
-msgstr "À¯Çü º¯°æ"
+msgid "Kuwait"
+msgstr "Äí¿þÀÌÆ®"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Search servers"
-msgstr "¼­¹ö °Ë»ö"
+msgid "Choose the window manager to run:"
+msgstr "»ç¿ëÇÒ À©µµ¿ì ¸Å´ÏÀú¸¦ ¼±ÅÃÇϼ¼¿ä:"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Domain"
-msgstr "µµ¸ÞÀÎ"
+msgid "sub generation of the cpu"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Username"
-msgstr "»ç¿ëÀÚ¸í"
+msgid "First Time Wizard"
+msgstr "ù ½ÇÇà ¸¶¹ý»ç"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../install_steps.pm:1
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
+"¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù. ±×·¯³ª ÀûÀýÈ÷ ó¸®ÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
+"À§ÇëÀ» °¨¼öÇÒ·Á¸é °è¼ÓÇϼ¼¿ä."
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Domain Authentication Required"
-msgstr "µµ¸ÞÀÎ ÀÎÁõÀÌ ÇÊ¿äÇÕ´Ï´Ù."
+msgid "please wait, parsing file: %s"
+msgstr "±â´Ù·Á ÁÖ¼¼¿ä. ÆÄÀÏ ºÐ¼® Áß: %s"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "¶Ç ´Ù¸¥ °Í"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Taiwan"
+msgstr "ű¹"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Which username"
-msgstr "»ç¿ëÇÒ ¾ÆÀ̵ð"
+msgid "Pakistan"
+msgstr "ÆÄÅ°½ºÅº"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Can't login using username %s (bad password?)"
+msgid ""
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../harddrake/data.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "cpu # "
-msgstr ""
+msgid "Permissions"
+msgstr "Çã°¡±Ç"
-#: ../../harddrake/data.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "SMBus controllers"
-msgstr ""
+msgid "Provider name (ex provider.net)"
+msgstr "°ø±ÞÀÚ À̸§ (¿¹ provider.net)"
-#: ../../harddrake/data.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "USB controllers"
-msgstr ""
+msgid "Version: %s\n"
+msgstr "¹öÁ¯: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "SCSI controllers"
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandrake Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
+"½Ã½ºÅÛÀÇ ÀÚ¿øÀÌ ºÎÁ·ÇÕ´Ï´Ù. ¸®´ª½º ¸Çµå·¹ÀÌÅ©¸¦ ¼³Ä¡Çϴµ¥ ÀϺΠ¹®Á¦°¡ ¹ß»ý"
+"ÇÒ\n"
+"¼öµµ ÀÖ½À´Ï´Ù. ¸¸¾à ¹®Á¦°¡ ¹ß»ýÇϸé, ÅýºÆ® ¸ðµå·Î ¼³Ä¡¸¦ ½ÃµµÇØ º¸¼¼¿ä.\n"
+"ÅؽºÆ® ¸ðµå·Î ¼³Ä¡ÇÏ·Á¸é, CDROMÀ¸·Î ºÎÆÃÈÄ ¡¸F1¡¹À» ´©¸£°í ¡¸text¡¹¶ó°í ÀÔ·Â"
+"Çϼ¼¿ä."
-#: ../../harddrake/data.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Firewire controllers"
-msgstr ""
+msgid "Use the Windows partition for loopback"
+msgstr "À©µµ¿ìÁî ÆÄƼ¼ÇÀ» ·çÇÁ¹éÀ¸·Î »ç¿ë"
-#: ../../harddrake/data.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr ""
+msgid "Armenian (typewriter)"
+msgstr "¹Ì±¹ (ŸÀÚ±â)"
-#: ../../harddrake/data.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
-msgid "Joystick"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Scanner"
-msgstr "½ºÄ³³Ê ¼±ÅÃ"
+msgid "Connection type: "
+msgstr "¿¬°á À¯Çü: "
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Unknown/Others"
-msgstr "¾Ë ¼ö ¾øÀ½|ÀϹÝ"
+msgid "Graphical interface"
+msgstr "½ÃÀ۽à ¹Ù·Î X ½ÇÇà"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
-msgid "Bridges and system controllers"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Modem"
-msgstr "¸ðµ¨"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Ethernetcard"
-msgstr "ÀÌ´õ³Ý Ä«µå"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s¸¦ »ç¿ëÇÑ 3D Çϵå¿þ¾î °¡¼Ó"
-#: ../../harddrake/data.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Processors"
-msgstr ""
+msgid "India"
+msgstr "Àεµ"
-#: ../../harddrake/data.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Webcam"
+msgid "Chad"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Soundcard"
-msgstr "»ç¿îµå Ä«µå"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Other MultiMedia devices"
-msgstr "´Ù¸¥ ¸Åü"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Tvcard"
-msgstr "TV Ä«µå"
+#: ../../lang.pm:1
+#, c-format
+msgid "Slovakia"
+msgstr "½½·Î¹ÙÅ°¾Æ"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Videocard"
-msgstr "ºñµð¿À ¸ðµå"
+#: ../../lang.pm:1
+#, c-format
+msgid "Singapore"
+msgstr "½Ì°¡Æ÷¸£"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Tape"
-msgstr "Å×ÀÔ"
+msgid "Cambodia"
+msgstr "įº¸µð¾Æ"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "DVD-ROM"
-msgstr ""
+msgid "Monitor HorizSync: %s\n"
+msgstr "¸ð´ÏÅÍ ¼öÆòÁÖÆļö: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "CD/DVD burners"
-msgstr ""
+msgid "Path"
+msgstr "°æ·Î"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "CDROM"
+msgid ""
+"Here you can specify any arbitrary command line into which the job should be "
+"piped instead of being sent directly to a printer."
msgstr ""
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Disk"
-msgstr "µ§¸¶Å©"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
+msgid ""
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
+"\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
+"\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
+"Àμ⠽ýºÅÛ(%s)´Â ÄÄÇ»ÅÍ°¡ ºÎÆÃÇÒ ¶§ ÀÚµ¿À¸·Î ½ÇÇàµÇÁö\n"
+"¾ÊÀ» °ÍÀÔ´Ï´Ù.\n"
+"\n"
+"Àμ⠽ýºÅÛÀº Å©·¡Ä¿µéÀÇ ÀáÀçÀûÀÎ °ø°Ý¸ñÇ¥À̱⠶§¹®¿¡,\n"
+"º¸¾È ¼öÁØÀ» ³ô°Ô ÇÏ¿´À» ½Ã¿¡´Â ÀÚµ¿½ÇÇà ±â´ÉÀÌ ÇØÁ¦µÉ\n"
+"¼öµµ ÀÖµµ·Ï µÇ¾î ÀÖ½À´Ï´Ù.\n"
+"\n"
+"´Ù½Ã Àμ⠽ýºÅÛÀÇ ÀÚµ¿½ÇÇà ±â´ÉÀÌ È°¼ºÈ­µÇµµ·Ï\n"
+"ÇϽðڽÀ´Ï±î?"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Floppy"
-msgstr "ºÎÆ® Ç÷ÎÇÇ"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
+msgid ""
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
+"ÇÁ¸°ÅÍ %s: %s: %s\n"
+"ÀÌ ÇÁ¸°ÅÍ¿¡ ´ëÇؼ­ ¹«¾ùÀ» ¼öÁ¤ÇϽðڽÀ´Ï±î?"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "µå¶óÀ̹ö:"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Add host"
+msgstr "»ç¿ëÀÚ Ãß°¡"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8156,132 +8198,91 @@ msgid ""
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitratry driver"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
+#: ../../any.pm:1
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Sound trouble shooting"
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
+"Ç÷ÎÇÇ¿¡ ÆÑÅ°Áö ¼±Åøñ·ÏÀ» ÀûÀç ¶Ç´Â ÀúÀåÇÒÁö¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
+"Çü½Ä(Æ÷¸Ë)Àº ÀÚµ¿¼³Ä¡ »ý¼º Ç÷ÎÇÇ¿Í µ¿ÀÏÇÕ´Ï´Ù."
-#: ../../harddrake/sound.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr ""
+msgid "China (broadcast)"
+msgstr "Áß±¹ (°øÁßÆÄ)"
-#: ../../harddrake/sound.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Unkown driver"
-msgstr "¾Ë ¼ö ¾ø´Â µå¶óÀ̹ö"
+msgid "Use quota for backup files."
+msgstr "¹é¾÷ ÆÄÀÏ¿¡ ÄõÅÍ »ç¿ë"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgid "Configuring printer \"%s\"..."
+msgstr "ÇÁ¸°ÅÍ ¡¸%s¡¹ ¼³Á¤ Áß ..."
-#: ../../harddrake/sound.pm:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "No known driver"
-msgstr ""
+msgid "Internet connection"
+msgstr "ÀÎÅÍ³Ý ¿¬°á"
-#: ../../harddrake/sound.pm:1
+#: ../../modules/interactive.pm:1
#, c-format
msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"%s ¸ðµâÀ» ÀоîµéÀ̴µ¥ ½ÇÆÐÇß½À´Ï´Ù.\n"
+"´Ù¸¥ °ªÀ¸·Î ´Ù½Ã ½ÃµµÇØ º¸½Ã°Ú½À´Ï±î?"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "±â´Ù·Á ÁÖ¼¼¿ä... ¼³Á¤À» Àû¿ëÇÏ°í ÀÖ½À´Ï´Ù."
-
-#: ../../harddrake/sound.pm:1
+#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
-msgstr ""
+msgid "Welcome to the Open Source world."
+msgstr "°ø°³ ¼Ò½º ¼¼°è¿¡ ¿À½Å °ÍÀ» ȯ¿µÇÕ´Ï´Ù."
-#: ../../harddrake/sound.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Trouble shooting"
+msgid "Bosnia and Herzegovina"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: ../../fsedit.pm:1
#, c-format
msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
+"ÀÌ ¸¶¿îÆ® À§Ä¡¿¡´Â Æ®·ç ÆÄÀϽýºÅÛ (ext2, reiserfs, xfs, jfs)ÀÌ ÇÊ¿äÇÕ´Ï´Ù.\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "You must enter a host name or an IP address.\n"
+msgstr "È£½ºÆ® À̸§ ¶Ç´Â IP¸¦ ÀÔ·ÂÇϼ¼¿ä."
-#: ../../harddrake/sound.pm:1
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
+msgid "Netherlands"
+msgstr "³×´ú¶õµå"
-#: ../../harddrake/sound.pm:1
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Sending files by FTP"
+msgstr "ÆÄÀÏ Àü¼Û Áß ..."
+
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Sound configuration"
-msgstr "»ç¿îµå ¼³Á¤"
+msgid "Internal ISDN card"
+msgstr "³»Àå ISDN Ä«µå"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8290,1644 +8291,1623 @@ msgid ""
"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr ""
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "¶óµð¿À Áö¿ø"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "¶óµð¿À Áö¿ø:"
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Title"
+msgstr "Å×À̺í"
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "PLL setting:"
-msgstr "PLL ¼³Á¤:"
+msgid "Install & convert Fonts"
+msgstr "ÆùÆ® ¼³Ä¡ ¹× º¯È¯"
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "number of capture buffers for mmap'ed capture"
+msgid "WARNING"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Number of capture buffers:"
-msgstr "ĸÃÄ ¹öÆÛ ¼ö:"
+msgid "Installing bootloader"
+msgstr "ºÎÆ®·Î´õ ¼³Ä¡ Áß"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Æ©³Ê À¯Çü:"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "replay"
+msgstr "Àç½Ãµµ"
-#: ../../harddrake/v4l.pm:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Card model:"
-msgstr "Ä«µå ¸ðµ¨:"
+msgid "detected %s"
+msgstr "%s ¹ß°ß"
-#: ../../harddrake/v4l.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
+msgid "Virgin Islands (U.S.)"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: ../../partition_table.pm:1
#, c-format
-msgid "Unknown|Generic"
-msgstr "¾Ë ¼ö ¾øÀ½|ÀϹÝ"
+msgid "Bad backup file"
+msgstr "À߸øµÈ ¹é¾÷ ÆÄÀÏ"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
+"ÀÎÅÍ³Ý ¿¬°á°øÀ¯ ¼³Á¤Àº ÀÌ¹Ì ¿Ï·áµÇ¾ú½À´Ï´Ù.\n"
+"ÇöÀç ºÒ°¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù.\n"
+"\n"
+"¹«½¼ ÀÛ¾÷À» ÇϽðڽÀ´Ï±î?"
-#: ../../harddrake/v4l.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "ÀÚµ¿ °Ë»ö"
-
-#: ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Do"
-msgstr "¾Æ·¡·Î"
+msgid "Pipe into command"
+msgstr "ÀÛ¾÷À» ¸í·ÉÀ¸·Î ÆÄÀÌÇÁ ¿¬°á"
-#: ../../interactive/stdio.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Your choice? (default %s) "
-msgstr "´ÔÀÇ ¼±ÅÃÀº? (±âº»°ª %s) "
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"¡¸»ó¾÷¿ë¡¹µå¶óÀ̹ö¸¦ ÇÊ¿ä·ÎÇÏ´Â ÀϺΠÇϵå¿þ¾î°¡ ½Ã½ºÅÛ»ó¿¡ ÀÖ½À´Ï´Ù.\n"
+"ÀÚ¼¼ÇÑ Á¤º¸´Â ´ÙÀ½À» ÂüÁ¶Çϼ¼¿ä: %s"
-#: ../../interactive/stdio.pm:1
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Bad choice, try again\n"
-msgstr "À߸øµÈ ¼±ÅÃÀÔ´Ï´Ù, ´Ù½Ã Çϼ¼¿ä\n"
+msgid "Detecting devices..."
+msgstr "ÀåÄ¡¸¦ °Ë»öÇÏ°í ÀÖ½À´Ï´Ù..."
-#: ../../interactive/stdio.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Re-submit"
-msgstr "ÀçÀü¼Û"
+msgid "Click here to launch the wizard ->"
+msgstr "¸¶¹ý»ç¸¦ ½ÇÇàÇÏ·Á¸é ¿©±â¸¦ ´©¸£¼¼¿ä. ->"
-#: ../../interactive/stdio.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
+msgid "Haiti"
+msgstr "ÇÏÀÌƼ"
-#: ../../interactive/stdio.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"Description of the fields:\n"
+"\n"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "=> There are many things to choose from (%s).\n"
+msgid "the name of the CPU"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "´ÔÀÇ ¼±ÅÃÀº? (±âº»°ª ¡¸%s¡¹%s) "
+msgid "Refreshing printer data..."
+msgstr "ÇÁ¸°ÅÍ µ¥ÀÌÅÍ °»½Å Áß ..."
-#: ../../interactive/stdio.pm:1
+#: ../../install2.pm:1
#, c-format
-msgid " enter `void' for void entry"
+msgid "You must also format %s"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Do you want to click on this button?"
-msgstr "ÀÌ ¹öÆ°À» ´©¸£½Ã°Ú½À´Ï±î?"
+msgid "Be careful: this operation is dangerous."
+msgstr "ÁÖÀÇ : ÀÌ Á¶ÀÛÀº À§ÇèÇÕ´Ï´Ù."
-#: ../../interactive/stdio.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Button `%s': %s"
-msgstr "¹öÆ° ¡¸%s¡¹: %s"
+msgid "Insert a floppy containing package selection"
+msgstr "ÆÑÅ°Áö ¼±Åøñ·Ï Ç÷ÎÇÇ µð½ºÅ©¸¦ ³ÖÀ¸¼¼¿ä."
-#: ../../interactive/stdio.pm:1
+#: ../../diskdrake/dav.pm:1
#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "´ÔÀÇ ¼±ÅÃÀº? (0/1 ±âº»°ª ¡¸%s¡¹) "
+msgid "Server: "
+msgstr "¼­¹ö:"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Alerts:"
+msgstr "º¸¾È ¼öÁØ"
-#: ../../modules/interactive.pm:1
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"%s ¸ðµâÀ» ÀоîµéÀ̴µ¥ ½ÇÆÐÇß½À´Ï´Ù.\n"
-"´Ù¸¥ °ªÀ¸·Î ´Ù½Ã ½ÃµµÇØ º¸½Ã°Ú½À´Ï±î?"
+msgid "Sweden"
+msgstr "½º¿þµ§"
-#: ../../modules/interactive.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Specify options"
-msgstr "¿É¼Ç ÁöÁ¤"
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../modules/interactive.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Autoprobe"
-msgstr "ÀÚµ¿°Ë»ö"
+msgid "Poland"
+msgstr "Æú¶õµå"
-#: ../../modules/interactive.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without them. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"ÀϹÝÀûÀ¸·Î %s µå¶óÀ̹ö´Â Ãß°¡ Á¤º¸ ¾øÀ̵µ Àß ÀÛµ¿ÇÏÁö¸¸, ¾î¶² °æ¿ì¿¡´Â \n"
-"Ãß°¡ Á¤º¸¸¦ ÇÊ¿ä·Î Çϱ⵵ ÇÕ´Ï´Ù. Ãß°¡ ¿É¼ÇÀ» ÁöÁ¤ÇϽðڽÀ´Ï±î, ¾Æ´Ï¸é \n"
-"ÇÊ¿äÇÑ Á¤º¸¸¦ ÀÚµ¿°Ë»öÇÏ°Ô ÇÏ°Ú½À´Ï±î?\n"
-"ÀÚµ¿°Ë»öÀº ¾î¼´Ù°¡ ÄÄÇ»Å͸¦ ¸ØÃß°Ô ÇÒ ¼öµµ ÀÖ½À´Ï´Ù.ÇÏÁö¸¸,\n"
-"ÀåÄ¡¸¦ ÈѼÕÇÏÁö´Â ¾Ê½À´Ï´Ù."
+msgid "Importance: %s\n"
+msgstr "Á߿伺: %s\n"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "¾î¶² %s µå¶óÀ̹ö¸¦ ½ÃµµÇØ º¾´Ï±î?"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "¹é¾÷Çϱâ Àü¿¡ Å×ÀÔÀ» Áö¿ïÁö È®ÀÎÇϼ¼¿ä."
-#: ../../modules/interactive.pm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "Module options:"
-msgstr "¸ðµâ ¿É¼Çµé:"
+msgid "Other ports"
+msgstr "±âŸ Æ÷Æ®"
-#: ../../modules/interactive.pm:1
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-"ÀÌÁ¦ %s µå¶óÀ̹ö¿¡ ¿É¼ÇÀ» ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
-"¿É¼ÇÀº ``À̸§=°ª À̸§2=°ª2 ...''Çü½ÄÀ¸·Î ÁöÁ¤ÇÕ´Ï´Ù..\n"
-"°¡·É, ``io=0x300 irq=7''"
-#: ../../modules/interactive.pm:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+msgid "SMBus controllers"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(%s ¸ðµâ »ç¿ë)"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%sÄ«µå µå¶óÀ̹ö %s ¼³Ä¡Áß"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Çϵå¿þ¾î Á¤º¸ º¸±â"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "¶Ç ´Ù¸¥ %s ÀÎÅÍÆäÀ̽º°¡ ¼³Ä¡µÇ¾î ÀÖ½À´Ï±î?"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "¶Ç ´Ù¸¥°ÍÀÌ ¼³Ä¡µÇ¾î ÀÖ½À´Ï±î?"
-
-#: ../../modules/interactive.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s ÀÎÅÍÆäÀ̽º°¡ °¨ÁöµÇ¾ú½À´Ï´Ù."
+msgid "Connection timeout (in sec)"
+msgstr "¿¬°á ½Ã°£ÃÊ°ú (ÃÊ)"
-#: ../../modules/interactive.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "You can configure each parameter of the module here."
+msgid ""
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../modules/parameters.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "comma separated strings"
-msgstr "½°Ç¥ ºÐ¸® ¹®ÀÚ¿­µé"
+msgid "Croatian"
+msgstr "Å©·Î¾ÆƼ¾Æ"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr ""
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "±âÁ¸ÀÇ ÆÄƼ¼Ç »ç¿ë"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "ºÐ±âÇÒ ¼ö ¾ø½À´Ï´Ù: %s"
-#: ../../modules/parameters.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
+msgid "/Help/_About..."
+msgstr "/µµ¿ò¸»(H)/ÀÌ ÇÁ·Î±×·¥Àº(_A)..."
-#: ../../modules/parameters.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "a number"
-msgstr "¹øÈ£"
+msgid "Remove user directories before restore."
+msgstr "º¹±¸Çϱâ Àü¿¡ »ç¿ëÀÚ µð·¢Å丮µéÀ» Á¦°Å"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"You are going to configure a remote printer. This needs working network "
+"access, but your network is not configured yet. If you go on without network "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
msgstr ""
+"¿ø°Ý ÇÁ¸°Å͸¦ ¼³Á¤ÇÏ·Á ÇÕ´Ï´Ù. ±×·¯±â À§Çؼ­´Â ³×Æ®¿÷ÀÌ µ¿ÀÛÇÏ°í ÀÖ¾î¾ß ÇÏ´Â"
+"µ¥, ¾ÆÁ÷ ³×Æ®¿÷ ¼³Á¤ÀÌ µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù. ³×Æ®¿÷ ¼³Á¤¾øÀÌ °è¼Ó ÁøÇàÇϸé, Áö"
+"±Ý ¼³Á¤ÇÏ°í ÀÖ´Â ÇÁ¸°Å͸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. ¾î¶»°Ô ÇϽðڽÀ´Ï±î?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"The most common way to connect with adsl is pppoe.\n"
-"Some connections use pptp, a few use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
-msgstr ""
-"ADSL ¿¬°áÀº ´ë°³ PPPOE¸¦ »ç¿ëÇÕ´Ï´Ù. \n"
-"ÇÏÁö¸¸, ¾î¶² °æ¿ì¿¡´Â PPTP³ª, ±ØÈ÷ µå¹°°Ô´Â DHCPµµ »ç¿ëµË´Ï´Ù.\n"
-"Àß ¸ð¸£°Ú´Ù¸é, ¡¸PPPOE »ç¿ë¡¹À» ¼±ÅÃÇϼ¼¿ä."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS printer configuration"
+msgstr "OKI À©ÇÁ¸°ÅÍ ¼³Á¤"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Connect to the Internet"
-msgstr "ÀÎÅͳݿ¡ ¿¬°á"
+msgid "could not find any font in your mounted partitions"
+msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Sagem (using pppoa) usb"
+msgid "F00f bug"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "¾ËÄ«ÅÚ ½ºÇǵåÅÍÄ¡ USB"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../network/adsl.pm:1
+#: ../../network/ethernet.pm:1
#, c-format
-msgid "use dhcp"
-msgstr "DHCP »ç¿ë"
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client."
+msgstr ""
+"¾î¶² dhcp Ŭ¶óÀ̾ðÆ®¸¦ »ç¿ëÇÏ°Ú½À´Ï±î?\n"
+"dhcp-client°¡ ±âº»°ªÀÔ´Ï´Ù."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "PPTP »ç¿ë"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Domain Name:"
+msgstr "µµ¸ÞÀÎ À̸§"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "PPPOE »ç¿ë"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "On Floppy"
+msgstr "ºÎÆ® Ç÷ÎÇÇ"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Other ports"
-msgstr "±âŸ Æ÷Æ®"
+msgid "Restore"
+msgstr "º¹±¸"
-#: ../../network/drakfirewall.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Everything (no firewall)"
+msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
-msgstr ""
+msgid "Looking for available packages..."
+msgstr "À¯È¿ÇÑ ÆÑÅ°Áö¸¦ ã°í ÀÖ½À´Ï´Ù."
-#: ../../network/drakfirewall.pm:1
+#: ../../any.pm:1
#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
+msgid "Init Message"
+msgstr "ÃʱâÈ­ ¸Þ½ÃÁö"
-#: ../../network/drakfirewall.pm:1
+#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgid "Rescue partition table"
+msgstr "ÆÄƼ¼Ç Å×À̺í ÀÀ±Þóġ"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection complete."
+msgstr "¿¬°á ¼Óµµ"
-#: ../../network/drakfirewall.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
+msgid "Cyprus"
msgstr ""
-"µå·¹ÀÌÅ© ¹æÈ­º® °ü¸®ÀÚ\n"
-"\n"
-"ÀÌ°ÍÀº ¸Çµå·¹ÀÌÅ© ¸®´ª½º ½Ã½ºÅÛÀÇ °³ÀÎ ¹æÈ­º®À» ¼³Á¤ÇÕ´Ï´Ù.\n"
-"°­·ÂÇÑ Àü¹® ¹æÈ­º®À» »ç¿ëÇÏ°í ½Í´Ù¸é, ¸Çµå·¹ÀÌÅ© º¸¾È ¹æÈ­º®\n"
-"¹èÆ÷ÆÇÀ» ±¸ÇϽñ⠹ٶø´Ï´Ù."
-#: ../../network/drakfirewall.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "No network card"
-msgstr "³×Æ®¿÷ Ä«µå ¾øÀ½"
+msgid "Remove from RAID"
+msgstr "RAID·ÎºÎÅÍ Á¦°Å"
-#: ../../network/drakfirewall.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP and IMAP ¼­¹ö"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "ÀÌ ¾Ïȣȭ Å°´Â ³Ê¹« ´Ü¼øÇÕ´Ï´Ù.( Àû¾îµµ %d ±ÛÀÚ´Â ³Ñ¾î¾ß ÇÕ´Ï´Ù)"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Mail Server"
-msgstr "¸ÞÀÏ ¼­¹ö"
+msgid "Configuration Wizards"
+msgstr "¼³Á¤ ¸¶¹ý»ç"
-#: ../../network/drakfirewall.pm:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Domain Name Server"
-msgstr "µµ¸ÞÀÎ ³×ÀÓ ¼­¹ö"
+msgid "ISDN connection"
+msgstr "ISDN ¿¬°á"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Web Server"
-msgstr "À¥ ¼­¹ö"
+msgid "primary"
+msgstr "ÁÖ"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Zeroconf host name must not contain a ."
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Host name"
-msgstr "È£½ºÆ®¸í:"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../help.pm:1
#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "È£½ºÆ®¸í:"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
msgid ""
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
+"DrakX will list all the services available on the current installation.\n"
+"Review each one carefully and uncheck those which are not needed at boot\n"
+"time.\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you are not sure whether a service is useful or not,\n"
+"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.\n"
+"!!"
msgstr ""
+"ÀÌÁ¦ ºÎÆýÿ¡ ¾î¶² ¼­ºñ½º¸¦ ÀÚµ¿À¸·Î ½ÃÀÛÇÏ°Ô ÇÒÁö¸¦ ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù.\n"
+"\n"
+"ÇöÀç ¼³Ä¡µÈ ¸ðµç ¼­ºñ½ºµéÀÌ ¿©±â¿¡¼­ º¸¿©Áö°í ÀÖ½À´Ï´Ù.\n"
+"½ÅÁßÇÏ°Ô °ËÅäÇؼ­ ºÎÆýÿ¡ Ç×»ó ÇÊ¿ä·ÎÇÏ´Â °ÍÀÌ ¾Æ´Ï¶ó¸é ¼±ÅÃÀ» ÇØÁ¦Çϼ¼¿ä.\n"
+"\n"
+"¸¶¿ì½º¸¦ ¼­ºñ½º À̸§µé À§·Î ¿Ã¸®¸é, °¢ ¼­ºñ½º¿¡ ´ëÇÑ °£´ÜÇÑ ¼³¸íÀ» º¸¿© ÁÙ °Í"
+"ÀÔ´Ï´Ù.\n"
+"¸¸¾à ¾î¶² ¼­ºñ½º°¡ ÇÊ¿äÇÑ °ÍÀÎÁö ¾Æ´ÑÁö¸¦ Àß ¸ð¸£°Ú´Ù¸é,\n"
+"±âº»°ªÀ¸·Î ±×³É µÎ´Â °ÍÀÌ ¾ÈÀüÇÑ ¼±ÅÃÀÔ´Ï´Ù.\n"
+"\n"
+"ÀÌ ÄÄÇ»Å͸¦ ¼­¹ö¿ëÀ¸·Î »ç¿ëÇÏ·Á ÇÑ´Ù¸é, ÀÌ ´Ü°è¿¡¼­ ¸Å¿ì ÁÖÀÇÇØ¾ß ÇÕ´Ï´Ù.\n"
+"ÇÊ¿äÇÏÁö ¾ÊÀº ¼­ºñ½º°¡ ½ÃÀ۵Ǵ °ÍÀº ¹Ù¶÷Á÷ÇÏÁö ¾Ê½À´Ï´Ù. ÀϺΠ¼­ºñ½º´Â \n"
+"¼­¹ö»ó¿¡¼­ ½ÇÇڵȴٸé À§ÇèÇÒ ¼öµµ ÀÖ´Ù´Â °ÍÀ» ¸í½ÉÇϼ¼¿ä. ¿øÄ¢ÀûÀ¸·Î \n"
+"²À ÇÊ¿äÇÑ ¼­ºñ½ºµé¸¸ ¼±ÅÃÇϼ¼¿ä."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "³×Æ®¿÷ ¼³Á¤"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "¾î¶² ¾î´ðÅÍ·Î ÀÎÅͳݿ¡ ¿¬°áÇÒ °ÍÀÎÁö ¼±ÅÃÇϼ¼¿ä."
-
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Choose the network interface"
-msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º¸¦ ¼±ÅÃÇϼ¼¿ä."
+msgid "Skip"
+msgstr "°Ç³Ê¶Ù±â"
-#: ../../network/ethernet.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+msgid "Niue"
msgstr ""
-"¾î¶°ÇÑ ³×Æ®¿÷ ¾î´ðÅ͵µ °¨ÁöµÇÁö ¾Ê¾Ò½À´Ï´Ù.\n"
-"¿¬°á ¼³Á¤À» ÇÒ ¼ö ¾ø½À´Ï´Ù."
-#: ../../network/ethernet.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcp-client."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"¾î¶² dhcp Ŭ¶óÀ̾ðÆ®¸¦ »ç¿ëÇÏ°Ú½À´Ï±î?\n"
-"dhcp-client°¡ ±âº»°ªÀÔ´Ï´Ù."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "ISDN PCI Ä«µå °Ë»ö ½ÇÆÐ. ´ÙÀ½ È­¸é¿¡¼­ Á÷Á¢ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
+"ºÎÆýÿ¡ ½ÃÀÛÇϵµ·Ï ¼³Á¤µÈ ¸ðµç ³×Æ®¿÷ ÀÎÅ×ÆäÀ̽º¸¦ \n"
+"È°¼ºÈ­/ºñÈ°¼ºÈ­ ÇÕ´Ï´Ù."
-#: ../../network/isdn.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
+"the CPU frequency in MHz (Megahertz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"ISDN PCI Ä«µå°¡ °¨ÁöµÇ¾úÁö¸¸, ±× À¯ÇüÀ» ¾Ë ¼ö ¾ø½À´Ï´Ù. ´ÙÀ½ È­¸é¿¡¼­ PCI Ä«"
-"µå¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "¾î´À °ÍÀÌ ´ÔÀÇ ISDN Ä«µåÀԴϱî?"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN ¼³Á¤"
-
-#: ../../network/isdn.pm:1
+#: ../../pkgs.pm:1
#, c-format
-msgid "Abort"
-msgstr "ÁßÁö"
+msgid "important"
+msgstr "Áß¿äÇÑ ÆÑÅ°Áö"
-#: ../../network/isdn.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Continue"
-msgstr "°è¼Ó"
+msgid "Total Progress"
+msgstr "Àüü ÁøÇà"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
msgstr ""
+"µå·¹ÀÌÅ©X°¡ ½Ã½ºÅÛ»ó¿¡ ÀÖ´Â ¸ðµç ÇÏµå µð½ºÅ©¸¦ °Ë»öÇÏ°í\n"
+"¶ÇÇÑ PCI SCSI ¾î´ðÅÍ Å½Áö¸¦ ½ÃµµÇÒ °ÍÀÔ´Ï´Ù.\n"
+"¸¸¾à µå·¹ÀÌÅ©X°¡ ÀåÄ¡¸¦ ¹ß°ßÇÏ°Ô µÇ¸é ÀÚµ¿À¸·Î\n"
+"¿Ã¹Ù¸¥ µå¶óÀ̹ö¸¦ ¼³Ä¡ÇÒ °ÍÀÔ´Ï´Ù.\n"
"\n"
-"¸¸¾à ISA Ä«µå¸¦ °¡Áö°í ÀÖ´Ù¸é, ´ÙÀ½ È­¸é¿¡¼­ ¼³Á¤°ªÀÌ Á¤È®ÇØ¾ß ÇÕ´Ï´Ù.\n"
+"µå·¹ÀÌÅ©XÀÇ ÀåÄ¡ °Ë»öÀÌ ½ÇÆÐÇÏ´õ¶óµµ, ´Ô²² SCSI ÀåÄ¡ÀÇ À¯¹«¸¦ Áú¹®ÇÏ°Ô µË´Ï"
+"´Ù.\n"
+"¸ñ·Ï¿¡¼­ ÀåÄ¡¸¦ Á÷Á¢ ¼±ÅÃÇÏ·Á¸é ¡¸¿¹¡¹¸¦, SCSI ÀåÄ¡°¡ ¾ø´Ù¸é ¡¸¾Æ´Ï¿À¡¹¸¦ ¼±"
+"ÅÃÇϼ¼¿ä.\n"
+"Àß ¸ð¸£°Ú´Ù¸é, ¡¸Çϵå¿þ¾î Á¤º¸ º¸±â¡¹¸¦ ¼±ÅÃÇÑ ÈÄ ¡¸È®ÀΡ¹À» ´­·¯¼­\n"
+"½Ã½ºÅÛ»ó¿¡ Á¸ÀçÇÏ´Â Çϵå¿þ¾îµéÀ» »ìÆ캼 ¼öµµ ÀÖ½À´Ï´Ù.\n"
+"Çϵå¿þ¾î¿¡ ´ëÇÑ °ËÅä°¡ ³¡³ª¸é ´Ù½Ã ¡¸È®ÀΡ¹¹öÆ°À» ´­·¯¼­ SCSI ÀÎÅÍÆäÀ̽º Áú"
+"¹® È­¸é\n"
+"À¸·Î µ¹¾Æ ¿Ã ¼ö ÀÖ½À´Ï´Ù.\n"
"\n"
-"¸¸¾à PCMCIA Ä«µå¸¦ °¡Áö°í ÀÖ´Ù¸é, IRQ¿Í IO °ªÀ» ¾Ë°í ÀÖ¾î¾ß ÇÕ´Ï´Ù.\n"
+"Á÷Á¢ ¾î´ðÅ͸¦ ÁöÁ¤ÇØ¾ß ÇÒ ¶§¿¡´Â, µå·¹ÀÌÅ©X°¡ ¿É¼ÇÀ» ÁöÁ¤ÇÒ °ÍÀÎÁö¸¦ ¹°¾î\n"
+"º¼ °ÍÀÔ´Ï´Ù. ÀÌ ¶§´Â µå·¹ÀÌÅ©X°¡ ÇÊ¿äÇÑ ¿É¼ÇÀ» ŽÁöÇϵµ·Ï ÇÏ´Â °ÍÀÌ ÁÁ½À´Ï"
+"´Ù.\n"
+"ÀϹÝÀûÀ¸·Î ÀÌ ¹æ¹ýÀº Àß ÀÛµ¿ÇÕ´Ï´Ù.\n"
+"\n"
+"\n"
+"¸¸¾à ±×·¸Áö ¾Ê´Ù¸é, Á÷Á¢ µå¶óÀ̹ö ¿É¼ÇÀ» ÁöÁ¤ÇØ¾ß ÇÕ´Ï´Ù. »ç¿ëÀÚ ¼³¸í¼­(3"
+"Àå, \n"
+"¡¸Çϵå¿þ¾î¿¡ ´ëÇÑ Á¾ÇÕÁ¤º¸¡¹»ö¼Ç)¸¦ ÂüÁ¶ÇÏ¿©, Çϵå¿þ¾î ¼³¸í¼­, \n"
+"(ÀÎÅͳݿ¡ ¿¬°áÇÒ ¼ö ÀÖ´Ù¸é) Á¦Á¶¾÷ü À¥ »çÀÌÆ®, \n"
+"¶Ç´Â (À©µµ¿ìÁî°¡ ¼³Ä¡µÇ¾î ÀÖ´Ù¸é) MS À©µµ¿ìÁî¿¡¼­ ¾î¶»°Ô ¿©±â¿¡ ÇÊ¿äÇÑ \n"
+"Á¤º¸¸¦ ¾Ë¾Æ ³¾ ¼ö ÀÖ´ÂÁö ã¾Æ º¸¼¼¿ä."
-#: ../../network/isdn.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "I don't know"
-msgstr "¸ð¸£°ÚÀ½"
+msgid "Users"
+msgstr "»ç¿ëÀÚµé"
-#: ../../network/isdn.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "PCI"
-msgstr "PCI"
+msgid "Aruba"
+msgstr ""
-#: ../../network/isdn.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+msgid "Preparing bootloader..."
+msgstr "ºÎÆ® ·Î´õ ÁغñÁß"
-#: ../../network/isdn.pm:1
+#: ../../network/network.pm:1
#, c-format
-msgid "What kind of card do you have?"
-msgstr "¾î¶² Á¾À¯ÀÇ Ä«µå¸¦ °¡Áö°í ÀÖ½À´Ï±î?"
+msgid "Gateway (e.g. %s)"
+msgstr "rpdlxmdnpdl (¿¹. %s)"
-#: ../../network/isdn.pm:1
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr ""
+msgid "The passwords do not match"
+msgstr "¾ÏÈ£°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù."
-#: ../../network/isdn.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "¾î¶² ÇÁ·ÎÅäÄÝÀ» »ç¿ëÇϽðڽÀ´Ï±î?"
+msgid "Examples for correct IPs:\n"
+msgstr ""
-#: ../../network/isdn.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "´Ù¸¥ Áö¿ªÀ» À§ÇÑ ÇÁ·ÎÅäÄÝ"
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../network/isdn.pm:1
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"´Ù¸¥ Áö¿ªÀ» À§ÇÑ ÇÁ·ÎÅäÄÝ\n"
-" Dä³Î (leased lines) ¾Æ´Ô"
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "European protocol"
-msgstr "À¯·´ ÇÁ·ÎÅäÄÝ"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "À¯·´ ÇÁ·ÎÅäÄÝ (EDSS1)"
+"ÀÌ ÀúÀåµÈ ÆÑÅ°Áö ¼±Åøñ·ÏÀ» »ç¿ëÇÒ·Á¸é, ``linux defcfg=floppy''¶ó°í ÀÔ·ÂÇÏ¿© "
+"¼³Ä¡À» ½ÃÀÛÇϼ¼¿ä."
-#: ../../network/isdn.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+msgid "the number of the processor"
msgstr ""
-"°ø±ÞÀÚ¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
-"¸ñ·Ï¿¡ ¾øÀ¸¸é, ¡¸¸ñ·Ï¿¡ ¾øÀ½¡¹À» ¼±ÅÃÇϼ¼¿ä."
-#: ../../network/isdn.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "External ISDN modem"
-msgstr "¿ÜÀå ISDN ¸ðµ©"
+msgid "Hardware clock set to GMT"
+msgstr "Çϵå¿þ¾î ½Ã°è GMT ¼³Á¤"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Internal ISDN card"
-msgstr "³»Àå ISDN Ä«µå"
+msgid "Give a file name"
+msgstr "ÆÄÀÏ À̸§À» ÀÔ·ÂÇϼ¼¿ä."
-#: ../../network/isdn.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "¾î¶² Á¾·ùÀÇ ISDN ¿¬°áÀ» »ç¿ëÇմϱî?"
+msgid "Please choose the port that your printer is connected to."
+msgstr "ÇÁ¸°ÅÍ°¡ ¿¬°áµÈ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä."
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
+#: ../../standalone/livedrake:1
#, c-format
-msgid "Network Configuration Wizard"
-msgstr "³×Æ®¿÷ ¼³Á¤ ¸¶¹ý»ç"
+msgid "Change Cd-Rom"
+msgstr "CDROM ¹Ù²Ù±â"
-#: ../../network/isdn.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Old configuration (isdn4net)"
-msgstr "±âÁ¸ÀÇ ¼³Á¤ (ISDN4NET)"
+msgid "Paraguay"
+msgstr "ÆĶó°úÀÌ"
-#: ../../network/isdn.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "New configuration (isdn-light)"
-msgstr "»õ·Î¿î ¼³Á¤ (ISDN-LIGHT)"
+msgid "Use Incremental/Differential Backups (do not replace old backups)"
+msgstr ""
-#: ../../network/isdn.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerful\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"¾î¶² ISDN ¼³Á¤ ¹æ½ÄÀ» ¼±È£ÇϽʴϱî?\n"
-"\n"
-"* ±âÁ¸ÀÇ ¼³Á¤Àº ISDN4NETÀ» »ç¿ëÇÕ´Ï´Ù. °­·ÂÇÏÁö¸¸ Ãʺ¸ÀÚ¿¡°Õ\n"
-" ¾î·Æ°í ¶ÇÇÑ Ç¥ÁØÀÌ ¾Æ´Õ´Ï´Ù.\n"
-"\n"
-"* »õ·Î¿î ¼³Á¤Àº ½±°í º¸´Ù Ç¥ÁØÀûÀÌÁö¸¸, °­·ÂÇÑ µµ±¸´Â µð¼Ò\n"
-" ºÎÁ·ÇÕ´Ï´Ù.\n"
-"\n"
-"¡¸ISDN-LIGHT¡¹¸¦ ÃßõÇÕ´Ï´Ù.\n"
-"\n"
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Do nothing"
-msgstr "Á¦¿ÜÇÒ ¹®ÀÚ¿­"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "force"
+msgstr "°­Á¦ ÃßÁø"
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Install rpm"
-msgstr "¼³Ä¡"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Exit"
+msgstr "Á¾·á"
-#: ../../network/modem.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Title"
-msgstr "Å×À̺í"
-
-#: ../../network/modem.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
+"¼³Á¤µÈ ÀÎÅÍÆäÀ̽º°¡ ¾ø½À´Ï´Ù.\n"
+"¡¸¼³Á¤¡¹À» ´­·¯ ÀÎÅÍÆäÀ̽º¸¦ ¸ÕÀú ¼³Á¤Çϼ¼¿ä."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "µÎ¹ø° DNS ¼­¹ö (¿É¼Ç)"
+msgid "Estonian"
+msgstr "¿¡½ºÅä´Ï¾Æ"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../services.pm:1
#, c-format
-msgid "First DNS Server (optional)"
-msgstr "ù¹ø° DNS ¼­¹ö (¿É¼Ç)"
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"¾ÆÆÄÄ¡(Apache)´Â À¥ ¼­¹öÀÔ´Ï´Ù. ÀÌ°ÍÀº HTMLÀ̳ª CGI ÆÄÀÏ ¼­ºñ½º¸¦\n"
+"Çϴµ¥ »ç¿ëµË´Ï´Ù."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Domain name"
-msgstr "µµ¸ÞÀÎ À̸§"
+msgid "Add/Del Clients"
+msgstr "Ŭ¶óÀ̾ðÆ® Ãß°¡/Á¦°Å"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakpxe:1
#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+msgid "Choose the network interface"
+msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º¸¦ ¼±ÅÃÇϼ¼¿ä."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Script-based"
-msgstr "½ºÅ©¸³Æ® ±â¹Ý"
+msgid "Unknown Model"
+msgstr "¾Ë ¼ö ¾ø´Â ¸ðµ¨"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Terminal-based"
-msgstr "Å͹̳¯ ±â¹Ý"
+msgid "CD/DVD burners"
+msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "PAP"
-msgstr "PAP"
+msgid ""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
+msgstr ""
+"±âº»ÀûÀ¸·Î ºÎÆõǴ ÆÄƼ¼Ç\n"
+" (lilo¸¦ À§ÇÑ°ÍÀÌ ¾Æ´Ï¶ó MS-DOS boot¸¦ À§ÇÑ°ÍÀÓ)\n"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "·Î±×ÀÎ ID"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "À̹ÌÁö ÆÄÀÏ ¼±ÅÃ"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../network/shorewall.pm:1
#, c-format
-msgid "Phone number"
-msgstr "ÀüÈ­ ¹øÈ£"
+msgid "Firewalling configuration detected!"
+msgstr "¹æÈ­º® ¼³Á¤ÀÌ °¨ÁöµÇ¾ú½À´Ï´Ù!"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
msgstr "¿¬°á À̸§"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "´ÙÀ̾ó¾÷ ¿É¼Ç"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "¾î¶² ½Ã¸®¾ó Æ÷Æ®¿¡ ¸¶¿ì½º°¡ ¿¬°áµÇ¾î ÀÖ³ª¿ä?"
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "³×Æ®¿÷ ȯ°æ ¼³Á¤"
-
-#: ../../network/netconnect.pm:1
+#: ../../standalone/draksplash:1
#, c-format
msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration."
+"x coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"¿Ï·áµÈ ÈÄ¿¡, X¸¦ ´Ù½Ã ½ÃÀÛÇÏ¿© È£½ºÆ®¸í º¯°æ¿¡ µû¸¥\n"
-"¹®Á¦ ¹ß»ýÀ» ÇÇÇϽñ⠹ٶø´Ï´Ù."
+msgid "Updating package selection"
+msgstr "¼±ÅÃµÈ ÆÑÅ°Áö ¸ñ·Ï ¾÷µ¥ÀÌÆ® Áß"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"ÃàÇÏÇÕ´Ï´Ù. ³×Æ®¿÷/ÀÎÅÍ³Ý ¼³Á¤ÀÌ ¿Ï·áµÇ¾ú½À´Ï´Ù.\n"
-"\n"
-"ÀÌÁ¦ ¼³Á¤ÀÌ ½Ã½ºÅÛ¿¡ Àû¿ëµÉ °ÍÀÔ´Ï´Ù.\n"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount the loopback file %s?"
+msgstr "%sÆÄÀÏÀ» ¾îµð¿¡ ·çÇÁ¹éÀ¸·Î ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"³×Æ®¿÷À» ´Ù½Ã ½ÃÀÛÇÏ´Â µµÁß¿¡ ¹®Á¦°¡ ¹ß»ýÇß½À´Ï´Ù:\n"
-"\n"
-"%s"
+"Ç÷ÎÇÇ°¡ ¼º°øÀûÀ¸·Î »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
+"ÀÌÁ¨ ¼³Ä¡°úÁ¤¸¦ ¹Ýº¹ÇÒ ¼ö ÀÖ½À´Ï´Ù."
-#: ../../network/netconnect.pm:1
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "ÆÑÅ°Áö %s°¡ ÇÊ¿äÇÕ´Ï´Ù. ¼³Ä¡ÇÏ°Ú½À´Ï±î?"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "³×Æ®¿÷ ¼³Á¤"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "ºÎÆýÿ¡ ¿¬°áÇϵµ·Ï ÇÏ°Ú½À´Ï±î?"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "ÀÎÅÍ³Ý ¿¬°á"
+msgid "the number of buttons the mouse has"
+msgstr "¹öÆ° ¼ö"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"ÀÎÅÍ³Ý Á¢¼Ó¹æ½ÄÀ» ¿©·¯°³ ¼³Á¤Çß½À´Ï´Ù.\n"
-"¿¬°á¿¡ »ç¿ëÇÒ ¹æ½ÄÀ» ¼±ÅÃÇϼ¼¿ä.\n"
-"\n"
-#: ../../network/netconnect.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "¼³Á¤ÇÒ ¿¬°áÀ» ¼±ÅÃÇϼ¼¿ä."
+msgid "Replay"
+msgstr "Àç½Ãµµ"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "ethernet card(s) detected"
-msgstr "ÀÌ´õ³Ý Ä«µå ¹ß°ß"
+msgid "Backup other files"
+msgstr "´Ù¸¥ ÆÄÀÏ ¹é¾÷"
-#: ../../network/netconnect.pm:1
+#: ../../install_steps.pm:1
#, c-format
-msgid "LAN connection"
-msgstr "LAN ¿¬°á"
+msgid "No floppy drive available"
+msgstr "Ç÷ÎÇÇ µå¶óÀ̺긦 »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù."
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "cable connection detected"
-msgstr "ijÀÌºí ¿¬°á ¹ß°ß"
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Cable connection"
-msgstr "ijÀÌºí ¿¬°á"
+msgid "TV norm:"
+msgstr "TV ³ð :"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "detected"
-msgstr "%s ¹ß°ß"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Cpuid family"
+msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "ADSL connection"
-msgstr "ADSL ¿¬°á"
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../network/netconnect.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "detected %s"
-msgstr "%s ¹ß°ß"
+msgid "Lithuanian AZERTY (new)"
+msgstr "¸®Åõ¾Æ´Ï¾Æ AZERTY (½ÅÇü)"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "ISDN connection"
-msgstr "ISDN ¿¬°á"
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../fsedit.pm:1
#, fuzzy, c-format
-msgid "Winmodem connection"
-msgstr "ÀÏ¹Ý ¸ðµ© ¿¬°á"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "%s Æ÷Æ®¿¡¼­ ¹ß°ß"
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
+msgstr ""
+"¼ÒÇÁÆ®¿þ¾î RAID ÆÄƼ¼ÇÀ» ·çÆ®(/)·Î ÁöÁ¤Çß½À´Ï´Ù.\n"
+"¾î¶°ÇÑ ºÎÆ®·Î´õµµ /boot ÆÄƼ¼Ç ¾øÀÌ´Â ÀÌ°ÍÀ» ó¸®ÇÏÁö ¸øÇÕ´Ï´Ù.\n"
+"±×·¯¹Ç·Î /boot ÆÄƼ¼ÇÀ» Ãß°¡ÇÏ´Â °ÍÀ» ÀØÁö ¸¶¼¼¿ä."
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Normal modem connection"
-msgstr "ÀÏ¹Ý ¸ðµ© ¿¬°á"
+msgid "Previous"
+msgstr "ÀÌÀü"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Detecting devices..."
-msgstr "ÀåÄ¡¸¦ °Ë»öÇÏ°í ÀÖ½À´Ï´Ù..."
+msgid "Other OS (MacOS...)"
+msgstr "±âŸ OS (MacOS...)"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Expert Mode"
-msgstr "Àü¹®°¡ ¸ðµå"
+msgid "To activate the mouse,"
+msgstr "¸¶¿ì½º¸¦ È°¼ºÈ­ÇÏ·Á¸é"
-#: ../../network/netconnect.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Use auto detection"
-msgstr "ÀÚµ¿°Ë»ö »ç¿ë"
+msgid "Bringing up the network"
+msgstr "³×Æ®¿÷ È°¼ºÈ­ Áß..."
-#: ../../network/netconnect.pm:1
+#: ../../common.pm:1
#, c-format
-msgid "Choose the profile to configure"
-msgstr "¼³Á¤ÇÒ ÇÁ·ÎÆÄÀÏÀ» ¼±ÅÃÇϼ¼¿ä."
+msgid "Screenshots will be available after install in %s"
+msgstr "½ºÅ©¸°¼¦Àº ¼³Ä¡ÈÄ¿¡ %s¿¡ ÀÖ½À´Ï´Ù."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose which one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
-msgstr ""
-"³×Æ®¿÷ ¼³Á¤ ¸¶¹ý»ç¿¡ Àß ¿À¼Ì½À´Ï´Ù.\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-"Áö±Ý ÀÎÅͳÝ/³×Æ®¿÷ ¿¬°áÀ» ¼³Á¤ÇÏ·Á ÇÕ´Ï´Ù.\n"
-"ÀÚµ¿ °Ë»öÀ» »ç¿ëÇÏ°í ½ÍÁö ¾Ê´Ù¸é, üũ¹Ú½º¸¦ ÇØÁ¦Çϼ¼¿ä.\n"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Áö±Ý ³×Æ®¿÷À» »ç¿ëÇÏ¿© ¼³Ä¡ÇÏ°í ÀÖ´Â ÁßÀ̹ǷÎ, ³×Æ®¿÷ ¼³Á¤Àº ÀÌ¹Ì µÇ¾î ÀÖ½À´Ï"
-"´Ù.\n"
-"¡¸È®ÀΡ¹À» ´­·¯ ÇöÀç ¼³Á¤À» À¯ÁöÇϰųª, ¡¸Ãë¼Ò¡¹¸¦ ´­·¯ ÀÎÅͳÝ/³×Æ®¿÷ ¿¬°áÀ» "
-"´Ù½Ã ¼³Á¤Çϼ¼¿ä.\n"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
+"\"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"
-"We are now going to configure the %s connection.\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"
-"Press OK to continue."
+" * \"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"
-"ÀÌÁ¦ ¡¸%s¡¹¿¬°áÀ» ¼³Á¤ÇÒ °ÍÀÔ´Ï´Ù.\n"
+"¡¸Çϵåµð½ºÅ© À¯Çü¡¹Àº, IDE µð½ºÅ©ÀÏ °æ¿ì¿¡´Â ¡¸hd¡¹À̸ç,\n"
+"SCSI µð½ºÅ©ÀÏ °æ¿ì¿¡´Â ¡¸sd¡¹ÀÔ´Ï´Ù.\n"
"\n"
+"¡¸Çϵåµð½ºÅ© ¹øÈ£¡¹´Â Ç×»ó ¡¸hd¡¹¶Ç´Â ¡¸sd¡¹µÚ¿¡ ¿À´Â ¹®ÀÚÀÔ´Ï´Ù.\n"
+"IDE Çϵåµð½ºÅ©ÀÇ °æ¿ì:\n"
"\n"
-"½ÃÀÛÇÏ·Á¸é ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "ÀÌÁ¦ ¡¸%s¡¹¿¬°áÀ» ¼³Á¤ÇÒ °ÍÀÔ´Ï´Ù."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection & configuration"
-msgstr "ÀÎÅÍ³Ý ¿¬°á & ¼³Á¤"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configure the connection"
-msgstr "¿¬°á ¼³Á¤"
+" ¡Û ¡¸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:¡¹ÀÔ´Ï´Ù.)"
-#: ../../network/netconnect.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Disconnect"
-msgstr "¿¬°á ²÷±â"
+msgid "Tanzania"
+msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Connect"
-msgstr "¿¬°á"
+msgid "Computing FAT filesystem bounds"
+msgstr "µµ½º ÆÄÀϽýºÅÛÀÇ ¹üÀ§ °è»êÁß"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"You can reconfigure your connection."
+"Backup Sources: \n"
msgstr ""
-"\n"
-"¿¬°áÀ» ´Ù½Ã ¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù."
-#: ../../network/netconnect.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid ""
-"\n"
-"You can connect to the Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"ÀÎÅͳݿ¡ ¿¬°áÇϰųª ¿¬°áÀ» Àç¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù."
+msgid "Content of the file"
+msgstr "ÆÄÀÏ ³»¿ë"
-#: ../../network/netconnect.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "You are not currently connected to the Internet."
-msgstr "ÇöÀç ÀÎÅͳݿ¡ ¿¬°áµÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù."
+msgid "Authentication LDAP"
+msgstr "ÀÎÁõ LDAP"
-#: ../../network/netconnect.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
+msgid "Let me pick any driver"
msgstr ""
-"\n"
-"¿¬°áÀ» ÇØÁ¦Çϰųª ´Ù½Ã ¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "You are currently connected to the Internet."
-msgstr "ÇöÀç ÀÎÅͳݿ¡ ¿¬°áµÇ¾î ÀÖ½À´Ï´Ù."
-#: ../../network/network.pm:1
+#: ../../standalone/net_monitor:1
#, fuzzy, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "ÁÖ¼Ò´Â ¡¸http:¡¹·Î ½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù."
+msgid "Profile "
+msgstr "ÇÁ·ÎÆÄÀÏ: "
-#: ../../network/network.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "Proxy should be http://..."
-msgstr "ÇÁ¶ô½Ã À̸§Àº httP://... À̾î¾ß ÇÕ´Ï´Ù."
+msgid "transmitted"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP ÇÁ¶ô½Ã"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Palestine"
+msgstr "°æ·Î ¼±ÅÃ"
-#: ../../network/network.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "HTTP proxy"
-msgstr "À¥ ÇÁ¶ô½Ã"
+msgid "RAID md%s\n"
+msgstr "·¹À̵å ÀåÄ¡ %s\n"
-#: ../../network/network.pm:1
+#: ../../modules/parameters.pm:1
#, c-format
-msgid "Proxies configuration"
-msgstr "ÇÁ¶ô½Ã ¼³Á¤"
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP ÁÖ¼Ò´Â 1.2.3.4°ú °°Àº Çü½ÄÀ̾î¾ß ÇÕ´Ï´Ù."
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP ÁÖ¼Ò´Â 1.2.3.4°ú °°Àº Çü½ÄÀ̾î¾ß ÇÕ´Ï´Ù."
+msgid "%d comma separated strings"
+msgstr ""
-#: ../../network/network.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Gateway device"
-msgstr "°ÔÀÌÆ®¿þÀÌ ÀåÄ¡"
+msgid "Here is the full list of keyboards available"
+msgstr "Áö¿øµÇ´Â Å°º¸µå ¸ñ·ÏÀÌ ¿©±â¿¡ ÀÖ½À´Ï´Ù."
-#: ../../network/network.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "rpdlxmdnpdl (¿¹. %s)"
+msgid "Theme name"
+msgstr "Å׸¶ À̸§"
-#: ../../network/network.pm:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
-msgid "DNS server"
-msgstr "DNS ¼­¹ö"
+msgid "/_Help"
+msgstr "/µµ¿ò¸»(_H)"
-#: ../../network/network.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
+"Here you can choose whether the scanners connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-"È£½ºÆ® À̸§À» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.\n"
-"È£½ºÆ® À̸§Àº ``mybox.mylab.myco.com''°ú °°ÀÌ ¿ÏÀüÇÑ È£½ºÆ® \n"
-"À̸§À̾î¾ß ÇÕ´Ï´Ù. \n"
-"°ÔÀÌÆ® ¿þÀÌ°¡ ÀÖ´Ù¸é ±× IP ÁÖ¼Òµµ ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù."
-#: ../../network/network.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+msgid "the width of the progress bar"
msgstr ""
-#: ../../network/network.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+msgid "Cook Islands"
msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fs.pm:1
#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ÁÖ¼Ò´Â 1.2.3.4°ú °°Àº Çü½ÄÀ̾î¾ß ÇÕ´Ï´Ù."
+msgid "Formatting partition %s"
+msgstr "%s ÆÄƼ¼Ç Æ÷¸ËÁß"
-#: ../../network/network.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Start at boot"
-msgstr "ºÎÆýà ½ÃÀÛ"
+msgid "Hostname required"
+msgstr "È£½ºÆ®¸íÀÌ ÇÊ¿äÇÕ´Ï´Ù."
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "È£½ºÆ® À̸§ ¶Ç´Â IP¸¦ ÀÔ·ÂÇϼ¼¿ä."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Unselect fonts installed"
+msgstr "¼³Ä¡µÈ ÆùÆ® ¼±Åà ÇØÁ¦"
-#: ../../network/network.pm:1
+#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
+#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
+#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/draksec:1
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Cancel"
+msgstr "Ãë¼Ò"
+
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "³×Æ®¿÷ ȯ°æ ¼³Á¤"
+msgid "Searching for configured scanners ..."
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-#: ../../network/network.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "³×Æ®¿÷Ä«µå ID ÃßÀû (·¦Å¾¿¡ À¯¿ëÇÔ)"
+msgid "Wheel"
+msgstr "ÈÙ ¸¶¿ì½º"
-#: ../../network/network.pm:1
+#: ../../harddrake/data.pm:1
#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "È£½ºÆ®¸í:"
+msgid "Videocard"
+msgstr "ºñµð¿À ¸ðµå"
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Netmask"
-msgstr "³Ý¸¶½ºÅ©"
+msgid "\tBackups use tar and bzip2\n"
+msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
-msgid "IP address"
-msgstr "IP ÁÖ¼Ò"
+msgid "Remove Selected"
+msgstr "¼±Åà Ç׸ñ Á¦°Å"
-#: ../../network/network.pm:1
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(BOOTP/DHCP)"
+msgid "/Autodetect _modems"
+msgstr "ÀÚµ¿ °Ë»öµÊ"
-#: ../../network/network.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Automatic IP"
-msgstr "IP ÀÚµ¿ÇÒ´ç"
+msgid "Remove printer"
+msgstr "ÇÁ¸°ÅÍ Á¦°Å"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (%s µå¶óÀ̹ö)"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+"°æ°í!\n"
+"\n"
+"µå·¹ÀÌÅ©X°¡ ÀÌÁ¦ À©µµ¿ìÁî ÆÄƼ¼ÇÀÇ Å©±â¸¦ Á¶Á¤ÇÒ °ÍÀÔ´Ï´Ù. ÀÌ ÀÛµ¿Àº \n"
+"À§ÇèÇÕ´Ï´Ù. ¾ÆÁ÷ ½ÃÀÛÇÏÁö ¾Ê¾Ò´Ù¸é, ¼³Ä¡¸¦ Áß´ÜÇÏ°í À©µµ¿ìÁî¿¡¼­\n"
+"µð½ºÅ©°Ë»ç¡¹(°¡´ÉÇÏ´Ù¸é ¶ÇÇÑ ¡¸µð½ºÅ© Á¶°¢¸ðÀ½¡¹)¸¦ ½ÇÇàÇÑ ÈÄ¿¡,\n"
+"¼³Ä¡¸¦ ´Ù½Ã ½ÃÀÛÇϼ¼¿ä. ¶ÇÇÑ µ¥ÀÌÅ͵µ ¹é¾÷ÇØ µÎ¼¼¿ä.\n"
+"ÁغñµÆÀ¸¸é, ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä."
-#: ../../network/network.pm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "Configuring network device %s"
-msgstr "%s ³×Æ®¿÷ Ä«µå ¼³Á¤Áß"
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
-#: ../../network/network.pm:1
+#: ../../standalone/logdrake:1
#, c-format
msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"ÀÌ ½Ã½ºÅÛÀ» À§ÇÑ IP ¼³Á¤À» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.\n"
-"°¢°¢ÀÇ Ç׸ñÀº¡¸.¡¹À¸·Î ±¸ºÐµÈ ½ÊÁø¼ö IP ÁÖ¼Ò·Î ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù.\n"
-"(¿¹, 1.2.3.4)"
+"¸ÞÀÏ ¼³Á¤ µµ±¸¿¡ Àß ¿À¼Ì½À´Ï´Ù.\n"
+"\n"
+"¿©±â¼­ °æ°í ½Ã½ºÅÛÀ» ¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
-#: ../../network/network.pm:1
+#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"WARNING: this device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"°æ°í: ÀÌ ÀåÄ¡´Â ÀÌ¹Ì ÀÎÅÍ³Ý ¿¬°á¿ëÀ¸·Î ¼³Á¤µÇ¾î ÀÖ½À´Ï´Ù.\n"
-"±×³É ÇöÀç ¼³Á¤À» À¯ÁöÇϼ¼¿ä.\n"
-"¾Æ·¡ ÀԷ¶õÀ» º¯°æÇϸé ÇöÀç ¼³Á¤À» µ¤¾î¾²°Ô µË´Ï´Ù."
+msgid "Other"
+msgstr "±âŸ"
-#: ../../network/shorewall.pm:1
+#: ../../any.pm:1 ../../harddrake/v4l.pm:1
#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+msgid "Default"
+msgstr "±âº»°ª"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 2 Emulation"
+msgstr "¹öÆ° 2 ¿¡¹Ä·¹À̼Ç"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "type1inst building"
msgstr ""
-"°æ°í! ±âÁ¸ÀÇ ¹æÈ­º® ¼³Á¤ÀÌ °¨ÁöµÇ¾ú½À´Ï´Ù. ¼³Ä¡°¡ ³¡³­ ÈÄ¿¡ Á÷Á¢ ¼öÁ¤ÇÒ ÇÊ¿ä"
-"°¡ ÀÖ½À´Ï´Ù."
-#: ../../network/shorewall.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "¹æÈ­º® ¼³Á¤ÀÌ °¨ÁöµÇ¾ú½À´Ï´Ù!"
+msgid "Abiword"
+msgstr "¾Æºñ¿öµå"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Account Password"
-msgstr "°èÁ¤ ¾ÏÈ£"
+msgid "choose image file"
+msgstr "À̹ÌÁö ÆÄÀÏ ¼±ÅÃ"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Account Login (user name)"
-msgstr "·Î±×ÀÎ °èÁ¤(»ç¿ëÀÚ¸í)"
+msgid "X server"
+msgstr "X ¼­¹ö"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "¿¬°á ½Ã°£ÃÊ°ú (ÃÊ)"
+msgid "Domain Admin User Name"
+msgstr "µµ¸ÞÀÎ °ü¸®ÀÚ »ç¿ëÀÚ¸í"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Connection speed"
-msgstr "¿¬°á ¼Óµµ"
+msgid "There was an error while scanning for TV channels"
+msgstr "TV ä³ÎÀ» ã´Â °úÁ¤¿¡¼­ ¿À·ù°¡ ÀÖ¾ú½À´Ï´Ù."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Dialing mode"
-msgstr "´ÙÀÌ¾ó¸µ ¸ðµå"
+msgid "US keyboard (international)"
+msgstr "US Å°º¸µå (±¹Á¦)"
-#: ../../network/tools.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Choose your country"
-msgstr "±¹°¡ ¼±ÅÃ"
+msgid "Not installed"
+msgstr "¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "°ø±ÞÀÚ DNS 2 (¿É¼Ç)"
+msgid "LAN connection"
+msgstr "LAN ¿¬°á"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "°ø±ÞÀÚ DNS 1 (¿É¼Ç)"
+msgid "/File/-"
+msgstr "/ÆÄÀÏ(F)/-"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Provider phone number"
-msgstr "°ø±ÞÀÚ ÀüÈ­¹øÈ£"
+msgid "Italian"
+msgstr "ÀÌÅ»¸®¾Æ"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "°ø±ÞÀÚ À̸§ (¿¹ provider.net)"
+msgid "Basic"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Your personal phone number"
-msgstr "´ÔÀÇ °³ÀÎ ÀüÈ­ ¹øÈ£"
+msgid ""
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../lang.pm:1
#, c-format
-msgid "Card IO_1"
-msgstr "Ä«µå IO_1"
+msgid "Honduras"
+msgstr "È¥µÎ¶ó½º"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../help.pm:1
#, c-format
-msgid "Card IO_0"
-msgstr "Ä«µå IO_0"
+msgid "pdq"
+msgstr ""
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO"
msgstr "Ä«µå IO"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Card mem (DMA)"
-msgstr "Ä«µå ¸Þ¸ð¸® (DMA)"
+msgid "when checked, owner and group won't be changed"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Card IRQ"
-msgstr "Ä«µå IRQ"
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+"\n"
+"ÀÌ Æ¯º°ÇÑ ºÎÆ®½ºÆ®·¦\n"
+"ÆÄƼ¼ÇÀº ½Ã½ºÅÛÀ» \n"
+"µà¾ó ºÎÆÃÇϱâ À§ÇÑ °ÍÀÔ´Ï´Ù.\n"
-#: ../../network/tools.pm:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Please fill or check the field below"
-msgstr "¾Æ·¡ ¾ç½ÄÀ» ä¿ö ÁÖ¼¼¿ä."
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr "°¢ °úÁ¤¿¡ ´ëÇÏ¿© ¼öµ¿¼³Ä¡¿Í ÀÚµ¿¹Ýº¹¼³Ä¡¸¦ ¼±ÅÃÇϼ¼¿ä."
-#: ../../network/tools.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Connection Configuration"
-msgstr "¿¬°á ¼³Á¤"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"You can also decide here whether scanners on remote machines should be made "
+"available on this machine."
msgstr ""
-"½Ã½ºÅÛÀÌ ÀÎÅͳݿ¡ ¿¬°áµÇÁö ¾ÊÀº µíÇÕ´Ï´Ù.\n"
-"¿¬°á ¼³Á¤À» ´Ù½ÃÇØ º¸¼¼¿ä."
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "º¸¾È»óÀÇ ÀÌÀ¯·Î ÀÌÁ¦ ¿¬°áÀ» ²÷À» °ÍÀÔ´Ï´Ù."
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Áö±Ý ½Ã½ºÅÛÀÌ ÀÎÅͳݿ¡ ¿¬°áµÇ¾ú½À´Ï´Ù."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by FTP.\n"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Testing your connection..."
-msgstr "¿¬°á Å×½ºÆ® Áß..."
+msgid "Russian (Yawerty)"
+msgstr "·¯½Ã¾Æ (Yawerty)"
-#: ../../network/tools.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Áö±Ý ÀÎÅÍ³Ý ¿¬°áÀ» ½ÃµµÇØ º¸½Ã°Ú½À´Ï±î?"
+msgid "You must enter a device or file name!"
+msgstr "ÀåÄ¡ ¶Ç´Â ÆÄÀÏ À̸§À» ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù!"
-#: ../../network/tools.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Internet configuration"
-msgstr "ÀÎÅÍ³Ý ¼³Á¤"
+msgid "/_Quit"
+msgstr "/Á¾·á(_Q)"
-#: ../../partition_table/raw.pm:1
-#, fuzzy, c-format
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted "
-"data."
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Çϵåµå½ºÅ©¿¡ ÀÌ»óÀÌ ¹ß»ýÇß½À´Ï´Ù. \n"
-"µ¥ÀÌÅÍ ¹«°á¼º °Ë»ç°¡ ½ÇÆÐÇß½À´Ï´Ù. \n"
-"ÀÌ°ÍÀº µð½ºÅ©¿¡ ±â·ÏµÇ´Â µ¥ÀÌÅ͸¦ ÀÒ¾î ¹ö¸°´Ù´Â °ÍÀ» ÀǹÌÇÕ´Ï´Ù."
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid " (Default)"
-msgstr " (±âº»°ª)"
-
-#: ../../printer/cups.pm:1
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS ¼­¹ö IP"
+msgid "Graphics memory: %s kB\n"
+msgstr "ºñµð¿À ¸Þ¸ð¸®: %s kB\n"
-#: ../../printer/cups.pm:1 ../../printer/main.pm:1
+#: ../../standalone.pm:1
#, c-format
-msgid "Remote Printers"
-msgstr "¿ø°Ý ÇÁ¸°ÅÍ"
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
+"\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+msgstr ""
-#: ../../printer/cups.pm:1 ../../printer/data.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+msgid "access to compilation tools"
+msgstr "ÄÄÆÄÀÏ µµ±¸ ¾×¼¼½º"
-#: ../../printer/cups.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "(on this machine)"
-msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
+msgid "Please select data to restore..."
+msgstr "º¹±¸ÇÒ µ¥ÀÌÅ͸¦ ¼±ÅÃÇϼ¼¿ä..."
-#: ../../printer/cups.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "(on %s)"
-msgstr "(%s¿¡)"
+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"
+"À» ³²±âµµ·Ï ÁÖÀÇÇϼ¼¿ä."
-#: ../../printer/data.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+msgid "Standard test page"
+msgstr "Ç¥ÁØ ½ÃÇè ÆäÀÌÁö"
-#: ../../printer/data.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+msgid "Create"
+msgstr "»ý¼º"
-#: ../../printer/data.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
+msgid "What"
+msgstr "´ë»ó"
-#: ../../printer/data.pm:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "LPD"
-msgstr "LPD"
+msgid "There was an error ordering packages:"
+msgstr "ÆÑÅ°Áö¸¦ Á¤·ÄÇÏ´Â Áß ¿À·ù¹ß»ý:"
-#: ../../printer/data.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+msgid "Bulgarian (BDS)"
+msgstr "ºÒ°¡¸®¾Æ (BDS)"
-#: ../../printer/data.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "PDQ"
-msgstr "PDQ"
+msgid "Disable Server"
+msgstr "¼­¹ö »ç¿ë ÇØÁ¦"
-#: ../../printer/data.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
+msgid "Filesystem encryption key"
+msgstr "ÆÄÀϽýºÅÛ ¾Ïȣȭ Å°"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Unknown Model"
-msgstr "¾Ë ¼ö ¾ø´Â ¸ðµ¨"
+msgid "Gujarati"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "Unknown model"
-msgstr "¾Ë ¼ö¾ø´Â ¸ðµ¨"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "%s (Port %s)"
-msgstr "Æ÷Æ®"
+msgid ""
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "È£½ºÆ®¸í:"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Save theme"
+msgstr "Å׸¶ ÀúÀå"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Network %s"
-msgstr "³×Æ®¿÷"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "group"
+msgstr "±×·ì"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Interface \"%s\""
-msgstr "ÀÎÅÍÆäÀ̽º %s"
+#: ../../lang.pm:1
+#, c-format
+msgid "Brazil"
+msgstr "ºê¶óÁú"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Local network(s)"
-msgstr "C Ŭ·¡½º Áö¿ª ³×Æ®¿÷"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Auto Install"
+msgstr "ÀÚµ¿ ¼³Ä¡"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, c-format
-msgid "Raw printer (No driver)"
-msgstr "³¯(RAW) ÇÁ¸°ÅÍ (µå¶óÀ̹ö »ç¿ë¾ÈÇÔ)"
+msgid "Network Configuration Wizard"
+msgstr "³×Æ®¿÷ ¼³Á¤ ¸¶¹ý»ç"
-#: ../../printer/main.pm:1
+#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid ", using command %s"
-msgstr ""
+msgid "Removable media automounting"
+msgstr "Å»Âø½Ä ¹Ìµð¾î ÀÚµ¿ ¸¶¿îÆ®"
-#: ../../printer/main.pm:1
+#: ../../services.pm:1
#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
+msgid "Printing"
+msgstr "Àμâ"
-#: ../../printer/main.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
+msgid "Unkown driver"
+msgstr "¾Ë ¼ö ¾ø´Â µå¶óÀ̹ö"
-#: ../../printer/main.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+msgid ""
+"There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr ""
+msgid "Create a new partition"
+msgstr "»õ ÆÄƼ¼Ç ¸¸µé±â"
-#: ../../printer/main.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", printing to %s"
-msgstr ", %s¿¡ Àμâ"
+msgid "Driver:"
+msgstr "µå¶óÀ̹ö:"
-#: ../../printer/main.pm:1
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "unknown"
+msgstr "¾Ë ¼ö¾ø´Â ¸ðµ¨"
+
+#: ../../install_interactive.pm:1
#, c-format
-msgid ", multi-function device"
-msgstr ""
+msgid "Use fdisk"
+msgstr "fdisk »ç¿ë"
-#: ../../printer/main.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
+msgid "MOVE YOUR WHEEL!"
+msgstr "¸¶¿ì½ºÈÙÀ» ¿òÁ÷¿© º¸¼¼¿ä."
-#: ../../printer/main.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid ", multi-function device on USB"
+msgid "sent: "
msgstr ""
-#: ../../printer/main.pm:1
+#: ../../network/network.pm:1
#, c-format
-msgid ", multi-function device on parallel port \\#%s"
-msgstr ""
+msgid "Automatic IP"
+msgstr "IP ÀÚµ¿ÇÒ´ç"
-#: ../../printer/main.pm:1
+#: ../../help.pm:1
#, fuzzy, c-format
-msgid ", USB printer"
-msgstr "ÇÁ¸°ÅÍ ¾øÀ½"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer \\#%s"
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to use. Just click \"%s\" to reboot the system. The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"bootloader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": to create an installation floppy disk that will automatically\n"
+"perform a whole installation without the help of an operator, similar to\n"
+"the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a number of similar machines.\n"
+"See the Auto install section on our web site for more information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key and type >>linux\n"
+"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:¡¹¸í·ÉÀ» »ç¿ëÇϼ¼¿ä.)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid " on parallel port \\#%s"
-msgstr ""
+msgid "Kensington Thinking Mouse"
+msgstr "Ä˽ÌÅÏ ¾ÅÅ· ¸¶¿ì½º"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Local Printers"
-msgstr "·ÎÄà ÇÁ¸°ÅÍ"
+msgid "Configuration of a remote printer"
+msgstr "¿ø°Ý ÇÁ¸°ÅÍ ¼³Á¤"
-#: ../../printer/main.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Pipe job into a command"
-msgstr "ÀÛ¾÷À» ¸í·ÉÀ¸·Î ÆÄÀÌÇÁ ¿¬°á"
+msgid "Moldova"
+msgstr "¸ôµµ¹Ù"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Enter a printer device URI"
-msgstr "ÇÁ¸°ÅÍ ÀåÄ¡ URIÀ» ÀÔ·ÂÇϼ¼¿ä."
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "¹é¾÷Çϱâ Àü¿¡ Å×ÀÔÀ» Áö¿ïÁö È®ÀÎÇϼ¼¿ä."
-#: ../../printer/main.pm:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "Printer on NetWare server"
-msgstr "³×Æ®¿þ¾î ¼­¹ö»óÀÇ ÇÁ¸°ÅÍ"
+msgid "An online platform to respond to enterprise support needs."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "»ï¹Ù/À©µµ¿ìÁî 95/98/NT»óÀÇ ÇÁ¸°ÅÍ"
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "ÁÖ¼Ò´Â ¡¸http:¡¹·Î ½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù."
-#: ../../printer/main.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "³×Æ®¿÷ ÇÁ¸°ÅÍ (TCP/¼ÒÄÏ)"
+msgid "Add a new rule at the end"
+msgstr "»õ ±ÔÄ¢ ³¡¿¡ Ãß°¡"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Printer on remote lpd server"
-msgstr "¿ø°Ý LPD ¼­¹öÀÇ ÇÁ¸°ÅÍ"
+msgid ""
+"You can also decide here whether printers on remote machines should be "
+"automatically made available on this machine."
+msgstr ""
-#: ../../printer/main.pm:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ"
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"ÀÌÁ¦ %s µå¶óÀ̹ö¿¡ ¿É¼ÇÀ» ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
+"¿É¼ÇÀº ``À̸§=°ª À̸§2=°ª2 ...''Çü½ÄÀ¸·Î ÁöÁ¤ÇÕ´Ï´Ù..\n"
+"°¡·É, ``io=0x300 irq=7''"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Remote printer"
-msgstr "¿ø°Ý ÇÁ¸°ÅÍ"
+msgid "Quit without writing the partition table?"
+msgstr "ÆÄƼ¼ÇÀ» ±â·ÏÇÏÁö ¾Ê°í Á¾·áÇϽðڽÀ´Ï±î?"
-#: ../../printer/main.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Local printer"
-msgstr "·ÎÄà ÇÁ¸°ÅÍ"
+msgid "Genius NetScroll"
+msgstr "Áö´Ï¾î½º ³Ý½ºÅ©·Ñ"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone.pm:1
#, c-format
-msgid "Configuring applications..."
-msgstr "ÇÁ·Î±×·¥ ¼³Á¤ Áß ..."
+msgid "Installing packages..."
+msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Printerdrake"
-msgstr "ÇÁ¸°Å͵巹ÀÌÅ©"
+msgid "Dutch"
+msgstr "³×µ¨¶õµå"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "The following packages need to be installed:\n"
+msgstr "´ÙÀ½ ÆÑÅ°ÁöµéÀÌ ¼³Ä¡µÉ °ÍÀÔ´Ï´Ù."
+
+#: ../../lang.pm:1
#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "ÇÁ¸°ÅÍ ¡¸%s¡¹ Á¦°Å Áß ..."
+msgid "Angola"
+msgstr "¾Ó°ñ¶ó"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Á¤¸»·Î ¡¸%s¡¹ÇÁ¸°Å͸¦ Á¦°ÅÇմϱî?"
+msgid "service setting"
+msgstr "¼­ºñ½º ¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
-msgid "Remove printer"
-msgstr "ÇÁ¸°ÅÍ Á¦°Å"
+msgid "Custom"
+msgstr "»ç¿ëÀÚ Á¤ÀÇ"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
-msgid "Learn how to use this printer"
-msgstr "ÀÌ ÇÁ¸°ÅÍÀÇ »ç¿ë¹ý ¾Ë¾Æº¸±â"
+msgid "File is already used by another loopback, choose another one"
+msgstr "´Ù¸¥ ·çÇÁ¹éÀÌ ÀÌ ÆÄÀÏÀ» »ç¿ëÇÏ°í ÀÖ½À´Ï´Ù, ´Ù¸¥ °ÍÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Print test pages"
-msgstr "½ÃÇè ÆäÀÌÁö Àμâ"
+msgid "Read-only"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgid "Latvia"
+msgstr "¶óÆ®ºñ¾Æ"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No known driver"
msgstr ""
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "1 MB"
+msgstr "1 MB"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+"If it is not the one you want to configure, enter a device name/file name in "
+"the input line"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/draksound:1
#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgid "Configure Local Area Network..."
+msgstr "Áö¿ª ³×Æ®¿÷ ¼³Á¤..."
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+msgid "Launch the sound system on your machine"
+msgstr "ÀÌ ÄÄÇ»ÅÍ¿¡¼­ »ç¿îµå ½Ã½ºÅÛ ½ÇÇà"
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+msgid "Preparing printer database..."
+msgstr "ÇÁ¸°ÅÍ µ¥ÀÌÅͺ£À̽º Áغñ Áß ..."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgid "Information"
+msgstr "Á¤º¸"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgid "No network card"
+msgstr "³×Æ®¿÷ Ä«µå ¾øÀ½"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "¡¸%s¡¹ÇÁ¸°ÅÍ°¡ ±âº» ÇÁ¸°ÅÍ·Î ¼³Á¤µÇ¾ú½À´Ï´Ù."
+msgid "Which filesystem do you want?"
+msgstr "¾î¶² ÆÄÀÏ ½Ã½ºÅÛÀ» ¿øÇϼ¼¿ä?"
-#: ../../printer/printerdrake.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Default printer"
-msgstr "±âº» ÇÁ¸°ÅÍ"
+msgid "3 buttons"
+msgstr "3 ¹öÆ°"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Set this printer as the default"
-msgstr "ÀÌ ÇÁ¸°Å͸¦ ±âº»À¸·Î ¼³Á¤"
+msgid "Detailed information"
+msgstr "ÀÚ¼¼ÇÑ Á¤º¸"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Printer options"
-msgstr "ÇÁ¸°ÅÍ ¿É¼Ç"
+msgid "Malta"
+msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
+msgstr ""
+"ÇÁ¸°ÅÍ ±âº»°ª ¼³Á¤\n"
+"ÆäÀÌÁö Å©±â¿Í (¸¸¾à À¯È¿ÇÏ´Ù¸é) À×Å© À¯ÇüÀÌ ¿Ã¹Ù¸¥Áö\n"
+"Àß È®ÀÎÇϼ¼¿ä. °íÇ°Áú Àμ⹰À» ¾ò±âÀ§Çؼ­´Â Àμ⠼ӵµ°¡\n"
+"±× ¸¸Å­ ´À·ÁÁø´Ù´Â °ÍÀ» ¾Ë°í °è¼¼¿ä."
+
+#: ../../install_any.pm:1
#, c-format
-msgid "Printer manufacturer, model"
-msgstr "ÇÁ¸°ÅÍ Á¦Á¶¾÷ü, ¸ðµ¨"
+msgid "This floppy is not FAT formatted"
+msgstr "ÀÌ Ç÷ÎÇÇ µð½ºÅ©´Â FAT Æ÷¸ËÀÌ ¾Æ´Õ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "ÇÁ¸°ÅÍ Á¦Á¶¾÷ü, ¸ðµ¨, µå¶óÀ̹ö"
+msgid "Configuring network"
+msgstr "³×Æ®¿÷ ¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm:1
#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "±âÁ¸ ÇÁ¸°ÅÍ ¡¸%s¡¹ Á¦°Å Áß ..."
+msgid "Graphic Card"
+msgstr "±×·¡ÇÈ Ä«µå"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Printer name, description, location"
-msgstr "ÇÁ¸°ÅÍ À̸§, ¼³¸í, À§Ä¡"
+msgid "Resizing Windows partition"
+msgstr "À©µµ¿ìÁî ÆÄÀÏ ½Ã½ºÅÛÀÇ ¹üÀ§ °è»êÁß"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Printer connection type"
-msgstr "ÀÎÅÍ³Ý ¿¬°á À¯Çü"
+msgid "Provider dns 1 (optional)"
+msgstr "°ø±ÞÀÚ DNS 1 (¿É¼Ç)"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Raw printer"
-msgstr "³¯(RAW) ÇÁ¸°ÅÍ"
+msgid "Cameroon"
+msgstr "Ä«¸Þ·é"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Do it!"
-msgstr "½ÇÇà"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"ÀÌÁ¦ %sÀÇ ÆÄƼ¼Ç ÀÛ¾÷À» ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
+"¸¶Ä£ ÈÄ, 'w'¸¦ ´­·¯ ÀúÀåÇϴ°ÍÀ» ÀØÁö¸¶¼¼¿ä."
#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
@@ -9936,477 +9916,341 @@ msgstr "½ÇÇà"
msgid "Close"
msgstr "´Ý±â"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"\"%s\": check the current country selection. If you are not in this\n"
+"country, click on the \"%s\" button and choose another one. If your country\n"
+"is not in the first list shown, click the \"%s\" button to get the complete\n"
+"country list."
msgstr ""
-"ÇÁ¸°ÅÍ %s: %s: %s\n"
-"ÀÌ ÇÁ¸°ÅÍ¿¡ ´ëÇؼ­ ¹«¾ùÀ» ¼öÁ¤ÇϽðڽÀ´Ï±î?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "ÀÎÅÍ³Ý ¼³Á¤ º¯°æ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "»õ ÇÁ¸°ÅÍ Ãß°¡"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Normal Mode"
-msgstr "ÀÏ¹Ý ¸ðµå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Àμâ½Ã½ºÅÛ º¯°æ"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS ¼³Á¤"
+msgid "Calendar"
+msgstr "´Þ·Â"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "ÇÁ¸°ÅÍ ¸ñ·Ï °»½Å"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "ÇÁ¸°ÅÍ ¸ñ·Ï °»½Å"
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"´ÙÀ½ ÇÁ¸°Å͵éÀÌ ¼³Á¤µÇ¾ú½À´Ï´Ù.\n"
-"¼öÁ¤ÇÏ°í ½Í°Å³ª,\n"
-"Á¤º¸¸¦ º¸°í ½Í´Ù¸é ÇÁ¸°Å͸¦ Ŭ¸¯Çϼ¼¿ä.\n"
-"»õ ÇÁ¸°Å͸¦ Ãß°¡ÇÏ°í ½Í´Ù¸é ¡¸ÇÁ¸°ÅÍ Ãß°¡¡¹¸¦ ´©¸£¼¼¿ä."
+"¿ø°Ý LPD ÇÁ¸°Å͸¦ »ç¿ëÇϱâ À§Çؼ­´Â\n"
+"±× ÇÁ¸°ÅÍ ¼­¹öÀÇ È£½ºÆ®¸í°ú ±× ¼­¹ö»óÀÇ ÇÁ¸°ÅÍ À̸§À»\n"
+"ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Printing system: "
-msgstr "Àμ⠽ýºÅÛ:"
+msgid "Iceland"
+msgstr "¾ÆÀ̽º·£µå"
-#: ../../printer/printerdrake.pm:1
+#: ../../common.pm:1
#, c-format
-msgid "Checking installed software..."
-msgstr "¼³Ä¡µÈ ¼ÒÇÁÆ®¿þ¾î È®ÀÎ Áß ..."
+msgid "consolehelper missing"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Installing Foomatic..."
-msgstr "Foomatic ¼³Ä¡ Áß..."
+msgid "stopped"
+msgstr "Á¤ÁöµÊ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "ÇÁ¸°ÅÍ ¡¸%s¡¹ ¼³Á¤ Áß ..."
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Whether the FPU has an irq vector"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "ÇÁ¸°ÅÍ ¡¸%s¡¹ ¼³Á¤ Áß ..."
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../printer/printerdrake.pm:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
-msgid "Reading printer data..."
-msgstr "ÇÁ¸°ÅÍ µ¥ÀÌÅÍ Àд Áß ..."
+msgid "Expand Tree"
+msgstr "Æ®¸® È®Àå"
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "¾î¶² Àμ⠽ýºÅÛ(½ºÇ®·¯)À» »ç¿ëÇϽðڽÀ´Ï±î?"
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oops the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
-msgid "Select Printer Spooler"
-msgstr "ÇÁ¸°ÅÍ ½ºÇ®·¯À» ¼±ÅÃÇϼ¼¿ä."
+msgid "Expert Mode"
+msgstr "Àü¹®°¡ ¸ðµå"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Setting Default Printer..."
-msgstr "±âº» ÇÁ¸°ÅÍ"
+#, c-format
+msgid "Printer options"
+msgstr "ÇÁ¸°ÅÍ ¿É¼Ç"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw:1
#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
+msgid "Local Network adress"
+msgstr "C Ŭ·¡½º Áö¿ª ³×Æ®¿÷"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "%s Á¦°Å Áß"
+msgid "Backup your System files. (/etc directory)"
+msgstr "½Ã½ºÅÛ ÆÄÀÏ ¸ÕÀú ¹é¾÷:"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"Do you want to install the updates ?"
msgstr ""
-"Àμ⠽ýºÅÛ(%s)´Â ÄÄÇ»ÅÍ°¡ ºÎÆÃÇÒ ¶§ ÀÚµ¿À¸·Î ½ÇÇàµÇÁö\n"
-"¾ÊÀ» °ÍÀÔ´Ï´Ù.\n"
-"\n"
-"Àμ⠽ýºÅÛÀº Å©·¡Ä¿µéÀÇ ÀáÀçÀûÀÎ °ø°Ý¸ñÇ¥À̱⠶§¹®¿¡,\n"
-"º¸¾È ¼öÁØÀ» ³ô°Ô ÇÏ¿´À» ½Ã¿¡´Â ÀÚµ¿½ÇÇà ±â´ÉÀÌ ÇØÁ¦µÉ\n"
-"¼öµµ ÀÖµµ·Ï µÇ¾î ÀÖ½À´Ï´Ù.\n"
-"\n"
-"´Ù½Ã Àμ⠽ýºÅÛÀÇ ÀÚµ¿½ÇÇà ±â´ÉÀÌ È°¼ºÈ­µÇµµ·Ï\n"
-"ÇϽðڽÀ´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "ºÎÆýà Àμ⠽ýºÅÛ ÀÚµ¿½ÇÇà"
+msgid "Samba Server"
+msgstr "»ï¹Ù ¼­ºñ½º"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
+"Arguments: (arg, alert=1)\n"
"\n"
-"Do you really want to configure printing on this machine?"
+"Enable/Disable IP spoofing protection."
msgstr ""
-"Áö±Ý ´ÔÀº º¸¾È¼öÁØ %2$s·Î ¿î¿ëµÇ´Â ½Ã½ºÅÛ¿¡\n"
-"Àμ⠽ýºÅÛ %1$sÀ» ¼³Ä¡ÇÏ·Á°í ÇÕ´Ï´Ù.\n"
-"\n"
-"Àμ⠽ýºÅÛÀº ÀμâÀÛ¾÷À» ±â´Ù·È´Ù°¡ ó¸®ÇÏ´Â\n"
-"´ë¸ó(¹é±×¶ó¿îµå ÇÁ·Î¼¼½º)¸¦ ½ÇÇà½Ãŵ´Ï´Ù.\n"
-"¿ø°Ý ½Ã½ºÅÛ¿¡¼­ ³×Æ®¿÷À¸·Î ÀÌ ´ë¸ó¿¡ Á¢±ÙÇÒ ¼öµµ\n"
-"Àֱ⠶§¹®¿¡, Å©·¡Ä¿µéÀÇ »ç³É°¨ÀÌ µÇ±âµµ ÇÕ´Ï´Ù.\n"
-"µû¶ó¼­ ÇöÀç º¸¾È ¼öÁØ¿¡¼­´Â ´ÜÁö ¸î¸îÀÇ ¸Å¸óµé¸¸\n"
-"½ÇÇàµÇµµ·Ï ¼±ÅõǴ °ÍÀÌ ±âº»ÀÔ´Ï´Ù.\n"
-"\n"
-"Á¤¸»·Î ÀÌ ÄÄÇ»ÅÍ»óÀÇ Àμ⠼³Á¤À»\n"
-"¿øÇϽʴϱî? "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "º¸¾È ¼öÁØ %s·Î Àμ⠽ýºÅÛ ¼³Ä¡ Áß"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "ÃÖ°í"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "³ôÀ½"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Àμ⠽ýºÅÛ Àç½ÇÇà Áß ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "¿ø°Ý ÇÁ¸°ÅÍ ¼³Á¤"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
+msgid "Australian Optus cable TV"
msgstr ""
-"³×Æ®¿÷ Á¢±ÙÀÌ ºÒ°¡´ÉÇßÀ¸¸ç, ½ÃÀÛÇÒ ¼öµµ ¾ø¾ú½À´Ï´Ù. ³×Æ®¿÷ ¼³Á¤°ú Çϵå¿þ¾î¸¦ "
-"Á¡°ËÇØ ÁÖ¼¼¿ä. ±×¸®°í³ª¼­ ¿ø°Ý ÇÁ¸°ÅÍ ¼³Á¤À» ´Ù½Ã ½ÃµµÇØ º¸¼¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"¼³Ä¡°úÁ¤¿¡¼­ ¼³Á¤ÇÑ ³×Æ®¿÷À» ½ÃÀÛÇÒ ¼ö ¾ø½À´Ï´Ù. ½Ã½ºÅÛÀÌ ºÎÆÃµÉ ¶§, ³×Æ®¿÷"
-"ÀÌ ÀÚµ¿ ½ÇÇàµÇµµ·Ï µÇ¾î ÀÖ´ÂÁö È®ÀÎÇÏ°í, ¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ(¡¸³×Æ®¿÷°ú ÀÎÅÍ"
-"³Ý¡¹/¡¸¿¬°á¡¹)¸¦ ÀÌ¿ëÇÏ¿© ¿Ã¹Ù¸£°Ô ¼³Á¤Çϼ¼¿ä.±×¸®°í³ª¼­ ´Ù½Ã ¸Çµå·¹ÀÌÅ© Á¦"
-"¾î ¼¾ÅÍ(¡¸Çϵå¿þ¾î¡¹/¡¸ÇÁ¸°ÅÍ¡¹)¸¦ ÀÌ¿ëÇÏ¿©, ÇÁ¸°ÅÍ ¼³Á¤À» ´Ù½Ã ÇØ º¸¼¼¿ä."
+" <Tab>/<Alt-Tab> Ç׸ñ°£ À̵¿ | <Space> ¼±Åà | <F12> ´ÙÀ½ È­¸é"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Configure the network now"
-msgstr "Áö±Ý ³×Æ®¿÷ ¼³Á¤"
+msgid "Subnet:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Go on without configuring the network"
-msgstr "³×Æ®¿÷ ¼³Á¤ ¾øÀÌ °è¼Ó"
+msgid "Zimbabwe"
+msgstr "Áü¹Ùºê¿þ"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"¿ø°Ý ÇÁ¸°Å͸¦ ¼³Á¤ÇÏ·Á ÇÕ´Ï´Ù. ±×·¯±â À§Çؼ­´Â ³×Æ®¿÷ÀÌ µ¿ÀÛÇÏ°í ÀÖ¾î¾ß ÇÏ´Â"
-"µ¥, ¾ÆÁ÷ ³×Æ®¿÷ ¼³Á¤ÀÌ µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù. ³×Æ®¿÷ ¼³Á¤¾øÀÌ °è¼Ó ÁøÇàÇϸé, Áö"
-"±Ý ¼³Á¤ÇÏ°í ÀÖ´Â ÇÁ¸°Å͸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. ¾î¶»°Ô ÇϽðڽÀ´Ï±î?"
+msgid "Please enter the host name or IP."
+msgstr "È£½ºÆ® À̸§ ¶Ç´Â IP¸¦ ÀÔ·ÂÇϼ¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Network functionality not configured"
-msgstr "³×Æ®¿÷ ±â´ÉÀÌ ¼³Á¤µÇÁö ¾Ê¾Ò½À´Ï´Ù."
+msgid "When"
+msgstr "½Ã°£"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Starting network..."
-msgstr "³×Æ®¿÷ ¿¬°á Áß..."
+msgid "Second DNS Server (optional)"
+msgstr "µÎ¹ø° DNS ¼­¹ö (¿É¼Ç)"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Refreshing printer data..."
-msgstr "ÇÁ¸°ÅÍ µ¥ÀÌÅÍ °»½Å Áß ..."
+msgid "Finland"
+msgstr "Çɶõµå"
-#: ../../printer/printerdrake.pm:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Arguments: (arg)\n"
+"\n"
+"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
+"\\fIarg\\fP = ALL. Only local ones\n"
+"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
+"services you need, use /etc/hosts.allow\n"
+"(see hosts.allow(5))."
msgstr ""
-"ÀÌÀü ±âº» ÇÁ¸°ÅÍ(¡¸%s¡¹)¸¦ Àü¼ÛÇÏ¿´½À´Ï´Ù. »õ ÇÁ¸°Æà ½Ã½ºÅÛ %sÇÏ¿¡¼­ ±×°ÍÀÌ "
-"¶ÇÇÑ ±âº» ÇÁ¸°ÅÍ°¡ µÇµµ·Ï ÇϽðڽÀ´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Transfer printer configuration"
-msgstr "ÇÁ¸°ÅÍ ¼³Á¤ Àü¼Û"
+msgid "Color depth: %s\n"
+msgstr "»ö»ó ½Éµµ: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Transferring %s..."
-msgstr "%s Àü¼Û Áß ..."
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "ÀÌ ÆÑÅ°Áö¸¦ ¼±ÅÃÇØÁ¦ÇÒ¼ö ¾ø½À´Ï´Ù. ¹Ýµå½Ã ¾÷±×·¹À̵åµÇ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "New printer name"
-msgstr "»õ ÇÁ¸°ÅÍ À̸§"
+msgid "Loading from floppy"
+msgstr "Ç÷ÎÇÇ¿¡¼­ Àд Áß"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakperm:1
#, c-format
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Drakperm is used to see files to use in order to fix permissions, owners, "
+"and groups via msec.\n"
+"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-"ÇÁ¸°ÅÍ ¡¸%s¡¹°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù.\n"
-"Á¤¸»·Î ±âÁ¸ ¼³Á¤À» µ¤¾î ¾µ±î¿ä?"
-#: ../../printer/printerdrake.pm:1
+#: ../../ugtk.pm:1
#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "ÇÁ¸°ÅÍ À̸§¿¡´Â ¹®ÀÚ, ¼ýÀÚ ±×¸®°í ¹ØÁÙ(Underscore)¸¸ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+"-adobe-helvetica-bold-r-normal--16-*-75-75-p-*-iso8859-1,-*-gulim-bold-r-"
+"normal--16-*-75-75-*-*-ksc5601.1987-0,*-r-*"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Transfer"
-msgstr "Àü¼Û"
+msgid "Slovenia"
+msgstr "½½·Îº£´Ï¾Æ"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm:1
#, c-format
msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
+"Enter a user\n"
+"%s"
msgstr ""
-"ÇÁ¸°ÅÍ ¡¸%s¡¹°¡ ÀÌ¹Ì %sÇÏ¿¡ Á¸ÀçÇÔ´Ï´Ù.\n"
-"µ¤¾î ¾µ·Á¸é ¡¸Àü¼Û¡¹À» ´©¸£¼¼¿ä.\n"
-"»õ À̸§À» ÀÔ·ÂÇϰųª ÀÌ ÇÁ¸°Å͸¦ Áö³ªÄ¥ ¼öµµ ÀÖ½À´Ï´Ù."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "ÇÁ¸°ÅÍ Àü¼Û ÇÏÁö¾ÊÀ½"
+"»ç¿ëÀÚ ÀÔ·Â\n"
+"%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"- PCI and USB devices: this lists the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
msgstr ""
-"\n"
-"Àü¼ÛÇÏ·Á´Â ÇÁ¸°Å͵éÀ» ¼±ÅÃÇÑ ÈÄ¿¡ ¡¸Àü¼Û¡¹À» ´©¸£¼¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"¶ÇÇÑ Á¦Á¶¾÷ü°¡ Á¦°øÇÑ PPD ÆÄÀÏÀ̳ª CUPS Æ÷ÇÔ µå¶óÀ̹ö·Î ¼³Á¤µÈ ÇÁ¸°Å͵µ Àü¼Û"
-"µÉ ¼ö ¾ø½À´Ï´Ù."
+msgid "ProgressBar color selection"
+msgstr "ÁøÇื´ë »ö»ó ¼±ÅÃ"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm:1
#, c-format
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Here are the entries on your boot menu so far.\n"
+"You can create additional entries or change the existing ones."
msgstr ""
-"±×¸®°í ¶ÇÇÑ, ÀÌ ÇÁ·Î±×·¥À̳ª ¡¸Foomatic ¼³Á¤¡¹À¸·Î »ý¼ºµÇÁö ¾ÊÀº Å¥´Â Àü¼ÛµÉ "
-"¼ö ¾ø½À´Ï´Ù."
+"¸î °¡Áö Ç׸ñÀÌ ¿©±â¿¡ Ç¥½ÃµÇ°í ÀÖ½À´Ï´Ù.\n"
+"´õ Ãß°¡Çϰųª, ±âÁ¸ÀÇ °ÍµéÀ» ¼öÁ¤ÇÒ¼ö ÀÖ½À´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1
#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD¿Í LPRng´Â IPP ÇÁ¸°Å͸¦ Áö¿øÇÏÁö ¾Ê½À´Ï´Ù.\n"
+msgid "/dev/hda"
+msgstr "/dev/hda"
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1
#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"LPQ´Â ´ÜÁö Áö¿ª ÇÁ¸°ÅÍ, ¿ø°Ý LPD ÇÁ¸°ÅÍ ±×¸®°í ¼ÒÄÏ/TCP ÇÁ¸°Å͸¸À» Áö¿øÇÕ´Ï"
-"´Ù.\n"
+msgid "/dev/hdb"
+msgstr "/dev/hdb"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-"CUPS´Â ³ëº§ ¼­¹ö»óÀÇ ÇÁ¸°Åͳª ÀÚÀ¯Çü½Ä ¸í·É¾î·Î µ¥ÀÌÅ͸¦ º¸³»´Â ÇÁ¸°ÅÍ´Â Áö¿ø"
-"ÇÏÁö ¾Ê½À´Ï´Ù.\n"
+"Á¤ÇØÁØ ½Ã°£¿¡ Çѹø¿¡ Çϳª¾¿ ½ÇÇà½Ãŵ´Ï´Ù. at´Â batch ¸í·ÉµéÀ» ½Ã½ºÅÛ\n"
+"·ÎµåÀ²ÀÌ ³·À»¶§ ¼öÇà½Ãŵ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"½ºÇ®·¯ %s¸¦ À§ÇØ »ç¿ëÇÑ ÇÁ¸°ÅÍ ¼³Á¤À» ÇöÀç ½ºÇ®·¯ÀÎ %s·Î º¹»çÇÒ ¼ö ÀÖ½À´Ï´Ù. "
-"¸ðµç ¼³Á¤ µ¥ÀÌÅÍ(ÇÁ¸°Å͸í, ¼³¸í, À§Ä¡, ¿¬°á À¯Çü, ±×¸®°í ±âº» ¿É¼Ç°ªµé)°¡ ³Ñ"
-"°ÜÁú °ÍÀÔ´Ï´Ù. ±×·¯³ª ÀÛ¾÷µéÀº Àü¼ÛµÇÁö ¾Ê½À´Ï´Ù.\n"
-"´ÙÀ½°ú °°Àº ÀÌÀ¯·ÎÀÎÇÏ¿© ¸ðµç Å¥°¡ Àü¼ÛµÉ ¼ö´Â ¾ø½À´Ï´Ù:\n"
+msgid "Radio support:"
+msgstr "¶óµð¿À Áö¿ø:"
#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Your printer was configured automatically to give you access to the photo "
-"card drives from your PC. Now you can access your photo cards using the "
-"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
-"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
-"\"man mtools\" on the command line for more info). You find the card's file "
-"system under the drive letter \"p:\", or subsequent drive letters when you "
-"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
-"can switch between drive letters with the field at the upper-right corners "
-"of the file lists."
-msgstr ""
+#, fuzzy, c-format
+msgid "Installing SANE packages..."
+msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid ""
-"Your multi-function device was configured automatically to be able to scan. "
-"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
-"scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" on the command line to get more "
-"information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
+msgid "boot disk creation"
+msgstr "ºÎÆ® µð½ºÅ© »ý¼º"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Printing test page(s)..."
-msgstr "½ÃÇè ÆäÀÌÁö Àμâ Áß..."
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootloader.pm:1
#, c-format
-msgid "Print option list"
-msgstr "ÇÁ¸°ÅÍ ¿É¼Ç ¸ñ·Ï"
+msgid "SILO"
+msgstr "SILO"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/removable.pm:1
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
+msgid "Change type"
+msgstr "À¯Çü º¯°æ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
+#: ../../any.pm:1
+#, c-format
+msgid "SILO Installation"
+msgstr "SILO ¼³Ä¡"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use CD/DVDROM to backup"
msgstr ""
-"ÇöÀç ÇÁ¸°ÅÍ¿¡ »ç¿ëÇÒ ¼ö ÀÖ´Â ¿É¼Ç ¸ñ·ÏÀ» º¸·Á¸é, ¡¸ÀÎ¼â ¿É¼Ç ¸ñ·Ï¡¹À» ´©¸£¼¼"
-"¿ä.\n"
-"\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_messages.pm:1
#, c-format
msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
+"\n"
+"For information on fixes which are available for this release of Mandrake "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
+"ÃàÇÏÇÕ´Ï´Ù. ¼³Ä¡°¡ ¼º°øÀûÀ¸·Î ³¡³µ½À´Ï´Ù.\n"
+"ºÎÆ® ¹Ìµð¾î¸¦ Á¦°ÅÇÏ°í ¸®ÅÏÀ» ´­·¯¼­ ¸®ºÎÆà Çϼ¼¿ä.\n"
"\n"
-"¡¸%s¡¹¿Í¡¸%s¡¹¸í·ÉÀº ¶ÇÇÑ Æ¯Á¤ Àμâ ÀÛ¾÷À» À§ÇÑ ¿É¼Ç ¼³Á¤À» ¼öÁ¤ÇÒ ¼ö ÀÖ°Ô ÇÕ"
-"´Ï´Ù. ¸í·ÉÇà¿¡ ¿øÇÏ´Â ¼³Á¤°ªÀ» Ãß°¡Çϼ¼¿ä, ¿¹: ¡¸%s <ÆÄÀÏ>¡¹.\n"
+"\n"
+"ÀÌ ¹öÀüÀÇ ¸Çµå·¹ÀÌÅ© ¸®´ª½ºÀÇ ¹ö±×¼öÁ¤ Á¤º¸´Â\n"
+"%s\n"
+"¿¡¼­ ¾òÀ¸½Ç ¼ö ÀÖ½À´Ï´Ù.\n"
+"\n"
+"\n"
+"¼³Ä¡ÈÄ ½Ã½ºÅÛ ¼³Á¤¿¡ ´ëÇÑ Á¤º¸´Â °ø½Ä ¸Çµå·¹ÀÌÅ© ¸®´ª½º À¯Àú °¡À̵带\n"
+"Âü°íÇϽñ⠹ٶø´Ï´Ù."
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
+msgid "paranoid"
+msgstr "ÃÖ°í"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Send mail report after each backup to:"
+msgstr "¹é¾÷ ÈÄ º¸°í ¸ÞÀÏ º¸³»±â:"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10416,258 +10260,214 @@ msgid ""
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"¸í·ÉÇà(Å͹̳ΠÀ©µµ¿ì)¿¡¼­ ÆÄÀÏÀ» ÀμâÇÏ·Á¸é, ¡¸%s <ÆÄÀÏ>¡¹ ¶Ç´Â ¡¸%s <ÆÄÀÏ>¡¹"
-"¸í·ÉÀ» »ç¿ëÇϼ¼¿ä.\n"
+msgid "Resolution"
+msgstr "ÇØ»óµµ"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
msgstr ""
-"ÇöÀç ÇÁ¸°ÅÍ¿¡ »ç¿ëÇÒ ¼ö ÀÖ´Â ¿É¼Ç ¸ñ·ÏÀ» º¸·Á¸é, ¡¸ÀÎ¼â ¿É¼Ç ¸ñ·Ï¡¹À» ´©¸£¼¼"
-"¿ä.\n"
-"\n"
+"»ï¹Ù ÇÁ¸°ÅÍ·Î ÀμâÇÏ·Á¸é, »ï¹Ù ¼­¹öÀÇ È£½ºÆ®¸í \n"
+"(ÁÖÀÇ! ±× ¼­¹öÀÇ TCP/IP È£½ºÆ®¸í°ú´Â À̸§ÀÌ ´Ù¸¦ ¼ö ÀÖ½À´Ï´Ù.)°ú, \n"
+"°¡´ÉÇÏ´Ù¸é, ±× ¼­¹öÀÇ IP ÁÖ¼Ò ±×¸®°í ¾×¼¼½ºÇÏ·Á´Â ÇÁ¸°ÅÍÀÇ \n"
+"°øÀ¯ À̸§, Á¤½Ä »ç¿ëÀÚ¸í, ¾ÏÈ£, ÀÛ¾÷±×·ì¸íÀ» \n"
+"ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
+"Arguments: (arg)\n"
"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
+" Accept/Refuse icmp echo."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"¸í·ÉÇà(Å͹̳ΠÀ©µµ¿ì)¿¡¼­ ÆÄÀÏÀ» ÀμâÇÏ·Á¸é, ¡¸%s <ÆÄÀÏ>¡¹¸í·ÉÀ» »ç¿ëÇϼ¼"
-"¿ä.\n"
+msgid "reconfigure"
+msgstr "Àç¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"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"
+"ÁÖÀÇ: ÀÌ°ÍÀº ½ÇÇèÀûÀÎ Áö¿øÀÌ¸ç ´ÔÀÇ ÄÄÇ»Å͸¦ ¸ØÃß°Ô ÇÒ ¼ö ÀÖ½À´Ï´Ù."
+
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Xinetd Service"
+msgstr "Xinetd ¼­ºñ½º"
+
+#: ../../any.pm:1
+#, c-format
+msgid "access to network tools"
+msgstr "³×Æ®¿÷ µµ±¸ ¾×¼¼½º"
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
+msgid "Firmware-Upload for HP LaserJet 1000"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Did it work properly?"
-msgstr "¿Ã¹Ù¸£°Ô ÀÛµ¿Çß½À´Ï±î?"
+msgid "Here is a list of all auto-detected printers. "
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"½ÃÇè Àμâ ÆäÀÌÁö¸¦ ÇÁ¸°ÅÍ·Î º¸³Â½À´Ï´Ù.\n"
-"ÀμâµÇ±â±îÁö ¾à°£ÀÇ ½Ã°£ÀÌ °É¸± ¼ö ÀÖ½À´Ï´Ù.\n"
+"aboot ¼³Ä¡ ½ÇÆÐ. \n"
+"ù¹ø° ÆÄƼ¼ÇÀ» ÈѼÕÇÒÁö¶óµµ °­Á¦ ¼³Ä¡ÇÒ±î¿ä?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
+"Options Description:\n"
"\n"
-msgstr ""
-"½ÃÇè Àμâ ÆäÀÌÁö¸¦ ÇÁ¸°ÅÍ·Î º¸³Â½À´Ï´Ù.\n"
-"ÀμâµÇ±â±îÁö ¾à°£ÀÇ ½Ã°£ÀÌ °É¸± ¼ö ÀÖ½À´Ï´Ù.\n"
-"Àμ⠻óȲ: \n"
-"%s\n"
+" In this step Drakbackup allow you to change:\n"
"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %%).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000%% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" #> cat .backupignore\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "½ÃÇè ÆäÀÌÁö Àμ⠾ÈÇÔ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "»çÁø ½ÃÇè ÆäÀÌÁö"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Alternative test page (A4)"
-msgstr "½ÃÇè ÆäÀÌÁö È°¼ºÈ­ (A4)"
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr ""
+"¼±ÅÃµÈ ÆÄÀÏ\n"
+"º¹±¸"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "´Ù¸¥ ½ÃÇè ÆäÀÌÁö (Letter)"
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/tools.pm:1
#, c-format
-msgid "Standard test page"
-msgstr "Ç¥ÁØ ½ÃÇè ÆäÀÌÁö"
+msgid "Please fill or check the field below"
+msgstr "¾Æ·¡ ¾ç½ÄÀ» ä¿ö ÁÖ¼¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Print"
-msgstr "Àμâ"
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "¡¸/etc/fstab¡¹ÀÇ º¯°æ»çÇ×À» ÀúÀåÇϽðڽÀ´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "No test pages"
-msgstr "½ÃÇè ÆäÀÌÁö ¾øÀ½"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"ÀμâÇÒ ½ÃÇè ÆäÀÌÁö¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
-"ÁÖÀÇ: »çÁø ½ÃÇè ÆäÀÌÁö¸¦ ÀμâÇϱâ À§Çؼ­´Â ´Ù¼Ò ½Ã°£ÀÌ °É¸± ¼ö ÀÖ½À´Ï´Ù.\n"
-"±×¸®°í Àú¿ë·®ÀÇ ¸Þ¸ð¸®¸¦ °¡Áø ·¹ÀÌÀú ÇÁ¸°ÅÍ¿¡¼­´Â\n"
-"ÆäÀÌÁö°¡ ³ª¿ÀÁö ¾ÊÀ» ¼öµµ ÀÖ½À´Ï´Ù.\n"
-"Ç¥ÁØ ½ÃÇè ÆäÀÌÁö´Â ´ë°³ Àß ÀμâµË´Ï´Ù."
+msgid "Boot Protocol"
+msgstr "ºÎÆ® ÇÁ·ÎÅäÄÝ"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Test pages"
-msgstr "½ÃÇè ÆäÀÌÁö"
+msgid "LVM-disks %s\n"
+msgstr "LVM-µð½ºÅ© %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"ÀÌ ÇÁ¸°ÅÍ(%s)¸¦\n"
-"±âº» ÇÁ¸°ÅÍ·Î ÇϽðڽÀ´Ï±î?"
+msgid "The package %s is needed. Install it?"
+msgstr "ÆÑÅ°Áö %s°¡ ÇÊ¿äÇÕ´Ï´Ù. ¼³Ä¡ÇÏ°Ú½À´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Option %s out of range!"
-msgstr "%s ¿É¼Ç ¹üÀ§ ÃÊ°ú!"
+msgid "On boot"
+msgstr "ÀÚµ¿½ÇÇà"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Option %s must be a number!"
-msgstr "%s ¿É¼ÇÀº ¼ýÀÚÀ̾î¾ß ÇÕ´Ï´Ù!"
+msgid "Bus identification"
+msgstr "¹ö½º ¾ÆÀ̵ð"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "%s ¿É¼ÇÀº Á¤¼ö ¹øÈ£À̾î¾ß ÇÕ´Ï´Ù!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "ÇÁ¸°ÅÍ ¸ðµ¨ ¼±ÅÃ"
+msgid "Please make a backup of your data first"
+msgstr "¸ÕÀú µ¥ÀÌÅ͸¦ ¹é¾÷Çϼ¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, fuzzy, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"ÇÁ¸°ÅÍ ±âº»°ª ¼³Á¤\n"
-"ÆäÀÌÁö Å©±â¿Í (¸¸¾à À¯È¿ÇÏ´Ù¸é) À×Å© À¯ÇüÀÌ ¿Ã¹Ù¸¥Áö\n"
-"Àß È®ÀÎÇϼ¼¿ä. °íÇ°Áú Àμ⹰À» ¾ò±âÀ§Çؼ­´Â Àμ⠼ӵµ°¡\n"
-"±× ¸¸Å­ ´À·ÁÁø´Ù´Â °ÍÀ» ¾Ë°í °è¼¼¿ä."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
+msgid "Vatican"
+msgstr "¶óÆ®¹Ù¾Æ"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
+"ÇÏµå µå¶óÀ̺갡 Çϳª ÀÌ»ó ÀÖ½À´Ï´Ù. ¾î´À °Í¿¡ ¸®´ª½º¸¦ ¼³Ä¡ÇϽðڽÀ´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "·º½º¸¶Å© À×Å©Á¬ ¼³Á¤"
+msgid "Boot ISO"
+msgstr "ºÎÆ® ISO"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
+msgid "Eritrea"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
+msgid "Remove List"
+msgstr "Á¦°Å ¸ñ·Ï"
-#: ../../printer/printerdrake.pm:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI À©ÇÁ¸°ÅÍ ¼³Á¤"
+msgid "A customizable environment"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+msgid "Inuktitut"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
+msgid "Morocco"
+msgstr "¸ð·ÎÄÚ"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10676,2196 +10476,1810 @@ msgstr "¾î¶² ÇÁ¸°Å͸¦ °¡Áö°í ÀÖ½À´Ï±î?"
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Printer model selection"
-msgstr "ÇÁ¸°ÅÍ ¸ðµ¨ ¼±ÅÃ"
+msgid "Add a new printer"
+msgstr "»õ ÇÁ¸°ÅÍ Ãß°¡"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Reading printer database..."
-msgstr "ÇÁ¸°ÅÍ µ¥ÀÌÅͺ£À̽º Àд Áß ..."
+msgid " All of your selected data have been "
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Select model manually"
-msgstr "Á÷Á¢ ¸ðµ¨ ¼±ÅÃ"
+msgid "<-- Delete"
+msgstr "<-- »èÁ¦"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "The model is correct"
-msgstr "¸ðµ¨ÀÌ Á¤È®ÇÕ´Ï´Ù."
+msgid "Nepal"
+msgstr "³×ÆÈ"
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
+msgid "cpu # "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Your printer model"
-msgstr "ÇÁ¸°ÅÍ ¸ðµ¨"
+msgid "chunk size"
+msgstr "Å©±â"
-#: ../../printer/printerdrake.pm:1
+#. -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:1
#, c-format
-msgid "Preparing printer database..."
-msgstr "ÇÁ¸°ÅÍ µ¥ÀÌÅͺ£À̽º Áغñ Áß ..."
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
-msgid "Location"
-msgstr "À§Ä¡"
+msgid "Problems installing package %s"
+msgstr "ÆÑÅ°Áö ¼³Ä¡Áß ¹®Á¦ ¹ß»ý %s"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Description"
-msgstr "¼³¸í"
+msgid "You will receive an alert if the load is higher than this value"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Name of printer"
-msgstr "ÇÁ¸°ÅÍ À̸§"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-"¸ðµç ÇÁ¸°ÅÍ´Â À̸§ÀÌ ÀÖ¾î¾ß ÇÕ´Ï´Ù.(¿¹, lp)\n"
-"¼³¸í°ú À§Ä¡ ºÎºÐÀ» ÀÔ·ÂÇÒ ÇÊ¿ä´Â ¾ø½À´Ï´Ù.\n"
-"±×°ÍµéÀº ´ÜÁö »ç¿ëÀÚµéÀ» À§ÇÑ ºÎ¿¬¼³¸íÀÏ »ÓÀÔ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr ""
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Add a scanner manually"
+msgstr "¼öµ¿À¸·Î »ç¿ëÀÚ ¼±ÅÃ"
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
+msgid "Reload partition table"
+msgstr "ÆÄƼ¼Ç Å×ÀÌºí ´Ù½Ã Àбâ"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "¿¹, ÀÚµ¿·Î±×ÀÎÀ» »ç¿ëÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
+msgid "Search for fonts in installed list"
+msgstr "¼³Ä¡µÈ ¸ñ·Ï¿¡¼­ ÆùÆ® °Ë»ö"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Scanning on your HP multi-function device"
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing mtools packages..."
-msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Installing SANE packages..."
-msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
+msgid "Boot"
+msgstr "·çÆ®"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing HPOJ package..."
-msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Tuner type:"
+msgstr "Æ©³Ê À¯Çü:"
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1
#, c-format
msgid ""
-"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
-"PhotoSmart or an HP LaserJet 2200?"
+"Now, it's time to select a printing system for your computer. Other OSs may\n"
+"offer you one, but Mandrake Linux offers two. Each of the printing system\n"
+"is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"with networks.) It's recommended that you use \"pdq\" if this is your first\n"
+"experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" - `` Common Unix Printing System'', is an excellent choice for\n"
+"printing to your local printer or to one halfway around the planet. It is\n"
+"simple to configure and can act as a server or a client for the ancient\n"
+"\"lpd \" printing system, so it compatible with older operating systems\n"
+"which may still need print services. While quite powerful, the basic setup\n"
+"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
+"sure you turn on the \"cups-lpd \" daemon. \"%s\" includes graphical\n"
+"front-ends for printing or choosing printer options and for managing the\n"
+"printer.\n"
+"\n"
+"If you make a choice now, and later find that you don't like your printing\n"
+"system you may change it by running PrinterDrake from the Mandrake Control\n"
+"Center and clicking the expert button."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "A command line must be entered!"
-msgstr "À¯È¿ÇÑ ÁÖ¼Ò¸¦ ÀÔ·ÂÇϼ¼¿ä!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Command line"
-msgstr "µµ¸ÞÀÎ À̸§"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "\"Menu\" key"
+msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Find the correct model in the list when a wrong model or "
+"\"Raw printer\" is highlighted."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/draksec:1
#, fuzzy, c-format
-msgid "Pipe into command"
-msgstr "ÀÛ¾÷À» ¸í·ÉÀ¸·Î ÆÄÀÌÇÁ ¿¬°á"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "°Ë»öµÈ ¸ðµ¨: %s %s"
+msgid "Security Administrator:"
+msgstr "º¸¾È °ü¸®ÀÚ (·Î±×ÀÎ ¶Ç´Â À̸ÞÀÏ)"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "A valid URI must be entered!"
-msgstr "À¯È¿ÇÑ ÁÖ¼Ò¸¦ ÀÔ·ÂÇϼ¼¿ä!"
+msgid "Please enter your login"
+msgstr "¾ÆÀ̵𸦠ÀÔ·ÂÇϼ¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Printer Device URI"
-msgstr "ÇÁ¸°ÅÍ ÀåÄ¡ URI"
+msgid "if set to yes, check permissions of files in the users' home."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1
#, c-format
msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
+"You don't have an Internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-"ÇÁ¸°ÅÍ ¾×¼¼½º ÁÖ¼Ò¸¦ Á÷Á¢ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù. ÁÖ¼Ò´Â CUPS ¶Ç´Â Foomatic ±ÔÁ¤"
-"À» ÁؼöÇØ¾ß ÇÕ´Ï´Ù. ±×·¸Áö ¾ÊÀº ÁÖ¼Ò´Â ¸ðµç ½ºÇ®·¯°¡ Áö¿øÇÏÁö ¾Ê½À´Ï´Ù."
+"ÀÎÅÍ³Ý ¿¬°áÀÌ ¾ø½À´Ï´Ù.\n"
+"¡¸¼³Á¤¡¹À» ´­·¯ ¸ÕÀú ¿¬°áÀ» ¼³Á¤Çϼ¼¿ä."
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Port"
-msgstr "Æ÷Æ®"
+msgid "Fonts copy"
+msgstr "ÆùÆ® º¹»ç"
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Printer host name or IP"
-msgstr "ÇÁ¸°ÅÍ È£½ºÆ®¸í ¶Ç´Â IP"
+msgid "Automated"
+msgstr "ÀÚµ¿"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/test.pm:1
#, c-format
-msgid "The port number should be an integer!"
-msgstr "Æ÷Æ® ¹øÈ£´Â Á¤¼öÀ̾î¾ß ÇÕ´Ï´Ù!"
+msgid "Do you want to test the configuration?"
+msgstr "ÀÌ ¼³Á¤À» Å×½ºÆ®ÇØ º¸½Ã°Ú½À´Ï±î?"
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "ÇÁ¸°ÅÍ È£½ºÆ®¸í ¶Ç´Â IP°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"¼ÒÄÏ ÇÁ¸°ÅÍ·Î ÀμâÇϱâ À§Çؼ­´Â, ÇÁ¸°ÅÍÀÇ È£½ºÆ®¸í°ú \n"
-"Æ÷Æ® ¹øÈ£(¿É¼Ç)¸¦ ÁöÁ¤ÇØ¾ß ÇÕ´Ï´Ù. HP JetDirect ¼­¹ö»ó¿¡¼­´Â\n"
-"ÀϹÝÀûÀ¸·Î 9100 Æ÷Æ®¸¦ »ç¿ëÇÏÁö¸¸, ´Ù¸¥ ¼­¹ö»ó¿¡¼­´Â °¢±â\n"
-"´Ù¸¦ ¼ö ÀÖ½À´Ï´Ù. Çϵå¿þ¾î ¼³¸í¼­¸¦ ÂüÁ¶Çϼ¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/draksec:1
#, c-format
msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+" should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+" email)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/¼ÒÄÏ ÇÁ¸°ÅÍ ¿É¼Ç"
+msgid "Save packages selection"
+msgstr "¼±ÅÃµÈ ÆÑÅ°Áö ¸ñ·Ï ÀúÀå"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ""
+msgid "Remove the last item"
+msgstr "¸¶Áö¸· Ç׸ñ »èÁ¦"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ", host \"%s\", port %s"
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "³×Æ®¿÷ °Ë»ö Áß ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "ÇÁ¸°ÅÍ ÀÚµ¿ °Ë»ö"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP Å¥ À̸§À» ãÀ» ¼ö ¾øÀ½!"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP ¼­¹ö À̸§À» ãÀ» ¼ö ¾øÀ½!"
+msgid "No net boot images created!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/adsl.pm:1
#, c-format
-msgid "Print Queue Name"
-msgstr "ÇÁ¸°Æ® Å¥ À̸§"
+msgid "use pptp"
+msgstr "PPTP »ç¿ë"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Printer Server"
-msgstr "ÇÁ¸°ÅÍ ¼­¹ö"
+msgid "Choose which services should be automatically started at boot time"
+msgstr "¾î¶² ¼­ºñ½º°¡ ºÎÆýÿ¡ ÀÚµ¿ ½ÇÇàµÇ¾î¾ß ÇÒÁö ¼±ÅÃÇϼ¼¿ä."
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"³Ý¿þ¾î ÇÁ¸°ÅÍ·Î ÀμâÇÏ·Á¸é, ³Ý¿þ¾î ¼­¹öÀÇ È£½ºÆ®¸í \n"
-"(ÁÖÀÇ! ±× ¼­¹öÀÇ TCP/IP È£½ºÆ®¸í°ú´Â À̸§ÀÌ ´Ù¸¦ ¼ö ÀÖ½À´Ï´Ù.)°ú \n"
-"¾×¼¼½ºÇÏ·Á´Â ÇÁ¸°ÅÍÀÇ Å¥ À̸§, Á¤½Ä »ç¿ëÀÚ¸í, ¾ÏÈ£¸¦ \n"
-"ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "³Ý¿þ¾î ÇÁ¸°ÅÍ ¿É¼Ç"
+msgid "Learn how to use this printer"
+msgstr "ÀÌ ÇÁ¸°ÅÍÀÇ »ç¿ë¹ý ¾Ë¾Æº¸±â"
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
+msgid "Configure the network now"
+msgstr "Áö±Ý ³×Æ®¿÷ ¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
+msgid "Choose a mirror from which to get the packages"
+msgstr "ÆÑÅ°Áö¸¦ ¹ÞÀ» ¹Ì·¯ »çÀÌÆ®¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm:1
#, c-format
msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
+"FAT Å©±â Á¶Á¤±â°¡ ´ÔÀÇ ÆÄƼ¼ÇÀ» ó¸®ÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
+"´ÙÀ½ÀÇ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
+msgid "Which sector do you want to move it to?"
+msgstr "¾î¶² ¼½Å͸¦ À̵¿ÇÏ°í ½ÍÀ¸½Ê´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "Samba share name missing!"
-msgstr "»ï¹Ù °øÀ¯ À̸§À» ãÀ» ¼ö ¾øÀ½!"
+msgid "Do you want to click on this button?"
+msgstr "ÀÌ ¹öÆ°À» ´©¸£½Ã°Ú½À´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "¼­¹ö À̸§ ¶Ç´Â ¼­¹ö IP¸¦ ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù!"
+msgid "Bahamas"
+msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Auto-detected"
-msgstr "ÀÚµ¿ °Ë»öµÊ"
+msgid "Manual configuration"
+msgstr "¼öµ¿ ¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Workgroup"
-msgstr "ÀÛ¾÷ ±×·ì"
+msgid "search"
+msgstr "°Ë»ö"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
-msgid "Share name"
-msgstr "°øÀ¯ À̸§"
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"ÀÌ ÆÑÅ°Áö´Â ¡¸/etc/sysconfig/keyboard¡¹¿¡ ¼³Á¤µÇ¾î ÀÖ´Â \n"
+"Å°º¸µå ¸ÊÀ» ÀûÀçÇÕ´Ï´Ù. Å°º¸µå´Â ¡¸kbdconfig¡¹¸í·ÉÀ¸·Î ¼±ÅÃÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
+"´ëºÎºÐÀÇ ½Ã½ºÅÛ¿¡¼­ ÇÊ¿äÇÑ °ÍÀÔ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "SMB server IP"
-msgstr "SMB ¼­¹ö IP"
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (¼³Ä¡ Ç¥½Ã µå¶óÀ̹ö)"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
-msgid "SMB server host"
-msgstr "SMB ¼­¹ö È£½ºÆ®"
+msgid "Zeroconf host name must not contain a ."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
+"Syslog´Â ¿©·¯ µ¥¸óµéÀÇ ·Î±× ¸Þ¼¼Áö¸¦ ¿©·¯ Á¾·ùÀÇ ½Ã½ºÅÛ ·Î±× ÆÄÀÏ·Î\n"
+"³²±â´Âµ¥ À¯¿ëÇÕ´Ï´Ù. Ç×»ó Syslog¸¦ ½ÇÇà½ÃÅ°´Â°ÍÀÌ ÁÁ½À´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
#, fuzzy, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"»ï¹Ù ÇÁ¸°ÅÍ·Î ÀμâÇÏ·Á¸é, »ï¹Ù ¼­¹öÀÇ È£½ºÆ®¸í \n"
-"(ÁÖÀÇ! ±× ¼­¹öÀÇ TCP/IP È£½ºÆ®¸í°ú´Â À̸§ÀÌ ´Ù¸¦ ¼ö ÀÖ½À´Ï´Ù.)°ú, \n"
-"°¡´ÉÇÏ´Ù¸é, ±× ¼­¹öÀÇ IP ÁÖ¼Ò ±×¸®°í ¾×¼¼½ºÇÏ·Á´Â ÇÁ¸°ÅÍÀÇ \n"
-"°øÀ¯ À̸§, Á¤½Ä »ç¿ëÀÚ¸í, ¾ÏÈ£, ÀÛ¾÷±×·ì¸íÀ» \n"
-"ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù."
+msgid "Unknown/Others"
+msgstr "¾Ë ¼ö ¾øÀ½|ÀϹÝ"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) ÇÁ¸°ÅÍ ¿É¼Ç"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
+msgid "No TV Card detected!"
+msgstr "TV Ä«µå¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ""
+msgid "Options"
+msgstr "¿É¼Çµé"
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Remote printer name missing!"
-msgstr "¿ø°Ý ÇÁ¸°Å͸íÀÌ ºüÁ³½À´Ï´Ù!!"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "¡¸%s¡¹ÇÁ¸°ÅÍ°¡ ±âº» ÇÁ¸°ÅÍ·Î ¼³Á¤µÇ¾ú½À´Ï´Ù."
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Remote host name missing!"
-msgstr "¿ø°Ý È£½ºÆ®¸íÀ» ãÀ» ¼ö ¾øÀ½!"
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Remote printer name"
-msgstr "¿ø°Ý ÇÁ¸°Å͸í"
+msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Remote host name"
-msgstr "¿ø°Ý È£½ºÆ®¸í"
+msgid "Auto-detected"
+msgstr "ÀÚµ¿ °Ë»öµÊ"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"You are about to configure your computer to install a PXE server as a DHCP "
+"server\n"
+"and a TFTP server to build an installation server.\n"
+"With that feature, other computers on your local network will be installable "
+"using this computer as source.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"¿ø°Ý LPD ÇÁ¸°Å͸¦ »ç¿ëÇϱâ À§Çؼ­´Â\n"
-"±× ÇÁ¸°ÅÍ ¼­¹öÀÇ È£½ºÆ®¸í°ú ±× ¼­¹ö»óÀÇ ÇÁ¸°ÅÍ À̸§À»\n"
-"ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "¿ø°Ý LPD ÇÁ¸°ÅÍ ¿É¼Ç"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "¼öµ¿ ¼³Á¤"
+"ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯¸¦ À§Çؼ­ ´ÔÀÇ ÄÄÇ»Å͸¦ ¼³Á¤ÇÏ·Á°í ÇÕ´Ï´Ù.\n"
+"ÀÌ·ÎÀÎÇØ, Áö¿ª ³×Æ®¿÷ÀÇ ´Ù¸¥ ÄÄÇ»Å͵鵵 ÀÌ ÄÄÇ»ÅÍÀÇ ÀÎÅÍ³Ý ¿¬°áÀ» »ç¿ëÇÒ ¼ö "
+"ÀÖ°Ô µË´Ï´Ù.\n"
+"\n"
+"ÁÖÀÇ: Áö¿ª ³×Æ®¿÷(·£)À» ¸ñÀûÀ¸·Î ¼³Ä¡µÈ ³×Æ®¿÷ ¾î´ðÅÍ°¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "ÇÁ¸°ÅÍ ¶Ç´Â ÀåÄ¡¸¦ ÀÔ·Â ¶Ç´Â ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù!"
+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 ºÎÆ®½ºÆ®·¦ °ø°£ ºÎÁ·! ¼³Ä¡´Â °è¼ÓÇÒ ¼ö ÀÖÁö¸¸, ½Ã½ºÅÛÀ» ºÎÆÃÇϱâ À§Çؼ­"
+"´Â µð½ºÅ©µå·¹ÀÌÅ©¿¡¼­ ºÎÆ®½ºÆ®·¦ ÆÄƼ¼ÇÀ» ¸¸µé¾î¾ß ÇÕ´Ï´Ù."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"Please choose the printer you want to set up or enter a device name/file "
+"name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "ÇÁ¸°ÅÍ°¡ ¿¬°áµÈ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä."
+msgid "Refuse"
+msgstr "°ÅºÎ"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "ÇÁ¸°ÅÍ°¡ ¿¬°áµÈ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä."
+msgid "HFS"
+msgstr "HFS"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
+"Çϵåµå·¹ÀÌÅ©´Â Çϵå¿þ¾î °Ë»öÀ» ¼öÇàÇϸç, ÇÊ¿äÇÏ´Ù¸é\n"
+"»õ/º¯°æµÈ Çϵå¿þ¾î¸¦ ¼³Á¤ÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/cups.pm:1 ../../printer/main.pm:1
#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr ""
+msgid "Remote Printers"
+msgstr "¿ø°Ý ÇÁ¸°ÅÍ"
-#: ../../printer/printerdrake.pm:1
+#: ../../fs.pm:1
#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
+msgid "Creating and formatting file %s"
+msgstr "%s ÆÄÀϸ¦ »ý¼ºÇÏ°í Æ÷¸Ë"
-#: ../../printer/printerdrake.pm:1
+#: ../../security/help.pm:1
#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
+msgid "if set to yes, check additions/removals of sgid files."
msgstr ""
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The following printer was auto-detected. "
-msgstr "´ÙÀ½ ÆÑÅ°ÁöµéÀÌ Á¦°ÅµÉ °ÍÀÔ´Ï´Ù."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
+"on. Download the Windows driver package from the HP web site (the firmware "
+"on the printer's CD does not work) and extract the firmware file from it by "
+"uncompresing the self-extracting '.exe' file with the 'unzip' utility and "
+"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
+"printer' directory. There it will be found by the automatic uploader script "
+"and uploaded whenever the printer is connected and turned on.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
+msgid "Choose an existing LVM to add to"
+msgstr "Ãß°¡ÇÒ LVM¸¦ ¼±ÅÃÇϼ¼¿ä"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
+msgid "xfs restart"
+msgstr "XFS Àç½ÃÀÛ"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
+"ÇÁ¸°ÅÍ ¡¸%s¡¹°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù.\n"
+"Á¤¸»·Î ±âÁ¸ ¼³Á¤À» µ¤¾î ¾µ±î¿ä?"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Available printers"
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+msgid "No partition available"
+msgstr "»ç¿ë°¡´ÉÇÑ ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "No printer found!"
-msgstr "ÇÁ¸°Å͸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
+msgid "Use the scanners on hosts: "
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "ÀåÄ¡ ¶Ç´Â ÆÄÀÏ À̸§À» ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù!"
+msgid "Unselected All"
+msgstr "¸ðµç ¼±Åà ÇØÁ¦"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
+msgid "Domain Name Resolver"
+msgstr "µµ¸ÞÀÎ ³×ÀÓ ÇØ°á»ç"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Local Printer"
-msgstr "Áö¿ª ÇÁ¸°ÅÍ"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "USB printer \\#%s"
-msgstr "ÇÁ¸°ÅÍ ¾øÀ½"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer on parallel port \\#%s"
-msgstr "ÇÁ¸°ÅÍ È£½ºÆ®¸í ¶Ç´Â IP"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "»ï¹Ù/À©µµ¿ìÁî 95/98/NT»óÀÇ ÇÁ¸°ÅÍ"
+msgid "Encryption key (again)"
+msgstr "¾Ïȣȭ Å° (È®ÀÎ)"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "³×Æ®¿÷ ÇÁ¸°ÅÍ (¼ÒÄÏ)"
+#, c-format
+msgid "Samba share name missing!"
+msgstr "»ï¹Ù °øÀ¯ À̸§À» ãÀ» ¼ö ¾øÀ½!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Detected %s"
-msgstr "%s ¹ß°ß"
+msgid "True Type install done"
+msgstr "Æ®·çŸÀÔ ¼³Ä¡ ¿Ï·á"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "»ï¹Ù/À©µµ¿ìÁî 95/98/NT»óÀÇ ÇÁ¸°ÅÍ"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Detection in progress"
+msgstr "°Ë»ö ÁøÇà Áß"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid ", network printer \"%s\", port %s"
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps.pm:1
#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
+msgid "Welcome to %s"
+msgstr "%s¿¡ ¿À½Å°ÍÀ» ȯ¿µÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "¾÷µ¥ÀÌÆ® ¸ðµâ Ç÷ÎÇǸ¦ %s µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+msgid "Bootsplash"
+msgstr "ºÎÆ®½ºÇ÷¹½¬"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "ÇÁ¸°ÅÍ ÀÚµ¿°Ë»ö"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid ""
+"The following printer\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
+"%s%s\n"
+"is directly connected to your system"
+msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing on hosts/networks: "
+msgstr "ÆÄÀÏ °øÀ¯"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you don't need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../modules/interactive.pm:1
#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) and your Windows machines must be connected and "
-"turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you don't need "
-"it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
msgstr ""
+"ÀϹÝÀûÀ¸·Î %s µå¶óÀ̹ö´Â Ãß°¡ Á¤º¸ ¾øÀ̵µ Àß ÀÛµ¿ÇÏÁö¸¸, ¾î¶² °æ¿ì¿¡´Â \n"
+"Ãß°¡ Á¤º¸¸¦ ÇÊ¿ä·Î Çϱ⵵ ÇÕ´Ï´Ù. Ãß°¡ ¿É¼ÇÀ» ÁöÁ¤ÇϽðڽÀ´Ï±î, ¾Æ´Ï¸é \n"
+"ÇÊ¿äÇÑ Á¤º¸¸¦ ÀÚµ¿°Ë»öÇÏ°Ô ÇÏ°Ú½À´Ï±î?\n"
+"ÀÚµ¿°Ë»öÀº ¾î¼´Ù°¡ ÄÄÇ»Å͸¦ ¸ØÃß°Ô ÇÒ ¼öµµ ÀÖ½À´Ï´Ù.ÇÏÁö¸¸,\n"
+"ÀåÄ¡¸¦ ÈѼÕÇÏÁö´Â ¾Ê½À´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Click on Configure to launch the setup wizard."
msgstr ""
+"ÀÎÅÍ³Ý ¿¬°á°øÀ¯ À¯Æ¿¸®Æ¼¿¡ Àß ¿À¼Ì½À´Ï´Ù!\n"
+"\n"
+"%s\n"
+"\n"
+"¸¶¹ý»ç¸¦ ½ÇÇàÇÏ·Á¸é ¡¸¼³Á¤¡¹À» ´©¸£¼¼¿ä."
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
+#: ../../lang.pm:1
#, c-format
-msgid ")"
-msgstr ""
+msgid "Cuba"
+msgstr "Äí¹Ù"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Searching for new printers..."
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+
+#: ../../lang.pm:1
#, c-format
-msgid " on "
+msgid "Belize"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "("
+msgid " (multi-session)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer ..."
-msgstr "ÇÁ¸°ÅÍ ¡¸%s¡¹ ¼³Á¤ Áß ..."
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+#: ../../any.pm:1
+#, c-format
+msgid "Kernel Boot Timeout"
+msgstr "Ä¿³Î ºÎÆ® Á¦Çѽð£"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"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À» Áö¿øÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "ºÎÆýÿ¡ ¿¬°áÇϵµ·Ï ÇÏ°Ú½À´Ï±î?"
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "µå·¹ÀÌÅ©X ÆÄƼ¼Ç ¸¶¹ý»ç°¡ ´ÙÀ½ÀÇ ¼Ö·ç¼ÇÀ» ¹ß°ßÇß½À´Ï´Ù:"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"ÀÌ ÇÁ¸°ÅÍ(%s)¸¦\n"
-"±âº» ÇÁ¸°ÅÍ·Î ÇϽðڽÀ´Ï±î?"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Hungarian"
+msgstr "Çë°¡¸®"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm:1
#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
+"°ø±ÞÀÚ¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
+"¸ñ·Ï¿¡ ¾øÀ¸¸é, ¡¸¸ñ·Ï¿¡ ¾øÀ½¡¹À» ¼±ÅÃÇϼ¼¿ä."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "ÇÁ¸°ÅÍ°¡ ¿¬°áµÈ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä."
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "ÀÚµ¿ ½Ã°£ µ¿±âÈ­ (NTP »ç¿ë)"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
+msgid "LDAP Server"
+msgstr "LDAP ¼­¹ö"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
msgstr ""
+"PCMCIA´Â º¸Åë ·¦Å¾(³ëÆ®ºÏ)¿¡ ÀÖ´Â ÀÌ´õ³Ý Ä«µå¿Í ¸ðµ©°°Àº ÀåÄ¡\n"
+"µéÀ» Áö¿øÇϱâ À§ÇÑ °ÍÀÔ´Ï´Ù. Ãß°¡ ¼³Á¤ÀÌ ¾øÀ¸¸é ½ÃÀÛµÇÁö ¾Ê±â ¶§¹®¿¡,\n"
+"ÀÌ·¯ÇÑ ÀåÄ¡°¡ ¾ø´Â ÄÄÇ»ÅÍ¿¡ ¼³Ä¡µÇ¾î À־ ¾ÈÀüÇÕ´Ï´Ù."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Choose your country"
+msgstr "±¹°¡ ¼±ÅÃ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and %d unknown printers"
-msgstr "»õ ÇÁ¸°ÅÍ Ãß°¡"
+"- System Files:\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and one unknown printer"
-msgstr "»õ ÇÁ¸°ÅÍ Ãß°¡"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Standalone Tools"
+msgstr "°³º° µµ±¸"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Checking your system..."
-msgstr "½Ã½ºÅÛ °Ë»ç Áß..."
+msgid "Where"
+msgstr "Àå¼Ò"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Restarting CUPS..."
-msgstr "XFS Àç½ÃÀÛ"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "but not matching"
+msgstr "Á¦¿ÜÇÒ ¹®ÀÚ¿­"
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr ""
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIS Ä«µå ȯ°æ¼³Á¤Áß..."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "¸ðµ¨ÀÌ Á¤È®ÇÕ´Ï´Ù."
+#: ../../common.pm:1
+#, c-format
+msgid "kdesu missing"
+msgstr "kdesu°¡ ¾øÀ½"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Server IP missing!"
-msgstr "NCP ¼­¹ö À̸§À» ãÀ» ¼ö ¾øÀ½!"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key"
+msgstr "¾Ïȣȭ Å°"
-#: ../../printer/printerdrake.pm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
+msgid "Microsoft IntelliMouse"
+msgstr "¸¶ÀÌÅ©·Î¼ÒÇÁÆ® ÀÎÅÚ¸®¸¶¿ì½º"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+msgid "Christmas Island"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "¼±Åà Ç׸ñ Á¦°Å"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Edit selected server"
-msgstr "%s ¹ß°ß"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add server"
-msgstr "»ç¿ëÀÚ Ãß°¡"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "ºÎÆ®·Î´õ ¼³Ä¡°¡ ½ÇÆÐÇß½À´Ï´Ù. ´ÙÀ½°ú °°Àº ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù:"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
+msgid "EIDE/SCSI channel"
+msgstr "EIDE/SCSI ä³Î"
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "IP address of host/network:"
-msgstr ""
+msgid "Set this printer as the default"
+msgstr "ÀÌ ÇÁ¸°Å͸¦ ±âº»À¸·Î ¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
+msgid "partition %s"
+msgstr "ÆÄƼ¼Ç %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../security/level.pm:1
#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr ""
+msgid "Paranoid"
+msgstr "ÃÖ°í"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Host/network IP address missing."
-msgstr ""
+msgid "NIS"
+msgstr "NIS"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+msgid "<-- Del User"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Sharing of local printers"
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Location on the bus"
+msgstr "¹ö½º»óÀÇ À§Ä¡"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected host/network"
-msgstr "¼±Åà Ç׸ñ Á¦°Å"
+#, c-format
+msgid "No printer found!"
+msgstr "ÇÁ¸°Å͸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Edit selected host/network"
+msgid "the vendor name of the device"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
-msgid "Add host/network"
-msgstr ""
+msgid "Erase entire disk"
+msgstr "Àüü µð½ºÅ© »èÁ¦"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
+msgid " (Default)"
+msgstr " (±âº»°ª)"
-#: ../../printer/printerdrake.pm:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
+"Arguments: ()\n"
"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
+"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
+"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
+"server\n"
+"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
+"server\n"
+"is used by chkconfig --add to decide to add a service if it is present in "
+"the file\n"
+"during the installation of packages."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "ÀÚµ¿ CUPS ¼³Á¤"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Automatic reconfiguration"
+msgstr "ÀÚµ¿ Àç¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
+msgid "Receiving Speed:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "Àμâ½Ã½ºÅÛ º¯°æ"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
+msgid "Turks and Caicos Islands"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "None"
-msgstr "¿Ï·á"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Additional CUPS servers: "
-msgstr "CUPS ¼­¹ö IP"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "permissions"
+msgstr "Çã°¡±Ç"
+#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "°æ°í ¼³Á¤"
+#, c-format
+msgid "<- Previous"
+msgstr "<- ÀÌÀü"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "ÆÄÀÏ °øÀ¯"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing configuration"
+msgstr "ÀÎÅÍ³Ý ¿¬°á°øÀ¯ ¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
+msgid "Toggle between flat and group sorted"
+msgstr "±×·ìº°/ÆÑÅ°Áöº° Á¤·Ä Àüȯ"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr ""
+msgid "Themes"
+msgstr "Å׸¶"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
+msgid "Options: %s"
+msgstr "¿É¼Çµé: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakboot:1
#, c-format
msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
+"ÇöÀç ºÎÆ® °ü¸®ÀÚ·Î %s¸¦ »ç¿ëÇÏ°í ÀÖ½À´Ï´Ù.\n"
+"¼³Á¤ ¸¶¹ý»ç¸¦ ½ÇÇàÇÏ·Á¸é ¡¸¼³Á¤¡¹À» ´©¸£¼¼¿ä."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
+#, c-format
+msgid "OKI winprinter configuration"
msgstr "OKI À©ÇÁ¸°ÅÍ ¼³Á¤"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgid "Saint Helena"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Security Level"
+msgstr "º¸¾È ¼öÁØ"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
+"Some steps are not completed.\n"
"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+"Do you really want to quit now?"
msgstr ""
+"¸î¸î ´Ü°è°¡ ¿ÏÀüÈ÷ ³¡³ªÁö ¾Ê¾Ò½À´Ï´Ù.\n"
"\n"
-"¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ´Â ¿©±â¼­ ¼³Á¤ÇÒ ÇÊ¿ä°¡ \n"
-"¾ø½À´Ï´Ù; ÀÌ·± ÇÁ¸°ÅÍ´Â ÀÚµ¿À¸·Î °¨ÁöµÇ¾î Áý´Ï´Ù. ÀÌ¿Í °°Àº °æ¿ì\n"
-"¡¸¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ¡¹¸¦ ¼±ÅÃÇϼ¼¿ä."
+"Á¤¸» Áö±Ý Á¾·á ÇϽðڽÀ´Ï±î?"
-#: ../../printer/printerdrake.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "How is the printer connected?"
-msgstr "ÇÁ¸°ÅÍ°¡ ¾î¶»°Ô ¿¬°áµÇ¾î ÀÖ½À´Ï±î?"
+msgid "Sudan"
+msgstr "¼ö´Ü"
-#: ../../printer/printerdrake.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Select Printer Connection"
-msgstr "ÇÁ¸°ÅÍ ¿¬°á¹æ¹ýÀ» ¼±ÅÃÇϼ¼¿ä."
+msgid "Polish (qwertz layout)"
+msgstr "Æú¶õµå (QwertZ)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"uncompresing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Syria"
+msgstr "¼ö¸®³²"
-#: ../../security/help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm:1
#, c-format
msgid ""
-"Arguments: (umask)\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"Set the user umask."
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (val)\n"
+"Choose an operating system from the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Arguments: (size)\n"
-"\n"
-"Set shell commands history size. A value of -1 means unlimited."
-msgstr ""
+msgid "Portuguese"
+msgstr "Æ÷·çÅõÄ®"
-#: ../../security/help.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
+msgid "Loopback file name: "
+msgstr "·çÇÁ¹é ÆÄÀÏ À̸§: "
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr ""
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ÁÖ¼Ò´Â 1.2.3.4°ú °°Àº Çü½ÄÀ̾î¾ß ÇÕ´Ï´Ù."
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
-msgstr ""
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Serbia"
+msgstr "½Ã¸®¾ó ¸¶¿ì½º"
-#: ../../security/help.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr ""
+msgid "Newzealand"
+msgstr "´ºÁú·£µå"
-#: ../../security/help.pm:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
+msgid "This directory should remain within the root filesystem"
+msgstr "ÀÌ µð·ºÅ丮´Â ·çÆ® ÆÄÀϽýºÅÛ ¾È¿¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../security/help.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "if set to yes, reports check result to tty."
+msgid "CapsLock key"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../steps.pm:1
#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+msgid "Install bootloader"
+msgstr "ºÎÆ®·Î´õ ¼³Ä¡"
-#: ../../security/help.pm:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr ""
+msgid "Select the memory size of your graphics card"
+msgstr "±×·¡ÇÈ Ä«µåÀÇ ¸Þ¸ð¸® ¿ë·®À» ¼±ÅÃÇϼ¼¿ä"
-#: ../../security/help.pm:1
+#: ../../standalone.pm:1
#, c-format
-msgid "if set to yes, run chkrootkit checks."
+msgid ""
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
+msgid "LVM name?"
+msgstr "LVM À̸§?"
-#: ../../security/help.pm:1
+#: ../../standalone/service_harddrake:1
#, c-format
-msgid "if set to yes, report check result to syslog."
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid ""
-"if set to yes, check for empty passwords, for no password in /etc/shadow and "
-"for users with the 0 id other than root."
-msgstr ""
+msgid "Found %s %s interfaces"
+msgstr "%s %s ÀÎÅÍÆäÀ̽º°¡ °¨ÁöµÇ¾ú½À´Ï´Ù."
-#: ../../security/help.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr ""
+msgid "sticky-bit"
+msgstr "½ºÆ¼Å° ºñÆ®"
-#: ../../security/help.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
+msgid "Post Install"
+msgstr "ÈÄ¹Ý ¼³Ä¡"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr ""
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The internal domain name"
+msgstr "»õ ÇÁ¸°ÅÍ À̸§"
-#: ../../security/help.pm:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "if set to yes, report unowned files."
-msgstr ""
+msgid "Card IRQ"
+msgstr "Ä«µå IRQ"
#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (umask)\n"
"\n"
-"Set the root umask."
+"Set the user umask."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../ugtk.pm:1 ../../standalone/logdrake:1
#, c-format
-msgid ""
-"Arguments: (length, ndigits=0, nupper=0)\n"
-"\n"
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
+msgid "logdrake"
+msgstr "·Î±×µå·¹ÀÌÅ©"
-#: ../../security/help.pm:1
+#: ../../standalone.pm:1
#, c-format
msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Set the password history length to prevent password reuse."
+"Font Importation and monitoring "
+"application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone.pm:1
#, c-format
-msgid ""
-"Arguments: (max, inactive=-1)\n"
-"\n"
-"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
-"\\fP."
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Arguments: (name)\n"
-"\n"
-"Add the name as an exception to the handling of password aging by msec."
-msgstr ""
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "ºÎÆ® µð½ºÅ©¸¦ ¸¸µé¶§ »ç¿ëÇÒ Ç÷ÎÇÇ µå¶óÀ̺긦 ¼±ÅÃÇØ ÁÖ¼¼¿ä"
-#: ../../security/help.pm:1
+#: ../../bootloader.pm:1 ../../help.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-" Enable/Disable sulogin(8) in single user level."
-msgstr ""
+msgid "LILO with text menu"
+msgstr "ÅؽºÆ® ¸Þ´º LILO"
-#: ../../security/help.pm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-" Activate/Disable daily security check."
+msgid "Everything (no firewall)"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Activate/Disable ethernet cards promiscuity check."
-msgstr ""
+msgid "You must specify a kernel image"
+msgstr "Ä¿³Î À̹ÌÁö¸¦ ÁöÁ¤ÇØ ÁÖ¼¼¿ä."
-#: ../../security/help.pm:1
+#: ../../printer/main.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Use password to authenticate users."
+msgid ", multi-function device on USB"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../interactive/newt.pm:1
+#, fuzzy, c-format
+msgid "Do"
+msgstr "¾Æ·¡·Î"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-" Enabling su only from members of the wheel group or allow su from any user."
-msgstr ""
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "»ç¿ë°¡´ÉÇÑ ÆÑÅ°ÁöÀÇ ¸®½ºÆ®¸¦ ¹Ì·¯ »çÀÌÆ®¿¡ Á¢¼ÓÇؼ­ ¹Þ½À´Ï´Ù."
-#: ../../security/help.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable msec hourly security check."
-msgstr ""
+msgid "Lithuanian AZERTY (old)"
+msgstr "¸®Åõ¾Æ´Ï¾Æ AZERTY (±¸Çü)"
-#: ../../security/help.pm:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable the logging of IPv4 strange packets."
-msgstr ""
+msgid "Brazilian (ABNT-2)"
+msgstr "ºê¶óÁú (ABNT-2)"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable libsafe if libsafe is found on the system."
+msgid "IP address of host/network:"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/draksplash:1
#, c-format
msgid ""
-"Arguments: (arg, alert=1)\n"
-"\n"
-"Enable/Disable IP spoofing protection."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System installation"
+msgstr "SILO ¼³Ä¡"
+
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Arguments: (arg, alert=1)\n"
-"\n"
-"Enable/Disable name resolution spoofing protection. If\n"
-"\\fIalert\\fP is true, also reports to syslog."
+msgid "Saint Vincent and the Grenadines"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid ""
-"Arguments: (arg, expr='*.*', dev='tty12')\n"
-"\n"
-"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-"expression describing what to log (see syslog.conf(5) for more details) and\n"
-"dev the device to report the log."
-msgstr ""
+msgid "/File/_Open"
+msgstr "/ÆÄÀÏ(F)/¿­±â(_O)"
#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
-"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
-"allow and /etc/at.allow\n"
-"(see man at(1) and crontab(1))."
+"The argument specifies if clients are authorized to connect\n"
+"to the X server on the tcp port 6000 or not."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: ()\n"
-"\n"
-"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
-"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
-"server\n"
-"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
-"server\n"
-"is used by chkconfig --add to decide to add a service if it is present in "
-"the file\n"
-"during the installation of packages."
-msgstr ""
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Location of auto_install.cfg file"
+msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ »ý¼º"
-#: ../../security/help.pm:1
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
-"\\fIarg\\fP = ALL. Only local ones\n"
-"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
-"services you need, use /etc/hosts.allow\n"
-"(see hosts.allow(5))."
-msgstr ""
+msgid "Open Firmware Delay"
+msgstr "Æß¿þ¾î ¿­±â Áö¿¬"
-#: ../../security/help.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"The argument specifies if clients are authorized to connect\n"
-"to the X server on the tcp port 6000 or not."
-msgstr ""
+msgid "Hungary"
+msgstr "Çë°¡¸®"
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Arguments: (arg, listen_tcp=None)\n"
-"\n"
-"Allow/Forbid X connections. First arg specifies what is done\n"
-"on the client side: ALL (all connections are allowed), LOCAL (only\n"
-"local connection) and NONE (no connection)."
-msgstr ""
+msgid "Total progess"
+msgstr "Àüü ÁøÇà"
-#: ../../security/help.pm:1
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Color configuration"
+msgstr "°æ°í ¼³Á¤"
+
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-msgstr ""
+msgid "New Zealand"
+msgstr "´ºÁú·£µå"
-#: ../../security/help.pm:1
+#: ../../security/level.pm:1
#, c-format
msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid direct root login."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid remote root login."
-msgstr ""
+msgid "please choose the date to restore"
+msgstr "º¹±¸ÇÒ ³¯Â¥¸¦ ¼±ÅÃÇϼ¼¿ä."
-#: ../../security/help.pm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid reboot by the console user."
-msgstr ""
+msgid "Switching from ext2 to ext3"
+msgstr "EXT2¿¡¼­ EXT3·Î º¯°æ"
-#: ../../security/help.pm:1
+#: ../../printer/data.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
-"\\fP = NONE no issues are\n"
-"allowed else only /etc/issue is allowed."
-msgstr ""
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../security/help.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid autologin."
+msgid "Netherlands Antilles"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-" Accept/Refuse icmp echo."
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Arguments: (arg)\n"
"\n"
-" Accept/Refuse broadcasted icmp echo."
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "and %d unknown printers"
+msgstr "»õ ÇÁ¸°ÅÍ Ãß°¡"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Accept/Refuse bogus IPv4 error messages."
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the required precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../security/level.pm:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "º¸¾È °ü¸®ÀÚ (·Î±×ÀÎ ¶Ç´Â À̸ÞÀÏ)"
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "ISDN PCI Ä«µå °Ë»ö ½ÇÆÐ. ´ÙÀ½ È­¸é¿¡¼­ Á÷Á¢ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../security/level.pm:1
+#: ../../common.pm:1
#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr "¹öÆÛ ³ÑħÀ̳ª Çü½ÄÈ­ ¹®ÀÚ¿­ °ø°ÝÀ» ¸·´Â ¶óÀ̺귯¸®."
+msgid "GB"
+msgstr "GB"
-#: ../../security/level.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Use libsafe for servers"
-msgstr "¼­¹ö¿¡ ´ëÇØ libsafe »ç¿ë"
+msgid "Please give a user name"
+msgstr "»ç¿ëÀÚ¸íÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä"
-#: ../../security/level.pm:1
+#: ../../any.pm:1
#, c-format
-msgid "Security level"
-msgstr "º¸¾È ¼öÁØ"
+msgid "Enable CD Boot?"
+msgstr "CD ºÎÆà Çã¿ë?"
-#: ../../security/level.pm:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "Please choose the desired security level"
-msgstr "Èñ¸ÁÇÏ´Â º¸¾È ´Ü°è¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
+msgid " enter `void' for void entry"
+msgstr ""
-#: ../../security/level.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DrakSec ±âº» ¿É¼Ç"
+msgid "on Hard Drive"
+msgstr "ÇÏµå µå¶óÀ̺ê"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
-msgstr ""
-"ÀÌÀü µî±Þ°ú ºñ½ÁÇÏÁö¸¸, ½Ã½ºÅÛÀÌ ¿ÏÀüÈ÷ ¿ÜºÎÁ¢±Ù¿¡¼­ °Ý¸®µË´Ï´Ù. ÃÖ°í º¸¾È ¼ö"
-"ÁØÀÔ´Ï´Ù."
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Winmodem connection"
+msgstr "ÀÏ¹Ý ¸ðµ© ¿¬°á"
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
+"\n"
+"Congratulations, your printer is now installed and configured!\n"
+"\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
+"\n"
+"If you want to add, remove, or rename a printer, or if you want to change "
+"the default option settings (paper input tray, printout quality, ...), "
+"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
+"Center."
msgstr ""
-"ÀÌ º¸¾Èµî±ÞÀ¸·Î ÀÌ ½Ã½ºÅÛÀ» ¼­¹ö·Î ¿î¿ëÇÒ ¼ö ÀÖ°Ô µË´Ï´Ù.\n"
-"ÀÌ º¸¾Èµî±ÞÀº ¿ÜºÎÀÇ Å¬¶óÀ̾ðÆ®µéÀÇ Á¢¼ÓÀ» ¹Þ¾ÆµéÀ̴µ¥ À־ \n"
-"ÃæºÐÈ÷ ³ôÀº º¸¾Èµî±ÞÀÔ´Ï´Ù. ÁÖÀÇ: ÀÎÅÍ³Ý Å¬¶óÀ̾ðÆ®·Î ÄÄÇ»Å͸¦ »ç¿ëÇÑ´Ù¸é, "
-"´õ ³·Àº µî±ÞÀ» ¼±ÅÃÇϼ¼¿ä."
-#: ../../security/level.pm:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"Arguments: (arg)\n"
+"\n"
+"Set the password history length to prevent password reuse."
msgstr ""
-#: ../../security/level.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"ÀÌ µî±ÞÀº Ŭ¶óÀ̾ðÆ®·Î¼­ ÀÎÅͳݿ¡ Á¢¼ÓÇϴµ¥ Àû´çÇÑ Ç¥ÁØ º¸¾Èµî±ÞÀÔ´Ï´Ù."
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "ÀÌÁ¦ [xawtv]¸¦ (XÀ©µµ¿ì ÇÏ¿¡¼­) »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù!\n"
-#: ../../security/level.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"¾ÏÈ£±â´ÉÀÌ Àû¿ëµÇÁö¸¸, ³×Æ®¿÷¿¡ ¿¬°áµÈ ÄÄÇ»ÅÍ·Î »ç¿ëÇϱ⿡´Â ¾ÆÁ÷ ÀûÀýÇÏÁö ¾Ê"
-"½À´Ï´Ù."
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "½º¿Ò ¸Þ¸ð¸®°¡ ºÎÁ·ÇÕ´Ï´Ù. Á» ´õ Ãß°¡Çϼ¼¿ä."
-#: ../../security/level.pm:1
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Æ÷Æ®"
+
+#: ../../help.pm:1
#, c-format
msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive. It must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same timezone. This is useful when the machine\n"
+"also hosts another operating system like Windows.\n"
+"\n"
+"The \"%s\" option will automatically regulate the clock by connecting to a\n"
+"remote time server on the Internet. For this feature to work, you must have\n"
+"a working Internet connection. It is best to choose a time server located\n"
+"near you. This option actually installs a time server that can used by\n"
+"other machines on your local network as well."
msgstr ""
-"ÀÌ µî±ÞÀ» »ç¿ëÇÒ·Á¸é ¸Å¿ì ÁÖÀÇÇÏ¿©¾ß ÇÕ´Ï´Ù. ½Ã½ºÅÛÀ» »ç¿ëÇϱ⿡´Â \n"
-"¿ëÀÌÇÏ°ÚÁö¸¸ ¸Å¿ì ¹Î°¨ÇÏ°Ô ÀÛµ¿ÇÕ´Ï´Ù: ÀÎÅͳÝÀ̳ª ³×Æ®¿÷¿¡ ¿¬°áµÈ ½Ã½ºÅÛ¿ë\n"
-"À¸·Î´Â »ç¿ëÇÏÁö ¸¶¼¼¿ä. ¾ÏÈ£±â´ÉÀÌ ¾ø½À´Ï´Ù."
-#: ../../security/level.pm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Paranoid"
-msgstr "ÃÖ°í"
+msgid "Which is your timezone?"
+msgstr "´ÔÀÇ ½Ã°£´ë´Â ¾îµðÀԴϱî?"
-#: ../../security/level.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Higher"
-msgstr "´õ ³ôÀ½"
+msgid "Guinea"
+msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "³ôÀ½"
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Áö±Ý ½Ã½ºÅÛÀÌ ÀÎÅͳݿ¡ ¿¬°áµÇ¾ú½À´Ï´Ù."
-#: ../../security/level.pm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Poor"
-msgstr "ÃÖÀú"
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
-#: ../../security/level.pm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Welcome To Crackers"
-msgstr "º¸¾È¿¡ ½Å°æ¾È¾¸"
+msgid "Japan (broadcast)"
+msgstr "ÀϺ» (°øÁßÆÄ)"
-#: ../../standalone/XFdrake:1
+#: ../../lang.pm:1
#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "º¯°æ»çÇ×À» Àû¿ëÇÏ·Á¸é %s·Î Àç·Î±×ÀÎ Çϼ¼¿ä."
+msgid "Mozambique"
+msgstr "¸ðÀáºñÅ©"
-#: ../../standalone/XFdrake:1
+#: ../../any.pm:1
#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "·Î±×¾Æ¿ôÇÏ°í Crtl-Alt-BackSpaceÅ°¸¦ ´©¸£¼¼¿ä."
+msgid "Icon"
+msgstr "¾ÆÀÌÄÜ"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
+msgid "Please choose what you want to backup"
+msgstr "¹é¾÷ÇÒ ´ë»óÀ» ¼±ÅÃÇϼ¼¿ä."
-#: ../../standalone/drakTermServ:1
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
+msgid "256 colors (8 bits)"
+msgstr "256 »ö»ó (8 bits)"
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm:1
#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+msgid "Read-write"
+msgstr "Àбâ-¾²±â"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
+msgid "Size: %s\n"
+msgstr "Å©±â: %s\n"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "No floppy drive available!"
-msgstr "À¯È¿ÇÑ ÇÁ·ÎÇÇ µå¶óÀ̺긦 ãÀ» ¼ö ¾ø½À´Ï´Ù!"
+msgid "Hostname: "
+msgstr "È£½ºÆ®¸í:"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Floppy can be removed now"
-msgstr ""
+msgid "Chunk size %s\n"
+msgstr "Å©±â %s\n"
-#: ../../standalone/drakTermServ:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Couldn't access the floppy!"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Ç÷ÎÇǸ¦ ³Ö¾î ÁÖ¼¼¿ä:"
-
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Write Config"
-msgstr "¼³Á¤ ±â·Ï"
+msgid "Local Printer"
+msgstr "Áö¿ª ÇÁ¸°ÅÍ"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Dynamic IP Address Pool:"
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../standalone.pm:1
#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Server Configuration"
-msgstr "°í±Þ ¼³Á¤"
-
-#: ../../standalone/drakTermServ:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "IP Range End:"
-msgstr ""
+msgid "ADSL connection"
+msgstr "ADSL ¿¬°á"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "IP Range Start:"
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "»ï¹Ù ¼­ºñ½º"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "µµ¸ÞÀÎ À̸§"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Error!"
+msgstr "¿À·ù!"
-#: ../../standalone/drakTermServ:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Broadcast Address:"
-msgstr ""
+msgid "cable connection detected"
+msgstr "ijÀÌºí ¿¬°á ¹ß°ß"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Subnet Mask:"
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Routers:"
-msgstr ""
+msgid "/_Report Bug"
+msgstr "/¹ö±× º¸°í(_R)"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Netmask:"
-msgstr "³Ý¸¶½ºÅ©"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "Å©±âÁ¶Á¤"
-#: ../../standalone/drakTermServ:1
+#: ../../lang.pm:1
#, c-format
-msgid "Subnet:"
-msgstr ""
+msgid "Dominica"
+msgstr "µµ¹Ì´ÏÄ«"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "dhcpd Config..."
-msgstr "DHCPD ¼³Á¤ Áß..."
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "<-- Ŭ¶óÀ̾ðÆ® »èÁ¦"
+msgid "Resolution: %s\n"
+msgstr "ÇØ»óµµ: %s\n"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Ŭ¶óÀ̾ðÆ® »èÁ¦"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "matching"
+msgstr "ãÀ» ¹®ÀÚ¿­"
-#: ../../standalone/drakTermServ:1
+#: ../../install2.pm:1
#, c-format
-msgid "Add Client -->"
+msgid ""
+"Can't access kernel modules corresponding to your kernel (file %s is "
+"missing), this generally means your boot floppy in not in sync with the "
+"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Allow Thin Clients"
-msgstr "Ŭ¶óÀ̾ðÆ® Ãß°¡/Á¦°Å"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Thin Client"
-msgstr "DHCP Ŭ¶óÀ̾ðÆ®"
-
-#: ../../standalone/drakTermServ:1
+#: ../../help.pm:1
#, c-format
-msgid "No net boot images created!"
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
+"Á¤È®ÇÑ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä. ¿¹¸¦ µé¾î, MS À©µµ¿ìÁî¿¡¼­ COM1Àº\n"
+"¸®´ª½º¿¡¼­´Â ttyS0·Î ¸í¸íµË´Ï´Ù."
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "À¯Çü: "
-
-#: ../../standalone/drakTermServ:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "<-- Del User"
-msgstr ""
+msgid "The following packages are going to be removed"
+msgstr "´ÙÀ½ ÆÑÅ°ÁöµéÀÌ Á¦°ÅµÉ °ÍÀÔ´Ï´Ù."
-#: ../../standalone/drakTermServ:1
+#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
#, c-format
-msgid "Add User -->"
-msgstr "»ç¿ëÀÚ Ãß°¡ -->"
+msgid "Connect to the Internet"
+msgstr "ÀÎÅͳݿ¡ ¿¬°á"
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
+msgid "Use existing partitions"
+msgstr "±âÁ¸ÀÇ ÆÄƼ¼Ç »ç¿ë"
-#: ../../standalone/drakTermServ:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Delete All NBIs"
-msgstr "¸ðµç NBI »èÁ¦"
+msgid "Canadian (Quebec)"
+msgstr "ij³ª´Ù (Äùº¤)"
-#: ../../standalone/drakTermServ:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "<-- Delete"
-msgstr "<-- »èÁ¦"
+msgid "Mouse device: %s\n"
+msgstr "¸¶¿ì½º ÀåÄ¡: %s\n"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "This will take a few minutes."
-msgstr ""
+msgid "Reselect correct fonts"
+msgstr "¿Ã¹Ù¸¥ ÆùÆ® Àç¼±ÅÃ"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Build All Kernels -->"
+msgid ""
+"Options Description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../help.pm:1
#, fuzzy, c-format
-msgid "No NIC selected!"
-msgstr "³×Æ®¿÷ Ä«µå°¡ ¼±Åà ¾ÈµÊ!"
+msgid ""
+"Options\n"
+"\n"
+" Here you can choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"%s\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
+msgstr ""
+"¸¶Áö¸·À¸·Î, ºÎÆýÿ¡ ÀÚµ¿À¸·Î ±×·¡ÇÈ È¯°æÀ» »ç¿ëÇÒ °ÍÀÎÁö¸¦ Áú¹®ÇÒ °ÍÀÔ´Ï"
+"´Ù.\n"
+"ÁÖÀÇ: ÀÌ Áú¹®Àº ¼³Á¤À» Å×½ºÆ®ÇÏÁö ¾Ê¾ÒÀ»Áö¶óµµ ³ªÅ¸³ª°Ô µÉ °ÍÀÔ´Ï´Ù.\n"
+"½Ã½ºÅÛÀ» È®½ÇÈ÷ ¼­¹ö¿ëÀ¸·Î »ç¿ëÇÒ °ÍÀ̰ųª, È­¸é ¼³Á¤¿¡ ¼º°øÇÏÁö ¸øÇÑ °æ¿ì¶ó"
+"¸é\n"
+"¡¸¾Æ´Ï¿À¡¹¸¦ ´©¸£¼¼¿ä."
-#: ../../standalone/drakTermServ:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
+msgid "We are now going to configure the %s connection."
+msgstr "ÀÌÁ¦ ¡¸%s¡¹¿¬°áÀ» ¼³Á¤ÇÒ °ÍÀÔ´Ï´Ù."
-#: ../../standalone/drakTermServ:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "No kernel selected!"
-msgstr "Ä¿³ÎÀÌ ¼±ÅõÇÁö ¾Ê¾Ò½À´Ï´Ù!"
+msgid "MandrakeExpert Corporate"
+msgstr "¸Çµå·¹ÀÌÅ© Àü¹®°¡ ¹ýÀÎ"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone.pm:1
#, c-format
-msgid "Build Whole Kernel -->"
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "ºÎÆ® ISO"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Write protection"
+msgstr "ÇÁ¸°ÅÍ ÀÚµ¿ °Ë»ö"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "You've not selected any font"
+msgstr "ÆùÆ®¸¦ ãÀ» ¼ö ¾ø¾ú½À´Ï´Ù.\n"
+
+#: ../../steps.pm:1
#, c-format
-msgid "Boot Floppy"
-msgstr "ºÎÆ® Ç÷ÎÇÇ"
+msgid "Language"
+msgstr "¾ð¾î ¼±ÅÃ"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"drakTermServ Overview\n"
-"\t\t\t \n"
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images.\n"
-"\n"
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:\n"
-" \t\t\n"
-"\t\t\t\thost curly {\n"
-"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
-"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t#type fat;\n"
-"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
-"nbi\";\n"
-"\t\t\t\t}\n"
-"\t\t\t\n"
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be \"thin\"\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run most\n"
-"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
-"$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are modified\n"
-"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
-"issues in using xdmcp,\n"
-"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
-"subnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing "
-"clients.\n"
-"\t\t\t\n"
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network.\n"
-" \t\t\n"
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file.\n"
-"\n"
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. In the future drakTermServ "
-"will help create these\n"
-" \t\tfiles.\n"
-"\n"
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. In the future, "
-"drakTermServ can help create files\n"
-" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
-"keyboard on a per-client\n"
-" \t\tbasis.\n"
-"\n"
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-" \t\t(\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs it's images.\n"
-"\n"
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
-" \n"
-"\n"
-msgstr ""
+msgid "Printer model selection"
+msgstr "ÇÁ¸°ÅÍ ¸ðµ¨ ¼±ÅÃ"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
-"\n"
-msgstr ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "%sÀÇ ÆÄƼ¼Ç À¯ÇüÀ» º¯°æÈÄ ÀÌ ÆÄƼ¼Ç³»ÀÇ ¸ðµç ÀڷḦ ÀÒ°Ô µË´Ï´Ù."
-#: ../../standalone/drakTermServ:1
+#: ../../common.pm:1
#, c-format
-msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
-"\n"
-msgstr ""
+msgid "%d seconds"
+msgstr "%d ÃÊ"
-#: ../../standalone/drakTermServ:1
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
-msgid "Add/Del Clients"
-msgstr "Ŭ¶óÀ̾ðÆ® Ãß°¡/Á¦°Å"
+msgid "Insert a blank floppy in drive %s"
+msgstr "%s µå¶óÀ̺꿡 ºó Ç÷ÎÇÇ µð½ºÅ©¸¦ ³ÖÀ¸¼¼¿ä"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Add/Del Users"
-msgstr "»ç¿ëÀÚ Ãß°¡/Á¦°Å"
+msgid "A valid URI must be entered!"
+msgstr "À¯È¿ÇÑ ÁÖ¼Ò¸¦ ÀÔ·ÂÇϼ¼¿ä!"
-#: ../../standalone/drakTermServ:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Net Boot Images"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr ""
+msgid "Re-configure interface and DHCP server"
+msgstr "ÀÎÅÍÆäÀ̽º¿Í DHCP ¼­¹ö Àç¼³Á¤"
-#: ../../standalone/drakTermServ:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "Stop Server"
-msgstr "¼­¹ö ÁßÁö"
+msgid "Sound configuration"
+msgstr "»ç¿îµå ¼³Á¤"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Start Server"
-msgstr "¼­¹ö ½ÃÀÛ"
+msgid "Photo test page"
+msgstr "»çÁø ½ÃÇè ÆäÀÌÁö"
-#: ../../standalone/drakTermServ:1
+#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
-msgid "Disable Server"
-msgstr "¼­¹ö »ç¿ë ÇØÁ¦"
+msgid "Custom disk partitioning"
+msgstr "»ç¿ëÀÚ Á¤ÀÇ ÆÄƼ¼Ç ³ª´©±â"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Enable Server"
-msgstr "¼­¹ö »ç¿ë"
+msgid "Enter Printer Name and Comments"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "¸Çµå·¹ÀÌÅ© Å͹̳Π¼­¹ö ¼³Á¤"
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "À¯Çü: "
-#: ../../standalone/drakautoinst:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Remove the last item"
-msgstr "¸¶Áö¸· Ç׸ñ »èÁ¦"
+msgid "Slovakian (QWERTY)"
+msgstr "½½·Î¹ÙÅ°¾Æ (QWERTY)"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/draksound:1
#, c-format
-msgid "Add an item"
-msgstr "Ç׸ñ Ãß°¡"
+msgid "No Sound Card detected!"
+msgstr "»ç¿îµåÄ«µå¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
-#: ../../standalone/drakautoinst:1
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
-msgid "Auto Install"
-msgstr "ÀÚµ¿ ¼³Ä¡"
+msgid "Mouse Port"
+msgstr "¸¶¿ì½º Æ÷Æ®"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-"Ç÷ÎÇÇ°¡ ¼º°øÀûÀ¸·Î »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
-"ÀÌÁ¨ ¼³Ä¡°úÁ¤¸¦ ¹Ýº¹ÇÒ ¼ö ÀÖ½À´Ï´Ù."
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Congratulations!"
-msgstr "ÃàÇÏÇÕ´Ï´Ù!"
+msgid "Ftp Server"
+msgstr "FTP ¼­¹ö"
-#: ../../standalone/drakautoinst:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
+"Arguments: (arg)\n"
"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"Enable/Disable msec hourly security check."
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ »ý¼º"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "%s fonts conversion"
+msgstr "pfm ÆùÆ® º¯È¯"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the type of bus on which the mouse is connected"
+msgstr "¾î¶² ½Ã¸®¾ó Æ÷Æ®¿¡ ¸¶¿ì½º°¡ ¿¬°áµÇ¾î ÀÖ³ª¿ä?"
-#: ../../standalone/drakautoinst:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr "°¢ °úÁ¤¿¡ ´ëÇÏ¿© ¼öµ¿¼³Ä¡¿Í ÀÚµ¿¹Ýº¹¼³Ä¡¸¦ ¼±ÅÃÇϼ¼¿ä."
+msgid "Uganda"
+msgstr "¿ì°£´Ù"
-#: ../../standalone/drakautoinst:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "ÀÚµ¿ °úÁ¤ ¼³Á¤±â"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "replay"
-msgstr "Àç½Ãµµ"
+msgid ""
+"Arguments: (size)\n"
+"\n"
+"Set shell commands history size. A value of -1 means unlimited."
+msgstr ""
-#: ../../standalone/drakautoinst:1
+#: ../../help.pm:1
#, c-format
msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
+"As a review, DrakX will present a summary of information it has about your\n"
+"system. Depending on your installed hardware, you may have some or all of\n"
+"the following entries. Each entry is made up of the configuration item to\n"
+"be configured, followed by a quick summary of the current configuration.\n"
+"Click on the corresponding \"%s\" button to change that.\n"
"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
+" * \"%s\": check the current keyboard map configuration and change that if\n"
+"necessary.\n"
"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
+" * \"%s\": check the current country selection. If you are not in this\n"
+"country, click on the \"%s\" button and choose another one. If your country\n"
+"is not in the first list shown, click the \"%s\" button to get the complete\n"
+"country list.\n"
"\n"
-"Do you want to continue?"
-msgstr ""
-"ÀÌÁ¦ ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇǸ¦ ¸¸µé °ÍÀÔ´Ï´Ù. ÀÌ°ÍÀº ´Ù¼Ò À§ÇèÇÑ ÀÛ¾÷ÀÌ µÉ ¼ö ÀÖÀ¸"
-"¸ç, ½ÅÁßÇÏ°Ô »ç¿ëµÇ¾îÁ®¾ß ÇÕ´Ï´Ù.\n"
+" * \"%s\": By default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
"\n"
-"ÀÌ°ÍÀÇ Æ¯Â¡Àº, ÀϺΠ°ªÀ» º¯°æÇϱâ À§ÇÏ¿© ÀϺΠ°úÁ¤¿¡¼­ ´ëÈ­¸ðµå°¡ ³ªÅ¸³ª±â´Â "
-"ÇÏÁö¸¸, ±âº»ÀûÀ¸·Î ÀÌ ÄÄÇ»ÅÍ¿¡¼­ ¼öÇàÇÑ ¼³Ä¡ÀÛ¾÷À» ÀÚµ¿¹Ýº¹ÇÏ°Ô ÇÕ´Ï´Ù.\n"
+" * \"%s\": check the current mouse configuration and click on the button to\n"
+"change it if necessary.\n"
"\n"
-"¾ÈÀü»óÀÇ ÀÌÀ¯·Î, ÀÌ ÄÄÇ»Åͻ󿡼­ÀÇ ¼³Ä¡°úÁ¤°ú´Â »ó°ü¾øÀÌ, ÆÄƼ¼Ç ³ª´©±â¿Í Æ÷"
-"¸ËÇϱâ´Â ÀÚµ¿À¸·Î ÀÌ·ç¾îÁöÁö ¾Ê½À´Ï´Ù.\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation.\n"
"\n"
-"°è¼Ó ÁøÇàÇմϱî?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "ÀÚµ¿ ¼³Ä¡ ¼³Á¤±â"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "ÇÊ¿äÇÑ À̹ÌÁö ÆÄÀÏ %s¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "¿À·ù!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"%s\": if a sound card is detected on your system, it is displayed\n"
+"here. If you notice the sound card displayed is not the one that is\n"
+"actually present on your system, you can click on the button and choose\n"
+"another driver.\n"
"\n"
-"Restore Backup Problems:\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
+" * \"%s\": if a TV card is detected on your system, it is displayed here.\n"
+"If you have a TV card and it is not detected, click on \"%s\" to try to\n"
+"configure it manually.\n"
+"\n"
+" * \"%s\": if an ISDN card is detected on your system, it will be displayed\n"
+"here. You can click on \"%s\" to change the parameters associated with the\n"
+"card.\n"
+"\n"
+" * \"%s\": If you want to configure your Internet or local network access\n"
+"now.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click that\n"
+"button. This should be reserved to advanced users.\n"
+"\n"
+" * \"%s\": here you'll be able to fine control which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
+msgid "Comoros"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm:1
#, c-format
msgid ""
-"Description:\n"
"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
+"We are now going to configure the %s connection.\n"
"\n"
-" Per default all backups will be stored on your\n"
-" /var/lib/drakbackup directory\n"
"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+"Press OK to continue."
+msgstr ""
"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
"\n"
"\n"
-msgstr ""
+"ÀÌÁ¦ ¡¸%s¡¹¿¬°áÀ» ¼³Á¤ÇÒ °ÍÀÔ´Ï´Ù.\n"
+"\n"
+"\n"
+"½ÃÀÛÇÏ·Á¸é ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1
+#, c-format
+msgid "Yaboot mode"
+msgstr "Yaboot ¸ðµå"
+
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (cable)"
+msgstr "¹Ì±¹ (ÄÉÀ̺í)"
+
+#: ../../standalone/drakboot:1
#, c-format
msgid ""
-" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "ÀϹÝÀûÀÎ 3¹öÆ° ¸¶¿ì½º"
+
#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
-"fr>"
-msgstr ""
+msgid "Select another media to restore from"
+msgstr "´Ù¸¥ º¹±¸ ¸Åü ¼±ÅÃ"
+
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Software Manager"
+msgstr "¼ÒÇÁÆ®¿þ¾î °ü¸®ÀÚ"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"restore description:\n"
+"Restore Description:\n"
" \n"
"Only the most recent date will be used, because with incremental \n"
"backups it is necessary to restore one by one each older backup.\n"
@@ -12877,4609 +12291,5233 @@ msgid ""
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption to use. This option allows you to \n"
-"\tbackup all of your data the first time, and \n"
-"\tonly the changed data after.\n"
-"\tSo you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
+"\tThe incremental backup is the most powerful option for \n"
+"\tbackup. This option allows you to backup all your data \n"
+"\tthe first time, and only the changed data afterward.\n"
+"\tThen you will be able, during the restore step, to restore \n"
+"\tyour data from a specified date. If you have not selected \n"
+"\tthis option all old backups are deleted before each backup. \n"
"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include the web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select incremental backup.\t\t\n"
+" - Differential Backups:\n"
" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed data afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
+"\tThe differential backup, rather than comparing changes in the\n"
+"\tdata to the previous incremental backup, always compares the\n"
+"\tdata to the initial base backup. This method allows one to\n"
+"\trestore the base and then the differential from a certain date.\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
+msgid "Re-submit"
+msgstr "ÀçÀü¼Û"
#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %%).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time (about 1000%% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" #> cat .backupignore\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
+msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../common.pm:1
#, c-format
-msgid "Drakbackup"
-msgstr "µå·¹ÀÌÅ© ¹é¾÷"
+msgid "KB"
+msgstr "KB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "º¹±¸"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Network & Internet"
+msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º"
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Backup Now"
-msgstr "Áö±Ý ¹é¾÷"
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "¸®Åõ¾Æ´Ï¾Æ (À½¼ºÇÐ QWERTY)"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Advanced Configuration"
-msgstr "°í±Þ ¼³Á¤"
+msgid "Net Boot Images"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "¸¶¹ý»ç ¼³Á¤"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Sharing of local scanners"
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/monitor.pm:1
#, c-format
-msgid "View Backup Configuration."
-msgstr "¹é¾÷ ¼³Á¤ º¸±â"
+msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../services.pm:1
#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Áö±Ý ¼³Á¤ ÆÄÀϷκÎÅÍ ¹é¾÷"
+msgid "Services and deamons"
+msgstr "¼­ºñ½º¿Í ´ë¸ó"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Drakbackup Configuration"
-msgstr "µå·¹ÀÌÅ© ¹é¾÷ ¼³Á¤"
+msgid "Remote host name missing!"
+msgstr "¿ø°Ý È£½ºÆ®¸íÀ» ãÀ» ¼ö ¾øÀ½!"
-#: ../../standalone/drakbackup:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "Total Progress"
-msgstr "Àüü ÁøÇà"
+msgid "with /usr"
+msgstr ""
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Sending files..."
-msgstr "ÆÄÀÏ Àü¼Û Áß ..."
+msgid "Network"
+msgstr "³×Æ®¿÷"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "files sending by FTP"
-msgstr "FTP·Î ÆÄÀÏ Àü¼Û"
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../any.pm:1
#, c-format
-msgid "Backup other files"
-msgstr "´Ù¸¥ ÆÄÀÏ ¹é¾÷"
+msgid "This password is too simple"
+msgstr "ÀÌ ¾ÏÈ£´Â ³Ê¹« ´Ü¼øÇÕ´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Backup user files"
-msgstr "»ç¿ëÀÚ ÆÄÀÏ ¹é¾÷"
+msgid "Slovakian (QWERTZ)"
+msgstr "½½·Î¹ÙÅ°¾Æ (QWERTZ)"
-#: ../../standalone/drakbackup:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Backup system files"
-msgstr "½Ã½ºÅÛ ÆÄÀÏ ¹é¾÷"
+msgid ""
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Under Devel ... please wait."
+msgid "Truly minimal install (especially no urpmi)"
msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+" Transfer \n"
+"Now"
msgstr ""
+" Áö±Ý \n"
+"Àü¼Û"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Please select data to backup..."
-msgstr "¹é¾÷ÇÒ µ¥ÀÌÅ͸¦ ¼±ÅÃÇϼ¼¿ä..."
+msgid "Use daemon"
+msgstr "´ë¸ó »ç¿ë"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
#, c-format
-msgid "Please select media for backup..."
-msgstr "¹é¾÷¿ë ¸Åü¸¦ ¼±ÅÃÇϼ¼¿ä..."
+msgid "Authentication"
+msgstr "»ç¿ëÀÚ ÀÎÁõ"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Please select data to restore..."
-msgstr "º¹±¸ÇÒ µ¥ÀÌÅ͸¦ ¼±ÅÃÇϼ¼¿ä..."
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "´ÙÀ½ ÆÑÅ°ÁöµéÀÌ ¼³Ä¡µÉ °ÍÀÔ´Ï´Ù."
+msgid "Additional CUPS servers: "
+msgstr "CUPS ¼­¹ö IP"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
+msgid "Where do you want to mount %s?"
+msgstr "%s¸¦ ¾îµð¿¡ ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Next"
-msgstr "´ÙÀ½"
+msgid "Restore Via Network"
+msgstr "³×Æ®¿÷À» ÅëÇÑ º¹±¸"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Previous"
-msgstr "ÀÌÀü"
+msgid "Algeria"
+msgstr "¾ËÁ¦¸®"
-#: ../../standalone/drakbackup:1 ../../standalone/drakperm:1
-#: ../../standalone/logdrake:1
+#: ../../any.pm:1
#, c-format
-msgid "Save"
-msgstr "ÀúÀå"
+msgid "Initrd-size"
+msgstr "·¥µð½ºÅ© ¿ë·®"
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1
#, c-format
-msgid "Build Backup"
-msgstr "¹é¾÷ ºôµå"
+msgid ""
+"In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs."
+msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Restore Progress"
-msgstr "º¹±¸ ÁøÇà"
+msgid "\tBackups use tar and gzip\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Restore From Catalog"
-msgstr "Ä«Å»·Î±×·ÎºÎÅÍ º¹±¸"
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../standalone/drakbackup:1
+#: ../../standalone.pm:1
#, c-format
-msgid "Browse to new restore repository."
+msgid ""
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in "
+"MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Setting Default Printer..."
+msgstr "±âº» ÇÁ¸°ÅÍ"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Custom Restore"
-msgstr "»ç¿ëÀÚ Á¤ÀÇ º¹±¸"
+msgid "Interface %s (using module %s)"
+msgstr "ÀÎÅÍÆäÀ̽º %s (%s ¸ðµâ »ç¿ë)"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Restore all backups"
-msgstr "¸ðµç ¹é¾÷ º¹±¸"
+msgid "Name: %s\n"
+msgstr "À̸§: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Restore Failed..."
-msgstr "º¹±¸ ½ÇÆÐ..."
+msgid "Generating preview ..."
+msgstr "¹Ì¸®º¸±â »ý¼º Áß ..."
-#: ../../standalone/drakbackup:1
+#: ../../network/network.pm:1
#, c-format
-msgid "Files Restored..."
+msgid ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0' (zeroes)."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Path or Module required"
+msgid "serial"
+msgstr "½Ã¸®¾ó ¸¶¿ì½º"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "DVD-ROM"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Hostname required"
-msgstr "È£½ºÆ®¸íÀÌ ÇÊ¿äÇÕ´Ï´Ù."
+msgid "Georgian (\"Latin\" layout)"
+msgstr "±×·çÁö¾Æ (¶óƾ)"
-#: ../../standalone/drakbackup:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Username required"
-msgstr "»ç¿ëÀÚ¸íÀÌ ÇÊ¿äÇÕ´Ï´Ù."
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Password required"
-msgstr "¾ÏÈ£°¡ ÇÊ¿äÇÕ´Ï´Ù."
+msgid ""
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
-msgid "Host Path or Module"
+msgid ""
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Host Name"
-msgstr "È£½ºÆ®¸í"
+msgid "Kenya"
+msgstr "ÄɳÄ"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgid "Use ``Unmount'' first"
+msgstr "¡¸¾ð¸¶¿îÆ®¡¹¸¦ ¸ÕÀú »ç¿ëÇϼ¼¿ä"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing mtools packages..."
+msgstr "ÆÑÅ°Áö ¼³Ä¡ Áß..."
+
+#: ../../any.pm:1
#, c-format
-msgid "Restore Via Network"
-msgstr "³×Æ®¿÷À» ÅëÇÑ º¹±¸"
+msgid "You must specify a root partition"
+msgstr "·çÆ® ÆÄƼ¼ÇÀº ¹Ýµå½Ã ÁöÁ¤µÇ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgid "first step creation"
+msgstr "ù ´Ü°è »ý¼º"
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Select a scanner model"
+msgstr "½ºÄ³³Ê ¼±ÅÃ"
+
+#: ../../printer/data.pm:1
#, c-format
-msgid "Restore From Tape"
-msgstr "Å×ÀÔÀ¸·ÎºÎÅÍ º¹±¸"
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgid "Drakbackup Configuration"
+msgstr "µå·¹ÀÌÅ© ¹é¾÷ ¼³Á¤"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Save as.."
+msgstr "»õ À̸§À¸·Î ÀúÀå"
+
+#: ../../standalone/drakconnect:1
#, c-format
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Restore From CD"
-msgstr "CD·ÎºÎÅÍ º¹±¸"
+msgid "Korea (North)"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../any.pm:1
#, c-format
-msgid "Backup files not found at %s."
-msgstr "%s¿¡¼­ ¹é¾÷ ÆÄÀÏÀ» ãÀ» ¼ö ¾ø½À´Ï´Ù."
+msgid "Autologin"
+msgstr "ÀÚµ¿·Î±×ÀÎ"
-#: ../../standalone/drakbackup:1
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System configuration"
+msgstr "°æ°í ¼³Á¤"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
+msgid "Domain Admin Password"
msgstr ""
-"º¹±¸ °æ·Î\n"
-"¼öÁ¤"
-#: ../../standalone/drakbackup:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Restore Selected\n"
-"Files"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-"¼±ÅÃµÈ ÆÄÀÏ\n"
-"º¹±¸"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring printer ..."
+msgstr "ÇÁ¸°ÅÍ ¡¸%s¡¹ ¼³Á¤ Áß ..."
+
+#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../common.pm:1
#, c-format
-msgid "Remove user directories before restore."
-msgstr "º¹±¸Çϱâ Àü¿¡ »ç¿ëÀÚ µð·¢Å丮µéÀ» Á¦°Å"
+msgid "MB"
+msgstr "MB"
-#: ../../standalone/drakbackup:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+msgid "if set to yes, run some checks against the rpm database."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "([/] ´ë½Å¿¡) º¹±¸ °æ·Î ¼±ÅÃ"
+msgid "Virgin Islands (British)"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Restore Other"
-msgstr "´Ù¸¥ °Íµé º¹±¸"
+msgid "Bermuda"
+msgstr "¹ö¹Â´Ù"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Restore Users"
-msgstr "»ç¿ëÀÚµé º¹±¸"
+msgid "click here if you are sure."
+msgstr "ÀÌ»óÀÌ ¾øÀ¸¸é ¿©±â¸¦ ´©¸£¼¼¿ä."
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Restore system"
-msgstr "½Ã½ºÅÛ º¹±¸"
+msgid ""
+"No configuration file found \n"
+"please click Wizard or Advanced."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "´Ù¸¥ ¸Åü"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\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"
+"¿Í °°Àº ½ÄÀ¸·Î Àǹ̸¦ °¡Áý´Ï´Ù."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "´Ù¸¥ º¹±¸ ¸Åü ¼±ÅÃ"
+#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, fuzzy, c-format
+msgid "Remove"
+msgstr "Á¦°Å ¸ñ·Ï"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Please enter the directory where backups are stored"
-msgstr "¹é¾÷ ÆÄÀϵéÀÌ ÀúÀåµÉ µð·ºÅ丮¸¦ ÀÔ·ÂÇϼ¼¿ä."
+msgid "Lesotho"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../ugtk2.pm:1
#, c-format
-msgid "Restore from Hard Disk."
-msgstr "ÇÏµå µð½ºÅ©¿¡¼­ º¹±¸"
+msgid "utopia 25"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Use quota for backup files."
-msgstr "¹é¾÷ ÆÄÀÏ¿¡ ÄõÅÍ »ç¿ë"
+msgid "Pipe job into a command"
+msgstr "ÀÛ¾÷À» ¸í·ÉÀ¸·Î ÆÄÀÌÇÁ ¿¬°á"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
+msgid "new dynamic device name generated by core kernel devfs"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1
+#: ../../standalone/drakgw:1 ../../standalone/harddrake2:1
#, c-format
-msgid "Please enter the directory to save:"
-msgstr "ÀúÀåÇÒ µð·ºÅ丮¸¦ ¼±ÅÃÇϼ¼¿ä:"
+msgid "Yes"
+msgstr "¿¹"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "ÇÏµå µð½ºÅ©·Î ¹é¾÷"
+msgid "Cote d'Ivoire"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "please choose the date to restore"
-msgstr "º¹±¸ÇÒ ³¯Â¥¸¦ ¼±ÅÃÇϼ¼¿ä."
+msgid "Which protocol do you want to use?"
+msgstr "¾î¶² ÇÁ·ÎÅäÄÝÀ» »ç¿ëÇϽðڽÀ´Ï±î?"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Backup the system files before:"
-msgstr "½Ã½ºÅÛ ÆÄÀÏ ¸ÕÀú ¹é¾÷:"
+msgid "Restore Progress"
+msgstr "º¹±¸ ÁøÇà"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
+msgid "Estonia"
+msgstr "¿¡½ºÅä´Ï¾Æ"
+
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Choose the host on which the local scanners should be made available:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm:1
#, c-format
-msgid "OK to restore the other files."
-msgstr "´Ù¸¥ ÆÄÀϵéÀ» ¸ñ±¸ÇÏ·Á¸é, OK¸¦ ´©¸£¼¼¿ä."
+msgid ""
+"You have a hole in your partition table but I can't use it.\n"
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
+msgstr ""
+"ÆÄƼ¼Ç Å×ÀÌºí¿¡¼­ ºó °ø°£ÀÌ ÀÖÁö¸¸ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
+"À¯ÀÏÇÑ ÇØ°áÃ¥Àº ÁÖ ÆÄƼ¼ÇµéÀÌ È®Àå ÆÄƼ¼ÇµéÀÇ µÚ¿¡ ÀÖ´Â ºó °ø°£À» Â÷ÁöÇϵµ·Ï "
+"¿È±â´Â °ÍÀÔ´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid " Restore Configuration "
-msgstr " ¼³Á¤ º¹±¸ "
+msgid "Channel"
+msgstr "ä³Î"
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
+msgid "Add"
+msgstr "Ãß°¡"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid " All of your selected data have been "
-msgstr ""
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "¾î¶°ÇÑ ÀÎÅÍ³Ý ¿¬°á °øÀ¯µµ ¼³Á¤µÈ ÀûÀÌ ¾ø½À´Ï´Ù."
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
+msgid " Error while sending mail. \n"
+msgstr "¸ÞÀÏ Àü¼Û Áß ¿À·ù.\n"
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/keyboarddrake:1
#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "´ÙÀ½ ¹ø¿¡´Â ±×°ÍÀ» ¼±Åà ÇØÁ¦ ¶Ç´Â Á¦°ÅÇϼ¼¿ä."
+msgid "Keyboard"
+msgstr "Å°º¸µå"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"List of data corrupted:\n"
-"\n"
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../network/network.pm:1
#, c-format
msgid ""
-"List of data to restore:\n"
-"\n"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
+msgid "Choose the connection you want to configure"
+msgstr "¼³Á¤ÇÒ ¿¬°áÀ» ¼±ÅÃÇϼ¼¿ä."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Please wait, setting security level..."
+msgstr "Èñ¸ÁÇÏ´Â º¸¾È ´Ü°è¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
+
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "\t-Network by webdav.\n"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../network/network.pm:1
#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr ""
+msgid "Configuring network device %s"
+msgstr "%s ³×Æ®¿÷ Ä«µå ¼³Á¤Áß"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "activated"
+msgstr "Áö±Ý È°¼ºÈ­"
+
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Please choose which network interface will be used for the dhcp server."
+msgstr "¾î¶² ¾î´ðÅÍ·Î ÀÎÅͳݿ¡ ¿¬°áÇÒ °ÍÀÎÁö ¼±ÅÃÇϼ¼¿ä."
+
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr ""
+msgid "Finding packages to upgrade..."
+msgstr "¾÷±×·¹À̵åÇÒ ÆÑÅ°Áö¸¦ °Ë»öÁßÀÔ´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr ""
+msgid "Mount point: "
+msgstr "¸¶¿îÆ® À§Ä¡: "
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "\t-Tape \n"
-msgstr ""
+msgid "parse all fonts"
+msgstr "¸ðµç ÆùÆ® ºÐ¼®"
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "\t-CDROM.\n"
+msgid "With X"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "\t-Hard drive.\n"
-msgstr ""
+msgid "Multi-head configuration"
+msgstr "´ÙÁß Çìµå ¼³Á¤"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "No browser available! Please install one"
+msgstr "ºê¶ó¿ìÀú¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù! ¼³Ä¡ÇØ ÁÖ¼¼¿ä."
+
+#: ../../Xconfig/main.pm:1
#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"- Daemon (%s) include:\n"
+"%s"
msgstr ""
+"º¯°æ»çÇ×À» ÀúÀåÇÒ±î¿ä?\n"
+"ÇöÀç ¼³Á¤:\n"
+"\n"
+"%s"
-#: ../../standalone/drakbackup:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "32MB ¹Ì¸¸ÀÇ ÆÄƼ¼Ç¿¡´Â ReiserFS ÆÄÀÏ ½Ã½ºÅÛÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../services.pm:1
#, c-format
-msgid "\tBackups use tar and bzip2\n"
+msgid ""
+"The rwho protocol lets remote users get a list of all of the users\n"
+"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
+"rwho ÇÁ·ÎÅäÄÝÀº (finger¿Í ºñ½ÁÇÏ°Ô) rwho ´ë¸óÀÌ ½ÇÇàµÇ°í\n"
+"ÀÖ´Â ÄÄÇ»ÅÍ¿¡ ·Î±×ÀÎÇÑ »ç¿ëÀÚ ¸ñ·ÏÀ» ¿ø°Ý »ç¿ëÀÚ°¡ º¼ ¼ö ÀÖ°Ô ÇÕ´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "\tDo not include System Files\n"
-msgstr ""
+msgid "Domain name"
+msgstr "µµ¸ÞÀÎ À̸§"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "¿É¼Çµé"
+msgid "Sharing of local printers"
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
+#: ../../install_messages.pm:1
+#, fuzzy, c-format
+msgid "http://www.mandrakelinux.com/en/91errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+msgid "Available printers"
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
+msgid "Empty"
+msgstr "ºó°ø°£"
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1
#, c-format
msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
-"- Save to Tape on device: %s"
+"You will be presented with a list of different parameters to change to get\n"
+"an optimal graphical display: Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is correct, you can choose from\n"
+"this list the monitor you actually have connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"hardware. Choose the one that best suits your needs (you will be able to\n"
+"change that after installation though). A sample of the chosen\n"
+"configuration is shown in the monitor.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" Here you can choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"%s\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid " (multi-session)"
+msgid "text width"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid " on device: %s"
-msgstr "ÀåÄ¡: %s"
+msgid "Where do you want to mount device %s?"
+msgstr "ÀåÄ¡ %s¸¦ ¾îµð¿¡ ¸¶¿îÆ® ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "RW"
+msgid "The default lease (in seconds)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Interface \"%s\""
+msgstr "ÀÎÅÍÆäÀ̽º %s"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../mouse.pm:1
#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
+msgid "1 button"
+msgstr "1 ¹öÆ°"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
-"- Other Files:\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/main.pm:1
#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
+msgid "Test"
+msgstr "Å×½ºÆ®"
-#: ../../standalone/drakbackup:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
+"Arguments: (arg)\n"
"\n"
-"- System Files:\n"
+"Allow/Forbid direct root login."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Korea"
+msgstr "Ãß°¡ ¿É¼Ç"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "Select user manually"
-msgstr "¼öµ¿À¸·Î »ç¿ëÀÚ ¼±ÅÃ"
+msgid "Your choice? (default `%s'%s) "
+msgstr "´ÔÀÇ ¼±ÅÃÀº? (±âº»°ª ¡¸%s¡¹%s) "
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Backup Users"
-msgstr "»ç¿ëÀÚ ¹é¾÷"
+msgid "Raw printer"
+msgstr "³¯(RAW) ÇÁ¸°ÅÍ"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Backup system"
-msgstr "¹é¾÷ ½Ã½ºÅÛ"
+msgid "official vendor name of the cpu"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
#, c-format
-msgid "Please choose what you want to backup"
-msgstr "¹é¾÷ÇÒ ´ë»óÀ» ¼±ÅÃÇϼ¼¿ä."
+msgid "Vendor"
+msgstr "»óÇ¥"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "on Tape Device"
-msgstr ""
+msgid "Interface %s"
+msgstr "ÀÎÅÍÆäÀ̽º %s"
-#: ../../standalone/drakbackup:1
+#: ../../steps.pm:1
#, c-format
-msgid "on CDROM"
-msgstr ""
+msgid "Configure mouse"
+msgstr "¸¶¿ì½º ¼³Á¤"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "across Network"
-msgstr "³×Æ®¿÷ °æÀ¯"
+msgid "Choose the mount points"
+msgstr "¸¶¿îÆ® À§Ä¡¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../network/netconnect.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "on Hard Drive"
-msgstr "ÇÏµå µå¶óÀ̺ê"
+msgid "OK"
+msgstr "È®ÀÎ"
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Please choose where you want to backup"
-msgstr "¹é¾÷ÇÒ °÷À» ¼±ÅÃÇϼ¼¿ä."
+msgid "Yugoslavian (latin)"
+msgstr "À¯°í½½¶óºñ¾Æ (¶óƾ)"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "More Options"
-msgstr "Ãß°¡ ¿É¼Ç"
+msgid "Installing"
+msgstr "¼³Ä¡Áß"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm:1
#, c-format
-msgid "When"
-msgstr "½Ã°£"
+msgid "Launch userdrake"
+msgstr "»ç¿ëÀڵ巹ÀÌÅ© ½ÇÇà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Àå¼Ò"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "¼³Ä¡ÇÕ´Ï±î ¾Æ´Ï¸é ¾÷µ¥ÀÌÆ® Çմϱî?"
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "³»Àå ISDN Ä«µå"
+
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "What"
-msgstr "´ë»ó"
+msgid ""
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
+"ÃàÇÏÇÕ´Ï´Ù. ³×Æ®¿÷/ÀÎÅÍ³Ý ¼³Á¤ÀÌ ¿Ï·áµÇ¾ú½À´Ï´Ù.\n"
+"\n"
+"ÀÌÁ¦ ¼³Á¤ÀÌ ½Ã½ºÅÛ¿¡ Àû¿ëµÉ °ÍÀÔ´Ï´Ù.\n"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "¹é¾÷ ÈÄ º¸°í ¸ÞÀÏ º¸³»±â:"
+msgid "\t-Hard drive.\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1
#, c-format
msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
+"This step is activated only if an old GNU/Linux partition has been found on\n"
+"your machine.\n"
"\n"
-"Note that currently all 'net' medias also use the hard drive."
+"DrakX now needs to know if you want to perform a new install or an upgrade\n"
+"of an existing Mandrake Linux system:\n"
+"\n"
+" * \"%s\": For the most part, this completely wipes out the old system. If\n"
+"you wish to change how your hard drives are partitioned, or change the file\n"
+"system, you should use this option. However, depending on your partitioning\n"
+"scheme, you can prevent some of your existing data from being over-written.\n"
+"\n"
+" * \"%s\": this installation class allows you to update the packages\n"
+"currently installed on your Mandrake Linux system. Your current\n"
+"partitioning scheme and user data is not altered. Most of other\n"
+"configuration steps remain available, similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
+"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
+"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm:1
#, c-format
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"¹é¾÷¿ë ¸Åü¸¦\n"
-"¼±ÅÃÇϼ¼¿ä."
+msgid "Printer on remote CUPS server"
+msgstr "¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Please choose the time \n"
-"interval between each backup"
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"¹é¾÷°£ ½Ã°£ °£°ÝÀ»\n"
-"¼±ÅÃÇϼ¼¿ä."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Use daemon"
-msgstr "´ë¸ó »ç¿ë"
+msgid "delete"
+msgstr "»èÁ¦"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "monthly"
-msgstr "¸Å¿ù"
+msgid "here if no."
+msgstr "±×·¸Áö ¾Ê´Ù¸é, ¿©±â¸¦ ´©¸£¼¼¿ä."
-#: ../../standalone/drakbackup:1
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "DHCP host name"
+msgstr "È£½ºÆ®¸í:"
+
+#: ../../standalone/drakgw:1
#, c-format
-msgid "weekly"
-msgstr "¸ÅÁÖ"
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
-msgid "daily"
-msgstr "¸ÅÀÏ"
+msgid "Please choose which serial port your mouse is connected to."
+msgstr "¾î¶² ½Ã¸®¾ó Æ÷Æ®¿¡ ¸¶¿ì½º°¡ ¿¬°áµÇ¾î ÀÖ³ª¿ä?"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "hourly"
-msgstr "¸Å½Ã"
+msgid "Did it work properly?"
+msgstr "¿Ã¹Ù¸£°Ô ÀÛµ¿Çß½À´Ï±î?"
-#: ../../standalone/drakbackup:1
+#: ../../security/level.pm:1
#, c-format
-msgid "HardDrive / NFS"
-msgstr "ÇÏµå µð½ºÅ© / NFS"
+msgid "Poor"
+msgstr "ÃÖÀú"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgid "The DHCP start range"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Please enter the directory to save to:"
-msgstr "ÀúÀåÇÒ µð·ºÅ丮¸¦ ¼±ÅÃÇϼ¼¿ä."
+msgid "Grenada"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you want to eject your tape after the backup."
-msgstr "¹é¾÷Çϱâ Àü¿¡ Å×ÀÔÀ» Áö¿ïÁö È®ÀÎÇϼ¼¿ä."
+#: ../../any.pm:1
+#, c-format
+msgid "Unsafe"
+msgstr "À§Çè"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Please check if you want to erase your tape before the backup."
-msgstr "¹é¾÷Çϱâ Àü¿¡ Å×ÀÔÀ» Áö¿ïÁö È®ÀÎÇϼ¼¿ä."
+msgid ", %s sectors"
+msgstr ", %s ¼½ÅÍ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you want to use the non-rewinding device."
-msgstr "¹é¾÷Çϱâ Àü¿¡ Å×ÀÔÀ» Áö¿ïÁö È®ÀÎÇϼ¼¿ä."
+#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "No"
+msgstr "¾Æ´Ï¿À"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Please enter the device name to use for backup"
+msgid ""
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
+"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Use tape to backup"
-msgstr "Å×ÀÔÀ» »ç¿ëÇÑ ¹é¾÷"
+msgid "Guadeloupe"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "No CD device defined!"
-msgstr "CD ÀåÄ¡°¡ Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù!"
+msgid "could not find any font.\n"
+msgstr "ÆùÆ®¸¦ ãÀ» ¼ö ¾ø¾ú½À´Ï´Ù.\n"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/keyboarddrake:1
#, c-format
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Äֿܼ¡¼­ ¹é½ºÆäÀ̽º Å°°¡ Áö¿ì±â¸¦ Çϵµ·Ï ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you are using a DVDRAM device"
-msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Vertical refresh rate"
+msgstr "¼öÁ÷ ÁÖÆļö"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you are using a DVDR device"
-msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "%s ´Ü°è·Î ³Ñ¾î°©´Ï´Ù.\n"
-#: ../../standalone/drakbackup:1
+#: ../../mouse.pm:1
#, c-format
-msgid " Erase Now "
-msgstr " Áö±Ý »èÁ¦"
+msgid "Logitech MouseMan"
+msgstr "·ÎÁöÅØ ¸¶¿ì½º¸Ç"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+msgid "Removing %s ..."
+msgstr "%s Á¦°Å Áß"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Please check if you are using CDRW media"
-msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+msgid "Niger"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check for multisession CD"
-msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No printer"
+msgstr "ÇÁ¸°ÅÍ ¾øÀ½"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "CD/DVD ¿ë·®À» ¼±ÅÃÇϼ¼¿ä."
+msgid "alert configuration"
+msgstr "°æ°í ¼³Á¤"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"Please choose your CD/DVD device\n"
-"(Press Enter to propogate settings to other fields.\n"
-"This field isn't necessary, only a tool to fill in the form.)"
-msgstr ""
+msgid "NetWare Printer Options"
+msgstr "³Ý¿þ¾î ÇÁ¸°ÅÍ ¿É¼Ç"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Use CD/DVDROM to backup"
+msgid "%s BootSplash (%s) preview"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
+msgid "General"
+msgstr "ÀÏ¹Ý ¿µ¿ª"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Remember this password"
-msgstr "ºñ¹Ð¹øÈ£ ±â¾ï"
+msgid "Printing system: "
+msgstr "Àμ⠽ýºÅÛ:"
-#: ../../standalone/drakbackup:1
+#: ../../steps.pm:1
#, c-format
-msgid "Please enter your password"
-msgstr "ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇϼ¼¿ä."
+msgid "Add a user"
+msgstr "»ç¿ëÀÚ Ãß°¡"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Please enter your login"
-msgstr "¾ÆÀ̵𸦠ÀÔ·ÂÇϼ¼¿ä."
+msgid "Network configuration (%d adapters)"
+msgstr "³×Æ®¿÷ ¼³Á¤ (%d ¾îµªÅÍ)"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
-msgid ""
-"Please enter the directory (or module) to\n"
-" put the backup on this host."
-msgstr ""
+msgid "Mandatory package %s is missing"
+msgstr "Çʼö ÆÑÅ°Áö %s°¡ ¾ø½À´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Please enter the host name or IP."
-msgstr "È£½ºÆ® À̸§ ¶Ç´Â IP¸¦ ÀÔ·ÂÇϼ¼¿ä."
+msgid "Philippines"
+msgstr "Çʸ®ÇÉ"
-#: ../../standalone/drakbackup:1
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
+#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
#, c-format
-msgid ""
-"Other (not drakbackup)\n"
-"keys in place already"
-msgstr ""
+msgid "Ok"
+msgstr "È®ÀÎ"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-" Transfer \n"
-"Now"
-msgstr ""
-" Áö±Ý \n"
-"Àü¼Û"
+msgid "Print Queue Name"
+msgstr "ÇÁ¸°Æ® Å¥ À̸§"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Create/Transfer\n"
-"backup keys for SSH"
-msgstr ""
+msgid "Do you want to use aboot?"
+msgstr "aboot¸¦ »ç¿ëÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
+msgid "Belarusian"
+msgstr "º§¶ó·ç½Ã¾Æ"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Net Method:"
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
+"LPQ´Â ´ÜÁö Áö¿ª ÇÁ¸°ÅÍ, ¿ø°Ý LPD ÇÁ¸°ÅÍ ±×¸®°í ¼ÒÄÏ/TCP ÇÁ¸°Å͸¸À» Áö¿øÇÕ´Ï"
+"´Ù.\n"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Use network connection to backup"
-msgstr "³×Æ®¿÷À» »ç¿ëÇØ ¹é¾÷"
+msgid "Move files to the new partition"
+msgstr "»õ ÆÄƼ¼ÇÀ¸·Î ÆÄÀÏ ¿È±â±â"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Users"
-msgstr "»ç¿ëÀÚµé"
+msgid ""
+"Add here the CUPS servers whose printers you want to use. You only need to "
+"do this if the servers do not broadcast their printer information into the "
+"local network."
+msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Windows (FAT32)"
-msgstr "À©µµ¿ìÁî(FAT32)"
+msgid "Restore From Catalog"
+msgstr "Ä«Å»·Î±×·ÎºÎÅÍ º¹±¸"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Use Incremental Backups (do not replace old backups)"
+msgid "Pitcairn"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Remove Selected"
-msgstr "¼±Åà Ç׸ñ Á¦°Å"
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Do not include the browser cache"
+msgid "group :"
+msgstr "±×·ì:"
+
+#: ../../fs.pm:1
+#, c-format
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "¹é¾÷¿¡ Æ÷ÇÔÇÒ ¸ðµç »ç¿ëÀÚ¸¦ È®ÀÎÇϼ¼¿ä."
+msgid "Lilo screen"
+msgstr "¸±·Î ½ºÅ©¸°"
-#: ../../standalone/drakbackup:1
+#: ../../bootloader.pm:1 ../../help.pm:1
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
+msgid "LILO with graphical menu"
+msgstr "±×·¡ÇÈ ¸Þ´º LILO"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
+msgid "Estimating"
+msgstr "°è»ê Áß"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
+msgid "You can't unselect this package. It is already installed"
+msgstr "ÀÌ ÆÑÅ°Áö¸¦ ¼±ÅÃÇØÁ¦ÇÒ ¼ö ¾ø½À´Ï´Ù. ÀÌ¹Ì ¼³Ä¡ µÇ¾ú½À´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "½Ã½ºÅÛ ÆÄÀÏ ¸ÕÀú ¹é¾÷:"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "»ï¹Ù/À©µµ¿ìÁî 95/98/NT»óÀÇ ÇÁ¸°ÅÍ"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+msgid "Go on anyway?"
+msgstr "°è¼Ó ÁøÇàÇմϱî?"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "À¯È¿ÇÑ ÆÑÅ°Áö °Ë»ö ¹× RPM µ¥ÀÌÅͺ£À̽º ÀçÁ¶ÇÕ Áß..."
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Select the files or directories and click on 'Add'"
+msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "File Selection"
-msgstr "ÆÄÀÏ ¼±ÅÃ"
+msgid "Specify options"
+msgstr "¿É¼Ç ÁöÁ¤"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Can't create catalog!"
+msgid "Vanuatu"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid " Error while sending mail. \n"
-msgstr "¸ÞÀÏ Àü¼Û Áß ¿À·ù.\n"
+msgid "Either the server name or the server's IP must be given!"
+msgstr "¼­¹ö À̸§ ¶Ç´Â ¼­¹ö IP¸¦ ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù!"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm:1
#, c-format
msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"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"
-"Drakbackup activities via tape:\n"
-"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../fsedit.pm:1
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr " %s ¸¶¿îÆ® À§Ä¡¿¡´Â ¾Ïȣȭ ÆÄÀϽýºÅÛÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. "
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+msgid "Norfolk Island"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+msgid "Theme installation failed!"
+msgstr "Å׸¶ ¼³Ä¡ ½ÇÆÐ!"
-#: ../../standalone/drakbackup:1
+#: ../../fsedit.pm:1
#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
+msgid "Nothing to do"
+msgstr "ÇÒ ÀÏ ¾øÀ½."
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "No changes to backup!"
-msgstr "¹é¾÷ÇÒ º¯°æ»çÇ×ÀÌ ¾ø½À´Ï´Ù!"
+msgid "Use for loopback"
+msgstr "·çÇÁ¹éÀ¸·Î »ç¿ë"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "ÇÏµå µð½ºÅ© ¹é¾÷ ÆÄÀϵé"
+msgid "Mandrake Bug Report Tool"
+msgstr "¸Çµå·¹ÀÌÅ© ¹ö±× º¸°í µµ±¸"
-#: ../../standalone/drakbackup:1
+#: ../../network/adsl.pm:1
#, c-format
-msgid "Backup Other files..."
-msgstr "´Ù¸¥ ÆÄÀÏ ¹é¾÷..."
+msgid "use pppoe"
+msgstr "PPPOE »ç¿ë"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr ""
+msgid "Moving files to the new partition"
+msgstr "»õ ÆÄƼ¼ÇÀ¸·Î ÆÄÀÏ ¿È±â´Â Áß"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Backup User files..."
-msgstr "»ç¿äÀÚ ÆÄÀÏ ¹é¾÷..."
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s¸¦ »ç¿ëÇÑ ½ÇÇèÀû 3D Çϵå¿þ¾î °¡¼Ó"
-#: ../../standalone/drakbackup:1
+#: ../../help.pm:1 ../../interactive.pm:1
#, c-format
-msgid "Backup system files..."
-msgstr "½Ã½ºÅÛ ÆÄÀÏ ¹é¾÷..."
+msgid "Advanced"
+msgstr "°í±Þ"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "No tape in %s!"
-msgstr ""
+msgid "Transfer"
+msgstr "Àü¼Û"
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
+msgid "Dvorak (Swedish)"
+msgstr "µåº¸¶ô(½º¿þµ§)"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "This may take a moment to erase the media."
-msgstr ""
+msgid "More Options"
+msgstr "Ãß°¡ ¿É¼Ç"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Not erasable media!"
-msgstr ""
+msgid "Afghanistan"
+msgstr "¾ÆÇÁ°¡´Ï½ºÅº"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Does not appear to be recordable media!"
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../services.pm:1
#, c-format
-msgid "No CDR/DVDR in drive!"
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
msgstr ""
+"cronÀº »ç¿ëÀÚ°¡ ÁöÁ¤ÇÑ ÇÁ·Î±×·¥À» ÁÖ±âÀûÀ¸·Î ƯÁ¤ ½Ã°£¿¡ ½ÇÇà½ÃÅ°´Â \n"
+"Ç¥ÁØ UNIX ÇÁ·Î±×·¥ÀÔ´Ï´Ù. vixie cronÀº ÀÌ ±âº» UNIX Cron¿¡ Çâ»óµÈ º¸¾È°ú \n"
+"´õ °­·ÂÇÑ ¼³Á¤¿É¼Ç µîÀÇ ¸¹Àº Ư¡À» Ãß°¡ÇÕ´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "WebDAV transfer failed!"
+msgid "Burundi"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "WebDAV remote site already in sync!"
+msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Total progess"
-msgstr "Àüü ÁøÇà"
+msgid "Read carefully!"
+msgstr "ÁÖÀDZí°Ô ÀÐÀ¸¼¼¿ä!"
#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s\\@%s\n"
-"\n"
-"without being prompted for a password."
+msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "%s not responding"
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
+"TV ³ë¿È°ú ±¹°¡¸¦\n"
+"ÀÔ·ÂÇϼ¼¿ä."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "%s¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù: %s\n"
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Port"
+msgstr "Æ÷Æ®"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Permission denied transferring %s to %s"
+msgid "No (experts only)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "¾ÏÈ£ ¾øÀ½"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No kernel selected!"
+msgstr "Ä¿³ÎÀÌ ¼±ÅõÇÁö ¾Ê¾Ò½À´Ï´Ù!"
-#: ../../standalone/drakbackup:1
+#. -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:1
#, c-format
-msgid "No password prompt on %s at port %s"
+msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr ""
+msgid "Set-GID"
+msgstr "GID ¼³Á¤"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
+msgid "The encryption keys do not match"
+msgstr "¾Ïȣȭ Å°°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"Warning: If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
+msgid "Right \"Windows\" key"
msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check empty password in /etc/shadow."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"terms in it, check the \"%s\" box. If not, simply turn off your computer."
msgstr ""
+"´õ ÁøÇàÇϱâ Àü¿¡ »ç¿ëÀÚ °è¾à¼­¸¦ ÀÚ¼¼ÇÏ°Ô ÀÐ¾î º¸¼¼¿ä.\n"
+"»ç¿ëÀÚ °è¾à¼­´Â Àüü ¸Çµå·¹ÀÌÅ© ¸®´ª½º ¹èÆ÷º»À» Æ÷°ýÇÏ´Â ³»¿ëÀ̸ç,\n"
+"¸¸¾à µ¿ÀÇÇÏÁö ¾ÊÀ¸½Å´Ù¸é ¡¸°ÅºÎ¡¹¹öÆ°À» ´©¸£¼¼¿ä. °ÅºÎ ¹öÆ°Àº ÇöÀç ¼³Ä¡¸¦\n"
+"Áï°¢ Á¾·áÇÏ°Ô ÇÕ´Ï´Ù. ¼³Ä¡¸¦ °è¼ÓÇÏ°í ½Í´Ù¸é ¡¸µ¿ÀÇ¡¹¹öÆ°À» ´©¸£¼¼¿ä."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
+"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolutions"
+msgstr "ÇØ»óµµ"
+
+#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-" DrakBackup Report \n"
-"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
+"µå·¹ÀÌÅ© ¹æÈ­º® °ü¸®ÀÚ\n"
+"\n"
+"ÀÌ°ÍÀº ¸Çµå·¹ÀÌÅ© ¸®´ª½º ½Ã½ºÅÛÀÇ °³ÀÎ ¹æÈ­º®À» ¼³Á¤ÇÕ´Ï´Ù.\n"
+"°­·ÂÇÑ Àü¹® ¹æÈ­º®À» »ç¿ëÇÏ°í ½Í´Ù¸é, ¸Çµå·¹ÀÌÅ© º¸¾È ¹æÈ­º®\n"
+"¹èÆ÷ÆÇÀ» ±¸ÇϽñ⠹ٶø´Ï´Ù."
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "INFO"
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "FATAL"
-msgstr "FAT"
+msgid "Remove selected host"
+msgstr "¼±Åà Ç׸ñ Á¦°Å"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "WARNING"
-msgstr ""
+msgid "Network configuration"
+msgstr "³×Æ®¿÷ ¼³Á¤"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm:1
#, c-format
-msgid "Cron not available yet as non-root"
-msgstr ""
+msgid "No sharing"
+msgstr "ºñ°øÀ¯"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s ¼³Ä¡ ½ÇÆÐ. ´ÙÀ½°ú °°Àº ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù:"
+msgid "Move selected rule down one level"
+msgstr "¼±ÅÃµÈ ±ÔÄ¢ ÇÑ ´Ü°è ¾Æ·¡·Î"
-#: ../../standalone/drakboot:1
+#: ../../common.pm:1
#, c-format
-msgid "No, I don't want autologin"
-msgstr "¾Æ´Ï¿À, ÀÚµ¿·Î±×ÀÎÀ» »ç¿ëÇÏÁö ¾Ê½À´Ï´Ù."
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "¿¹, ÀÚµ¿·Î±×ÀÎÀ» »ç¿ëÇÕ´Ï´Ù."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using a DVDR device"
+msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "½ÃÀÛÇÒ ¶§ X-Window ½ÇÇà"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakpxe:1
#, c-format
-msgid "System mode"
-msgstr "½Ã½ºÅÛ ¸ðµå"
+msgid ""
+"The DHCP server will allow other computer to boot using PXE in the given "
+"range of address.\n"
+"\n"
+"The network address is %s using a netmask of %s.\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Bootsplash"
-msgstr "ºÎÆ®½ºÇ÷¹½¬"
+msgid "Delete"
+msgstr "»èÁ¦"
-#: ../../standalone/drakboot:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Lilo screen"
-msgstr "¸±·Î ½ºÅ©¸°"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid reboot by the console user."
+msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../Xconfig/various.pm:1
#, c-format
msgid ""
-"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
+"ºÎÆýÿ¡ ÀÚµ¿À¸·Î XÀ©µµ¿ì°¡ ½ÃÀ۵ǵµ·Ï ÇÒ¼ö ÀÖ½À´Ï´Ù.\n"
+"´Ù½Ã ºÎÆÃÇßÀ»¶§ ÀÚµ¿À¸·Î XÀ©µµ°¡ ½ÃÀÛµÇ±æ ¿øÇϼ¼¿ä?"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Themes"
-msgstr "Å׸¶"
+msgid "Build the disk"
+msgstr "µð½ºÅ© »ý¼º"
-#: ../../standalone/drakboot:1
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "¿¬°á ²÷±â"
+
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Splash selection"
-msgstr "½ºÇ÷¡½¬ ¼±ÅÃ"
+msgid "Status:"
+msgstr "»óÅÂ:"
-#: ../../standalone/drakboot:1
+#: ../../network/network.pm:1
#, c-format
-msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"ÇöÀç ºÎÆ® °ü¸®ÀÚ·Î %s¸¦ »ç¿ëÇÏ°í ÀÖ½À´Ï´Ù.\n"
-"¼³Á¤ ¸¶¹ý»ç¸¦ ½ÇÇàÇÏ·Á¸é ¡¸¼³Á¤¡¹À» ´©¸£¼¼¿ä."
+msgid "HTTP proxy"
+msgstr "À¥ ÇÁ¶ô½Ã"
-#: ../../standalone/drakboot:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "LiLo and Bootsplash themes installation successfull"
+msgid "SSH Server"
+msgstr "SSH ¼­ºñ½º"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "European protocol"
+msgstr "À¯·´ ÇÁ·ÎÅäÄÝ"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Theme installation failed!"
-msgstr "Å׸¶ ¼³Ä¡ ½ÇÆÐ!"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
+#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
+#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
+#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
+#: ../../standalone/drakfont:1 ../../standalone/draksplash:1
#, c-format
-msgid "Notice"
-msgstr "ÁÖÀÇ"
+msgid "Error"
+msgstr "¿À·ù"
-#: ../../standalone/drakboot:1
+#: ../../any.pm:1
#, c-format
-msgid "Relaunch 'lilo'"
-msgstr "¸±·Î Àç½ÇÇà"
+msgid "allow \"su\""
+msgstr "¡¸su¡¹Çã¿ë"
-#: ../../standalone/drakboot:1
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
-msgstr ""
+msgid "Australia"
+msgstr "¿À½ºÆ®·¹Àϸ®¾Æ"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-msgstr ""
+msgid "please wait during ttmkfdir..."
+msgstr "±â´Ù·Á ÁÖ¼¼¿ä. ttmkfdir ½ÇÇà Áß..."
-#: ../../standalone/drakboot:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgid "Configure only card \"%s\"%s"
+msgstr "¡¸%s¡¹%s Ä«µå¸¸ ¼³Á¤"
-#: ../../standalone/drakboot:1
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Level"
+msgstr "·¹º§"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Change the printing system"
+msgstr "Àμâ½Ã½ºÅÛ º¯°æ"
+
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Your system supports multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
+"´ÔÀÇ ½Ã½ºÅÛÀº ´ÙÁß Çìµå ¼³Á¤À» Áö¿øÇÕ´Ï´Ù.\n"
+"¾î¶»°Ô ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakboot:1
+#: ../../steps.pm:1
#, c-format
-msgid "Write %s"
-msgstr "%s ±â·Ï"
+msgid "Configure services"
+msgstr "¼­ºñ½º ¼³Á¤"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../partition_table.pm:1
#, c-format
-msgid "Lilo message not found"
-msgstr "¸±·Î ¸Þ½ÃÁö¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù."
+msgid "mount failed: "
+msgstr "¸¶¿îÆ® ½ÇÆÐ: "
-#: ../../standalone/drakboot:1
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"the GNU/Linux kernel needs to run a calculation loop at boot time to "
+"initialize a timer counter. Its result is stored as bogomips as a way to "
+"\"benchmark\" the cpu."
+msgstr ""
+
+#: ../../any.pm:1
#, c-format
-msgid "Copy %s to %s"
-msgstr "%s¸¦ %s·Î º¹»ç"
+msgid "Image"
+msgstr "À̹ÌÁö"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Backup %s to %s.old"
-msgstr "%s¸¦ %s.old·Î ¹é¾÷"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../services.pm:1
#, c-format
-msgid "Create new theme"
-msgstr "»õ Å׸¶ ¸¸µé±â"
+msgid "Remote Administration"
+msgstr "¿ø°Ý °ü¸®"
-#: ../../standalone/drakboot:1
+#: ../../modules.pm:1
#, c-format
msgid ""
-"Display theme\n"
-"under console"
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"ÄܼÖÇÏ¿¡¼­\n"
-"Å׸¶ º¸À̱â"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Install themes"
-msgstr "Å׸¶ ¼³Ä¡"
+msgid "Selected All"
+msgstr "¸ðµÎ ¼±ÅÃ"
-#: ../../standalone/drakboot:1
+#: ../../printer/data.pm:1
#, c-format
-msgid "Lilo/grub mode"
-msgstr "LILO/Grub ¸ðµå"
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../standalone/drakboot:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot ¸ðµå"
+msgid "Webmin Service"
+msgstr "À¥¹Î ¼­ºñ½º"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+msgid "device"
+msgstr "ÀåÄ¡"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
#, c-format
-msgid "/File/_Quit"
-msgstr "/ÆÄÀÏ(F)/Á¾·á(_Q)"
+msgid "All"
+msgstr "¸ðµÎ"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "/_File"
-msgstr "/ÆÄÀÏ(_F)"
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "¾î¶² Àμ⠽ýºÅÛ(½ºÇ®·¯)À» »ç¿ëÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakboot:1
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "Boot Style Configuration"
-msgstr "ºÎÆà ½ºÅ¸ÀÏ ¼³Á¤"
+msgid "Greece"
+msgstr "±×¸®½º"
-#: ../../standalone/drakbug:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "No browser available! Please install one"
-msgstr "ºê¶ó¿ìÀú¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù! ¼³Ä¡ÇØ ÁÖ¼¼¿ä."
+msgid "An error occurred"
+msgstr "¿À·ù ¹ß»ý"
-#: ../../standalone/drakbug:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
-msgstr "¹öÁú¶ó ¸¶¹ý»ç¿¡ ¿¬°á Áß ..."
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"ÀÌ ÆÑÅ°Áö´Â ¹Ýµå½Ã ¾÷±×·¹À̵åµÇ¾î¾ß ÇÕ´Ï´Ù.\n"
+"Á¤¸»·Î ¼±ÅÃÀ» ÇØÁ¦ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakbug:1
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù."
+msgid "Tamil (Typewriter-layout)"
+msgstr "¹Ì±¹ (ŸÀÚ±â)"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Not installed"
-msgstr "¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù."
+msgid "manual"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Standalone Tools"
-msgstr "°³º° µµ±¸"
+msgid "Printer manufacturer, model, driver"
+msgstr "ÇÁ¸°ÅÍ Á¦Á¶¾÷ü, ¸ðµ¨, µå¶óÀ̹ö"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Report"
-msgstr "º¸°í"
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"%s ÀåÄ¡¿¡ ¸Åü°¡ ¾ø°Å³ª, ¾²±â±ÝÁöµÇ¾î ÀÖ½À´Ï´Ù.\n"
+"¸Åü¸¦ ³Ö¾î ÁÖ¼¼¿ä."
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
+"µð·ºÅ丮 %s¿¡´Â ÀÌ¹Ì µ¥ÀÌÅÍ°¡ ÀÖ½À´Ï´Ù.\n"
+"(%s)"
-#: ../../standalone/drakbug:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Release: "
-msgstr "¸±¸®Áî:"
+msgid "Printer on NetWare server"
+msgstr "³×Æ®¿þ¾î ¼­¹ö»óÀÇ ÇÁ¸°ÅÍ"
-#: ../../standalone/drakbug:1
+#: ../../any.pm:1
#, c-format
-msgid "Kernel:"
-msgstr "Ä¿³Î:"
+msgid "Give the ram size in MB"
+msgstr "¸Þ¸ð¸® ¿ë·®¸¦ MB·Î ÀÔ·ÂÇϼ¼¿ä"
-#: ../../standalone/drakbug:1
+#: ../../any.pm:1
#, c-format
-msgid "Package: "
-msgstr "ÆÑÅ°Áö:"
+msgid "Real name"
+msgstr "½ÇÁ¦ À̸§"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Application:"
-msgstr "ÇÁ·Î±×·¥:"
+msgid "done"
+msgstr "¿Ï·á"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Configuration Wizards"
-msgstr "¼³Á¤ ¸¶¹ý»ç"
+msgid "Please uncheck or remove it on next time."
+msgstr "´ÙÀ½ ¹ø¿¡´Â ±×°ÍÀ» ¼±Åà ÇØÁ¦ ¶Ç´Â Á¦°ÅÇϼ¼¿ä."
-#: ../../standalone/drakbug:1
+#: ../../security/level.pm:1
#, c-format
-msgid "Userdrake"
-msgstr "»ç¿ëÀÚ µå·¹ÀÌÅ©"
+msgid "Higher"
+msgstr "´õ ³ôÀ½"
-#: ../../standalone/drakbug:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Windows Migration tool"
-msgstr "À©µµ¿ìÁî ÀÌÁÖ µµ±¸"
+msgid "Choose the partitions you want to format"
+msgstr "Æ÷¸ËÇÒ ÆÄƼ¼ÇÀ» ¼±ÅÃÇϼ¼¿ä"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+msgid ""
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "¼ÒÇÁÆ®¿þ¾î °ü¸®ÀÚ"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "%s¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Remote Control"
-msgstr "¿ø°Ý Á¦¾î"
+msgid "Japanese 106 keys"
+msgstr "ÀϺ» 106Å°"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Msec"
-msgstr "±âŸ"
+msgid "This will take a few minutes."
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../lang.pm:1
#, c-format
-msgid "Menudrake"
-msgstr "¸Þ´º µå·¹ÀÌÅ©"
+msgid "Burkina Faso"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Mandrake Online"
-msgstr "¸Çµå·¹ÀÌÅ© ¿Â¶óÀÎ"
+msgid "Use scanners on remote computers"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "HardDrake"
-msgstr "ÇÏµå µå·¹ÀÌÅ©"
+msgid "Delete selected rule"
+msgstr "¼±ÅÃµÈ ±ÔÄ¢ »èÁ¦"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "µ¿±âÈ­ µµ±¸"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Accessing printers on remote CUPS servers"
+msgstr "¿ø°Ý CUPS ¼­¹öÀÇ ÇÁ¸°ÅÍ"
-#: ../../standalone/drakbug:1
+#: ../../any.pm:1
#, c-format
-msgid "First Time Wizard"
-msgstr "ù ½ÇÇà ¸¶¹ý»ç"
+msgid "Insert a floppy in %s"
+msgstr "%s¿¡ ÇÁ·ÎÇǸ¦ ³ÖÀ¸¼¼¿ä."
-#: ../../standalone/drakbug:1
+#: ../../lang.pm:1
#, c-format
-msgid "Mandrake Control Center"
-msgstr "¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ"
+msgid "Maldives"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../any.pm:1
#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "¸Çµå·¹ÀÌÅ© ¹ö±× º¸°í µµ±¸"
+msgid "compact"
+msgstr "ÄÞÆÑÆ® ¸ðµå"
-#: ../../standalone/drakconnect:1
+#: ../../common.pm:1
#, c-format
-msgid "Parameters"
-msgstr "ÀÎÀÚ"
+msgid "1 minute"
+msgstr "1 ºÐ"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "%d ¹ö½º»ó¿¡¼­ ID %d\n"
+
+#: ../../printer/main.pm:1
#, c-format
-msgid "Internet Connection Configuration"
-msgstr "ÀÎÅÍ³Ý ¿¬°á ¼³Á¤"
+msgid ", multi-function device"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../lang.pm:1
#, c-format
-msgid "DHCP Client"
-msgstr "DHCP Ŭ¶óÀ̾ðÆ®"
+msgid "Laos"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"loopback·Î »ç¿ëÇϰųª Å©±â¸¦ Á¶Á¤ÇÒ FAT ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù. (¶Ç´Â µð½ºÅ© °ø°£"
+"ÀÌ ºÎÁ·ÇÕ´Ï´Ù.)"
+
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Ethernet Card"
-msgstr "ÀÌ´õ³Ý Ä«µå"
+msgid "Up"
+msgstr "À§·Î"
-#: ../../standalone/drakconnect:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Firewall"
+msgstr "¹æÈ­º®/¶ó¿ìÅÍ"
+
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Gateway"
-msgstr "°ÔÀÌÆ®¿þÀÌ"
+msgid "Area:"
+msgstr "Áö¿ª :"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Connection type: "
-msgstr "¿¬°á À¯Çü: "
+msgid "(E)IDE/ATA controllers"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Profile: "
-msgstr "ÇÁ·ÎÆÄÀÏ: "
+msgid "Printer Server"
+msgstr "ÇÁ¸°ÅÍ ¼­¹ö"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/net_monitor:1
#, c-format
-msgid "Internet connection configuration"
-msgstr "ÀÎÅÍ³Ý ¿¬°á ¼³Á¤"
+msgid "Disconnection from the Internet complete."
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Custom configuration"
+msgstr "°æ°í ¼³Á¤"
+
+#: ../../standalone/drakpxe:1
#, c-format
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"Please indicate where the installation image will be available.\n"
+"\n"
+"If you do not have an existing directory, please copy the CD or DVD "
+"contents.\n"
+"\n"
msgstr ""
-"ÀÎÅÍ³Ý ¿¬°áÀÌ ¾ø½À´Ï´Ù.\n"
-"¡¸¼³Á¤¡¹À» ´­·¯ ¸ÕÀú ¿¬°áÀ» ¼³Á¤Çϼ¼¿ä."
-#: ../../standalone/drakconnect:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+msgid "Saint Pierre and Miquelon"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "activate now"
-msgstr "Áö±Ý È°¼ºÈ­"
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "deactivate now"
-msgstr "Áö±Ý ºñÈ°¼ºÈ­"
+msgid "saving Bootsplash theme..."
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../lang.pm:1
#, c-format
-msgid "DHCP client"
-msgstr "DHCP Ŭ¶óÀ̾ðÆ®"
+msgid "Portugal"
+msgstr "Æ÷¸£Åõ°¥"
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Started on boot"
-msgstr "ºÎÆýà ½ÃÀÛµÊ"
+msgid "Do you have another one?"
+msgstr "¶Ç ´Ù¸¥°ÍÀÌ ¼³Ä¡µÇ¾î ÀÖ½À´Ï±î?"
-#: ../../standalone/drakconnect:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "Boot Protocol"
-msgstr "ºÎÆ® ÇÁ·ÎÅäÄÝ"
+msgid ", printing to %s"
+msgstr ", %s¿¡ Àμâ"
-#: ../../standalone/drakconnect:1
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Assign host name from DHCP address"
+msgstr "È£½ºÆ® À̸§ ¶Ç´Â IP¸¦ ÀÔ·ÂÇϼ¼¿ä."
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Adapter %s: %s"
-msgstr "¾î´ðÅÍ %s: %s"
+msgid "Toggle to normal mode"
+msgstr "ÀÏ¹Ý ¸ðµå·Î Àüȯ"
-#: ../../standalone/drakconnect:1
+#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
-msgid "LAN Configuration"
-msgstr "LAN ¼³Á¤"
+msgid "Generic"
+msgstr "ÀÏ¹Ý ¸¶¿ì½º"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "LAN configuration"
-msgstr "LAN ¼³Á¤"
+msgid "Cylinder %d to %d\n"
+msgstr "½Ç¸°´õ %d¿¡¼­ %d±îÁö\n"
#: ../../standalone/drakconnect:1
#, c-format
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"¼³Á¤µÈ ÀÎÅÍÆäÀ̽º°¡ ¾ø½À´Ï´Ù.\n"
-"¡¸¼³Á¤¡¹À» ´­·¯ ÀÎÅÍÆäÀ̽º¸¦ ¸ÕÀú ¼³Á¤Çϼ¼¿ä."
+msgid "New profile..."
+msgstr "»õ ÇÁ·ÎÆÄÀÏ..."
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Connect..."
-msgstr "¿¬°á..."
+msgid "Which disk do you want to move it to?"
+msgstr "¾î¶² µð½ºÅ©¸¦ À̵¿ÇÏ°í ½ÍÀ¸½Ê´Ï±î?"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Disconnect..."
-msgstr "¿¬°á ²÷±â..."
+msgid "Display logo on Console"
+msgstr "ÄܼÖÇÏ»ó¿¡ ·Î°í º¸À̱â"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Not connected"
-msgstr "¿¬°á ¾ÈµÊ"
+msgid "Windows Domain"
+msgstr "À©µµ¿ìÁî µµ¸ÞÀÎ"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Interface %s (on network %s)"
+msgstr "ÀÎÅÍÆäÀ̽º %s (%s ¸ðµâ »ç¿ë)"
+
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Connected"
-msgstr "¿¬°áµÊ"
+msgid "INFO"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+msgid "Wallis and Futuna"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Interface:"
-msgstr "ÀÎÅÍÆäÀ̽º:"
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Gateway:"
-msgstr "°ÔÀÌÆ®¿þÀÌ:"
+msgid "Is FPU present"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Apply"
-msgstr "Àû¿ë"
+msgid "There are no scanners found which are available on your system.\n"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../services.pm:1
#, c-format
-msgid "Click here to launch the wizard ->"
-msgstr "¸¶¹ý»ç¸¦ ½ÇÇàÇÏ·Á¸é ¿©±â¸¦ ´©¸£¼¼¿ä. ->"
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
+"Á˼ÛÇÕ´Ï´Ù.\n"
+"ÀÌ ¼­ºñ½º¿¡ ´ëÇÑ Ãß°¡Á¤º¸°¡ ¾ø½À´Ï´Ù."
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Wizard..."
-msgstr "¸¶¹ý»ç..."
+msgid "Build Single NIC -->"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
-msgid "Status:"
-msgstr "»óÅÂ:"
+msgid "Is this correct?"
+msgstr "ÀÌ°ÍÀÌ ¸Â½À´Ï±î?"
-#: ../../standalone/drakconnect:1
+#: ../../lang.pm:1
#, c-format
-msgid "Type:"
-msgstr "À¯Çü: "
+msgid "Marshall Islands"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Internet access"
-msgstr "ÀÎÅÍ³Ý ¾×¼¼½º"
+msgid "Windows (FAT32)"
+msgstr "À©µµ¿ìÁî(FAT32)"
-#: ../../standalone/drakconnect:1
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Root password"
+msgstr "¾ÏÈ£ ¾øÀ½"
+
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Hostname: "
-msgstr "È£½ºÆ®¸í:"
+msgid "Build All Kernels -->"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Áö¿ª ³×Æ®¿÷ ¼³Á¤..."
+msgid "if set to yes, report unowned files."
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "State"
-msgstr "»óÅÂ:"
+msgid ""
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"½º¿Ò ÆÄƼ¼ÇÀÌ ¾ø½À´Ï´Ù.\n"
+"\n"
+"°è¼Ó ÁøÇàÇմϱî?"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Server IP missing!"
+msgstr "NCP ¼­¹ö À̸§À» ãÀ» ¼ö ¾øÀ½!"
+
+#: ../../lang.pm:1
#, c-format
-msgid "Driver"
-msgstr "µå¶óÀ̹ö"
+msgid "Suriname"
+msgstr "¼ö¸®³²"
-#: ../../standalone/drakconnect:1
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Enable ACPI"
+msgstr "CD ºÎÆà Çã¿ë?"
+
+#: ../../help.pm:1
#, c-format
-msgid "Protocol"
-msgstr "ÇÁ·ÎÅäÄÝ"
+msgid "Graphical Environment"
+msgstr "±×·¡ÇÈ È¯°æ"
-#: ../../standalone/drakconnect:1
+#: ../../lang.pm:1
#, c-format
-msgid "Interface"
-msgstr "ÀÎÅÍÆäÀ̽º"
+msgid "Gibraltar"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Configure Internet Access..."
-msgstr "ÀÎÅÍ³Ý Á¢±Ù ¼³Á¤..."
+msgid "on Tape Device"
+msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Do nothing"
+msgstr "Á¦¿ÜÇÒ ¹®ÀÚ¿­"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Delete Client"
+msgstr "<-- Ŭ¶óÀ̾ðÆ® »èÁ¦"
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Wait please"
-msgstr "±â´Ù·Á ÁÖ¼¼¿ä."
+msgid "Filesystem type: "
+msgstr "ÆÄÀϽýºÅÛ À¯Çü: "
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"¸¸µé ÇÁ·ÎÆÄÀÏ À̸§ (»õ ÇÁ·ÎÆÄÀÏÀº ÇöÀç ÇÁ·ÎÆÄÀÏÀÇ »çº»À¸·Î¼­ ¸¸µé¾î Áý´Ï´Ù.):"
+msgid "Starting network..."
+msgstr "³×Æ®¿÷ ¿¬°á Áß..."
-#: ../../standalone/drakconnect:1
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Vietnam"
+msgstr "º£Æ®³²"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_Fields description"
+msgstr "¼³¸í"
+
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "New profile..."
-msgstr "»õ ÇÁ·ÎÆÄÀÏ..."
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "º¸¾È ÃÖÀûÈ­"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Profile to delete:"
-msgstr "Áö¿ï ÇÁ·ÎÆÄÀÏ"
+msgid "Help"
+msgstr "µµ¿ò¸»"
-#: ../../standalone/drakconnect:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Del profile..."
-msgstr "ÇÁ·ÎÆÄÀÏ Áö¿ì±â"
+msgid "Your personal phone number"
+msgstr "´ÔÀÇ °³ÀÎ ÀüÈ­ ¹øÈ£"
-#: ../../standalone/drakconnect:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "³×Æ®¿÷ ¼³Á¤ (%d ¾îµªÅÍ)"
+msgid "Which size do you want to keep for Windows on"
+msgstr "À©µµ¿ìÁî¿ëÀ¸·Î ¾î´À ¿ë·®À» À¯ÁöÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakedm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
+"½ÃÇè Àμâ ÆäÀÌÁö¸¦ ÇÁ¸°ÅÍ·Î º¸³Â½À´Ï´Ù.\n"
+"ÀμâµÇ±â±îÁö ¾à°£ÀÇ ½Ã°£ÀÌ °É¸± ¼ö ÀÖ½À´Ï´Ù.\n"
-#: ../../standalone/drakedm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Choosing a display manager"
+msgid "Username required"
+msgstr "»ç¿ëÀÚ¸íÀÌ ÇÊ¿äÇÕ´Ï´Ù."
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Depending on the default language you chose in Section , DrakX will\n"
+"automatically select a particular type of keyboard configuration. However,\n"
+"you may not have a keyboard that corresponds exactly to your language: for\n"
+"example, if you are an English speaking Swiss person, you may have a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation where your native language and keyboard do\n"
+"not match. In either case, this installation step will allow you to select\n"
+"an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding that will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
msgstr ""
+"ÀϹÝÀûÀ¸·Î, µå·¹ÀÌÅ©X´Â (¼±ÅÃÇÑ ¾ð¾î¿¡ ±â¹ÝÇÏ¿©) ¿Ã¹Ù¸¥ Å°º¸µå¸¦\n"
+"ÀÚµ¿À¸·Î ¼±ÅÃÇÕ´Ï´Ù. ±×·¯³ª »ç¿ëÇÏ´Â ¾ð¾î¿¡ Á¤È®È÷ ÀÏÄ¡ÇÏ´Â Å°º¸µå¸¦\n"
+"°¡Áö°í ÀÖÁö ¾ÊÀº °æ¿ìµµ ÀÖÀ» ¼ö ÀÖ½À´Ï´Ù: °¡·É, ¿µ¾î¸¦ »ç¿ëÇÏ´Â ½ºÀ§½ºÀÎÀº\n"
+"¿©ÀüÈ÷ ½ºÀ§½º Å°º¸µå¸¦ ¿øÇÒ ¼öµµ ÀÖ½À´Ï´Ù. ¶ÇÇÑ ¿µ¾î¸¦ »ç¿ëÇÏÁö¸¸, ij³ª´Ù Äù"
+"º¤ÁÖ¿¡\n"
+"»ì°í ÀÖ´Ù¸é ¶ÇÇÑ ÀÌ·¯ÇÑ °æ¿ì°¡ µÉ °ÍÀÔ´Ï´Ù. ÀÌ¿Í °°Àº °æ¿ì¶ó¸é, ÀÌ ´Ü°è¿¡¼­\n"
+"Àû´çÇÑ Å°º¸µå¸¦ ¸ñ·Ï¿¡¼­ ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù.\n"
+"\n"
+"Áö¿øµÇ´Â ¸ðµç Å°º¸µå ¸ñ·ÏÀ» º¸·Á¸é, ¡¸Ãß°¡Á¤º¸¡¹¸¦\n"
+"´©¸£¼¼¿ä."
-#: ../../standalone/drakfloppy:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) ÇÁ¸°ÅÍ ¿É¼Ç"
+
+#: ../../security/help.pm:1
#, c-format
msgid ""
-"Unable to properly close mkbootdisk: \n"
-" %s \n"
-" %s"
+"Arguments: (arg)\n"
+"\n"
+"Accept/Refuse bogus IPv4 error messages."
msgstr ""
-"mkbootdisk¸¦ ¿Ã¹Ù¸£°Ô Á¾·áÇÒ ¼ö ¾ø½À´Ï´Ù: \n"
-" %s \n"
-" %s"
#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Unable to fork: %s"
-msgstr "ºÐ±âÇÒ ¼ö ¾ø½À´Ï´Ù: %s"
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrdÀÇ ±âŸ ÀÎÀÚ"
-#: ../../standalone/drakfloppy:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"%s ÀåÄ¡¿¡ ¸Åü°¡ ¾ø°Å³ª, ¾²±â±ÝÁöµÇ¾î ÀÖ½À´Ï´Ù.\n"
-"¸Åü¸¦ ³Ö¾î ÁÖ¼¼¿ä."
-#: ../../standalone/drakfloppy:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "%s ÀåÄ¡¿¡ ¸Åü°¡ µé¾îÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+msgid "Protocol for the rest of the world"
+msgstr "´Ù¸¥ Áö¿ªÀ» À§ÇÑ ÇÁ·ÎÅäÄÝ"
-#: ../../standalone/drakfloppy:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Build the disk"
-msgstr "µð½ºÅ© »ý¼º"
+msgid "Print test pages"
+msgstr "½ÃÇè ÆäÀÌÁö Àμâ"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm:1
#, c-format
-msgid "Output"
-msgstr "Ãâ·Â"
+msgid "64 MB or more"
+msgstr "16 MB ÀÌ»ó"
-#: ../../standalone/drakfloppy:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"Please select the test pages you want to print.\n"
+"Note: the photo test page can take a rather long time to get printed and on "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
+msgstr ""
+"ÀμâÇÒ ½ÃÇè ÆäÀÌÁö¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
+"ÁÖÀÇ: »çÁø ½ÃÇè ÆäÀÌÁö¸¦ ÀμâÇϱâ À§Çؼ­´Â ´Ù¼Ò ½Ã°£ÀÌ °É¸± ¼ö ÀÖ½À´Ï´Ù.\n"
+"±×¸®°í Àú¿ë·®ÀÇ ¸Þ¸ð¸®¸¦ °¡Áø ·¹ÀÌÀú ÇÁ¸°ÅÍ¿¡¼­´Â\n"
+"ÆäÀÌÁö°¡ ³ª¿ÀÁö ¾ÊÀ» ¼öµµ ÀÖ½À´Ï´Ù.\n"
+"Ç¥ÁØ ½ÃÇè ÆäÀÌÁö´Â ´ë°³ Àß ÀμâµË´Ï´Ù."
+
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Please select the device where your %s is attached"
+msgstr "¹é¾÷ ÆÄÀϵéÀÌ ÀúÀåµÉ µð·ºÅ丮¸¦ ÀÔ·ÂÇϼ¼¿ä."
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Remove a module"
-msgstr "¸ðµâ Á¦°Å"
+msgid "Not formatted\n"
+msgstr "Æ÷¸Ë ¾ÈµÇ¾úÀ½\n"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/draksec:1
#, c-format
-msgid "Add a module"
-msgstr "¸ðµâ Ãß°¡"
+msgid "Periodic Checks"
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "PXE Server Configuration"
+msgstr "°í±Þ ¼³Á¤"
+
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "omit scsi modules"
-msgstr "SCSI ¸ðµâ »ý·«"
+msgid "Backup the system files before:"
+msgstr "½Ã½ºÅÛ ÆÄÀÏ ¸ÕÀú ¹é¾÷:"
-#: ../../standalone/drakfloppy:1
+#: ../../security/level.pm:1
#, c-format
-msgid "if needed"
-msgstr "ºÎÆýà ÀûÀç ¸ðµâÀÌ ÀÖÀ» °æ¿ì¿¡¸¸ À̹ÌÁö »ý¼º"
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
+msgstr ""
+"ÀÌ µî±ÞÀº Ŭ¶óÀ̾ðÆ®·Î¼­ ÀÎÅͳݿ¡ Á¢¼ÓÇϴµ¥ Àû´çÇÑ Ç¥ÁØ º¸¾Èµî±ÞÀÔ´Ï´Ù."
-#: ../../standalone/drakfloppy:1
+#: ../../any.pm:1
#, c-format
-msgid "omit raid modules"
-msgstr "RAID ¸ðµâ »ý·«"
+msgid "First floppy drive"
+msgstr "ù¹ø° Ç÷ÎÇÇ µå¶óÀ̺ê"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "force"
-msgstr "°­Á¦ ÃßÁø"
+msgid "/File/_Quit"
+msgstr "/ÆÄÀÏ(F)/Á¾·á(_Q)"
-#: ../../standalone/drakfloppy:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrdÀÇ ±âŸ ÀÎÀÚ"
+msgid "Dvorak"
+msgstr "µåº¸¶ô"
-#: ../../standalone/drakfloppy:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Expert Area"
-msgstr "Àü¹®°¡ ¿µ¿ª"
+msgid "Choose the new size"
+msgstr "»õ·Î¿î Å©±â¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "kernel version"
-msgstr "Ä¿³Î ¹öÀü"
+msgid "Media class"
+msgstr "¸Åü ¹üÁÖ"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "default"
-msgstr "±âº»°ª"
+msgid "The %s is not known by this version of Scannerdrake."
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../lang.pm:1
#, c-format
-msgid "General"
-msgstr "ÀÏ¹Ý ¿µ¿ª"
+msgid "Faroe Islands"
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "boot disk creation"
-msgstr "ºÎÆ® µð½ºÅ© »ý¼º"
+msgid "Restart XFS"
+msgstr "XFS Àç½ÃÀÛ"
-#: ../../standalone/drakfloppy:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "drakfloppy"
-msgstr "µå·¹ÀÌÅ©Ç÷ÎÇÇ"
+msgid "Add host/network"
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Size"
-msgstr "Å©±â"
+msgid ""
+"if set to yes, check for empty passwords, for no password in /etc/shadow and "
+"for users with the 0 id other than root."
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Module name"
+msgid "Please enter the directory to save to:"
+msgstr "ÀúÀåÇÒ µð·ºÅ丮¸¦ ¼±ÅÃÇϼ¼¿ä."
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model name"
msgstr "¸ðµâ À̸§"
-#: ../../standalone/drakfont:1
+#: ../../lang.pm:1
#, c-format
-msgid "Post Uninstall"
-msgstr "ÈÄ¹Ý ¼³Ä¡Á¦°Å"
+msgid "Albania"
+msgstr "¾Ë¹Ù´Ï¾Æ"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Remove fonts on your system"
-msgstr "½Ã½ºÅÛ ÆùÆ® Á¦°Å"
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../lang.pm:1
#, c-format
-msgid "Initial tests"
-msgstr "ÃʱâÈ­ Å×½ºÆ®"
+msgid "British Indian Ocean Territory"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "Post Install"
-msgstr "ÈÄ¹Ý ¼³Ä¡"
+msgid "Normal Mode"
+msgstr "ÀÏ¹Ý ¸ðµå"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Install & convert Fonts"
-msgstr "ÆùÆ® ¼³Ä¡ ¹× º¯È¯"
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Copy fonts on your system"
-msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
+msgid "Printer connection type"
+msgstr "ÀÎÅÍ³Ý ¿¬°á À¯Çü"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
-msgid "Remove List"
-msgstr "Á¦°Å ¸ñ·Ï"
+msgid "No network adapter on your system!"
+msgstr "³×Æ®¿÷ ¾î´ðÅ͸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
-#: ../../standalone/drakfont:1
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Network %s"
+msgstr "³×Æ®¿÷"
+
+#: ../../keyboard.pm:1
#, c-format
-msgid "Selected All"
-msgstr "¸ðµÎ ¼±ÅÃ"
+msgid "Malayalam"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Unselected All"
-msgstr "¸ðµç ¼±Åà ÇØÁ¦"
+msgid "Option %s out of range!"
+msgstr "%s ¿É¼Ç ¹üÀ§ ÃÊ°ú!"
-#: ../../standalone/drakfont:1
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "¿¬°á"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Restarting CUPS..."
+msgstr "XFS Àç½ÃÀÛ"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
+
+#: ../../install_steps.pm:1
#, c-format
-msgid "here if no."
-msgstr "±×·¸Áö ¾Ê´Ù¸é, ¿©±â¸¦ ´©¸£¼¼¿ä."
+msgid "Duplicate mount point %s"
+msgstr "¸¶¿îÆ® Æ÷ÀÎÆ® Áߺ¹ %s"
-#: ../../standalone/drakfont:1
+#: ../../security/help.pm:1
#, c-format
-msgid "click here if you are sure."
-msgstr "ÀÌ»óÀÌ ¾øÀ¸¸é ¿©±â¸¦ ´©¸£¼¼¿ä."
+msgid "if set to yes, run chkrootkit checks."
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../network/tools.pm:1
#, c-format
-msgid "Install List"
-msgstr "¼³Ä¡ ¸ñ·Ï"
+msgid "Connection Configuration"
+msgstr "¿¬°á ¼³Á¤"
-#: ../../standalone/drakfont:1
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "ÆùÆ® ÆÄÀÏÀ̳ª µð·ºÅ丮¸¦ ¼±Åà ÈÄ, 'Ãß°¡'¸¦ ´©¸£¼¼¿ä."
+msgid "Unknown|Generic"
+msgstr "¾Ë ¼ö ¾øÀ½|ÀϹÝ"
-#: ../../standalone/drakfont:1
+#: ../../help.pm:1
#, c-format
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Bugs may have been\n"
+"fixed, security issues resolved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Check \"%s\"\n"
+"if you have a working Internet connection, or \"%s\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
+"Choosing \"%s\" will display a list of places from which updates can be\n"
+"retrieved. You should choose one nearer to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../install_steps_interactive.pm:1 ../../Xconfig/main.pm:1
+#: ../../diskdrake/dav.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakperm:1 ../../standalone/draksplash:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Generic Printers"
-msgstr "ÀÏ¹Ý ÇÁ¸°ÅÍ"
+msgid "Quit"
+msgstr "Á¾·á"
-#: ../../standalone/drakfont:1
+#: ../../lang.pm:1
#, c-format
-msgid "Abiword"
-msgstr "¾Æºñ¿öµå"
+msgid "Myanmar"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "StarOffice"
-msgstr "½ºÅ¸ ¿ÀÇǽº"
+msgid "Auto allocate"
+msgstr "ÀÚµ¿ ÇÒ´ç"
-#: ../../standalone/drakfont:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Ghostscript"
-msgstr "°í½ºÆ®½ºÅ©¸³Æ®"
+msgid "Check bad blocks?"
+msgstr "¹èµå ºí·° °Ë»ç¸¦ Çմϱî?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "ÀÌ ÆùÆ®¸¦ Áö¿øÇÒ ÇÁ·Î±×·¥µéÀ» ¼±ÅÃÇϼ¼¿ä"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Other MultiMedia devices"
+msgstr "´Ù¸¥ ¸Åü"
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "No remote machines"
+msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
-" Copyright (C) 2001-2002 by MandrakeSoft \n"
-"\tDUPONT Sebastien (original version)\n"
-" CHAUMETTE Damien <dchaumette\\@mandrakesoft.com>\n"
-"\n"
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
"\n"
-" Thanks:\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "About"
-msgstr "ÁßÁö"
-
-#: ../../standalone/drakfont:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Font List"
-msgstr "ÆùÆ® ¸ñ·Ï"
+msgid "Authentication NIS"
+msgstr "ÀÎÁõ NIS"
-#: ../../standalone/drakfont:1
+#: ../../any.pm:1
#, c-format
-msgid "Advanced Options"
-msgstr "°í±Þ ¿É¼Ç"
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "¿É¼Ç: ¡¸¸í·ÉÇà ¿É¼ÇÁ¦ÇÑ¡¹Àº ¾ÏÈ£¾øÀÌ »ç¿ëµÉ¼ö ¾ø½À´Ï´Ù."
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Uninstall Fonts"
-msgstr "ÆùÆ® Á¦°Å"
+msgid "Internet Connection Sharing currently enabled"
+msgstr "ÇöÀç ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ °¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù."
-#: ../../standalone/drakfont:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "Get Windows Fonts"
-msgstr "À©µµ¿ìÁî ÆùÆ® °¡Á®¿À±â"
+msgid "Card IO_0"
+msgstr "Ä«µå IO_0"
-#: ../../standalone/drakfont:1
+#: ../../lang.pm:1
#, c-format
-msgid "Import Fonts"
-msgstr "ÆùÆ® ¼öÀÔ"
+msgid "United Arab Emirates"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "done"
-msgstr "¿Ï·á"
+msgid "Card IO_1"
+msgstr "Ä«µå IO_1"
-#: ../../standalone/drakfont:1
+#: ../../lang.pm:1
#, c-format
-msgid "xfs restart"
-msgstr "XFS Àç½ÃÀÛ"
+msgid "Thailand"
+msgstr "ű¹"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Suppress Fonts Files"
-msgstr "ÆùÆ® ÆÄÀϵé ÀºÆó"
+msgid "Routers:"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../lang.pm:1
#, c-format
-msgid "Restart XFS"
-msgstr "XFS Àç½ÃÀÛ"
+msgid "Kazakhstan"
+msgstr "Ä«ÀÚÈ彺ź"
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Display all available remote CUPS printers"
+msgstr "ÇÁ¸°ÅÍ ¸ñ·Ï °»½Å"
+
+#: ../../install_steps_newt.pm:1
#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Àӽà ÆÄÀÏ ÀºÆó"
+msgid "Mandrake Linux Installation %s"
+msgstr "¸®´ª½º-¸Çµå·¹ÀÌÅ© ¼³Ä¡ %s"
-#: ../../standalone/drakfont:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "type1inst building"
-msgstr ""
+msgid "Thai keyboard"
+msgstr "ű¹"
-#: ../../standalone/drakfont:1
+#: ../../network/modem.pm:1
#, c-format
-msgid "pfm fonts conversion"
-msgstr "pfm ÆùÆ® º¯È¯"
+msgid "Dialup options"
+msgstr "´ÙÀ̾ó¾÷ ¿É¼Ç"
-#: ../../standalone/drakfont:1
+#: ../../lang.pm:1
#, c-format
-msgid "ttf fonts conversion"
-msgstr "ttf ÆùÆ® º¯È¯"
+msgid "Bouvet Island"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Ghostscript referencing"
-msgstr "°í½ºÆ®½ºÅ©¸³Æ® ÂüÁ¶"
+msgid "If no port is given, 631 will be taken as default."
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Fonts conversion"
-msgstr "ÆùÆ® º¯È¯"
+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À» °¡Áö°í ÀÖÁö ¾Ê´Ù¸é, ¡¸Ãë¼Ò¡¹¸¦ ´­·¯ Ãß°¡ ¼³Ä¡¸¦ Ãë¼ÒÇϼ¼¿ä."
-#: ../../standalone/drakfont:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "True Type install done"
-msgstr "Æ®·çŸÀÔ ¼³Ä¡ ¿Ï·á"
+msgid "Polish"
+msgstr "Æú¶õµå"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "±â´Ù·Á ÁÖ¼¼¿ä. ttmkfdir ½ÇÇà Áß..."
+msgid "Mandrake Online"
+msgstr "¸Çµå·¹ÀÌÅ© ¿Â¶óÀÎ"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "True Type fonts installation"
-msgstr "Æ®·çŸÀÔ ÆùÆ® ¼³Ä¡"
+msgid "\t-Network by webdav.\n"
+msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
-msgid "Fonts copy"
-msgstr "ÆùÆ® º¹»ç"
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"¾î¶°ÇÑ ³×Æ®¿÷ ¾î´ðÅ͵µ ¹ß°ßµÇÁö ¾Ê½À´Ï´Ù. Çϵå¿þ¾î ¼³Á¤ µµ±¸¸¦ ½ÇÇàÇØ º¸¼¼¿ä."
-#: ../../standalone/drakfont:1
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Search for fonts in installed list"
-msgstr "¼³Ä¡µÈ ¸ñ·Ï¿¡¼­ ÆùÆ® °Ë»ö"
+msgid "Netmask"
+msgstr "³Ý¸¶½ºÅ©"
-#: ../../standalone/drakfont:1
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "could not find any font.\n"
-msgstr "ÆùÆ®¸¦ ãÀ» ¼ö ¾ø¾ú½À´Ï´Ù.\n"
+msgid "No hard drives found"
+msgstr "ÇÏµå µð½ºÅ©¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù."
-#: ../../standalone/drakfont:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Reselect correct fonts"
-msgstr "¿Ã¹Ù¸¥ ÆùÆ® Àç¼±ÅÃ"
+msgid "Logitech CC Series"
+msgstr "·ÎÁöÅØ CC ½Ã¸®Áî"
-#: ../../standalone/drakfont:1
+#: ../../mouse.pm:1
#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgid "2 buttons"
+msgstr "2 ¹öÆ°"
-#: ../../standalone/drakfont:1
+#: ../../network/isdn.pm:1
#, c-format
-msgid "no fonts found"
-msgstr "ÆùÆ®¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù."
+msgid "What kind is your ISDN connection?"
+msgstr "¾î¶² Á¾·ùÀÇ ISDN ¿¬°áÀ» »ç¿ëÇմϱî?"
-#: ../../standalone/drakfont:1
+#: ../../any.pm:1
#, c-format
-msgid "parse all fonts"
-msgstr "¸ðµç ÆùÆ® ºÐ¼®"
+msgid "Label"
+msgstr "Ç׸ñ¸í"
-#: ../../standalone/drakfont:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Unselect fonts installed"
-msgstr "¼³Ä¡µÈ ÆùÆ® ¼±Åà ÇØÁ¦"
+msgid "Save on floppy"
+msgstr "Ç÷ÎÇÇ¿¡ ÀúÀå"
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Search installed fonts"
-msgstr "¼³Ä¡µÈ ÆùÆ® °Ë»ö"
+msgid "Printer auto-detection"
+msgstr "ÇÁ¸°ÅÍ ÀÚµ¿ °Ë»ö"
-#: ../../standalone/drakgw:1
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "¾î´À °ÍÀÌ ´ÔÀÇ ISDN Ä«µåÀԴϱî?"
+
+#: ../../services.pm:1
#, c-format
msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
msgstr ""
-"ÀÎÅÍ³Ý ¿¬°á°øÀ¯ À¯Æ¿¸®Æ¼¿¡ Àß ¿À¼Ì½À´Ï´Ù!\n"
-"\n"
-"%s\n"
-"\n"
-"¸¶¹ý»ç¸¦ ½ÇÇàÇÏ·Á¸é ¡¸¼³Á¤¡¹À» ´©¸£¼¼¿ä."
+"NFS´Â TCP/IP ³×Æ®¿÷À¸·Î ÆÄÀÏÀ» °øÀ¯ÇÏ´Â ÀαâÀÖ´Â ÇÁ·ÎÅäÄÝÀÔ´Ï´Ù.\n"
+"ÀÌ ¼­ºñ½º´Â /etc/export ÆÄÀÏÀ» ¼³Á¤ÇÔÀ¸·Î½á NFS ¼­¹öÀÇ ±â´ÉÀ» °¡´ÉÇÏ°Ô\n"
+"ÇÕ´Ï´Ù."
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Internet Connection Sharing configuration"
-msgstr "ÀÎÅÍ³Ý ¿¬°á°øÀ¯ ¼³Á¤"
+msgid "Msec"
+msgstr "±âŸ"
-#: ../../standalone/drakgw:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "¾î¶°ÇÑ ÀÎÅÍ³Ý ¿¬°á °øÀ¯µµ ¼³Á¤µÈ ÀûÀÌ ¾ø½À´Ï´Ù."
+msgid ""
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "¼³Á¤ÀÌ ÀÌ¹Ì ¿Ï·áµÇ¾úÀ¸¸ç, ÇöÀç Çã¿ëµÈ »óÅÂÀÔ´Ï´Ù."
+msgid "Number of capture buffers:"
+msgstr "ĸÃÄ ¹öÆÛ ¼ö:"
-#: ../../standalone/drakgw:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "¼³Á¤Àº ÀÌ¹Ì ¿Ï·áµÇ¾úÁö¸¸, ÇöÀç ÇØÁ¦µÈ »óÅÂÀÔ´Ï´Ù."
+msgid "Your choice? (0/1, default `%s') "
+msgstr "´ÔÀÇ ¼±ÅÃÀº? (0/1 ±âº»°ª ¡¸%s¡¹) "
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
+"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"
+"it.\n"
+"\n"
+"Click on \"%s\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions that will be checked for\n"
+"bad blocks on the disk."
msgstr ""
-"¸ðµç °ÍÀÌ ¼³Á¤µÇ¾ú½À´Ï´Ù.\n"
-"ÀÌÁ¦ ÀÚµ¿ ³×Æ®¿÷ ¼³Á¤±â´É(DHCP)À¸·Î Áö¿ª ³×Æ®¿ö»óÀÇ ´Ù¸¥ ÄÄÇ»ÅÍ¿Í ÀÎÅÍ³Ý ¿¬"
-"°á °øÀ¯¸¦ ÇÒ ¼ö ÀÖ½À´Ï´Ù."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "ÆÑÅ°Áö ¼³Ä¡Áß ¹®Á¦ ¹ß»ý %s"
+"»õ·Î ¸¸µé¾îÁø ÆÄƼ¼ÇµéÀº Æ÷¸ËµÇ¾îÁ®¾ß ÇÕ´Ï´Ù.\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"
+"¡¸°í±Þ¡¹À» ´©¸£¼¼¿ä."
-#: ../../standalone/drakgw:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "½ºÅ©¸³Æ® ¼³Á¤ Áß, ¼ÒÇÁÆ®¿þ¾î ¼³Ä¡ Áß, ¼­¹ö ½ÃÀÛ Áß..."
+msgid "French"
+msgstr "ÇÁ¶û½º"
-#: ../../standalone/drakgw:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Configuring..."
-msgstr "¼³Á¤ Áß..."
+msgid "Czech (QWERTY)"
+msgstr "üÄÚ (QWERTY)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "ÇöÀç ¼³Á¤ %s¿¡¼­ ÀáÀçÀûÀÎ ·£ ÁÖ¼Ò Ãæµ¹ÀÌ ¹ß°ßµË´Ï´Ù!\n"
+#: ../../standalone/service_harddrake:1
+#, fuzzy, c-format
+msgid "Hardware probing in progress"
+msgstr "°Ë»ö ÁøÇà Áß"
#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Xinetd ¼­ºñ½º"
-#: ../../standalone/drakgw:1
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "ÀÎÅÍÆäÀ̽º¿Í DHCP ¼­¹ö Àç¼³Á¤"
+msgid "Summary"
+msgstr "¿ä¾à¼³¸í"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "The maximum lease (in seconds)"
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
+msgid "Next"
+msgstr "´ÙÀ½"
-#: ../../standalone/drakgw:1
+#: ../../bootloader.pm:1
#, c-format
-msgid "The DHCP end range"
-msgstr ""
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "¡¸%s¡¹ÆÄƼ¼Ç¿¡ ºÎÆ®·Î´õ¸¦ ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
-#: ../../standalone/drakgw:1
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "The DHCP start range"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The internal domain name"
-msgstr "»õ ÇÁ¸°ÅÍ À̸§"
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../standalone/drakgw:1
+#: ../../network/network.pm:1
#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "DHCP ¼­¹ö IP"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "DHCP ¼­¹ö IP"
+msgid "(bootp/dhcp/zeroconf)"
+msgstr "(BOOTP/DHCP)"
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
-"DHCP Server Configuration.\n"
"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you don't know the meaning of an option, simply leave it as it is.\n"
+"Welcome.\n"
"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Local Network adress"
-msgstr "C Ŭ·¡½º Áö¿ª ³×Æ®¿÷"
-
-#: ../../standalone/drakgw:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the Network that you use "
-"for your local network; I will not reconfigure it and I will not touch your "
-"DHCP server configuration.\n"
-"\n"
-"The default DNS entry is the Caching Nameserver configured on the firewall. "
-"You can replace that with your ISP DNS IP, for example.\n"
-"\t\t \n"
-"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
-"for you.\n"
-"\n"
+msgid "Puerto Rico"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../standalone/draksplash:1
#, c-format
msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"package 'ImageMagick' is required to be able to complete configuration.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Current interface configuration"
-msgstr "ÇöÀç ÀÎÅÍÆäÀ̽º ¼³Á¤ º¸±â"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "¸®Åõ¾Æ´Ï¾Æ (¼ýÀÚ¿­ QWERTY)"
-#: ../../standalone/drakgw:1
+#: ../../install_any.pm:1
#, c-format
-msgid "Show current interface configuration"
-msgstr "ÇöÀç ÀÎÅÍÆäÀ̽º ¼³Á¤ º¸±â"
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../lang.pm:1
#, c-format
-msgid "No (experts only)"
+msgid "Anguilla"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Automatic reconfiguration"
-msgstr "ÀÚµ¿ Àç¼³Á¤"
+msgid "NIS Domain"
+msgstr "NIS µµ¸ÞÀÎ"
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
"\n"
-"You can do it manually but you need to know what you're doing."
+"- User Files:\n"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../lang.pm:1
#, c-format
-msgid "Network interface already configured"
-msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º´Â ÀÌ¹Ì ¼³Á¤µÇ¾î ÀÖ½À´Ï´Ù."
+msgid "Antarctica"
+msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
+msgid "Mount options"
+msgstr "¸¶¿îÆ® ¿É¼Çµé:"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jamaica"
+msgstr "ÀÚ¸ÞÀÌÄ«"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "¾î´À ³×Æ®¿÷ ¾î´ðÅÍ°¡ Áö¿ª ³×Æ®¿÷À¸·Î ¿¬°áµÉ °ÍÀÎÁö ¼±ÅÃÇϼ¼¿ä."
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle or DVD players"
+msgstr ""
+"¿À¶óŬ °°Àº ÇÁ·Î±×·¥À» »ç¿ëÇϱâ À§ÇØ ³¯(RAW) ÀåÄ¡¸¦\n"
+"(Çϵåµð½ºÅ© ÆÄƼ¼Ç °°Àº) ºí·Ï ÀåÄ¡·Î ÇÒ´ç."
-#: ../../standalone/drakgw:1
+#: ../../security/help.pm:1
#, c-format
msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
+"Arguments: (arg, alert=1)\n"
"\n"
-"I am about to setup your Local Area Network with that adapter."
+"Enable/Disable name resolution spoofing protection. If\n"
+"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
-"½Ã½ºÅÛ¿¡ ¿ÀÁ÷ ÇϳªÀÇ ¼³Á¤µÈ ³×Æ®¿÷ ¾î´ðÅÍ°¡ ÀÖ½À´Ï´Ù:\n"
-"\n"
-"%s\n"
-"\n"
-"±× ¾î´ðÅÍ·Î Áö¿ª ³×Æ®¿÷À» ¼³Á¤ÇÒ °ÍÀÔ´Ï´Ù."
-#: ../../standalone/drakgw:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Network interface"
-msgstr "³×Æ®¿÷ ÀÎÅÍÆäÀ̽º"
+msgid "Please wait, preparing installation..."
+msgstr "¼³Ä¡ ÁغñÁßÀÔ´Ï´Ù. Àá½Ã ±â´Ù¸®¼¼¿ä."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"¾î¶°ÇÑ ³×Æ®¿÷ ¾î´ðÅ͵µ ¹ß°ßµÇÁö ¾Ê½À´Ï´Ù. Çϵå¿þ¾î ¼³Á¤ µµ±¸¸¦ ½ÇÇàÇØ º¸¼¼¿ä."
+msgid "Czech (QWERTZ)"
+msgstr "üÄÚ (QWERTZ)"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: ../../network/network.pm:1
#, c-format
-msgid "No network adapter on your system!"
-msgstr "³×Æ®¿÷ ¾î´ðÅ͸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
+msgid "Track network card id (useful for laptops)"
+msgstr "³×Æ®¿÷Ä«µå ID ÃßÀû (·¦Å¾¿¡ À¯¿ëÇÔ)"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Interface %s"
-msgstr "ÀÎÅÍÆäÀ̽º %s"
+msgid "The port number should be an integer!"
+msgstr "Æ÷Æ® ¹øÈ£´Â Á¤¼öÀ̾î¾ß ÇÕ´Ï´Ù!"
-#: ../../standalone/drakgw:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "ÀÎÅÍÆäÀ̽º %s (%s ¸ðµâ »ç¿ë)"
+msgid "You must choose an image file first!"
+msgstr "¸ÕÀú À̹ÌÁö ÆÄÀÏÀ» ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù!"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Xinetd ¼­ºñ½º"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore from Hard Disk."
+msgstr "ÇÏµå µð½ºÅ©¿¡¼­ º¹±¸"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
+msgid "Add to LVM"
+msgstr "LVM¿¡ Ãß°¡"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯¸¦ À§Çؼ­ ´ÔÀÇ ÄÄÇ»Å͸¦ ¼³Á¤ÇÏ·Á°í ÇÕ´Ï´Ù.\n"
-"ÀÌ·ÎÀÎÇØ, Áö¿ª ³×Æ®¿÷ÀÇ ´Ù¸¥ ÄÄÇ»Å͵鵵 ÀÌ ÄÄÇ»ÅÍÀÇ ÀÎÅÍ³Ý ¿¬°áÀ» »ç¿ëÇÒ ¼ö "
-"ÀÖ°Ô µË´Ï´Ù.\n"
-"\n"
-"ÁÖÀÇ: Áö¿ª ³×Æ®¿÷(·£)À» ¸ñÀûÀ¸·Î ¼³Ä¡µÈ ³×Æ®¿÷ ¾î´ðÅÍ°¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
+#: ../../network/network.pm:1
+#, c-format
+msgid "DNS server"
+msgstr "DNS ¼­¹ö"
-#: ../../standalone/drakgw:1
+#: ../../lang.pm:1
#, c-format
-msgid "Internet Connection Sharing"
-msgstr "ÀÎÅÍ³Ý ¿¬°á °øÀ¯"
+msgid "Trinidad and Tobago"
+msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ Çã¿ëµÇ¾ú½À´Ï´Ù."
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD¿Í LPRng´Â IPP ÇÁ¸°Å͸¦ Áö¿øÇÏÁö ¾Ê½À´Ï´Ù.\n"
-#: ../../standalone/drakgw:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "Enabling servers..."
-msgstr "¼­¹ö Çã¿ë Áß"
+msgid "simple"
+msgstr "´Ü¼øÈ­"
-#: ../../standalone/drakgw:1
+#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid "dismiss"
-msgstr "Ãë¼Ò"
+msgid "Clear all"
+msgstr "¸ðµÎ »èÁ¦"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "reconfigure"
-msgstr "Àç¼³Á¤"
+msgid "No test pages"
+msgstr "½ÃÇè ÆäÀÌÁö ¾øÀ½"
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "enable"
-msgstr "Çã¿ë"
+msgid "Adapter %s: %s"
+msgstr "¾î´ðÅÍ %s: %s"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+#: ../../lang.pm:1
+#, c-format
+msgid "Falkland Islands (Malvinas)"
msgstr ""
-"ÀÎÅÍ³Ý ¿¬°á°øÀ¯ ¼³Á¤Àº ÀÌ¹Ì ¿Ï·áµÇ¾ú½À´Ï´Ù.\n"
-"ÇöÀç ºÒ°¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù.\n"
-"\n"
-"¹«½¼ ÀÛ¾÷À» ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakgw:1
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "ÇöÀç ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ ºÒ°¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù."
+msgid "Unknown model"
+msgstr "¾Ë ¼ö¾ø´Â ¸ðµ¨"
-#: ../../standalone/drakgw:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ ±ÝÁöµÇ¾ú½À´Ï´Ù."
+msgid "if set to yes, check files/directories writable by everybody."
+msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "»ç¿ëÀÚ ÀÎÁõ"
+
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Disabling servers..."
-msgstr "¼­¹ö ÁßÁö Áß..."
+msgid "Backup Now"
+msgstr "Áö±Ý ¹é¾÷"
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
-msgid "disable"
-msgstr "ÇØÁ¦"
+msgid "/_File"
+msgstr "/ÆÄÀÏ(_F)"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-"ÀÎÅÍ³Ý ¿¬°á°øÀ¯ ¼³Á¤Àº ÀÌ¹Ì ¿Ï·áµÇ¾ú½À´Ï´Ù.\n"
-"ÇöÀç °¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù.\n"
-"\n"
-"¹«½¼ ÀÛ¾÷À» ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/drakgw:1
+#: ../../services.pm:1
#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "ÇöÀç ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ °¡´ÉÇÑ »óÅÂÀÔ´Ï´Ù."
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"2.2 Ä¿³Î ½Ã¸®Áî¿ë ÆÐŶ ÇÊÅ͸¦ ½ÇÇà, ³×Æ®¿÷ °ø°ÝÀ¸·ÎºÎÅÍ\n"
+"ÄÄÇ»Å͸¦ º¸È£ÇÏ´Â ¹æÈ­º®À» ±¸ÃàÇÕ´Ï´Ù."
-#: ../../standalone/drakgw:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Á˼ÛÇÕ´Ï´Ù. 2.4 Ä¿³Î¸¸ Áö¿øµË´Ï´Ù."
+msgid "Tamil (ISCII-layout)"
+msgstr ""
-#: ../../standalone/drakhelp:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+msgid "Mayotte"
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Path"
-msgstr "°æ·Î"
+msgid "Creating auto install floppy..."
+msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ µð½ºÅ© »ý¼º Áß"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "group :"
-msgstr "±×·ì:"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for scanners ..."
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "user :"
-msgstr "»ç¿ëÀÚ:"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Partitioning"
+msgstr "Àμâ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "°æ·Î ¼±ÅÃ"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Russia"
+msgstr "·¯½Ã¾Æ"
-#: ../../standalone/drakperm:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgid "ethernet card(s) detected"
+msgstr "ÀÌ´õ³Ý Ä«µå ¹ß°ß"
-#: ../../standalone/drakperm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Use group id for execution"
-msgstr "½ÇÇà½Ã ±×·ì ¾ÆÀ̵ð »ç¿ë"
+msgid "Syslog"
+msgstr "½Ã½ºÅÛ ·Î±×"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Use owner id for execution"
-msgstr "½ÇÇà½Ã ¼ÒÀ¯ÀÚ ¾ÆÀ̵ð »ç¿ë"
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "Set-GID"
-msgstr "GID ¼³Á¤"
+msgid "Not enough free space for auto-allocating"
+msgstr "ÀÚµ¿ÇÒ´çÇϱ⿡´Â °ø°£ÀÌ ÇÕ´Ï´Ù."
-#: ../../standalone/drakperm:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Set-UID"
-msgstr "UID ¼³Á¤"
+msgid "Set root password"
+msgstr "root ¾ÏÈ£ ¼³Á¤"
-#: ../../standalone/drakperm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "sticky-bit"
-msgstr "½ºÆ¼Å° ºñÆ®"
+msgid ""
+"There's no free driver for your sound card (%s), but there's a proprietary "
+"driver at \"%s\"."
+msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Property"
-msgstr "¼Ó¼º"
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "%s ÆÄƼ¼ÇÀÇ Å©±â¸¦ º¯°æÇϸé, ¸ðµç µ¥ÀÌŸ¸¦ ÀҰԵ˴ϴÙ."
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Permissions"
-msgstr "Çã°¡±Ç"
+msgid "Internet connection configuration"
+msgstr "ÀÎÅÍ³Ý ¿¬°á ¼³Á¤"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakxtv:1
#, c-format
-msgid "Current user"
-msgstr "ÇöÀç »ç¿ëÀÚ"
+msgid "Scanning for TV channels"
+msgstr "TV ä³Î °Ë»ö Áß..."
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "browse"
-msgstr "ã¾Æº¸±â"
+msgid "Kernel:"
+msgstr "Ä¿³Î:"
-#: ../../standalone/drakperm:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Edit current rule"
-msgstr "ÇöÀç ±ÔÄ¢ ÆíÁý"
+msgid "/_About..."
+msgstr "/Á¤º¸(_A)..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "edit"
-msgstr "ÆíÁý"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bengali"
+msgstr "Çã¿ë"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Delete selected rule"
-msgstr "¼±ÅÃµÈ ±ÔÄ¢ »èÁ¦"
+msgid "Preference: "
+msgstr "»ç¿ëÀÚ Á¤ÀÇ"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "delete"
-msgstr "»èÁ¦"
+msgid "Wizard..."
+msgstr "¸¶¹ý»ç..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "»õ ±ÔÄ¢ ³¡¿¡ Ãß°¡"
+# #msgid "Services: %d activated for %d registered"
+# #msgstr "¼­ºñ½º: µî·ÏµÈ %2$d Áß %1$d È°¼ºÈ­µÊ"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, fuzzy, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "¼­ºñ½º: µî·ÏµÈ %2$d Áß %1$d È°¼ºÈ­µÊ"
-#: ../../standalone/drakperm:1
+#: ../../any.pm:1
#, c-format
-msgid "add a rule"
-msgstr "±ÔÄ¢ Ãß°¡"
+msgid "Create a bootdisk"
+msgstr "ºÎÆ®µð½ºÅ© Á¦ÀÛ"
-#: ../../standalone/drakperm:1
+#: ../../lang.pm:1
#, c-format
-msgid "Move selected rule down one level"
-msgstr "¼±ÅÃµÈ ±ÔÄ¢ ÇÑ ´Ü°è ¾Æ·¡·Î"
+msgid "Solomon Islands"
+msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../modules/interactive.pm:1
#, c-format
-msgid "Down"
-msgstr "¾Æ·¡·Î"
+msgid "(module %s)"
+msgstr "(%s ¸ðµâ »ç¿ë)"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Move selected rule up one level"
-msgstr "¼±ÅÃµÈ ±ÔÄ¢ ÇÑ ´Ü°è À§·Î"
+msgid "Workgroup"
+msgstr "ÀÛ¾÷ ±×·ì"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Up"
-msgstr "À§·Î"
+msgid "Printer host name or IP"
+msgstr "ÇÁ¸°ÅÍ È£½ºÆ®¸í ¶Ç´Â IP"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "select perm file to see/edit"
+msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"Drakperm is used to see files to use in order to fix permissions, owners, "
-"and groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "ÇÁ¸°ÅÍ À̸§¿¡´Â ¹®ÀÚ, ¼ýÀÚ ±×¸®°í ¹ØÁÙ(Underscore)¸¸ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "permissions"
-msgstr "Çã°¡±Ç"
+msgid "Show current interface configuration"
+msgstr "ÇöÀç ÀÎÅÍÆäÀ̽º ¼³Á¤ º¸±â"
-#: ../../standalone/drakperm:1
+#: ../../help.pm:1
#, c-format
-msgid "group"
-msgstr "±×·ì"
+msgid "Development"
+msgstr "°³¹ß"
-#: ../../standalone/drakperm:1
+#: ../../any.pm:1 ../../help.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/removable.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "user"
-msgstr "»ç¿ëÀÚ"
+msgid "Done"
+msgstr "¿Ï·á"
-#: ../../standalone/drakperm:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "path"
-msgstr "°æ·Î"
+msgid "Web Server"
+msgstr "À¥ ¼­¹ö"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "ÀÚµ¿ ¼³Ä¡ Ç÷ÎÇÇ »ý¼º"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tDo not include System Files\n"
+msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Please indicate where the auto_install.cfg file is located.\n"
-"\n"
-"Leave it blank if you do not want to set up automatic installation mode.\n"
-"\n"
+msgid "Chile"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "No image found"
-msgstr "ÇÁ¸°Å͸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation image directory"
-msgstr "Xpmac (¼³Ä¡ Ç¥½Ã µå¶óÀ̹ö)"
-
-#: ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Please indicate where the installation image will be available.\n"
-"\n"
-"If you do not have an existing directory, please copy the CD or DVD "
-"contents.\n"
+"Your multi-function device was configured automatically to be able to scan. "
+"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
+"scanner when you have more than one) from the command line or with the "
+"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
+"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../any.pm:1
#, c-format
-msgid "The DHCP end ip"
-msgstr ""
+msgid "(already added %s)"
+msgstr "(ÀÌ¹Ì %s´Â(Àº) Ãß°¡µÇ¾ú½À´Ï´Ù.)"
-#: ../../standalone/drakpxe:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "The DHCP start ip"
+msgid ", using command %s"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"The DHCP server will allow other computer to boot using PXE in the given "
-"range of address.\n"
-"\n"
-"The network address is %s using a netmask of %s.\n"
-"\n"
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Interface %s (on network %s)"
-msgstr "ÀÎÅÍÆäÀ̽º %s (%s ¸ðµâ »ç¿ë)"
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "¾î¶² ¾î´ðÅÍ·Î ÀÎÅͳݿ¡ ¿¬°áÇÒ °ÍÀÎÁö ¼±ÅÃÇϼ¼¿ä."
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid ""
-"You are about to configure your computer to install a PXE server as a DHCP "
-"server\n"
-"and a TFTP server to build an installation server.\n"
-"With that feature, other computers on your local network will be installable "
-"using this computer as source.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Flags"
msgstr ""
-"ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯¸¦ À§Çؼ­ ´ÔÀÇ ÄÄÇ»Å͸¦ ¼³Á¤ÇÏ·Á°í ÇÕ´Ï´Ù.\n"
-"ÀÌ·ÎÀÎÇØ, Áö¿ª ³×Æ®¿÷ÀÇ ´Ù¸¥ ÄÄÇ»Å͵鵵 ÀÌ ÄÄÇ»ÅÍÀÇ ÀÎÅÍ³Ý ¿¬°áÀ» »ç¿ëÇÒ ¼ö "
-"ÀÖ°Ô µË´Ï´Ù.\n"
-"\n"
-"ÁÖÀÇ: Áö¿ª ³×Æ®¿÷(·£)À» ¸ñÀûÀ¸·Î ¼³Ä¡µÈ ³×Æ®¿÷ ¾î´ðÅÍ°¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù."
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation Server Configuration"
-msgstr "°í±Þ ¼³Á¤"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add/Del Users"
+msgstr "»ç¿ëÀÚ Ãß°¡/Á¦°Å"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "PXE Server Configuration"
-msgstr "°í±Þ ¼³Á¤"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Host/network IP address missing."
+msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security options..."
-msgstr "¼³Ä¡ ÁغñÁßÀÔ´Ï´Ù. Àá½Ã ±â´Ù¸®¼¼¿ä."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "weekly"
+msgstr "¸ÅÁÖ"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security level..."
-msgstr "Èñ¸ÁÇÏ´Â º¸¾È ´Ü°è¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Settings"
+msgstr "¼³Á¤°ª"
-#: ../../standalone/draksec:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Periodic Checks"
+msgid "The entered host/network IP is not correct.\n"
msgstr ""
-#: ../../standalone/draksec:1
+#: ../../any.pm:1
#, fuzzy, c-format
-msgid "System Options"
-msgstr "Ãß°¡ ¿É¼Ç"
+msgid "Here is the full list of available countries"
+msgstr "Áö¿øµÇ´Â Å°º¸µå ¸ñ·ÏÀÌ ¿©±â¿¡ ÀÖ½À´Ï´Ù."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Network Options"
-msgstr "Ãß°¡ ¿É¼Ç"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Alternative test page (A4)"
+msgstr "½ÃÇè ÆäÀÌÁö È°¼ºÈ­ (A4)"
-#: ../../standalone/draksec:1
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need an explanation, look at the help tooltip.\n"
+"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¸¦ ¼±ÅÃÇØÁ¦ÇÑ ÈÄ¿¡ ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "º¸¾È °ü¸®ÀÚ (·Î±×ÀÎ ¶Ç´Â À̸ÞÀÏ)"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Wait please"
+msgstr "±â´Ù·Á ÁÖ¼¼¿ä."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Alerts:"
-msgstr "º¸¾È ¼öÁØ"
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "PAP"
+msgstr "PAP"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Level:"
-msgstr "º¸¾È ¼öÁØ"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup user files"
+msgstr "»ç¿ëÀÚ ÆÄÀÏ ¹é¾÷"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr " (±âº»°ª)"
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "New"
+msgstr "»õ·Î ¸¸µé±â"
-#: ../../standalone/draksec:1
+#: ../../help.pm:1
#, c-format
msgid ""
-"Standard: This is the standard security recommended for a computer that will "
-"be used to connect\n"
-" to the Internet as a client.\n"
-"\n"
-"High: There are already some restrictions, and more automatic checks "
-"are run every night.\n"
+"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 user 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 the password that you chose too easy. As you\n"
+"can see, you are not forced to enter a password, but we strongly advise you\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
"\n"
-"Higher: The security is now high enough to use the system as a server "
-"which can accept\n"
-" connections from many clients. If your machine is only a "
-"client on the Internet, you\n"
-" should choose a lower level.\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 far\n"
+"too easy to compromise a system.\n"
"\n"
-"Paranoid: This is similar to the previous level, but the system is entirely "
-"closed and security\n"
-" features are at their maximum\n"
+"One caveat -- do not make the password too long or complicated because you\n"
+"must be able to remember it!\n"
"\n"
-"Security Administrator:\n"
-" If the 'Security Alerts' option is set, security alerts will "
-"be sent to this user (username or\n"
-" email)"
-msgstr ""
-
-#: ../../standalone/draksound:1
-#, c-format
-msgid ""
+"The password will not be displayed on screen as you type it in. To reduce\n"
+"the chance of a blind typing error you will need to enter the password\n"
+"twice. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will be the one you will have use the first time you\n"
+"connect.\n"
"\n"
+"If you wish access to this computer to be controlled by an authentication\n"
+"server, click the \"%s\" button.\n"
"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+"If you happen to have problems with remembering passwords, if your computer\n"
+"will never be connected to the internet or that you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
msgstr ""
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
+"At this point, DrakX will allow you to choose the security level desired\n"
+"for the machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine will contain crucial data, or if it will be a machine\n"
+"directly exposed to the Internet. The trade-off of a higher security level\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"If you do not know what to choose, stay with the default option."
msgstr ""
+"ÀÌÁ¦ ÄÄÇ»ÅÍÀÇ º¸¾È ¼öÁØÀ» ¼±ÅÃÇÒ ´Ü°èÀÔ´Ï´Ù.\n"
+"ÀÚÀ¯·Î¿î »ç¿ëÀ» À§Çؼ­´Â ÄÄÇ»ÅÍ°¡ º¸´Ù ´õ ¸¹ÀÌ °³¹æµÇ¾îÁ®¾ß Çϸç,\n"
+"ÀúÀåµÈ µ¥ÀÌÅÍÀÇ Á߿伺ÀÌ Å©¸é Ŭ¼ö·Ï, ´õ ³ôÀº º¸¾È ¼öÁØÀÌ À¯ÁöµÇ¾î¾ß ÇÕ´Ï"
+"´Ù.\n"
+"±×·¯³ª ÀϹÝÀûÀ¸·Î º¸´Ù ³ôÀº º¸¾È ¼öÁØÀº º¸´Ù ¸¹Àº »ç¿ë»óÀÇ ºÒÆíÇÔÀ» °¨¼öÇؾß"
+"¸¸\n"
+"ÀÌ·ç¾îÁú ¼ö ÀÖÀ½À» À¯³äÇϼ¼¿ä. °¢ º¸¾È ¼öÁØÀÌ ÀǹÌÇÏ´Â ¹Ù¿¡ ´ëÇÑ ÀÚ¼¼ÇÑ Á¤º¸"
+"¸¦\n"
+"¾Ë°í ½Í´Ù¸é ¡¸»ç¿ëÀÚ Áöħ¼­¡¹ÀÇ MSEC ÀåÀ» ÂüÁ¶Çϼ¼¿ä.\n"
+"\n"
+"¾î´À °ÍÀ» ¼±ÅÃÇØ¾ß ÇÒÁö Àß ¸ð¸£°Ú´Ù¸é, ±âº»°ªÀ» À¯ÁöÇϼ¼¿ä."
-#: ../../standalone/draksound:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "No Sound Card detected!"
-msgstr "»ç¿îµåÄ«µå¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
+msgid "Load from floppy"
+msgstr "Ç÷ÎÇÇ¿¡¼­ Àбâ"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The following printer was auto-detected. "
+msgstr "´ÙÀ½ ÆÑÅ°ÁöµéÀÌ Á¦°ÅµÉ °ÍÀÔ´Ï´Ù."
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Generating preview ..."
-msgstr "¹Ì¸®º¸±â »ý¼º Áß ..."
+msgid "Boot Floppy"
+msgstr "ºÎÆ® Ç÷ÎÇÇ"
-#: ../../standalone/draksplash:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "You must choose an image file first!"
-msgstr "¸ÕÀú À̹ÌÁö ÆÄÀÏÀ» ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù!"
+msgid "Norwegian"
+msgstr "³ë¸£¿þÀÌ"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "ÁøÇื´ë »ö»ó ¼±ÅÃ"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for new scanners ..."
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-#: ../../standalone/draksplash:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr ""
+msgid "Apache World Wide Web Server"
+msgstr "¾ÆÆÄÄ¡ ¿ùµå¿ÍÀ̵åÀ¥ ¼­¹ö"
-#: ../../standalone/draksplash:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "saving Bootsplash theme..."
+msgid "stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "choose image file"
-msgstr "À̹ÌÁö ÆÄÀÏ ¼±ÅÃ"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image"
-msgstr "À̹ÌÁö ÆÄÀÏ ¼±ÅÃ"
+msgid "select path to restore (instead of /)"
+msgstr "([/] ´ë½Å¿¡) º¹±¸ °æ·Î ¼±ÅÃ"
#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "ºÎÆ®½ºÇ÷¡½¬ ±×¸² ¼³Á¤"
-#: ../../standalone/draksplash:1
+#: ../../lang.pm:1
#, c-format
-msgid "Make kernel message quiet by default"
-msgstr ""
+msgid "China"
+msgstr "Áß±¹"
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "ÇÁ¸°ÅÍ°¡ ¿¬°áµÈ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä."
+
+#: ../../lang.pm:1
#, c-format
-msgid "Display logo on Console"
-msgstr "ÄܼÖÇÏ»ó¿¡ ·Î°í º¸À̱â"
+msgid "Georgia"
+msgstr "Á¶Áö¾Æ"
-#: ../../standalone/draksplash:1
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Reading data of installed printers..."
+msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Choose color"
-msgstr "»ö»ó ¼±ÅÃ"
+msgid " Erase Now "
+msgstr " Áö±Ý »èÁ¦"
-#: ../../standalone/draksplash:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "Save theme"
-msgstr "Å׸¶ ÀúÀå"
+msgid "server"
+msgstr "¼­¹ö"
-#: ../../standalone/draksplash:1
+#: ../../install_any.pm:1
#, c-format
-msgid "Preview"
-msgstr "¹Ì¸®º¸±â"
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Ç÷ÎÇÇ µð½ºÅ©¸¦ %s µå¶óÀ̺꿡 ³ÖÀ¸¼¼¿ä"
-#: ../../standalone/draksplash:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "the color of the progress bar"
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, c-format
-msgid "the height of the progress bar"
-msgstr ""
+msgid "Please Wait... Applying the configuration"
+msgstr "±â´Ù·Á ÁÖ¼¼¿ä... ¼³Á¤À» Àû¿ëÇÏ°í ÀÖ½À´Ï´Ù."
-#: ../../standalone/draksplash:1
+# 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:1
#, c-format
-msgid "the width of the progress bar"
-msgstr ""
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "¹Ý°©½À´Ï´Ù. ¿î¿µÃ¼Á¦ ¼±Åñâ, ±×·´ÀÔ´Ï´Ù."
-#: ../../standalone/draksplash:1
+#: ../../bootloader.pm:1
#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/draksplash:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+msgid "SCSI controllers"
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../printer/main.pm:1
#, c-format
-msgid "text box height"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakedm:1
#, c-format
-msgid "text width"
+msgid "Choosing a display manager"
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Zeroconf Host name"
+msgstr "È£½ºÆ®¸í:"
+
+#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP ÁÖ¼Ò´Â 1.2.3.4°ú °°Àº Çü½ÄÀ̾î¾ß ÇÕ´Ï´Ù."
-#: ../../standalone/draksplash:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
-msgstr ""
+msgid "Ecuador"
+msgstr "¿¡Äâµµ¸£"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Browse"
-msgstr "ã¾Æº¸±â"
+msgid "Add an item"
+msgstr "Ç׸ñ Ãß°¡"
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Theme name"
-msgstr "Å׸¶ À̸§"
+msgid "The printers on this machine are available to other computers"
+msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "final resolution"
-msgstr "ÃÖÁ¾ ÇØ»óµµ"
+msgid "I can't find needed image file `%s'."
+msgstr "ÇÊ¿äÇÑ À̹ÌÁö ÆÄÀÏ %s¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù."
-#: ../../standalone/draksplash:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "first step creation"
-msgstr "ù ´Ü°è »ý¼º"
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../any.pm:1
#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+msgid "Shell"
+msgstr "¸í·É Çؼ®±â"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sao Tome and Principe"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "No TV Card detected!"
-msgstr "TV Ä«µå¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "ÀÌÁ¦ [xawtv]¸¦ (XÀ©µµ¿ì ÇÏ¿¡¼­) »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù!\n"
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjani (¶óƾ)"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Package not installed"
+msgstr "¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù."
+
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
-msgid "Have a nice day!"
-msgstr "Áñ°Å¿î ÇϷ縦!"
+msgid "Become a MandrakeExpert"
+msgstr "¸Çµå·¹ÀÌÅ© Àü¹®°¡°¡ µÇ¼¼¿ä."
-#: ../../standalone/drakxtv:1
+#: ../../lang.pm:1
#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV°¡ ¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù!"
+msgid "American Samoa"
+msgstr "¹Ì±¹·É »ç¸ð¾Æ"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "TV ä³ÎÀ» ã´Â °úÁ¤¿¡¼­ ¿À·ù°¡ ÀÖ¾ú½À´Ï´Ù."
+msgid "Protocol"
+msgstr "ÇÁ·ÎÅäÄÝ"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Scanning for TV channels"
-msgstr "TV ä³Î °Ë»ö Áß..."
+msgid "Copy fonts on your system"
+msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "TV ä³Î °Ë»ö ÁøÇà Áß..."
+msgid "Harddrake help"
+msgstr "ÇÏµå µå·¹ÀÌÅ© µµ¿ò¸»"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Area:"
-msgstr "Áö¿ª :"
+msgid "Bogomips"
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "TV norm:"
-msgstr "TV ³ð :"
+msgid "Mandrake Terminal Server Configuration"
+msgstr "¸Çµå·¹ÀÌÅ© Å͹̳Π¼­¹ö ¼³Á¤"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Please,\n"
-"type in your tv norm and country"
+"\n"
+" DrakBackup Report Details\n"
+"\n"
+"\n"
msgstr ""
-"TV ³ë¿È°ú ±¹°¡¸¦\n"
-"ÀÔ·ÂÇϼ¼¿ä."
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Australian Optus cable TV"
+msgid "Restore all backups"
+msgstr "¸ðµç ¹é¾÷ º¹±¸"
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check open ports."
msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Newzealand"
-msgstr "´ºÁú·£µå"
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "France [SECAM]"
-msgstr "ÇÁ¶û½º [SECAM]"
+msgid "You can't select/unselect this package"
+msgstr "ÀÌ ÆÑÅ°Áö¸¦ ¼±ÅÃ/¹ö¸² ÇÒ¼ö ¾ø½À´Ï´Ù."
-#: ../../standalone/drakxtv:1
+#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../network/modem.pm:1 ../../standalone/drakfloppy:1
#, c-format
-msgid "East Europe"
-msgstr "µ¿À¯·´"
+msgid "Warning"
+msgstr "°æ°í"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "West Europe"
-msgstr "¼­À¯·´"
+msgid ""
+"\n"
+"- Other Files:\n"
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "China (broadcast)"
-msgstr "Áß±¹ (°øÁßÆÄ)"
+msgid "Remote host name"
+msgstr "¿ø°Ý È£½ºÆ®¸í"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Japan (cable)"
-msgstr "ÀϺ» (ÄÉÀ̺í)"
+msgid "deactivate now"
+msgstr "Áö±Ý ºñÈ°¼ºÈ­"
-#: ../../standalone/drakxtv:1
+#: ../../any.pm:1
#, c-format
-msgid "Japan (broadcast)"
-msgstr "ÀϺ» (°øÁßÆÄ)"
+msgid "access to X programs"
+msgstr "X ÇÁ·Î±×·¥ ¾×¼¼½º"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "Computing the size of the Windows partition"
+msgstr "À©µµ¿ìÁî ÆÄƼ¼ÇÀÇ ºó °ø°£ »ç¿ëÇϼ¼¿ä."
+
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#: ../../standalone/drakxtv:1
#, c-format
-msgid "Canada (cable)"
-msgstr "ij³ª´Ù (ÄÉÀ̺í)"
+msgid "Italy"
+msgstr "ÀÌÅ»¸®¾Æ"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "USA (cable-hrc)"
-msgstr "¹Ì±¹ (ÄÉÀ̺í-HRC)"
+msgid "Name of printer"
+msgstr "ÇÁ¸°ÅÍ À̸§"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "USA (cable)"
-msgstr "¹Ì±¹ (ÄÉÀ̺í)"
+msgid "disable"
+msgstr "ÇØÁ¦"
-#: ../../standalone/drakxtv:1
+#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
-msgid "USA (broadcast)"
-msgstr "¹Ì±¹ (°øÁßÆÄ)"
+msgid "error unmounting %s: %s"
+msgstr "%s¸¦ ¾ð¸¶¿îÆ®Áß ¿À·ù¹ß»ý: %s"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgid "Do it!"
+msgstr "½ÇÇà"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cayman Islands"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "primary"
-msgstr "ÁÖ"
+msgid "%s not responding"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "secondary"
-msgstr "µÎ¹ø°"
+msgid "Select model manually"
+msgstr "Á÷Á¢ ¸ðµ¨ ¼±ÅÃ"
-#: ../../standalone/harddrake2:1
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Format"
+msgstr "Æ÷¸Ë"
+
+#: ../../network/adsl.pm:1
#, c-format
msgid ""
-"Click on a device in the left tree in order to display its information here."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
+"ADSL ¿¬°áÀº ´ë°³ PPPOE¸¦ »ç¿ëÇÕ´Ï´Ù. \n"
+"ÇÏÁö¸¸, ¾î¶² °æ¿ì¿¡´Â PPTP³ª, ±ØÈ÷ µå¹°°Ô´Â DHCPµµ »ç¿ëµË´Ï´Ù.\n"
+"Àß ¸ð¸£°Ú´Ù¸é, ¡¸PPPOE »ç¿ë¡¹À» ¼±ÅÃÇϼ¼¿ä."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Unknown"
-msgstr "¾Ë ¼ö¾ø´Â ¸ðµ¨"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Various"
+msgstr "´Ù¾çÇÑ"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "unknown"
-msgstr "¾Ë ¼ö¾ø´Â ¸ðµ¨"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Zip"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Running \"%s\" ..."
-msgstr "¡¸%s¡¹ ½ÇÇà Áß..."
+msgid ""
+"\n"
+"\n"
+"Printerdrake could not determine which model your printer %s is. Please "
+"choose the correct model from the list."
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Run config tool"
-msgstr "¼³Á¤ µµ±¸ ½ÇÇà"
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"Àü¼ÛÇÏ·Á´Â ÇÁ¸°Å͵éÀ» ¼±ÅÃÇÑ ÈÄ¿¡ ¡¸Àü¼Û¡¹À» ´©¸£¼¼¿ä."
-#: ../../standalone/harddrake2:1
+#: ../../printer/data.pm:1
#, c-format
-msgid "Configure module"
-msgstr "¸ðµâ ¼³Á¤"
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../standalone/harddrake2:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Information"
-msgstr "Á¤º¸"
+msgid "Albanian"
+msgstr "¾Ë¹Ù´Ï¾Æ"
-#: ../../standalone/harddrake2:1
+#: ../../lang.pm:1
#, c-format
-msgid "Detected hardware"
-msgstr "°Ë»öµÈ Çϵå¿þ¾î"
+msgid "Lithuania"
+msgstr "¸®Åõ¾Æ´Ï¾Æ"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm:1
#, c-format
-msgid "Harddrake2 version "
-msgstr "ÇÏµå µå·¹ÀÌÅ© 2 ¹öÀü"
+msgid "Compact"
+msgstr "ÄÞÆÑµå ¸ðµå"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Detection in progress"
-msgstr "°Ë»ö ÁøÇà Áß"
+msgid "Detected model: %s %s"
+msgstr "°Ë»öµÈ ¸ðµ¨: %s %s"
-#: ../../standalone/harddrake2:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Author:"
-msgstr "Á¦ÀÛÀÚ:"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"Version: %s\n"
+"Author: Thierry Vignaud <tvignaud\\@mandrakesoft.com>\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "About Harddrake"
-msgstr "ÇÏµå µå·¹ÀÌÅ© Á¤º¸"
+msgid "Local files"
+msgstr "Áö¿ª ÆÄÀϵé"
-#: ../../standalone/harddrake2:1
+#: ../../pkgs.pm:1
#, c-format
-msgid "/_About..."
-msgstr "/Á¤º¸(_A)..."
+msgid "maybe"
+msgstr "±¦ÂúÀº ÆÑÅ°Áö"
-#: ../../standalone/harddrake2:1
+#: ../../lang.pm:1
#, c-format
-msgid "/_Report Bug"
-msgstr "/¹ö±× º¸°í(_R)"
+msgid "Panama"
+msgstr "Æijª¸¶"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm:1
#, c-format
msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Select a device !"
-msgstr "½ºÄ³³Ê ¼±ÅÃ"
+#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Monitor"
+msgstr "¸ð´ÏÅÍ"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Description of the fields:\n"
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\n"
+"\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid "Harddrake help"
-msgstr "ÇÏµå µå·¹ÀÌÅ© µµ¿ò¸»"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "¼³¸í"
+msgid "65 thousand colors (16 bits)"
+msgstr "6¸¸5õ »ö»ó (16 bits)"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "/_Help"
-msgstr "/µµ¿ò¸»(_H)"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "/_Quit"
-msgstr "/Á¾·á(_Q)"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _jazz drives"
-msgstr "ÀÚµ¿ °Ë»öµÊ"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _modems"
-msgstr "ÀÚµ¿ °Ë»öµÊ"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "ÀÚµ¿ °Ë»öµÊ"
+msgid "Size: %d KB\n"
+msgstr "Å©±â: %d KB\n"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "/_Options"
-msgstr "/¿É¼Ç(_O)"
+msgid "Remove fonts on your system"
+msgstr "½Ã½ºÅÛ ÆùÆ® Á¦°Å"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "the vendor name of the processor"
+msgid ""
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "the vendor name of the device"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "The type of bus on which the mouse is connected"
-msgstr "¾î¶² ½Ã¸®¾ó Æ÷Æ®¿¡ ¸¶¿ì½º°¡ ¿¬°áµÇ¾î ÀÖ³ª¿ä?"
+msgid "Graphical interface at startup"
+msgstr "½ÃÀ۽à ¹Ù·Î X ½ÇÇà"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "¼³Á¤ Àбâ"
+msgid "Please enter the directory to save:"
+msgstr "ÀúÀåÇÒ µð·ºÅ丮¸¦ ¼±ÅÃÇϼ¼¿ä:"
#: ../../standalone/harddrake2:1
#, c-format
-msgid "the number of the processor"
+msgid "format of floppies supported by the drive"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../raid.pm:1
#, c-format
-msgid "Processor ID"
-msgstr ""
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "RAID ·¹º§ %d¸¦ À§ÇÑ ÆÄƼ¼ÇµéÀÌ ÃæºÐÇÏÁö ¾Ê½À´Ï´Ù.\n"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "network printer port"
-msgstr "³×Æ®¿÷ ÇÁ¸°ÅÍ (¼ÒÄÏ)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
msgstr ""
+"´ÙÀ½ ÇÁ¸°Å͵éÀÌ ¼³Á¤µÇ¾ú½À´Ï´Ù.\n"
+"¼öÁ¤ÇÏ°í ½Í°Å³ª,\n"
+"Á¤º¸¸¦ º¸°í ½Í´Ù¸é ÇÁ¸°Å͸¦ Ŭ¸¯Çϼ¼¿ä.\n"
+"»õ ÇÁ¸°Å͸¦ Ãß°¡ÇÏ°í ½Í´Ù¸é ¡¸ÇÁ¸°ÅÍ Ãß°¡¡¹¸¦ ´©¸£¼¼¿ä."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Name"
-msgstr "À̸§:"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Connected"
+msgstr "¿¬°áµÊ"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "the number of buttons the mouse has"
-msgstr "¹öÆ° ¼ö"
+msgid "USB printer \\#%s"
+msgstr "ÇÁ¸°ÅÍ ¾øÀ½"
-#: ../../standalone/harddrake2:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Number of buttons"
-msgstr "¹öÆ° ¼ö"
+msgid "Macedonian"
+msgstr "¸¶Äɵµ´Ï¾Æ"
-#: ../../standalone/harddrake2:1
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Official vendor name of the cpu"
+msgid "Bridges and system controllers"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model name"
-msgstr "¸ðµâ À̸§"
-
-#: ../../standalone/harddrake2:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr ""
+msgid "/File/_Save"
+msgstr "/ÆÄÀÏ(F)/ÀúÀå(_S)"
-#: ../../standalone/harddrake2:1
+#: ../../lang.pm:1
#, c-format
-msgid "Model"
-msgstr "¸ðµ¨"
+msgid "Mali"
+msgstr "¸»¸®"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "ÇÏµå µð½ºÅ© ¸ðµ¨"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "No details"
+msgstr "»ó¼¼¼³¸í"
-#: ../../standalone/harddrake2:1
+#: ../../pkgs.pm:1
#, c-format
-msgid "class of hardware device"
-msgstr "Çϵå¿þ¾î ÀåÄ¡ ¹üÁÖ"
+msgid "very nice"
+msgstr "ÈǸ¢ÇÑ ÆÑÅ°Áö"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Media class"
-msgstr "¸Åü ¹üÁÖ"
+msgid "Preview"
+msgstr "¹Ì¸®º¸±â"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Sub generation of the cpu"
-msgstr ""
+msgid "Remote Control"
+msgstr "¿ø°Ý Á¦¾î"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Level"
-msgstr "·¹º§"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please select media for backup..."
+msgstr "¹é¾÷¿ë ¸Åü¸¦ ¼±ÅÃÇϼ¼¿ä..."
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm:1
#, c-format
-msgid "Format of floppies supported by the drive"
-msgstr ""
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 ¼­¹ö: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "Æ÷¸Ë"
+msgid "Allow Thin Clients"
+msgstr "Ŭ¶óÀ̾ðÆ® Ãß°¡/Á¦°Å"
-#: ../../standalone/harddrake2:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
+msgid "Georgian (\"Russian\" layout)"
+msgstr "±×·çÁö¾Æ(·¯½Ã¾Æ¾î)"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
-msgid "Halt bug"
-msgstr ""
+msgid "/_Options"
+msgstr "/¿É¼Ç(_O)"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
+msgid "Your printer model"
+msgstr "ÇÁ¸°ÅÍ ¸ðµ¨"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm:1
#, c-format
-msgid "F00f bug"
+msgid ""
+"\n"
+"\n"
+"(WARNING! You're using XFS for your root partition,\n"
+"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
+"because XFS needs a very large driver)."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakpxe:1
#, c-format
-msgid "Whether the FPU has an irq vector"
+msgid ""
+"No CD or DVD image found, please copy the installation program and rpm files."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "¸Çµå·¹ÀÌÅ© Å͹̳Π¼­¹ö ¼³Á¤"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakperm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Is FPU present"
-msgstr ""
+msgid "Save"
+msgstr "ÀúÀå"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "The %s is unsupported"
+msgstr "ÀÌ ½ºÄ³³Ê [%s]´Â Áö¿øµÇÁö ¾Ê½À´Ï´Ù."
+
+#: ../../services.pm:1
#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
+msgid "Load the drivers for your usb devices."
+msgstr "USB ÀåÄ¡¿ë µå¶óÀ̹ö ÀûÀç."
-#: ../../standalone/harddrake2:1
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Disk"
+msgstr "µ§¸¶Å©"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Fdiv bug"
-msgstr ""
+msgid "Enter a printer device URI"
+msgstr "ÇÁ¸°ÅÍ ÀåÄ¡ URIÀ» ÀÔ·ÂÇϼ¼¿ä."
-#: ../../standalone/harddrake2:1
+#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "CPU flags reported by the kernel"
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../lang.pm:1
#, c-format
-msgid "Flags"
-msgstr ""
+msgid "Israel"
+msgstr "À̽º¶ó¿¤"
-#: ../../standalone/harddrake2:1
+#: ../../lang.pm:1
#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
+msgid "French Guiana"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../lang.pm:1
#, c-format
-msgid "Module"
-msgstr "¸ðµâ"
+msgid "default:LTR"
+msgstr "default:LTR"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
+msgid "add a rule"
+msgstr "±ÔÄ¢ Ãß°¡"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "»õ·Î¿î devfs ÀåÄ¡"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "A command line must be entered!"
+msgstr "À¯È¿ÇÑ ÁÖ¼Ò¸¦ ÀÔ·ÂÇϼ¼¿ä!"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
+msgid "Select user manually"
+msgstr "¼öµ¿À¸·Î »ç¿ëÀÚ ¼±ÅÃ"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Old device file"
-msgstr "¿À·¡µÈ ÀåÄ¡ ÆÄÀÏ"
+msgid "Transfer printer configuration"
+msgstr "ÇÁ¸°ÅÍ ¼³Á¤ Àü¼Û"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "This field describes the device"
-msgstr "ÀÌ Çʵå´Â ÀåÄ¡¸¦ ¼³¸íÇÕ´Ï´Ù."
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "ºÎÆýÿ¡ ¿¬°áÇϵµ·Ï ÇÏ°Ú½À´Ï±î?"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"The CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "%s (Port %s)"
+msgstr "Æ÷Æ®"
+
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Frequency (MHz)"
-msgstr ""
+msgid "Use network connection to backup"
+msgstr "³×Æ®¿÷À» »ç¿ëÇØ ¹é¾÷"
-#: ../../standalone/harddrake2:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Information level that can be obtained through the cpuid instruction"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Enable/Disable sulogin(8) in single user level."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../help.pm:1
#, fuzzy, c-format
-msgid "Cpuid level"
-msgstr "º¸¾È ¼öÁØ"
+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"
+"to make it simpler to manage the packages have been placed into groups of\n"
+"similar applications.\n"
+"\n"
+"Packages are sorted into groups corresponding to a particular use of your\n"
+"machine. Mandrake Linux has four predefined installations available. You\n"
+"can think of these installation classes as containers for various packages.\n"
+"You can mix and match applications from the various groups, so a\n"
+"``Workstation'' installation can still have applications from the\n"
+"``Development'' group installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the applications that are in the workstation group.\n"
+"\n"
+" * \"%s\": if plan on using your machine for programming, choose the\n"
+"appropriate packages from that group.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command line interface. The total size of this installation is about 65\n"
+"megabytes.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you are familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you started the installation in \"%s\" mode, you can unselect all groups\n"
+"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"
+"±âÁ¸ ½Ã½ºÅÛÀ» ¾÷µ¥ÀÌÆ®Çϰųª °íÄ¡±â À§ÇÑ ÁÁÀº ¹æ¹ýÀÔ´Ï´Ù."
-#: ../../standalone/harddrake2:1
+#: ../../any.pm:1 ../../help.pm:1
#, c-format
-msgid "Family of the cpu (eg: 6 for i686 class)"
-msgstr ""
+msgid "Accept user"
+msgstr "»ç¿ëÀÚ Çã°¡"
-#: ../../standalone/harddrake2:1
+#: ../../help.pm:1 ../../diskdrake/dav.pm:1
#, c-format
-msgid "Cpuid family"
-msgstr ""
+msgid "Server"
+msgstr "¼­¹ö"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm:1
#, c-format
-msgid "Whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
+msgid "Bad choice, try again\n"
+msgstr "À߸øµÈ ¼±ÅÃÀÔ´Ï´Ù, ´Ù½Ã Çϼ¼¿ä\n"
-#: ../../standalone/harddrake2:1
+#: ../../lang.pm:1
#, c-format
-msgid "Coma bug"
+msgid "Heard and McDonald Islands"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
+msgid "No alternative driver"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Drive capacity"
-msgstr ""
+msgid "Toggle to expert mode"
+msgstr "Àü¹®°¡ ¸ðµå·Î Àüȯ"
-#: ../../standalone/harddrake2:1
+#: ../../printer/cups.pm:1
#, c-format
-msgid "Size of the (second level) cpu cache"
-msgstr ""
+msgid "(on this machine)"
+msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm:1
#, fuzzy, c-format
-msgid "Cache size"
-msgstr "Å©±â"
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ÁÖ¼Ò´Â 1.2.3.4°ú °°Àº Çü½ÄÀ̾î¾ß ÇÕ´Ï´Ù."
-#: ../../standalone/harddrake2:1
+#: ../../network/modem.pm:1
#, c-format
msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Location on the bus"
-msgstr "¹ö½º»óÀÇ À§Ä¡"
+msgid "Looking at packages already installed..."
+msgstr "ÀÌ¹Ì ¼³Ä¡µÈ ÆÑÅ°Áö ã´Â Áß..."
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+msgid "Use Differential Backups"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Bus identification"
-msgstr "¹ö½º ¾ÆÀ̵ð"
+msgid "Driver"
+msgstr "µå¶óÀ̹ö"
-#: ../../standalone/harddrake2:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"The GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
+"¸®´ª½º ¼³Á¤(Linuxconf)Àº ½Ã½ºÅÛ ¼³Á¤À» À¯ÁöÇϱâ À§ÇÏ¿©\n"
+"ºÎÆýÿ¡ ´Ù¾çÇÑ ÀÛ¾÷ ¼öÇàÀ» ÁغñÇÕ´Ï´Ù."
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Bogomips"
+msgid "Printer on remote lpd server"
+msgstr "¿ø°Ý LPD ¼­¹öÀÇ ÇÁ¸°ÅÍ"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid ""
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\n"
+"\n"
+"-You can install the fonts the normal way. In rare cases, bogus fonts may "
+"hang up your X Server."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../help.pm:1
#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI ä³Î"
+msgid ""
+"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
+"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
+"detected and installed in the bootloader menu. If this is not the case, you\n"
+"can add an entry by hand in this screen. Be careful to choose the correct\n"
+"parameters.\n"
+"\n"
+"Yaboot's main options are:\n"
+"\n"
+" * Init Message: a simple text message displayed before the boot prompt.\n"
+"\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information.\n"
+"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
+"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second increments\n"
+"before your 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\n"
+"Open 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 ""
-#: ../../standalone/harddrake2:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Channel"
-msgstr "ä³Î"
+msgid "No mouse"
+msgstr "¸¶¿ì½º ¾øÀ½"
-#: ../../standalone/harddrake2:1
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgid "Germany"
+msgstr "µ¶ÀÏ"
-#: ../../standalone/harddrake2:1
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "Bus"
-msgstr "¹ö½º"
+msgid "Austria"
+msgstr "¿À½ºÆ®¸®¾Æ"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "the list of alternative drivers for this sound card"
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
-msgid "Alternative drivers"
-msgstr "´ëü µå¶óÀ̹öµé"
+msgid "Collapse Tree"
+msgstr "Æ®¸® Á¢±â"
-#: ../../standalone/keyboarddrake:1
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Äֿܼ¡¼­ ¹é½ºÆäÀ̽º Å°°¡ Áö¿ì±â¸¦ Çϵµ·Ï ÇϽðڽÀ´Ï±î?"
+msgid "Auto Install Configurator"
+msgstr "ÀÚµ¿ ¼³Ä¡ ¼³Á¤±â"
-#: ../../standalone/keyboarddrake:1
+#: ../../steps.pm:1
#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Å°º¸µå ·¹À̾ƿô ¼±ÅÃ"
+msgid "Configure networking"
+msgstr "³×Æ®¿÷ ¼³Á¤"
-#: ../../standalone/livedrake:1
+#: ../../any.pm:1
#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "¶óÀÌºê ¾÷±×·¹À̵带 ½ÃÀÛÇÒ ¼ö ¾ø½À´Ï´Ù!!! \n"
+msgid "Where do you want to install the bootloader?"
+msgstr "ºÎÆ®·Î´õ¸¦ ¾îµð¿¡ ¼³Ä¡ÇÏ°í ½ÍÀ¸¼¼¿ä?"
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
-"If you don't have it, press Cancel to avoid live upgrade."
+"Your choice of preferred language will affect the language of the\n"
+"documentation, the installer and the system in general. Select first the\n"
+"region you are located in, and then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if you will\n"
+"host users from Spain on your machine, select English as the default\n"
+"language in the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"%s\"\n"
+"box. Selecting support for a language means translations, fonts, spell\n"
+"checkers, etc. for that language will be installed. Additionally, the\n"
+"\"%s\" checkbox allows you to force the system to use unicode (UTF-8). Note\n"
+"however that this is an experimental feature. If you select different\n"
+"languages requiring different encoding the unicode support will be\n"
+"installed anyway.\n"
+"\n"
+"To switch between the various languages installed on the system, you can\n"
+"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+"language used by the entire system. Running the command as a regular user\n"
+"will only change the language settings for that particular user."
msgstr ""
-"¼³Ä¡ CD-ROMÀ» ³ÖÀº ÈÄ¿¡ ¡¸È®ÀΡ¹À» ´©¸£¼¼¿ä.\n"
-"CD-ROMÀÌ ¾ø´Ù¸é, ¡¸Ãë¼Ò¡¹¸¦ ¶óÀÌºê ¾÷±×·¹À̵带 Ãë¼ÒÇϼ¼¿ä."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "CDROM ¹Ù²Ù±â"
+"¼³Ä¡½Ã ±×¸®°í ½Ã½ºÅÛ¿ëÀ¸·Î »ç¿ëÇÒ ¾ð¾î¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
+"\n"
+"¡¸°í±Þ¡¹À» ´©¸£¸é, ´Ù¸¥ ¾ð¾îµµ Ãß°¡·Î ¼±ÅÃÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
+"´Ù¸¥ ¾ð¾îµµ ¼±ÅÃÇÏ°Ô µÇ¸é, ±× ¾ð¾î¿Í °ü·ÃµÈ ½Ã½ºÅÛ ¹®¼­ ¹× ÇÁ·Î±×·¥ ÆÄÀϵé"
+"µµ\n"
+"¼³Ä¡ÇÏ°Ô µË´Ï´Ù. °¡·É, ´ÔÀÇ ½Ã½ºÅÛÀ» ÀϺ»Àεµ »ç¿ëÇÒ ¼ö ÀÖµµ·Ï ÇÏ°í ½Í´Ù¸é,\n"
+"¸ñ·Ï¿¡¼­ ÁÖ ¾ð¾î·Î ¡¸Çѱ¹¾î¡¹¸¦ ¼±ÅÃÇÏ°í, ¡¸°í±Þ¡¹¿¡¼­ ¡¸ÀϺ»¾î¡¹¿¡ ÇØ´çÇÏ"
+"´Â\n"
+"ȸ»ö º°Ç¥¸¦ ¼±ÅÃÇϼ¼¿ä.\n"
+"\n"
+"¿©·¯°³ÀÇ Ãß°¡ ¾ð¾î¸¦ ¼±ÅÃÇÒ ¼öµµ ÀÖ½À´Ï´Ù. ¾ð¾î ¼±ÅÃÀ» ³¡¸¶ÃÆÀ¸¸é,\n"
+"¡¸È®ÀΡ¹À» ´­·¯¼­ °è¼Ó ÁøÇàÇϼ¼¿ä."
-#: ../../standalone/localedrake:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "º¯°æÀÌ ¿Ï·á µÇ¾úÁö¸¸, Àû¿ëµÇ±â À§Çؼ­´Â Àç·Î±×ÀÎÇØ¾ß ÇÕ´Ï´Ù."
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Save as.."
-msgstr "»õ À̸§À¸·Î ÀúÀå"
+msgid "DHCP client"
+msgstr "DHCP Ŭ¶óÀ̾ðÆ®"
-#: ../../standalone/logdrake:1
+#: ../../partition_table.pm:1
#, c-format
-msgid "Please enter your email address below "
-msgstr "¾Æ·¡¿¡ À̸ÞÀÏ ÁÖ¼Ò¸¦ ÀÔ·ÂÇϼ¼¿ä."
+msgid "Restoring from file %s failed: %s"
+msgstr "%s ÆÄÀϷκÎÅÍÀÇ º¹±¸ ½ÇÆÐ: %s"
-#: ../../standalone/logdrake:1
+#: ../../mouse.pm:1
#, c-format
-msgid "alert configuration"
-msgstr "°æ°í ¼³Á¤"
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "·ÎÁöÅØ ¸¶¿ì½º (½Ã¸®¾ó, ¿À·¡µÈ C7 ÇüÅÂ)"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "You will receive an alert if the load is higher than this value"
+msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "load setting"
-msgstr "¼³Á¤ Àбâ"
+msgid "New devfs device"
+msgstr "»õ·Î¿î devfs ÀåÄ¡"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid "service setting"
-msgstr "¼­ºñ½º ¼³Á¤"
+msgid "Boot Style Configuration"
+msgstr "ºÎÆà ½ºÅ¸ÀÏ ¼³Á¤"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd ¼­ºñ½º"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "ÀÚµ¿ ½Ã°£ µ¿±âÈ­ (NTP »ç¿ë)"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Webmin Service"
-msgstr "À¥¹Î ¼­ºñ½º"
+msgid "Backup files not found at %s."
+msgstr "%s¿¡¼­ ¹é¾÷ ÆÄÀÏÀ» ãÀ» ¼ö ¾ø½À´Ï´Ù."
-#: ../../standalone/logdrake:1
+#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "SSH Server"
-msgstr "SSH ¼­ºñ½º"
+msgid "Thank you for choosing Mandrake Linux 9.1"
+msgstr "¸Çµå·¹ÀÌÅ© ¸®´ª½º 9.1¸¦ ¼±ÅÃÇØ Áּż­ °¨»çÇÕ´Ï´Ù."
-#: ../../standalone/logdrake:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Samba Server"
-msgstr "»ï¹Ù ¼­ºñ½º"
+msgid "Armenian (phonetic)"
+msgstr "¹Ì±¹ (À½¼ºÇÐ)"
-#: ../../standalone/logdrake:1
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid "Postfix Mail Server"
-msgstr "Æ÷½ºÆ®ÇȽº ¸ÞÀÏ ¼­¹ö"
+msgid "Card model:"
+msgstr "Ä«µå ¸ðµ¨:"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Thin Client"
+msgstr "DHCP Ŭ¶óÀ̾ðÆ®"
+
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Ftp Server"
-msgstr "FTP ¼­¹ö"
+msgid "Start Server"
+msgstr "¼­¹ö ½ÃÀÛ"
-#: ../../standalone/logdrake:1
+#: ../../lang.pm:1
#, c-format
-msgid "Domain Name Resolver"
-msgstr "µµ¸ÞÀÎ ³×ÀÓ ÇØ°á»ç"
+msgid "Turkmenistan"
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "All remote machines"
+msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
+
+#: ../../standalone/drakboot:1
#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "¾ÆÆÄÄ¡ ¿ùµå¿ÍÀ̵åÀ¥ ¼­¹ö"
+msgid "Install themes"
+msgstr "Å׸¶ ¼³Ä¡"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-"¸ÞÀÏ ¼³Á¤ µµ±¸¿¡ Àß ¿À¼Ì½À´Ï´Ù.\n"
-"\n"
-"¿©±â¼­ °æ°í ½Ã½ºÅÛÀ» ¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù.\n"
-#: ../../standalone/logdrake:1
+#: ../../help.pm:1
#, c-format
-msgid "Mail alert configuration"
-msgstr "¸ÞÀÏ °æ°í ¼³Á¤"
+msgid "Espanol"
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Mail alert"
-msgstr "¸ÞÀÏ °æ°í"
+msgid "Preparing installation"
+msgstr "¼³Ä¡ ÁغñÁßÀÔ´Ï´Ù"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "±â´Ù·Á ÁÖ¼¼¿ä. ÆÄÀÏ ºÐ¼® Áß: %s"
+msgid "Edit selected host/network"
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Content of the file"
-msgstr "ÆÄÀÏ ³»¿ë"
+msgid "Add User -->"
+msgstr "»ç¿ëÀÚ Ãß°¡ -->"
-#: ../../standalone/logdrake:1
+#: ../../lang.pm:1
#, c-format
-msgid "Calendar"
-msgstr "´Þ·Â"
+msgid "Nauru"
+msgstr "³ª¿ì·ç"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Choose file"
-msgstr "ÆÄÀÏ ¼±ÅÃ"
+msgid "True Type fonts installation"
+msgstr "Æ®·çŸÀÔ ÆùÆ® ¼³Ä¡"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "but not matching"
-msgstr "Á¦¿ÜÇÒ ¹®ÀÚ¿­"
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "matching"
-msgstr "ãÀ» ¹®ÀÚ¿­"
+msgid "LAN configuration"
+msgstr "LAN ¼³Á¤"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "Settings"
-msgstr "¼³Á¤°ª"
+msgid "hard disk model"
+msgstr "ÇÏµå µð½ºÅ© ¸ðµ¨"
-#: ../../standalone/logdrake:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "A tool to monitor your logs"
-msgstr "·Î±× ºÐ¼® µµ±¸"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr " %s ¸¶¿îÆ® Æ÷ÀÎÆ®·Î LVM ³í¸®º¼·ýÀ» »ç¿ëÇÒ ¼ö´Â ¾ø½À´Ï´Ù. "
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "search"
-msgstr "°Ë»ö"
+msgid "Get Windows Fonts"
+msgstr "À©µµ¿ìÁî ÆùÆ® °¡Á®¿À±â"
-#: ../../standalone/logdrake:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "¸Çµå·¹ÀÌÅ© µµ±¸ ¼³¸í"
+msgid "Mouse Systems"
+msgstr "¸¶¿ì½º ½Ã½ºÅÛ"
-#: ../../standalone/logdrake:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Syslog"
-msgstr "½Ã½ºÅÛ ·Î±×"
+msgid "Iranian"
+msgstr "À̶õ"
-#: ../../standalone/logdrake:1
+#: ../../lang.pm:1
#, c-format
-msgid "Messages"
-msgstr "¸Þ½ÃÁö"
+msgid "Croatia"
+msgstr "Å©·Î¾ÆƼ¾Æ"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "User"
-msgstr "»ç¿ëÀÚ"
+msgid "Gateway:"
+msgstr "°ÔÀÌÆ®¿þÀÌ:"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Add server"
+msgstr "»ç¿ëÀÚ Ãß°¡"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "/Help/_About..."
-msgstr "/µµ¿ò¸»(H)/ÀÌ ÇÁ·Î±×·¥Àº(_A)..."
+msgid "Remote printer name"
+msgstr "¿ø°Ý ÇÁ¸°Å͸í"
-#: ../../standalone/logdrake:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "/Options/Test"
-msgstr "¿É¼Ç(O)/Å×½ºÆ®"
+msgid ""
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "/File/-"
-msgstr "/ÆÄÀÏ(F)/-"
+msgid "Device: "
+msgstr "ÀåÄ¡: "
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
-msgid "/File/Save _As"
-msgstr "/ÆÄÀÏ(F)/´Ù¸¥ À̸§À¸·Î ÀúÀå(_A)"
+msgid "Printerdrake"
+msgstr "ÇÁ¸°Å͵巹ÀÌÅ©"
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+msgid "License agreement"
+msgstr "»ç¿ë µ¿ÀǼ­"
-#: ../../standalone/logdrake:1
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "System Options"
+msgstr "Ãß°¡ ¿É¼Ç"
+
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "/File/_Save"
-msgstr "/ÆÄÀÏ(F)/ÀúÀå(_S)"
+msgid "Please enter the directory where backups are stored"
+msgstr "¹é¾÷ ÆÄÀϵéÀÌ ÀúÀåµÉ µð·ºÅ丮¸¦ ÀÔ·ÂÇϼ¼¿ä."
-#: ../../standalone/logdrake:1
+#: ../../security/level.pm:1
#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+msgid "Please choose the desired security level"
+msgstr "Èñ¸ÁÇÏ´Â º¸¾È ´Ü°è¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../standalone/logdrake:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "/File/_Open"
-msgstr "/ÆÄÀÏ(F)/¿­±â(_O)"
+msgid "This host is already in the list, it cannot be added again.\n"
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", USB printer"
+msgstr "ÇÁ¸°ÅÍ ¾øÀ½"
+
+#: ../../standalone/drakfont:1
#, c-format
-msgid "<control>N"
-msgstr "<control>N"
+msgid "Choose the applications that will support the fonts:"
+msgstr "ÀÌ ÆùÆ®¸¦ Áö¿øÇÒ ÇÁ·Î±×·¥µéÀ» ¼±ÅÃÇϼ¼¿ä"
-#: ../../standalone/logdrake:1
+#: ../../steps.pm:1
#, c-format
-msgid "/File/_New"
-msgstr "/ÆÄÀÏ(F)/»õ·Î ¸¸µé±â(_N)"
+msgid "Configure X"
+msgstr "X ¼³Á¤"
-#: ../../standalone/logdrake:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Show only for the selected day"
-msgstr "¼±ÅÃµÈ ³¯Â¥¿¡ ´ëÇظ¸ º¸À̱â"
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Åͱâ (ÀüÅë ¡¸F¡¹¸ðµ¨"
-#: ../../standalone/mousedrake:1
+#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Emulate third button?"
-msgstr "3¹öÆ° ¿¡¹Ä·¹ÀÌÆ®?"
+msgid "Congratulations!"
+msgstr "ÃàÇÏÇÕ´Ï´Ù!"
-#: ../../standalone/mousedrake:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Please choose your mouse type."
-msgstr "¾î¶² Á¾·ùÀÇ ¸¶¿ì½º¸¦ »ç¿ëÇϽʴϱî?"
+msgid "Use owner id for execution"
+msgstr "½ÇÇà½Ã ¼ÒÀ¯ÀÚ ¾ÆÀ̵ð »ç¿ë"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "¿¬°á"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Down"
+msgstr "¾Æ·¡·Î"
-#: ../../standalone/net_monitor:1
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer (No driver)"
+msgstr "³¯(RAW) ÇÁ¸°ÅÍ (µå¶óÀ̹ö »ç¿ë¾ÈÇÔ)"
+
+#: ../../network/modem.pm:1
#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "¿¬°á ²÷±â"
+msgid "Install rpm"
+msgstr "¼³Ä¡"
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "received"
-msgstr ""
+msgid "Time remaining "
+msgstr "³²Àº ½Ã°£ "
-#: ../../standalone/net_monitor:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "transmitted"
-msgstr ""
+msgid "UK keyboard"
+msgstr "¿µ±¹"
-#: ../../standalone/net_monitor:1
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
-msgid "received: "
-msgstr ""
+msgid "Unmount"
+msgstr "¾ð¸¶¿îÆ®"
-#: ../../standalone/net_monitor:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "sent: "
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Local measure"
-msgstr "Áö¿ª ÆÄÀϵé"
+msgid "Uninstall Fonts"
+msgstr "ÆùÆ® Á¦°Å"
-#: ../../standalone/net_monitor:1
+#: ../../mouse.pm:1
#, c-format
-msgid "average"
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Color configuration"
-msgstr "°æ°í ¼³Á¤"
+msgid "Microsoft Explorer"
+msgstr "¸¶ÀÌÅ©·Î¼ÒÇÁÆ® ÀͽºÇ÷η¯"
-#: ../../standalone/net_monitor:1
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
+msgid "German (no dead keys)"
+msgstr "µ¶ÀÏ (dead Å° ¾øÀ½)"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "¿¬°á ¼Óµµ"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transferring %s..."
+msgstr "%s Àü¼Û Áß ..."
-#: ../../standalone/net_monitor:1
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid "Disconnection from the Internet complete."
-msgstr ""
+msgid "32 thousand colors (15 bits)"
+msgstr "3¸¸2õ »ö»ó (15 bits)"
-#: ../../standalone/net_monitor:1
+#: ../../any.pm:1
#, c-format
-msgid "Disconnection from the Internet failed."
-msgstr ""
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "NFS¿Í »ï¹Ù Áß, ¾î´À °ÍÀ» ÀÌ¿ëÇϽðڽÀ´Ï±î?"
-#: ../../standalone/net_monitor:1
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Connecting to the Internet "
-msgstr "ÀÎÅͳݿ¡ ¿¬°á"
+msgid "Reboot"
+msgstr "·çÆ®"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnecting from the Internet "
-msgstr "ÀÎÅͳݿ¡ ¿¬°á"
+#: ../../lang.pm:1
+#, c-format
+msgid "Gambia"
+msgstr "Àáºñ¾Æ"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Wait please, testing your connection..."
-msgstr "¿¬°á Å×½ºÆ® Áß..."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Mandrake Control Center"
+msgstr "¸Çµå·¹ÀÌÅ© Á¦¾î ¼¾ÅÍ"
-#: ../../standalone/net_monitor:1
+#: ../../network/drakfirewall.pm:1
#, c-format
-msgid "Logs"
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection Time: "
-msgstr "¿¬°á À¯Çü: "
-
-#: ../../standalone/net_monitor:1
+#: ../../help.pm:1
#, c-format
-msgid "Receiving Speed:"
+msgid ""
+"Monitor\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is correct, you can choose from\n"
+"this list the monitor you actually have connected to your computer."
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Sending Speed:"
-msgstr "ÆÄÀÏ Àü¼Û Áß ..."
-
-#: ../../standalone/net_monitor:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Statistics"
+msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Profile "
-msgstr "ÇÁ·ÎÆÄÀÏ: "
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+"No browser is installed on your system, Please install one if you want to "
+"browse the help system"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "³×Æ®¿÷ ȯ°æ ¼³Á¤"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Remember this password"
+msgstr "ºñ¹Ð¹øÈ£ ±â¾ï"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Reading data of installed printers..."
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing is now enabled."
+msgstr "ÀÌÁ¦ ÀÎÅÍ³Ý ¿¬°á °øÀ¯°¡ Çã¿ëµÇ¾ú½À´Ï´Ù."
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Name/IP address of host:"
+msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scannerdrake"
-msgstr "½ºÄ³³Ê ¼±ÅÃ"
+#: ../../help.pm:1 ../../install_interactive.pm:1
+#, c-format
+msgid "Use the free space on the Windows partition"
+msgstr "À©µµ¿ìÁî ÆÄƼ¼ÇÀÇ ºó °ø°£ »ç¿ëÇϼ¼¿ä."
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "È£½ºÆ® À̸§ ¶Ç´Â IP¸¦ ÀÔ·ÂÇϼ¼¿ä."
+msgid "%s found on %s, configure it automatically?"
+msgstr "%sÀÌ %s¿¡¼­ ¹ß°ßµÇ¾ú½À´Ï´Ù. ¼³Á¤ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/scannerdrake:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Use password to authenticate users."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Sharing of local scanners"
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "This machine"
-msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Remove selected host"
-msgstr "¼±Åà Ç׸ñ Á¦°Å"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected host"
-msgstr "%s ¹ß°ß"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Add host"
-msgstr "»ç¿ëÀÚ Ãß°¡"
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 µå¶óÀ̹ö: %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "These are the machines from which the scanners should be used:"
+msgid "This host/network is already in the list, it cannot be added again.\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Usage of remote scanners"
-msgstr "ºó °ø°£ »ç¿ë"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "All remote machines"
-msgstr "(ÀÌ ¼­¹ö»óÀÇ)"
-
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"\n"
+" DrakBackup Report \n"
+"\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
+msgid "Choose the packages you want to install"
+msgstr "¼³Ä¡ÇÏ°íÀÚ ÇÏ´Â ÆÑÅ°Áö¸¦ ¼±ÅÃÇϼ¼¿ä."
-#: ../../standalone/scannerdrake:1
+#: ../../lang.pm:1
#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "ÆÄÀÏ °øÀ¯"
+msgid "Papua New Guinea"
+msgstr "ÆÄǪ¾Æ´º±â´Ï"
-#: ../../standalone/scannerdrake:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
+msgid "Serbian (cyrillic)"
+msgstr "¼¼¸£ºñ¾Æ (½Ã¸±)"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
+"ÀÌ ÇÁ¸°ÅÍ(%s)¸¦\n"
+"±âº» ÇÁ¸°ÅÍ·Î ÇϽðڽÀ´Ï±î?"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Re-generating list of configured scanners ..."
+msgid "The DHCP end range"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for new scanners ..."
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for configured scanners ..."
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing"
-msgstr "ÆÄÀÏ °øÀ¯"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Add a scanner manually"
-msgstr "¼öµ¿À¸·Î »ç¿ëÀÚ ¼±ÅÃ"
+#: ../../any.pm:1
+#, c-format
+msgid "Creating bootdisk..."
+msgstr "ºÎÆ® µð½ºÅ© »ý¼ºÁß"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/net_monitor:1
#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+msgid "Wait please, testing your connection..."
+msgstr "¿¬°á Å×½ºÆ® Áß..."
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm:1
#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
+msgid "Bringing down the network"
+msgstr "³×Æ®¿÷ ÇØÁ¦ Áß..."
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Login ID"
+msgstr "·Î±×ÀÎ ID"
-#: ../../standalone/scannerdrake:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS´Â TCP/IP ³×Æ®¿÷À¸·Î ÆÄÀÏÀ» °øÀ¯ÇÏ´Â ÀαâÀÖ´Â ÇÁ·ÎÅäÄÝÀÔ´Ï´Ù.\n"
+"ÀÌ ¼­ºñ½º´Â NFS ÆÄÀÏ Àá±Ý ±â´ÉÀ» Á¦°øÇÕ´Ï´Ù."
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "choose device"
-msgstr "ÀåÄ¡ ¼±ÅÃ"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "¹é¾÷ ÆÄÀϵéÀÌ ÀúÀåµÉ µð·ºÅ丮¸¦ ÀÔ·ÂÇϼ¼¿ä."
+msgid "DHCP Client"
+msgstr "DHCP Ŭ¶óÀ̾ðÆ®"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for scanners ..."
-msgstr "À¯È¿ÇÑ ÇÁ¸°Å͵é"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "dismiss"
+msgstr "Ãë¼Ò"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Auto-detect available ports"
-msgstr "ÀÚµ¿ °Ë»öµÊ"
+msgid "Printing/Scanning on \"%s\""
+msgstr "ÇÁ¸°ÅÍ¡¸%s¡¹»ó¿¡¼­ Àμâ Áß"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy:1
#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
+msgid "omit raid modules"
+msgstr "RAID ¸ðµâ »ý·«"
-#: ../../standalone/scannerdrake:1
+#: ../../services.pm:1
#, c-format
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
+"LPD´Â lpr ¸í·ÉÀÌ ¿Ã¹Ù¸£°Ô ÀÛµ¿Çϱâ À§ÇØ ÇÊ¿äÇÑ Àμ⠴ë¸óÀÔ´Ï´Ù.\n"
+"±Ùº»ÀûÀ¸·Î Àμâ ÀÛ¾÷µéÀ» ÇÁ¸°ÅÍ·Î ÁßÀçÇØ ÁÖ´Â ¼­¹öÀÔ´Ï´Ù."
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "The %s is unsupported"
-msgstr "ÀÌ ½ºÄ³³Ê [%s]´Â Áö¿øµÇÁö ¾Ê½À´Ï´Ù."
-
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr ""
+msgid "Internet Connection Configuration"
+msgstr "ÀÎÅÍ³Ý ¿¬°á ¼³Á¤"
-#: ../../standalone/scannerdrake:1
+#: ../../modules/parameters.pm:1
#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+msgid "comma separated numbers"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Port: %s"
-msgstr "Æ÷Æ®"
-
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid ", "
+msgid ""
+"Once you've selected a device, you'll be able to see the device information "
+"in fields displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Detected model: %s"
-msgstr "°Ë»öµÈ ¸ðµ¨: %s %s"
-
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid " ("
-msgstr ""
+msgid "Move selected rule up one level"
+msgstr "¼±ÅÃµÈ ±ÔÄ¢ ÇÑ ´Ü°è À§·Î"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Select a scanner model"
-msgstr "½ºÄ³³Ê ¼±ÅÃ"
+msgid ""
+"The following scanner\n"
+"\n"
+"%s\n"
+"is available on your system.\n"
+msgstr "½Ã½ºÅÛ ÆùÆ® º¹»ç"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Á¤¸»·Î ¡¸%s¡¹ÇÁ¸°Å͸¦ Á¦°ÅÇմϱî?"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%sÀÌ %s¿¡¼­ ¹ß°ßµÇ¾ú½À´Ï´Ù. ¼³Á¤ÇϽðڽÀ´Ï±î?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "I can't find any room for installing"
+msgstr "¼³Ä¡¿¡ ÇÊ¿äÇÑ °ø°£À» ãÀ» ¼ö ¾ø½À´Ï´Ù."
-#: ../../standalone/service_harddrake:1
-#, fuzzy, c-format
-msgid "Hardware probing in progress"
-msgstr "°Ë»ö ÁøÇà Áß"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Default printer"
+msgstr "±âº» ÇÁ¸°ÅÍ"
-#: ../../standalone/service_harddrake:1
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Some devices were added:\n"
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
+"ÀÎÅÍ³Ý Á¢¼Ó¹æ½ÄÀ» ¿©·¯°³ ¼³Á¤Çß½À´Ï´Ù.\n"
+"¿¬°á¿¡ »ç¿ëÇÒ ¹æ½ÄÀ» ¼±ÅÃÇϼ¼¿ä.\n"
+"\n"
-#: ../../standalone/service_harddrake:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
+msgid "Modify RAID"
+msgstr "RAID ¼öÁ¤"
-#: ../../share/advertising/01-thanks.pl:1
+#: ../../network/isdn.pm:1
#, c-format
msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work of the "
-"worldwide Linux Community."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
+"ISDN PCI Ä«µå°¡ °¨ÁöµÇ¾úÁö¸¸, ±× À¯ÇüÀ» ¾Ë ¼ö ¾ø½À´Ï´Ù. ´ÙÀ½ È­¸é¿¡¼­ PCI Ä«"
+"µå¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä."
-#: ../../share/advertising/01-thanks.pl:1
+#: ../../any.pm:1
#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "°ø°³ ¼Ò½º ¼¼°è¿¡ ¿À½Å °ÍÀ» ȯ¿µÇÕ´Ï´Ù."
+msgid "Add user"
+msgstr "»ç¿ëÀÚ Ãß°¡"
-#: ../../share/advertising/01-thanks.pl:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.1"
-msgstr "¸Çµå·¹ÀÌÅ© ¸®´ª½º 9.1¸¦ ¼±ÅÃÇØ Áּż­ °¨»çÇÕ´Ï´Ù."
+msgid "RAID-disks %s\n"
+msgstr "·¹À̵å-µð½ºÅ© %s\n"
-#: ../../share/advertising/02-community.pl:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
-msgstr ""
+msgid "Liberia"
+msgstr "¶óÀ̺£¸®¾Æ"
-#: ../../share/advertising/02-community.pl:1
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
msgstr ""
-#: ../../share/advertising/02-community.pl:1
+#: ../../steps.pm:1
#, c-format
-msgid "Build the future of Linux!"
-msgstr ""
+msgid "Choose your keyboard"
+msgstr "Å°º¸µå ¼±ÅÃ"
-#: ../../share/advertising/03-software.pl:1
+#: ../../steps.pm:1
#, c-format
-msgid ""
-"And, of course, push multimedia to its limits with the very latest software "
-"to play videos, audio files and to handle your images or photos."
-msgstr ""
+msgid "Format partitions"
+msgstr "ÆÄƼ¼Ç Æ÷¸Ë"
-#: ../../share/advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Automatic correction of CUPS configuration"
+msgstr "ÀÚµ¿ CUPS ¼³Á¤"
-#: ../../share/advertising/03-software.pl:1
+#: ../../standalone/harddrake2:1
#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr ""
+msgid "Running \"%s\" ..."
+msgstr "¡¸%s¡¹ ½ÇÇà Áß..."
-#: ../../share/advertising/04-configuration.pl:1
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
-"tool to fully adapt your computer to the use you make of it. Configure and "
-"customize elements such as the security level, the peripherals (screen, "
-"mouse, keyboard...), the Internet connection and much more!"
-msgstr ""
+msgid "enable radio support"
+msgstr "¶óµð¿À Áö¿ø"
-#: ../../share/advertising/04-configuration.pl:1
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "¸Çµå·¹ÀÌÅ© Å͹̳Π¼­¹ö ¼³Á¤"
+msgid "Scanner sharing to hosts: "
+msgstr "ÆÄÀÏ °øÀ¯"
-#: ../../share/advertising/05-desktop.pl:1
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"Perfectly adapt your computer to your needs thanks to the 11 available "
-"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
-"2.2, Window Maker, ..."
-msgstr ""
+msgid "Loopback file name: %s"
+msgstr "·çÇÁ¹é ÆÄÀÏ À̸§: %s"
-#: ../../share/advertising/05-desktop.pl:1
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the printer to which the print jobs should go."
+msgstr "ÇÁ¸°ÅÍ°¡ ¿¬°áµÈ Æ÷Æ®¸¦ ¼±ÅÃÇϼ¼¿ä."
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "A customizable environment"
-msgstr ""
+msgid "Do not transfer printers"
+msgstr "ÇÁ¸°ÅÍ Àü¼Û ÇÏÁö¾ÊÀ½"
-#: ../../share/advertising/06-development.pl:1
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid "Delay before booting the default image"
+msgstr "±âº» À̹ÌÁö·Î ºÎÆÃµÉ ¶§±îÁö Áö¿¬½Ã°£"
+
+#: ../../standalone/drakfont:1
#, c-format
msgid ""
-"To modify and to create in different languages such as Perl, Python, C and C+"
-"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
-"development environments."
+"\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+" DUPONT Sebastien (original version)\n"
+" CHAUMETTE Damien <dchaumette\\@mandrakesoft.com>\n"
+"\n"
+" This program is free software; you can redistribute it and/or modify\n"
+" it under the terms of the GNU General Public License as published by\n"
+" the Free Software Foundation; either version 2, or (at your option)\n"
+" any later version.\n"
+"\n"
+" This program is distributed in the hope that it will be useful,\n"
+" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+" GNU General Public License for more details.\n"
+"\n"
+" You should have received a copy of the GNU General Public License\n"
+" along with this program; if not, write to the Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"\n"
+" Thanks:\n"
+" - pfm2afm: \n"
+"\t by Ken Borgendale:\n"
+"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
+" - type1inst:\n"
+"\t by James Macnicol: \n"
+"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
+" - ttf2pt1: \n"
+"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
+" Convert ttf font files to afm and pfb fonts\n"
msgstr ""
-#: ../../share/advertising/06-development.pl:1
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check for multisession CD"
+msgstr "CDRW ¸Åü¸¦ »ç¿ëÇÏ°í ÀÖ´ÂÁö È®ÀÎÇϼ¼¿ä."
+
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Mandrake Linux 9.1: the ultimate development platform"
-msgstr ""
+msgid "user"
+msgstr "»ç¿ëÀÚ"
-#: ../../share/advertising/07-server.pl:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Transform your computer into a powerful Linux server: Web server, mail, "
-"firewall, router, file and print server (etc.) are just a few clicks away!"
-msgstr ""
+msgid "Use Hard Disk to backup"
+msgstr "ÇÏµå µð½ºÅ©·Î ¹é¾÷"
-#: ../../share/advertising/07-server.pl:1
+#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1 ../../standalone/drakgw:1
#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr ""
+msgid "Configure"
+msgstr "¼³Á¤"
-#: ../../share/advertising/08-store.pl:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scannerdrake"
+msgstr "½ºÄ³³Ê ¼±ÅÃ"
+
+#: ../../standalone/drakconnect:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available on our e-store:"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../share/advertising/08-store.pl:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr ""
+msgid "Backup Users"
+msgstr "»ç¿ëÀÚ ¹é¾÷"
-#: ../../share/advertising/09-mdksecure.pl:1
+#: ../../network/network.pm:1
#, c-format
msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one."
msgstr ""
+"È£½ºÆ® À̸§À» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.\n"
+"È£½ºÆ® À̸§Àº ``mybox.mylab.myco.com''°ú °°ÀÌ ¿ÏÀüÇÑ È£½ºÆ® \n"
+"À̸§À̾î¾ß ÇÕ´Ï´Ù. \n"
+"°ÔÀÌÆ® ¿þÀÌ°¡ ÀÖ´Ù¸é ±× IP ÁÖ¼Òµµ ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù."
-#: ../../share/advertising/09-mdksecure.pl:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr ""
+msgid "Select Printer Spooler"
+msgstr "ÇÁ¸°ÅÍ ½ºÇ®·¯À» ¼±ÅÃÇϼ¼¿ä."
-#: ../../share/advertising/10-security.pl:1
+#: ../../standalone/drakboot:1
#, c-format
-msgid ""
-"MandrakeSoft has designed exclusive tools to create the most secured Linux "
-"version ever: Draksec, a system security management tool, and a strong "
-"firewall are teamed up together in order to highly reduce hacking risks."
-msgstr ""
+msgid "Create new theme"
+msgstr "»õ Å׸¶ ¸¸µé±â"
-#: ../../share/advertising/10-security.pl:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "º¸¾È ÃÖÀûÈ­"
+msgid "Mandrake Tools Explanation"
+msgstr "¸Çµå·¹ÀÌÅ© µµ±¸ ¼³¸í"
-#: ../../share/advertising/11-mnf.pl:1
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "No image found"
+msgstr "ÇÁ¸°Å͸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù!"
+
+#: ../../install_steps.pm:1
#, c-format
-msgid "This product is available on the MandrakeStore Web site."
+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"
-#: ../../share/advertising/11-mnf.pl:1
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Detected model: %s"
+msgstr "°Ë»öµÈ ¸ðµ¨: %s %s"
+
+#: ../../standalone/drakedm:1
#, c-format
msgid ""
-"Complete your security setup with this very easy-to-use software which "
-"combines high performance components such as a firewall, a virtual private "
-"network (VPN) server and client, an intrusion detection system and a traffic "
-"manager."
+"X11 Display Manager allows you to graphically log\n"
+"into your system with the X Window System running and supports running\n"
+"several different X sessions on your local machine at the same time."
msgstr ""
-#: ../../share/advertising/11-mnf.pl:1
+#: ../../security/help.pm:1
#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
+msgid "if set to yes, run the daily security checks."
msgstr ""
-#: ../../share/advertising/12-mdkexpert.pl:1
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help others by becoming a recognized Expert on the online "
-"technical support website:"
+msgid "Azerbaijan"
msgstr ""
-#: ../../share/advertising/12-mdkexpert.pl:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+msgid "No tape in %s!"
msgstr ""
-#: ../../share/advertising/12-mdkexpert.pl:1
+#: ../../keyboard.pm:1
#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "¸Çµå·¹ÀÌÅ© Àü¹®°¡°¡ µÇ¼¼¿ä."
+msgid "Dvorak (US)"
+msgstr "µåº¸¶ô(US)"
-#: ../../share/advertising/13-mdkexpert_corporate.pl:1
+#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../share/advertising/13-mdkexpert_corporate.pl:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr ""
+msgid "How is the printer connected?"
+msgstr "ÇÁ¸°ÅÍ°¡ ¾î¶»°Ô ¿¬°áµÇ¾î ÀÖ½À´Ï±î?"
-#: ../../share/advertising/13-mdkexpert_corporate.pl:1
+#: ../../security/level.pm:1
#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "¸Çµå·¹ÀÌÅ© Àü¹®°¡ ¹ýÀÎ"
+msgid "Security level"
+msgstr "º¸¾È ¼öÁØ"
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "final resolution"
+msgstr "ÃÖÁ¾ ÇØ»óµµ"
+
+#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services"
+msgstr "¼­ºñ½º"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "4 MB"
+msgstr "4 MB"
#: ../../share/compssUsers:999
msgid "Office Workstation"
@@ -17494,10 +17532,6 @@ msgstr ""
"gnumeric), pdf ºä¾î, µîµî"
#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "¿öÅ©½ºÅ×À̼Ç"
-
-#: ../../share/compssUsers:999
msgid "Game station"
msgstr "°ÔÀÓ ½ºÅ×À̼Ç"
@@ -17566,10 +17600,6 @@ msgid ""
msgstr "K Desktop ȯ°æ, ¿©·¯°¡Áö µµ±¸¸¦ ¼ö¹ÝÇÑ ±âº» ±×·¡ÇÈ È¯°æ"
#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "±×·¡ÇÈ È¯°æ"
-
-#: ../../share/compssUsers:999
msgid "Gnome Workstation"
msgstr "GNOME ¿öÅ©½ºÅ×À̼Ç"
@@ -17588,10 +17618,6 @@ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, À©µµ¿ì ¸ÞÀÌÄ¿, ÀζóÀÌÆ°¸ÕÆ®, Fvwm, µîµî"
#: ../../share/compssUsers:999
-msgid "Development"
-msgstr "°³¹ß"
-
-#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C/C++ °³¹ß ¶óÀ̺귯¸®, ÇÁ·Î±×·¥ ¹× Çì´õÆÄÀÏ"
@@ -17663,38 +17689,95 @@ msgstr "NFS ¼­¹ö, »ï¹Ù ¼­¹ö, ÇÁ¶ô½Ã ¼­¹ö, SSH ¼­¹ö"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Audio station"
-msgstr "¸ÖƼ¹Ìµð¾î ½ºÅ×À̼Ç"
+msgid "Set of tools to read and send mail and news and to browse the Web"
+msgstr "¸ÞÀÏ/´º½º¸¦ ÀÏ°í º¸³»¸ç À¥°Ë»öÀ» À§ÇÑ µµ±¸¸ðÀ½(pine, mutt, tin...)"
+
+#~ msgid "Internet connection & configuration"
+#~ msgstr "ÀÎÅÍ³Ý ¿¬°á & ¼³Á¤"
+
+#~ msgid "Configure the connection"
+#~ msgstr "¿¬°á ¼³Á¤"
+
+#~ msgid "Disconnect"
+#~ msgstr "¿¬°á ²÷±â"
+
+#~ msgid "Connect"
+#~ msgstr "¿¬°á"
+
+#~ msgid ""
+#~ "\n"
+#~ "You can reconfigure your connection."
+#~ msgstr ""
+#~ "\n"
+#~ "¿¬°áÀ» ´Ù½Ã ¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù."
+
+#~ msgid ""
+#~ "\n"
+#~ "You can connect to the Internet or reconfigure your connection."
+#~ msgstr ""
+#~ "\n"
+#~ "ÀÎÅͳݿ¡ ¿¬°áÇϰųª ¿¬°áÀ» Àç¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù."
+
+#~ msgid "You are not currently connected to the Internet."
+#~ msgstr "ÇöÀç ÀÎÅͳݿ¡ ¿¬°áµÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù."
+
+#~ msgid ""
+#~ "\n"
+#~ "You can disconnect or reconfigure your connection."
+#~ msgstr ""
+#~ "\n"
+#~ "¿¬°áÀ» ÇØÁ¦Çϰųª ´Ù½Ã ¼³Á¤ÇÒ ¼ö ÀÖ½À´Ï´Ù."
+
+#~ msgid "You are currently connected to the Internet."
+#~ msgstr "ÇöÀç ÀÎÅͳݿ¡ ¿¬°áµÇ¾î ÀÖ½À´Ï´Ù."
+
+#~ msgid "files sending by FTP"
+#~ msgstr "FTP·Î ÆÄÀÏ Àü¼Û"
+
+#~ msgid "Relaunch 'lilo'"
+#~ msgstr "¸±·Î Àç½ÇÇà"
+
+#~ msgid "Write %s"
+#~ msgstr "%s ±â·Ï"
+
+#~ msgid "Copy %s to %s"
+#~ msgstr "%s¸¦ %s·Î º¹»ç"
+
+#~ msgid "Backup %s to %s.old"
+#~ msgstr "%s¸¦ %s.old·Î ¹é¾÷"
+
+#~ msgid "ttf fonts conversion"
+#~ msgstr "ttf ÆùÆ® º¯È¯"
+
+#~ msgid "Fonts conversion"
+#~ msgstr "ÆùÆ® º¯È¯"
+
+#~ msgid "Author:"
+#~ msgstr "Á¦ÀÛÀÚ:"
-#: ../../share/compssUsers:999
#, fuzzy
-msgid "Sound playing/editing programs"
-msgstr "»ç¿îµå ¹× ºñµð¿À ¿¬ÁÖ/ÆíÁý ÇÁ·Î±×·¥"
+#~ msgid "Audio station"
+#~ msgstr "¸ÖƼ¹Ìµð¾î ½ºÅ×À̼Ç"
-#: ../../share/compssUsers:999
#, fuzzy
-msgid "Video station"
-msgstr "°ÔÀÓ ½ºÅ×À̼Ç"
+#~ msgid "Sound playing/editing programs"
+#~ msgstr "»ç¿îµå ¹× ºñµð¿À ¿¬ÁÖ/ÆíÁý ÇÁ·Î±×·¥"
-#: ../../share/compssUsers:999
#, fuzzy
-msgid "Video playing programs"
-msgstr "»ç¿îµå ¹× ºñµð¿À ¿¬ÁÖ/ÆíÁý ÇÁ·Î±×·¥"
+#~ msgid "Video station"
+#~ msgstr "°ÔÀÓ ½ºÅ×À̼Ç"
-#: ../../share/compssUsers:999
#, fuzzy
-msgid "Graphic station"
-msgstr "°ÔÀÓ ½ºÅ×À̼Ç"
+#~ msgid "Video playing programs"
+#~ msgstr "»ç¿îµå ¹× ºñµð¿À ¿¬ÁÖ/ÆíÁý ÇÁ·Î±×·¥"
-#: ../../share/compssUsers:999
#, fuzzy
-msgid "Graphics programs"
-msgstr "GIMP °°Àº ±×·¡ÇÈ ÇÁ·Î±×·¥"
+#~ msgid "Graphic station"
+#~ msgstr "°ÔÀÓ ½ºÅ×À̼Ç"
-#: ../../share/compssUsers:999
#, fuzzy
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr "¸ÞÀÏ/´º½º¸¦ ÀÏ°í º¸³»¸ç À¥°Ë»öÀ» À§ÇÑ µµ±¸¸ðÀ½(pine, mutt, tin...)"
+#~ msgid "Graphics programs"
+#~ msgstr "GIMP °°Àº ±×·¡ÇÈ ÇÁ·Î±×·¥"
#, fuzzy
#~ msgid "Printer sharing"
@@ -17774,12 +17857,10 @@ msgstr "¸ÞÀÏ/´º½º¸¦ ÀÏ°í º¸³»¸ç À¥°Ë»öÀ» À§ÇÑ µµ±¸¸ðÀ½(pine, mutt, tin...)"
#~ "button\n"
#~ "to change it if necessary.\n"
#~ "\n"
-#~ " * \"Keyboard\": check the current keyboard map configuration and click "
-#~ "on\n"
+#~ " * \"%s\": check the current keyboard map configuration and click on\n"
#~ "the button to change that if necessary.\n"
#~ "\n"
-#~ " * \"Country\": check the current country selection. If you are not in "
-#~ "this\n"
+#~ " * \"%s\": check the current country selection. If you are not in this\n"
#~ "country, click on the button and choose another one.\n"
#~ "\n"
#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
@@ -17944,9 +18025,6 @@ msgstr "¸ÞÀÏ/´º½º¸¦ ÀÏ°í º¸³»¸ç À¥°Ë»öÀ» À§ÇÑ µµ±¸¸ðÀ½(pine, mutt, tin...)"
#~ "¼ö ¾ø½À´Ï´Ù. ( 1024 ½Ç¸°´õ ÀÌÇÏ¿¡¼­¸¸ °¡´ÉÇÕ´Ï´Ù.\n"
#~ "LILO¸¦ »ç¿ëÇÑ´Ù°í ÇÏ´õ¶óµµ µ¿ÀÛÇÏÁö ¾Ê°í, LILO ÀÚü¸¦ »ç¿ëÇÒ¼öµµ ¾ø½À´Ï´Ù."
-#~ msgid "Upgrade"
-#~ msgstr "¾÷±×·¹À̵å"
-
#~ msgid "Do you want to configure another printer?"
#~ msgstr "¶Ç´Ù¸¥ ÇÁ¸°Å͸¦ ¼³Á¤ÇϽðڽÀ´Ï±î?"