summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/fileshareset
blob: 3da2143335c9beaa952b22894e0b346460cc1d1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
#!/usr/bin/perl -T
use strict;

########################################
# config files
$nfs_exports::default_options = '*(ro,all_squash,sync,no_subtree_check)';
$nfs_exports::conf_file = '/etc/exports';
$smb_exports::conf_file = '/etc/samba/smb.conf';
my $authorisation_file = '/etc/security/fileshare.conf';
my $authorisation_group = 'fileshare';


########################################
# fileshare utility $Id$
# Copyright (C) 2001-2008 Mandriva (pixel@mandriva.com)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


########################################
my $uid = $<;
my $username = getpwuid($uid);

########################################
# errors
my $usage =
"usage: fileshareset --add <dir>
       fileshareset --remove <dir>";

my $not_enabled =
qq(File sharing is not enabled.
To enable file sharing put 
"FILESHARING=yes" in $authorisation_file);
       
my $not_simple_enabled = 
qq(Simple file sharing is not enabled.
To enable simple file sharing put
"SHARINGMODE=simple" in $authorisation_file);

my $non_authorised =
qq(You are not authorised to use fileshare'ing
To grant you the rights:
- put "RESTRICT=no" in $authorisation_file
- or put user "$username" in group "$authorisation_group");
my $no_export_method = "can not export anything: no nfs, no smb";

my %exit_codes = reverse(
  1 => $non_authorised,
  2 => $usage,

# when adding
  3 => "already exported", 
  4 => "invalid mount point",

# when removing
  5 => "not exported",

  6 => $no_export_method,
  
  7 => $not_enabled,
  
  8 => $not_simple_enabled,

  255 => "various",
);

################################################################################
# correct PATH needed to call /etc/init.d/... ? seems not, but...
%ENV = ();#(PATH => '/bin:/sbin:/usr/bin:/usr/sbin');

my $modify = $0 =~ /fileshareset/;

authorisation::check($modify);

my @exports = (
	       -e $nfs_exports::conf_file ? nfs_exports::read() : (),
	       -e $smb_exports::conf_file ? smb_exports::read() : (),
	      );
@exports or error($no_export_method);

if ($modify) {
    my ($cmd, $dir) = @ARGV;
    $< = $>;
    @ARGV == 2 && ($cmd eq '--add' || $cmd eq '--remove') or error($usage);

    verify_mntpoint($dir);

    if ($cmd eq '--add') {
	my @errs = map { eval { $_->add($dir) }; $@ } @exports;
	grep { !$_ } @errs or error("already exported");
    } else {
	my @errs = map { eval { $_->remove($dir) }; $@ } @exports;
	grep { !$_ } @errs or error("not exported");
    }    
    foreach my $export (@exports) {
	$export->write;
	$export->update_server;
    }
}
my @mntpoints = grep { $_ } uniq(map { map { $_->{mntpoint} } @$_ } @exports);
print "$_\n" foreach grep { own($_) } @mntpoints;


sub own { $uid == 0 || (stat($_[0]))[4] == $uid }

sub verify_mntpoint {
    local ($_) = @_;
    my $ok = 1;
    $ok &&= m|^/|;
    $ok &&= !m|\Q/../|;
    $ok &&= !m|[\0\n\r]|;
    $ok &&= -d $_;
    $ok &&= own($_);
    $ok or error("invalid mount point");
}

sub error {
    my ($string) = @_;
    print STDERR "$string\n";
    exit($exit_codes{$string} || 255);
}
sub member { my $e = shift; foreach (@_) { $e eq $_ and return 1 } 0 }
sub uniq { my %l; $l{$_} = 1 foreach @_; grep { delete $l{$_} } @_ }


################################################################################
package authorisation;

my $F_lock;
sub read_conf {
    my ($exclusive_lock) = @_;
    open $F_lock, $authorisation_file; # do not care if it's missing
    flock($F_lock, $exclusive_lock ? 2 : 1) or die "can not lock";
    my %conf;
    foreach (<$F_lock>) {
	s/#.*//; # remove comments
	s/^\s+//; 
	s/\s+$//;
	/^$/ and next;
	my ($cmd, $value) = split('=', $_, 2);
	$conf{$cmd} = $value || warn qq(suspicious line "$_" in $authorisation_file\n);
    }
    # no close $F_lock, keep it locked
    \%conf
}

sub check {
    my ($exclusive_lock) = @_;
    my $conf = read_conf($exclusive_lock);

    if (lc($conf->{FILESHARING}) eq 'no') {
      ::error($not_enabled);
    } elsif (lc($conf->{SHARINGMODE}) eq 'advanced') {
      ::error($not_simple_enabled);
    } elsif ($conf->{FILESHAREGROUP}) {
      $authorisation_group = $conf->{FILESHAREGROUP};
    } elsif (lc($conf->{RESTRICT}) eq 'no') {
	# ok, access granted for everybody
    } else {
	my @l;
	while (@l = getgrent) {
	    last if $l[0] eq $authorisation_group;
	}
	::member($username, split(' ', $l[3])) or ::error($non_authorised);
    }
}

################################################################################
package exports;

sub find {
    my ($exports, $mntpoint) = @_;
    foreach (@$exports) {
	$_->{mntpoint} eq $mntpoint and return $_;
    }
    undef;
}

sub add {
    my ($exports, $mntpoint) = @_;
    find($exports, $mntpoint) and die 'add';
    push @$exports, my $e = { mntpoint => $mntpoint };
    $e;
}

sub remove {
    my ($exports, $mntpoint) = @_;
    my @l = grep { $_->{mntpoint} ne $mntpoint } @$exports;
    @l < @$exports or die 'remove';
    @$exports = @l;  
}


################################################################################
package nfs_exports;

use vars qw(@ISA $conf_file $default_options);
BEGIN { @ISA = 'exports' }

sub read() {
    my $file = $conf_file;
    open(my $F, $file) or return [];

    my ($prev_raw, $prev_line, @l);
    my $line_nb = 0;
    foreach my $raw (<$F>) {
	$line_nb++;
	local $_ = $raw;
	$raw .= "\n" if !/\n/;

	s/#.*//; # remove comments

	s/^\s+//; 
	s/\s+$//; # remove unuseful spaces to help regexps

	if (/^$/) {
	    # blank lines ignored
	    $prev_raw .= $raw;
	    next;
	}

	if (/\\$/) {
	    # line continue across lines
	    chop; # remove the backslash
	    $prev_line .= "$_ ";
	    $prev_raw .= $raw;
	    next;
	}
	my $line = $prev_line . $_;
	my $raw_line = $prev_raw . $raw;
	($prev_line, $prev_raw) = ('', '');

	my ($mntpoint, $options) = $line =~ /("[^"]*"|\S+)\s+(.*)/ or die "$file:$line_nb: bad line $line\n";

	# You can also specify spaces or any other unusual characters in the
	# export path name using a backslash followed by the character code as
	# 3 octal digits.
	$mntpoint =~ s/\\(\d{3})/chr(oct $1)/ge;

	# not accepting weird characters that would break the output
	$mntpoint =~ m/[\0\n\r]/ and die "i will not handle this";
	push @l, { mntpoint => $mntpoint, option => $options, raw => $raw_line };
    }
    bless \@l, 'nfs_exports';
}

sub write {
    my ($nfs_exports) = @_;
    foreach (@$nfs_exports) {
	if (!exists $_->{options}) {
	    $_->{options} = $default_options;
	}
	if (!exists $_->{raw}) {	    
	    my $mntpoint = $_->{mntpoint} =~ /\s/ ? qq("$_->{mntpoint}") : $_->{mntpoint};
	    $_->{raw} = sprintf("%s %s\n", $mntpoint, $_->{options});
	}
    }
    open(my $F, ">$conf_file") or die "can not write $conf_file";
    print $F $_->{raw} foreach @$nfs_exports;
}

sub update_server() {
    if (fork()) {
	system('/usr/sbin/exportfs', '-r');
	if (system('PATH=/bin:/sbin pidof rpc.mountd >/dev/null') != 0 ||
	    system('PATH=/bin:/sbin pidof nfsd >/dev/null') != 0) {
	    # trying to start the server...
	    system('/etc/init.d/portmap start') if system('/etc/init.d/portmap status >/dev/null') != 0;
	    system('/etc/init.d/nfs', $_) foreach 'stop', 'start';
	}
	exit 0;
    }
}

################################################################################
package smb_exports;

use vars qw(@ISA $conf_file);
BEGIN { @ISA = 'exports' }

sub read() {
    my ($s, @l);
    open(my $F, $conf_file);
    local $_;
    while (<$F>) {
	if (/^\s*\[.*\]/ || eof $F) {
	    #- first line in the category
	    my ($label) = $s =~ /^\s*\[(.*)\]/;
	    my ($mntpoint) = $s =~ /^\s*path\s*=\s*(.*)/m;
	    push @l, { mntpoint => $mntpoint, raw => $s, label => $label };
	    $s = '';
	}
	$s .= $_;
    }
    bless \@l, 'smb_exports';
}

sub write {
    my ($smb_exports) = @_;
    foreach (@$smb_exports) {
	if (!exists $_->{raw}) {
	    $_->{raw} = <<EOF;

[$_->{label}]
   path = $_->{mntpoint}
   comment = $_->{mntpoint}
   public = yes
   guest ok = yes
   writable = no
   wide links = no
EOF
	}
    }
    open(my $F, ">$conf_file") or die "can not write $conf_file";
    print $F $_->{raw} foreach @$smb_exports;
}

sub add {
    my ($exports, $mntpoint) = @_;
    my $e = $exports->exports::add($mntpoint);
    $e->{label} = name_mangle($mntpoint, map { $_->{label} } @$exports);
}

sub name_mangle {
    my ($input, @others) = @_;

    local $_ = $input;

    # 1. first only keep legal characters. "/" is also kept for the moment
    tr|a-z|A-Z|;
    s|[^A-Z0-9#\-_!/]|_|g; # "$" is allowed except at the end, remove it in any case
    
    # 2. removing non-interesting parts
    s|^/||;
    s|^home/||;
    s|_*/_*|/|g;
    s|_+|_|g;

    # 3. if size is too small (!), make it bigger
    $_ .= "_" while length($_) < 3;

    # 4. if size is too big, shorten it
    while (length > 12) {
	my ($s) = m|.*?/(.*)|;
	if (length($s) > 8 && !grep { /\Q$s/ } @others) {
	    # dropping leading directories when the resulting is still long and meaningful
	    $_ = $s;
	} else {
	    s|(.*)[0-9#\-_!/]|$1|
	      # inspired by "Christian Brolin" "Long names are doom" on comp.lang.functional
	      || s|(.+)[AEIOU]|$1|# allButFirstVowels
	      || s|(.*)(.)\2|$1$2| # adjacentDuplicates
	      || s|(.*).|$1|; # booh, :'-(
	}
    }

    # 5. remove "/"s still there
    s|/|_|g;

    # 6. resolving conflicts
    my $l = join("|", map { quotemeta } @others);
    my $conflicts = qr|^($l)$|;
    if (/$conflicts/) {
      A: while (1) {
	    for (my $nb = 1; length("$_$nb") <= 12; $nb++) {
		if ("$_$nb" !~ /$conflicts/) {
		    $_ = "$_$nb";
		    last A;
		}
	    }
	    $_ or die "can not find a unique name";
	    # can not find a unique name, dropping the last letter
	    s|(.*).|$1|;
	}
    }

    # 7. done
    $_;
}

sub update_server() {
    if (fork()) {
	system('/usr/bin/killall -HUP smbd 2>/dev/null');
	if (system('PATH=/bin:/sbin pidof smbd >/dev/null') != 0 ||
	    system('PATH=/bin:/sbin pidof nmbd >/dev/null') != 0) {
	    # trying to start the server...
	    my ($f) = grep { -f $_ } map { "/etc/init.d/$_" } 'smb', 'samba', 'rc.samba';
	    if ($f) {
		system($f, $_) foreach 'stop', 'start';
	    } else {
		print STDERR "Error: Can't find the samba init script \n";
	    }
	}
	exit 0;
    }
}
, 800x600 ·Õè 60 Hz, 640x480 ·Õè 72 Hz"
-#: ../Xconfigurator_consts.pm_.c:113
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 ·Õè 60 Hz, 800x600 ·Õè 72 Hz"
-#: ../Xconfigurator_consts.pm_.c:114
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "High Frequency SVGA ¢¹Ò´ 1024x768 ·Õè 70 Hz"
-#: ../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequency «Öè§ÊÒÁÒö¡Ó˹´¢¹Ò´ 1280x1024 ·Õè 60 Hz"
-#: ../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequency «Öè§ÊÒÁÒö¡Ó˹´¢¹Ò´ 1280x1024 ·Õè 74 Hz"
-#: ../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequency «Öè§ÊÒÁÒö¡Ó˹´¢¹Ò´ 1280x1024 ·Õè 76 Hz"
-#: ../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "¨ÍÀÒ¾·ÕèÊÒÁÒö¡Ó˹´ 1600x1200 ·Õè 70 Hz"
-#: ../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "¨ÍÀÒ¾·ÕèÊÒÁÒö¡Ó˹´ 1600x1200 ·Õè 76 Hz"
-#: ../diskdrake.pm_.c:16 ../diskdrake.pm_.c:370
+#: ../../any.pm_.c:17
+msgid "curly"
+msgstr ""
+
+#: ../../any.pm_.c:17
+#, fuzzy
+msgid "default"
+msgstr "Default"
+
+#. -PO: names (tie, curly...) have corresponding icons for kdm
+#: ../../any.pm_.c:17
+#, fuzzy
+msgid "tie"
+msgstr "áÍ礷տ"
+
+#: ../../any.pm_.c:18
+msgid "brunette"
+msgstr ""
+
+#: ../../any.pm_.c:18
+msgid "girl"
+msgstr ""
+
+#: ../../any.pm_.c:18
+msgid "woman-blond"
+msgstr ""
+
+#: ../../any.pm_.c:19
+#, fuzzy
+msgid "automagic"
+msgstr "¡Ó˹´¤èÒ IP ẺÍѵâ¹ÁѵÔ"
+
+#: ../../any.pm_.c:60
+msgid "First sector of boot partition"
+msgstr "à«ç¡àµÍÃìáá¢Í§ºÙµ¾ÒÃìµÔªÑè¹"
+
+#: ../../any.pm_.c:60
+msgid "First sector of drive (MBR)"
+msgstr "à«ç¡àµÍÃìáá¢Í§ä´ÃÇì (MBR)"
+
+#: ../../any.pm_.c:65
+msgid "LILO/grub Installation"
+msgstr "¡ÒõԴµÑé§ LILO/grub"
+
+#: ../../any.pm_.c:66
+msgid "Where do you want to install the bootloader?"
+msgstr "¤Ø³¨ÐµÔ´µÑ駺ٵâËÅ´à´ÍÃìäÇé·Õèä˹?"
+
+#: ../../any.pm_.c:73
+#, fuzzy
+msgid "None"
+msgstr "·ÓàÃÕºÃéÍÂáÅéÇ"
+
+#: ../../any.pm_.c:73
+#, fuzzy
+msgid "Which bootloader(s) do you want to use?"
+msgstr "¢éÍÁÙÅ»ÃÐàÀ·ã´·Õè¤Ø³µéͧ¡ÒÃà¾ÔèÁ"
+
+#: ../../any.pm_.c:84
+msgid "Boot device"
+msgstr "ÍØ»¡Ã³ìºÙµ"
+
+#: ../../any.pm_.c:85
+msgid "LBA (doesn't work on old BIOSes)"
+msgstr ""
+
+#: ../../any.pm_.c:86
+msgid "Compact"
+msgstr "ẺÍÑ´ (Compact)"
+
+#: ../../any.pm_.c:86
+msgid "compact"
+msgstr "ẺÍÑ´ (compact)"
+
+#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
+msgid "Delay before booting default image"
+msgstr "˹èǧàÇÅÒ¡è͹·Ó¡ÒúٵÍÔÁàÁ¨·Õèãªé"
+
+#: ../../any.pm_.c:88
+msgid "Video mode"
+msgstr "âËÁ´¢Í§¡ÒÃáÊ´§¼Å"
+
+#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
+#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+msgid "Password"
+msgstr "ÃËÑʼèÒ¹"
+
+#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:706
+#: ../../install_steps_interactive.pm_.c:812
+#: ../../standalone/adduserdrake_.c:43
+msgid "Password (again)"
+msgstr "ÃËÑʼèÒ¹ (ãÊèÍÕ¡¤ÃÑé§)"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "Restrict command line options"
+msgstr "ÍçÍ»ªÑ蹨Óà¾ÒзÕèãªé¡Ñº¤ÍÁÁÒ¹´ìäŹì"
+
+#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+msgid "restrict"
+msgstr "¨Óà¾ÒÐ"
+
+#: ../../any.pm_.c:98
+#, fuzzy
+msgid "Bootloader main options"
+msgstr "ÍêÍ»ªÑè¹ËÅÑ¡¢Í§ LILO"
+
+#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "ÍçÍ»ªÑè¹ ``ÍêÍ»ªÑ蹨Óà¾ÒзÕèãªé¡Ñº¤ÍÁÁÒ¹´ìäŹì'' ¨ÐµéͧãÊèÃËÑʼèÒ¹´éÇÂ"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "Please try again"
+msgstr "â»Ã´ÅͧÍÕ¡¤ÃÑé§"
+
+#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:719
+#: ../../install_steps_interactive.pm_.c:821
+#: ../../standalone/adduserdrake_.c:56
+msgid "The passwords do not match"
+msgstr "ÃËÑʼèÒ¹äÁèàËÁ×͹¡Ñ¹"
+
+#: ../../any.pm_.c:112
+#, fuzzy
+msgid ""
+"Here are the different entries.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"µèÍ仹Õéà»ç¹¢éÍÁÙÅã¹ LILO\n"
+"¤Ø³µéͧ¡ÒÃà¾ÔèÁ¢éÍÁÙÅËÃ×Íá¡é䢢éÍÁÙÅ·ÕèÁÕä´é"
+
+#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
+#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+msgid "Add"
+msgstr "à¾ÔèÁ"
+
+#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
+#: ../../standalone/adduserdrake_.c:36
+msgid "Done"
+msgstr "·ÓàÃÕºÃéÍÂáÅéÇ"
+
+#: ../../any.pm_.c:123
+msgid "Linux"
+msgstr "Åչء«ì"
+
+#: ../../any.pm_.c:123
+msgid "Other OS (windows...)"
+msgstr "Ãкº»¯ÔºÑµÔ¡ÒÃÍ×è¹æ (ÇÔ¹â´ÇÊì...)"
+
+#: ../../any.pm_.c:123
+msgid "Which type of entry do you want to add?"
+msgstr "¢éÍÁÙÅ»ÃÐàÀ·ã´·Õè¤Ø³µéͧ¡ÒÃà¾ÔèÁ"
+
+#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+msgid "Image"
+msgstr "Image"
+
+#: ../../any.pm_.c:143 ../../any.pm_.c:151
+#: ../../install_steps_interactive.pm_.c:859
+msgid "Root"
+msgstr "Root"
+
+#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+msgid "Append"
+msgstr "Append"
+
+#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+msgid "Initrd"
+msgstr "Initrd"
+
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+msgid "Read-write"
+msgstr "Read-write"
+
+#: ../../any.pm_.c:152
+msgid "Table"
+msgstr "Table"
+
+#: ../../any.pm_.c:153
+msgid "Unsafe"
+msgstr "Unsafe"
+
+#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+msgid "Label"
+msgstr "Label"
+
+#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+msgid "Default"
+msgstr "Default"
+
+#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
+#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
+#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
+#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:634 ../../printerdrake.pm_.c:272
+msgid "Ok"
+msgstr "µ¡Å§"
+
+#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+msgid "Remove entry"
+msgstr "ź¢éÍÁÙÅ"
+
+#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+msgid "Empty label not allowed"
+msgstr "äÁè͹حҵãËéÁÕËÑÇ¢éÍÇèÒ§"
+
+#: ../../any.pm_.c:167
+msgid "This label is already used"
+msgstr "ËÑÇ¢é͹Õé¶Ù¡ãªéä»àÃÕºÃéÍÂáÅéÇ"
+
+#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
msgid "Create"
msgstr "ÊÃéÒ§"
-#: ../diskdrake.pm_.c:17
+#: ../../diskdrake.pm_.c:19
msgid "Unmount"
msgstr "àÅÔ¡àÁéÒ·ììÃкºä¿Åì"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
msgid "Delete"
msgstr "ź"
-#: ../diskdrake.pm_.c:18
+#: ../../diskdrake.pm_.c:20
msgid "Format"
msgstr "¿ÍÃìáÁµ"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
msgid "Resize"
msgstr "à»ÅÕè¹¢¹Ò´"
-#: ../diskdrake.pm_.c:18 ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:414
+#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:466
msgid "Type"
msgstr "»ÃÐàÀ·"
-#: ../diskdrake.pm_.c:19 ../diskdrake.pm_.c:430
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
msgid "Mount point"
msgstr "¡Ó˹´¨Ø´àÁéÒ·ì"
-#: ../diskdrake.pm_.c:33
+#: ../../diskdrake.pm_.c:35
msgid "Write /etc/fstab"
msgstr "à¢Õ¹ŧ㹠/etc/fstab"
-#: ../diskdrake.pm_.c:34
+#: ../../diskdrake.pm_.c:36
msgid "Toggle to expert mode"
msgstr "»¡µÔ > ÊÓËÃѺ¼ÙéªÓ¹Ò­"
-#: ../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:37
msgid "Toggle to normal mode"
msgstr "ÊÓËÃѺ¼ÙéªÓ¹Ò­ > »¡µÔ"
-#: ../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:38
msgid "Restore from file"
msgstr "àÃÕ¡¤×¹¨Ò¡ä¿Åì"
-#: ../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:39
msgid "Save in file"
msgstr "ºÑ¹·Ö¡Å§ä¿Åì"
-#: ../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:40
msgid "Restore from floppy"
msgstr "àÃÕ¡¤×¹¨Ò¡á¼è¹¿ÅéÍ»»Õé"
-#: ../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:41
msgid "Save on floppy"
msgstr "ºÑ¹·Ö¡Å§á¼è¹¿ÅéÍ»»Õé"
-#: ../diskdrake.pm_.c:40 ../install_steps_interactive.pm_.c:618
-#: ../install_steps_interactive.pm_.c:748 ../standalone/adduserdrake_.c:34
-msgid "Done"
-msgstr "·ÓàÃÕºÃéÍÂáÅéÇ"
-
-#: ../diskdrake.pm_.c:43
+#: ../../diskdrake.pm_.c:45
msgid "Clear all"
msgstr "ÅéÒ§·Ñé§ËÁ´"
-#: ../diskdrake.pm_.c:44
+#: ../../diskdrake.pm_.c:46
msgid "Format all"
msgstr "¿ÍÃìáÁµ·Ñé§ËÁ´"
-#: ../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:47
msgid "Auto allocate"
msgstr "¡Ó˹´áººÍѵâ¹ÁѵÔ"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "All primary partitions are used"
msgstr "¾ÒÃìµÔªÑè¹áºº primary ¶Ù¡ãªé·Ñé§ËÁ´áÅéÇ"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid "I can't add any more partition"
msgstr "â»Ãá¡ÃÁäÁèÊÒÁÒöà¾ÔèÁ¾ÒÃìµÔªÑè¹ä´éÍÕ¡"
-#: ../diskdrake.pm_.c:48
+#: ../../diskdrake.pm_.c:50
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -468,138 +699,151 @@ msgstr ""
"ËÒ¡µéͧ¡ÒÃà¾ÔèÁ¾ÒÃìµÔªÑè¹ â»Ã´Åº¾ÒÃìµÔªÑè¹·Ôé§Ë¹Ö觾ÒÃìµÔªÑè¹à¾×èÍÊÃéÒ§\n"
"¾ÒÃìµÔªÑè¹áºº extended ä´é"
-#: ../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:53
#, fuzzy
msgid "Rescue partition table"
msgstr "ºÑ¹·Ö¡µÒÃÒ§¾ÒÃìµÔªÑè¹"
-#: ../diskdrake.pm_.c:52
+#: ../../diskdrake.pm_.c:54
msgid "Undo"
msgstr "¡àÅÔ¡"
-#: ../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:55
msgid "Write partition table"
msgstr "ºÑ¹·Ö¡µÒÃÒ§¾ÒÃìµÔªÑè¹"
-#: ../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:56
msgid "Reload"
msgstr "àÃÕ¡¤×¹ÍÕ¡¤ÃÑé§"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:96
+msgid "loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:109
msgid "Empty"
msgstr "ÇèÒ§"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Ext2"
msgstr "Ext2"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "FAT"
msgstr "FAT"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Other"
msgstr "Í×è¹æ"
-#: ../diskdrake.pm_.c:98
+#: ../../diskdrake.pm_.c:109
msgid "Swap"
msgstr "ÊÇÍ»"
-#: ../diskdrake.pm_.c:104
+#: ../../diskdrake.pm_.c:115
msgid "Filesystem types:"
msgstr "»ÃÐàÀ·¢Í§Ãкºä¿Åì:"
-#: ../diskdrake.pm_.c:113
+#: ../../diskdrake.pm_.c:124
msgid "Details"
msgstr "ÃÒÂÅÐàÍÕ´"
-#: ../diskdrake.pm_.c:127
+#: ../../diskdrake.pm_.c:138
msgid ""
-"You have one big fat partition\n"
-"(generally use by MicroSoft Dos/Windows).\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-#: ../diskdrake.pm_.c:132
+#: ../../diskdrake.pm_.c:143
msgid "Please make a backup of your data first"
msgstr ""
-#: ../diskdrake.pm_.c:132 ../diskdrake.pm_.c:146 ../diskdrake.pm_.c:458
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "â»Ã´ÍèÒ¹ÍÂèÒ§¶Õè¶éǹ!"
-#: ../diskdrake.pm_.c:146
-#, c-format
-msgid "After %s partition %s,"
-msgstr "ËÅѧ¨Ò¡ %s ¾ÒÃìµÔªÑè¹ %s,"
+#: ../../diskdrake.pm_.c:146
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
+msgstr ""
-#: ../diskdrake.pm_.c:146
-msgid "all data on this partition will be lost"
-msgstr "¢éÍÁÙÅ·Ñé§ËÁ´ã¹¾ÒÃìµÔªÑè¹¹Õé¨Ð¶Ù¡Åº·Ôé§"
+#: ../../diskdrake.pm_.c:160
+msgid "Be careful: this operation is dangerous."
+msgstr ""
-#: ../diskdrake.pm_.c:165 ../install_any.pm_.c:193 ../install_steps.pm_.c:71
-#: ../install_steps_interactive.pm_.c:37 ../standalone/diskdrake_.c:60
-#: ../standalone/rpmdrake_.c:294 ../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:330
+#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
+#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "¼Ô´¾ÅÒ´"
-#: ../diskdrake.pm_.c:189 ../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
msgid "Mount point: "
msgstr "¨Ø´àÁéÒ·ì: "
-#: ../diskdrake.pm_.c:190 ../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
msgid "Device: "
msgstr "ÍØ»¡Ã³ì: "
-#: ../diskdrake.pm_.c:191
+#: ../../diskdrake.pm_.c:223
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "ÍÑ¡ÉÃä´ÃÇìẺ´ÍÊ: %s (à»ç¹¡ÒäҴà´Ò)\n"
-#: ../diskdrake.pm_.c:192 ../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
msgid "Type: "
msgstr "»ÃÐàÀ·: "
-#: ../diskdrake.pm_.c:193
+#: ../../diskdrake.pm_.c:225
#, c-format
msgid "Start: sector %s\n"
msgstr "àÃÔèÁµé¹: à«ç¡àµÍÃì %s\n"
-#: ../diskdrake.pm_.c:194
+#: ../../diskdrake.pm_.c:226
#, c-format
-msgid "Size: %s MB"
-msgstr "¢¹Ò´: %s MB"
+msgid "Size: %d MB"
+msgstr "¢¹Ò´: %d MB"
-#: ../diskdrake.pm_.c:196
+#: ../../diskdrake.pm_.c:228
#, c-format
msgid ", %s sectors"
msgstr ", %s à«ç¡àµÍÃì"
-#: ../diskdrake.pm_.c:198
+#: ../../diskdrake.pm_.c:230
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "ä«ÅÔ¹à´ÍÃì %d à»ç¹ ä«ÅÔ¹à´ÍÃì %d\n"
-#: ../diskdrake.pm_.c:199
+#: ../../diskdrake.pm_.c:231
msgid "Formatted\n"
msgstr "¿ÍÃìáÁµ\n"
-#: ../diskdrake.pm_.c:200
+#: ../../diskdrake.pm_.c:232
msgid "Not formatted\n"
msgstr "ÂѧäÁèä´é¿ÍÃìáÁµ\n"
-#: ../diskdrake.pm_.c:201
+#: ../../diskdrake.pm_.c:233
msgid "Mounted\n"
msgstr "àÁéÒ·ì\n"
-#: ../diskdrake.pm_.c:202
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../diskdrake.pm_.c:203
+#: ../../diskdrake.pm_.c:235
+#, c-format
+msgid "Loopback file(s): %s\n"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:236
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -607,66 +851,80 @@ msgstr ""
"¾ÒÃìµÔªÑè¹·Õè¡Ó˹´ãËéºÙµ«Ö觡Ó˹´äÇéáÅéÇ\n"
" (ÊÓËÃѺºÙµ¢Í§ MS-DOS äÁèãªè lilo)\n"
-#: ../diskdrake.pm_.c:205
+#: ../../diskdrake.pm_.c:238
#, c-format
msgid "Level %s\n"
msgstr "ÃдѺ %s\n"
-#: ../diskdrake.pm_.c:206
+#: ../../diskdrake.pm_.c:239
#, c-format
msgid "Chunk size %s\n"
msgstr "¢¹Ò´¢Í§ Chunk %s\n"
-#: ../diskdrake.pm_.c:207
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID-disks %s\n"
msgstr "´ÔÊ¡ìẺ RAID %s\n"
-#: ../diskdrake.pm_.c:224
+#: ../../diskdrake.pm_.c:242
+#, c-format
+msgid "Loopback file name: %s"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:259
#, fuzzy
msgid "Please click on a partition"
msgstr "ÊÃéÒ§¾ÒÃìµÔªÑè¹ãËÁè"
-#: ../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Size: %d MB\n"
msgstr "¢¹Ò´: %d MB\n"
-#: ../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:265
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "¢éÍÁÙÅ·Ò§¡ÒÂÀÒ¾: %s ä«ÅÔ¹à´ÍÃì, %s ËÑÇÍèÒ¹, %s à«é¡àµÍÃì\n"
-#: ../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:267
+#, fuzzy, c-format
+msgid "Partition table type: %s\n"
+msgstr "¾ÒÃìµÔªÑè¹ÃÙ·"
+
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "on bus %d id %d\n"
msgstr "º¹ºÑÊ %d id %d\n"
-#: ../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:281
msgid "Mount"
msgstr "àÁéÒ·ì"
-#: ../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:282
msgid "Active"
msgstr "áÍ礷տ"
-#: ../diskdrake.pm_.c:247
+#: ../../diskdrake.pm_.c:283
msgid "Add to RAID"
msgstr "à¾ÔèÁãËé RAID"
-#: ../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:284
msgid "Remove from RAID"
msgstr "źÍÍ¡¨Ò¡ RAID"
-#: ../diskdrake.pm_.c:249
+#: ../../diskdrake.pm_.c:285
msgid "Modify RAID"
msgstr "á¡éä¢ RAID"
-#: ../diskdrake.pm_.c:256
+#: ../../diskdrake.pm_.c:286
+msgid "Use for loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:293
msgid "Choose action"
msgstr "àÅ×Í¡¡Ô¨¡ÃÃÁ"
-#: ../diskdrake.pm_.c:349
+#: ../../diskdrake.pm_.c:386
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -678,7 +936,7 @@ msgstr ""
"ËÃ×ͤسãªé LILO áÅÐâ»Ãá¡ÃÁäÁè·Ó§Ò¹ ËÃ×ͤسäÁèä´éãªé LILO áÅФسäÁèµéͧ¡Òà "
"/boot"
-#: ../diskdrake.pm_.c:353
+#: ../../diskdrake.pm_.c:390
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -690,146 +948,198 @@ msgstr ""
"¶éҤسµéͧ¡ÒÃãªé LILO à»ç¹ºÙµáÁà¹à¨ÍÃì â»Ã´ÃÐÁÑ´ÃÐÇѧ㹡ÒÃà¾ÔèÁ¾ÒÃìµÔªÑè¹ "
"/boot"
-#: ../diskdrake.pm_.c:370 ../diskdrake.pm_.c:372
+#: ../../diskdrake.pm_.c:396
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition if you want to use lilo or grub"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
#, c-format
msgid "Use ``%s'' instead"
msgstr ""
-#: ../diskdrake.pm_.c:375
+#: ../../diskdrake.pm_.c:418
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../diskdrake.pm_.c:376 ../diskdrake.pm_.c:409
-msgid "changing type of"
-msgstr "à»ÅÕè¹»ÃÐàÀ·¢Í§"
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#, fuzzy, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "¢éÍÁÙÅ·Ñé§ËÁ´ã¹¾ÒÃìµÔªÑè¹¹Õé¨Ð¶Ù¡Åº·Ôé§"
-#: ../diskdrake.pm_.c:388
+#: ../../diskdrake.pm_.c:431
msgid "Continue anyway?"
msgstr "·Ó§Ò¹µèÍËÃ×ÍäÁè?"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without saving"
msgstr "ÍÍ¡â´ÂäÁèµéͧºÑ¹·Ö¡"
-#: ../diskdrake.pm_.c:393
+#: ../../diskdrake.pm_.c:436
msgid "Quit without writing the partition table?"
msgstr "ÍÍ¡â´ÂäÁèµéͧà¢Õ¹µÒÃÒ§¾ÒÃìµÔªÑè¹"
-#: ../diskdrake.pm_.c:412
+#: ../../diskdrake.pm_.c:464
msgid "Change partition type"
msgstr "à»ÅÕè¹»ÃÐàÀ·¾ÒÃìµÔªÑè¹"
-#: ../diskdrake.pm_.c:413
+#: ../../diskdrake.pm_.c:465
msgid "Which partition type do you want?"
msgstr "»ÃÐàÀ·¢Í§¾ÒÃìµÔªÑè¹ä˹·Õè¤Ø³µéͧ¡ÒÃ"
-#: ../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:483
+#, fuzzy, c-format
+msgid "Where do you want to mount loopback file %s?"
+msgstr "¤Ø³µéͧ¡ÒÃàÁéÒ·ìÍØ»¡Ã³ì %s äÇé·Õèã´?"
+
+#: ../../diskdrake.pm_.c:484
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "¤Ø³µéͧ¡ÒÃàÁéÒ·ìÍØ»¡Ã³ì %s äÇé·Õèã´?"
-#: ../diskdrake.pm_.c:451
-msgid "formatting"
-msgstr "¿ÍÃìáÁµ"
+#: ../../diskdrake.pm_.c:489
+msgid ""
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:508
+#, fuzzy, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "¢éÍÁÙÅ·Ñé§ËÁ´ã¹¾ÒÃìµÔªÑè¹¹Õé¨Ð¶Ù¡Åº·Ôé§"
-#: ../diskdrake.pm_.c:453
+#: ../../diskdrake.pm_.c:510
msgid "Formatting"
msgstr "¿ÍÃìáÁµ"
-#: ../diskdrake.pm_.c:453 ../install_steps_interactive.pm_.c:221
+#: ../../diskdrake.pm_.c:511
+#, fuzzy, c-format
+msgid "Formatting loopback file %s"
+msgstr "¿ÍÃìáÁµ¾ÒÃìµÔªÑè¹ %s"
+
+#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
#, c-format
msgid "Formatting partition %s"
msgstr "¿ÍÃìáÁµ¾ÒÃìµÔªÑè¹ %s"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "After formatting all partitions,"
msgstr "ËÅѧ¨Ò¡¿ÍÃìáÁµ·Ø¡¾ÒÃìµÔªÑè¹"
-#: ../diskdrake.pm_.c:458
+#: ../../diskdrake.pm_.c:517
msgid "all data on these partitions will be lost"
msgstr "¢éÍÁÙÅ·Ñé§ËÁ´ã¹¾ÒÃìµÔªÑ蹨ж١ź·Ôé§"
-#: ../diskdrake.pm_.c:468
+#: ../../diskdrake.pm_.c:527
msgid "Move"
msgstr "ÂéÒÂ"
-#: ../diskdrake.pm_.c:469
-msgid "Which disk do you want to move to?"
+#: ../../diskdrake.pm_.c:528
+msgid "Which disk do you want to move it to?"
msgstr "¤Ø³µéͧ¡ÒèÐÂéÒÂä»´ÔÊ¡ìä˹"
-#: ../diskdrake.pm_.c:473
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "à«ç¡àµÍÃì"
-#: ../diskdrake.pm_.c:474
-msgid "Which sector do you want to move to?"
+#: ../../diskdrake.pm_.c:533
+msgid "Which sector do you want to move it to?"
msgstr "¤Ø³µéͧ¡ÒÃÂéÒÂä»à«ç¡àµÍÃìä˹"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "ÂéÒÂ"
-#: ../diskdrake.pm_.c:477
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "ÂéÒ¾ÒÃìµÔªÑè¹..."
-#: ../diskdrake.pm_.c:487
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "µÒÃÒ§¾ÒÃìµÔªÑ蹢ͧä´Ã¿ì %s ¨Ð¶Ù¡ºÑ¹·Ö¡Å§ä»ã¹´ÔÊ¡ì"
-#: ../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "¤Ø³¨Ðµéͧ·Ó¡ÒÃÃÕºÙµÃкº¡è͹·Õè¨Ð·Ó¡ÒÃá¡éä¢"
-#: ../diskdrake.pm_.c:510 ../install_steps_gtk.pm_.c:255
-msgid "Computing fat filesystem bounds"
+#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:208
+msgid "Computing FAT filesystem bounds"
msgstr "¤Ó¹Ç³¢Íºà¢µ¢Í§Ãкºä¿Åì"
-#: ../diskdrake.pm_.c:510 ../diskdrake.pm_.c:555
-#: ../install_steps_gtk.pm_.c:255
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
+#: ../../install_steps_gtk.pm_.c:208
msgid "Resizing"
msgstr "»ÃѺ¢¹Ò´"
-#: ../diskdrake.pm_.c:524
-msgid "resizing"
-msgstr "»ÃѺ¢¹Ò´"
+#: ../../diskdrake.pm_.c:585
+#, fuzzy
+msgid "All data on this partition should be backed-up"
+msgstr "¢éÍÁÙÅ·Ñé§ËÁ´ã¹¾ÒÃìµÔªÑè¹¹Õé¨Ð¶Ù¡Åº·Ôé§"
-#: ../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:587
+#, fuzzy, c-format
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "¢éÍÁÙÅ·Ñé§ËÁ´ã¹¾ÒÃìµÔªÑè¹¹Õé¨Ð¶Ù¡Åº·Ôé§"
+
+#: ../../diskdrake.pm_.c:597
msgid "Choose the new size"
msgstr "àÅ×Í¡¢¹Ò´ãËÁè"
-#: ../diskdrake.pm_.c:534 ../install_steps_graphical.pm_.c:287
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:317
-#: ../install_steps_gtk.pm_.c:361
+#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
msgid "MB"
msgstr "MB"
-#: ../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:652
msgid "Create a new partition"
msgstr "ÊÃéÒ§¾ÒÃìµÔªÑè¹ãËÁè"
-#: ../diskdrake.pm_.c:603
+#: ../../diskdrake.pm_.c:672
msgid "Start sector: "
msgstr "àÃÔèÁà«ç¡àµÍÃì: "
-#: ../diskdrake.pm_.c:606
+#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
msgid "Size in MB: "
msgstr "¢¹Ò´à»ç¹ MB: "
-#: ../diskdrake.pm_.c:609
+#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
msgid "Filesystem type: "
msgstr "»ÃÐàÀ·¢Í§Ãкºä¿Åì: "
-#: ../diskdrake.pm_.c:611
+#: ../../diskdrake.pm_.c:682
msgid "Preference: "
msgstr "¢éÍ¡Ó˹´: "
-#: ../diskdrake.pm_.c:655 ../diskdrake.pm_.c:671
+#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+msgid "This partition can't be used for loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:739
+msgid "Loopback"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:749
+msgid "Loopback file name: "
+msgstr ""
+
+#: ../../diskdrake.pm_.c:775
+msgid "File already used by another loopback, choose another one"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:776
+#, fuzzy
+msgid "File already exists. Use it?"
+msgstr "ÁÕ¢éÍÁÙÅ %s ÍÂÙèáÅéÇ"
+
+#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
msgid "Select file"
msgstr "àÅ×Í¡ä¿Åì"
-#: ../diskdrake.pm_.c:664
+#: ../../diskdrake.pm_.c:807
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -837,11 +1147,11 @@ msgstr ""
"¾ÒÃìµÔªÑè¹áºç¤ÍѾäÁèÁÕ¢¹Ò´à·èҡѹ\n"
"µéͧ¡Ò÷ӵèÍËÃ×ÍäÁè?"
-#: ../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:815
msgid "Warning"
msgstr "¤Óàµ×͹"
-#: ../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:816
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -849,68 +1159,77 @@ msgstr ""
"¡ÃسÒãÊèá¼è¹¿ÅéÍ»»Õéã¹ä´ÃÇì\n"
"¢éÍÁÙÅ·Ñé§ËÁ´º¹á¼è¹¿ÅéÍ»»Õé¨Ð¶Ù¡Åº"
-#: ../diskdrake.pm_.c:687
+#: ../../diskdrake.pm_.c:830
msgid "Trying to rescue partition table"
msgstr "¡ÓÅѧ¾ÂÒÂÒÁ¡ÙéµÒÃÒ§¾ÒÃìµÔªÑ蹤׹"
-#: ../diskdrake.pm_.c:698
+#: ../../diskdrake.pm_.c:841
msgid "device"
msgstr "ÍØ»¡Ã³ì"
-#: ../diskdrake.pm_.c:699
+#: ../../diskdrake.pm_.c:842
msgid "level"
msgstr "ÃдѺ"
-#: ../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:843
msgid "chunk size"
msgstr "¢¹Ò´¢Í§ chunk"
-#: ../diskdrake.pm_.c:712
+#: ../../diskdrake.pm_.c:855
msgid "Choose an existing RAID to add to"
msgstr "àÅ×Í¡ RAID à¾×èÍà¾ÔèÁà¢éÒä»"
-#: ../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:856
msgid "new"
msgstr "ãËÁè"
-#: ../fs.pm_.c:67 ../fs.pm_.c:73
+#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
#, c-format
msgid "%s formatting of %s failed"
msgstr "¡ÓÅѧ¿ÍÃìáÁµ %s ¢Í§ %s ·ÕèÁջѭËÒ"
-#: ../fs.pm_.c:93
-#, c-format
-msgid "don't know how to format %s in type %s"
+#: ../../fs.pm_.c:129
+#, fuzzy, c-format
+msgid "I don't know how to format %s in type %s"
msgstr "äÁè·ÃÒºÇèҨпÍÃìáÁµ %s ãËéà»ç¹»ÃÐàÀ· %s ä´éÍÂèÒ§äÃ"
-#: ../fs.pm_.c:106
+#: ../../fs.pm_.c:186
msgid "nfs mount failed"
msgstr "¡ÒÃàÁéÒ·ìÃкºä¿Åì nfs ÅéÁàËÅÇ"
-#: ../fs.pm_.c:123
+#: ../../fs.pm_.c:209
msgid "mount failed: "
msgstr "¡ÒÃàÁéÒ·ìÅéÁàËÅÇ: "
-#: ../fs.pm_.c:134
+#: ../../fs.pm_.c:220
#, c-format
msgid "error unmounting %s: %s"
msgstr "¼Ô´¾ÅҴ¡àÅÔ¡¡ÒÃàÁéÒ·ì %s: %s"
-#: ../fsedit.pm_.c:219
+#: ../../fsedit.pm_.c:250
msgid "Mount points must begin with a leading /"
msgstr "¨Ø´àÁéÒ·ì¨ÐµéͧàÃÔèÁ´éÇ /"
-#: ../fsedit.pm_.c:222
-#, c-format
-msgid "There is already a partition with mount point %s"
+#: ../../fsedit.pm_.c:253
+#, fuzzy, c-format
+msgid "There is already a partition with mount point %s\n"
msgstr "ÁÕ¾ÒÃìµÔªÑè¹·Õèà»ç¹¨Ø´àÁéÒ·ì·Õè %s àÃÕºÃéÍÂáÅéÇ"
-#: ../fsedit.pm_.c:306
+#: ../../fsedit.pm_.c:261
+#, c-format
+msgid "Circular mounts %s\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:273
+msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:355
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "à¡Ô´¢éͼԴ¾ÅҴ㹡ÒÃà»Ô´ %s ÊÓËÃѺ¡ÒÃà¢Õ¹: %s"
-#: ../fsedit.pm_.c:388
+#: ../../fsedit.pm_.c:437
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -918,74 +1237,135 @@ msgstr ""
"à¡Ô´¢éͼԴ¾ÅÒ´¢Öé¹ - äÁ辺ÍØ»¡Ã³ì·Õè¶Ù¡µéͧà¾×èͨÐÊÃéÒ§Ãкºä¿ÅìãËÁè "
"â»Ã´µÃǨÊͺÎÒÃì´áÇÃì¢Í§·èÒ¹à¾×èÍá¡é䢻ѭËÒ¹Õé"
-#: ../fsedit.pm_.c:403
+#: ../../fsedit.pm_.c:452
msgid "You don't have any partitions!"
msgstr "¤Ø³ÂѧäÁèä´éáºè§¾ÒÃìµÔªÑè¹!"
-#: ../help.pm_.c:7
+#: ../../help.pm_.c:7
msgid "Choose preferred language for install and system usage."
msgstr "àÅ×Í¡ÀÒÉÒ·Õèµéͧ¡ÒÃ㹡ÒõԴµÑé§áÅÐãªé§Ò¹¢Í§Ãкº"
-#: ../help.pm_.c:10
+#: ../../help.pm_.c:10
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "àÅ×Í¡ÃٻẺ¢Í§¤ÕÂìºÍÃì´µÒÁÃÒ¡ÒâéÒ§µé¹"
-#: ../help.pm_.c:13
+#: ../../help.pm_.c:13
msgid ""
"Choose \"Install\" if there are no previous versions of Linux\n"
"installed, or if you wish to use multiple distributions or versions.\n"
"\n"
+"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
+"Linux:\n"
+"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
+"2000\n"
+"or 7.0 (Air).\n"
+"\n"
+"\n"
+"Select:\n"
+"\n"
+" - Automated (recommended): If you have never installed Linux before, "
+"choose this. NOTE:\n"
+" networking will not be configured during installation, use "
+"\"LinuxConf\"\n"
+" to configure it after the install completes.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake\n"
-"Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1\n"
-"(Helios) or Gold 2000."
+" - Customized: If you are familiar enough with GNU/Linux, you may then "
+"choose\n"
+" the primary usage for your machine. See below for details.\n"
+"\n"
+" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+" perform a highly customized installation. As for a \"Customized\"\n"
+" installation class, you will be able to select the usage for your "
+"system.\n"
+" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+"DOING!\n"
msgstr ""
"àÅ×Í¡ \"µÔ´µÑé§\" ¶éÒËÒ¡¤Ø³äÁèä´éµÔ´µÑé§Åչء«ìàÇÍÃìªÑè¹à´ÔÁ\n"
"ËÃ×͵éͧ¡ÒõԴµÑé§ËÅÒ´ÔʵÃÔºÔǪÑè¹ (ËÃ×ÍËÅÒÂàÇÍÃìªÑè¹)\n"
"\n"
-"\n"
"àÅ×Í¡ \"ÍѾà¡Ã´\" ¶éҤسµéͧ¡ÒÃÍѾവàÇÍÃìªÑ蹢ͧáÁ¹à´Ã¡Åչء«ì:\n"
"5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios) ËÃ×Í Gold 2000."
-
-#: ../help.pm_.c:22
-msgid ""
-"Select:\n"
+"6.1 (Helios), Gold 2000 ËÃ×Í 7.0 (Air).\n"
"\n"
-" - Recommended: If you have never installed Linux before.\n"
+"àÅ×Í¡:\n"
+"\n"
+" - Automated (Ẻá¹Ð¹Ó): (¢éÍàÅ×Í¡á¹Ð¹Ó) ¶éҤسäÁèà¤ÂµÔ´µÑé§Åչء«ìÁÒ¡è͹\n"
"\n"
+" - Ẻ»ÃѺá¡éä´é: ¢éÍàÅ×Í¡·Õèá¡éä¢ä´éX ¶éҤس¤Øé¹à¤Â¡ÑºÅչء«ì´ÕÍÂÙèáÅéÇ\n"
+" ¤Ø³ÍÒ¨µéͧ¡ÒÃàÅ×Í¡¡ÒõԴµÑé§ÃкºÃÐËÇèÒ§Ãкº·ÑèÇä», "
+"ÃкºÊÓËÃѺ¾Ñ²¹Ò«Í¿·ìáÇÃì\n"
+" ËÃ×ÍẺà«ÔÃì¿àÇÍÃì ãËéàÅ×Í¡ \"»¡µÔ\" ÊÓËÃѺµÔ´µÑ駵ÒÁ»¡µÔŧ㹤ÍÁ¾ÔÇàµÍÃì\n"
+" ¤Ø³ÍÒ¨àÅ×Í¡ \"¾Ñ²¹Ò«Í¿·ìáÇÃì\" "
+"¶éҤسµéͧ¡ÒÃãËé¤ÍÁ¾ÔÇàµÍÃì¢Í§¤Ø³ÊÓËÃѺ¡Ò÷ӧҹ\n"
+" Ẻ¡ÒþѲ¹Ò«Í¿·ìáÇÃì ËÃ×ÍàÅ×Í¡ \"à«ÔÿìàÇÍÃì\" ¶éҤسµéͧ¡ÒÃ\n"
+" µÔ´µÑ駫Ϳ·ìáÇÃìÊÓËÃѺà«ÔÃì¿àÇÍÃì·ÑèÇæä» (àªè¹àÁÅÅì ¡ÒþÔÁ¾ì...)\n"
"\n"
-" - Customized: If you are familiar with Linux, you will be able to \n"
-"select the usage for the installed system between normal, development or\n"
-"server. Choose \"Normal\" for a general purpose installation of your\n"
-"computer. You may choose \"Development\" if you will be using the computer\n"
-"primarily for software development, or choose \"Server\" if you wish to\n"
-"install a general purpose server (for mail, printing...).\n"
+" - Ẻ¼ÙéàªÕèÂǪÒ: (ÊÓËÃѺ¼ÙéªÓ¹Ò­áÅéÇ) ¶éҤسãªé§Ò¹ GNU/Linux "
+"ä´éÍÂèÒ§¤Åèͧá¤ÅèÇ\n"
+" áÅеéͧ¡ÒõԴµÑé§áººàÅ×Í¡´éǵ¹àͧ ¡ÒõԴµÑé§áºº¹Õé¨ÐàËÁÒÐÊÁ·ÕèÊØ´\n"
+" ¤Ø³ÂѧÊÒÁÒö¨ÐàÅ×Í¡ãªé§Ò¹Ãкº·Õè¤Ø³µÔ´µÑé§áºº \"Ẻ»ÃѺá¡éä´é\"ä´é´éÇÂ\n"
+
+#: ../../help.pm_.c:37
+msgid ""
+"Select:\n"
"\n"
+" - Customized: If you are familiar enough with GNU/Linux, you may then "
+"choose\n"
+" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: If you are fluent with GNU/Linux and want to perform\n"
-"a highly customized installation, this Install Class is for you. You will\n"
-"be able to select the usage of your installed system as for \"Customized\"."
+" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+" perform a highly customized installation. As for a \"Customized\"\n"
+" installation class, you will be able to select the usage for your "
+"system.\n"
+" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+"DOING!\n"
msgstr ""
"àÅ×Í¡:\n"
"\n"
-" - Recommended: (¢éÍàÅ×Í¡á¹Ð¹Ó) ¶éҤسäÁèà¤ÂµÔ´µÑé§Åչء«ìÁÒ¡è͹\n"
-"\n"
"\n"
-" - Customized: (¢éÍàÅ×Í¡·Õèá¡éä¢ä´éX ¶éҤس¤Øé¹à¤Â¡ÑºÅչء«ì´ÕÍÂÙèáÅéÇ\n"
-"¤Ø³ÍÒ¨µéͧ¡ÒÃàÅ×Í¡¡ÒõԴµÑé§ÃкºÃÐËÇèÒ§Ãкº·ÑèÇä», ÃкºÊÓËÃѺ¾Ñ²¹Ò«Í¿·ìáÇÃì\n"
-"ËÃ×ÍẺà«ÔÃì¿àÇÍÃì ãËéàÅ×Í¡ \"»¡µÔ\" ÊÓËÃѺµÔ´µÑ駵ÒÁ»¡µÔŧ㹤ÍÁ¾ÔÇàµÍÃì\n"
-"¤Ø³ÍÒ¨àÅ×Í¡ \"¾Ñ²¹Ò«Í¿·ìáÇÃì\" "
+" - Ẻ»ÃѺá¡éä´é: ¢éÍàÅ×Í¡·Õèá¡éä¢ä´éX ¶éҤس¤Øé¹à¤Â¡ÑºÅչء«ì´ÕÍÂÙèáÅéÇ\n"
+" ¤Ø³ÍÒ¨µéͧ¡ÒÃàÅ×Í¡¡ÒõԴµÑé§ÃкºÃÐËÇèÒ§Ãкº·ÑèÇä», "
+"ÃкºÊÓËÃѺ¾Ñ²¹Ò«Í¿·ìáÇÃì\n"
+" ËÃ×ÍẺà«ÔÃì¿àÇÍÃì ãËéàÅ×Í¡ \"»¡µÔ\" ÊÓËÃѺµÔ´µÑ駵ÒÁ»¡µÔŧ㹤ÍÁ¾ÔÇàµÍÃì\n"
+" ¤Ø³ÍÒ¨àÅ×Í¡ \"¾Ñ²¹Ò«Í¿·ìáÇÃì\" "
"¶éҤسµéͧ¡ÒÃãËé¤ÍÁ¾ÔÇàµÍÃì¢Í§¤Ø³ÊÓËÃѺ¡Ò÷ӧҹ\n"
-"Ẻ¡ÒþѲ¹Ò«Í¿·ìáÇÃì ËÃ×ÍàÅ×Í¡ \"à«ÔÿìàÇÍÃì\" ¶éҤسµéͧ¡ÒÃ\n"
-"µÔ´µÑ駫Ϳ·ìáÇÃìÊÓËÃѺà«ÔÃì¿àÇÍÃì·ÑèÇæä» (àªè¹àÁÅÅì ¡ÒþÔÁ¾ì...)\n"
+" Ẻ¡ÒþѲ¹Ò«Í¿·ìáÇÃì ËÃ×ÍàÅ×Í¡ \"à«ÔÿìàÇÍÃì\" ¶éҤسµéͧ¡ÒÃ\n"
+" µÔ´µÑ駫Ϳ·ìáÇÃìÊÓËÃѺà«ÔÃì¿àÇÍÃì·ÑèÇæä» (àªè¹àÁÅÅì ¡ÒþÔÁ¾ì...)\n"
"\n"
"\n"
-" - Expert: (ÊÓËÃѺ¼ÙéªÓ¹Ò­áÅéÇ) ¶éҤسãªé§Ò¹ GNU/Linux ä´éÍÂèÒ§¤Åèͧá¤ÅèÇ\n"
-"áÅеéͧ¡ÒõԴµÑé§áººàÅ×Í¡´éǵ¹àͧ ¡ÒõԴµÑé§áºº¹Õé¨ÐàËÁÒÐÊÁ·ÕèÊØ´\n"
-"¤Ø³ÂѧÊÒÁÒö¨ÐàÅ×Í¡ãªé§Ò¹Ãкº·Õè¤Ø³µÔ´µÑé§áºº \"Ẻ»ÃѺá¡éä´é\"ä´é´éÇÂ"
+" - Ẻ¼ÙéàªÕèÂǪÒ: (ÊÓËÃѺ¼ÙéªÓ¹Ò­áÅéÇ) ¶éҤسãªé§Ò¹ GNU/Linux "
+"ä´éÍÂèÒ§¤Åèͧá¤ÅèÇ\n"
+" áÅеéͧ¡ÒõԴµÑé§áººàÅ×Í¡´éǵ¹àͧ ¡ÒõԴµÑé§áºº¹Õé¨ÐàËÁÒÐÊÁ·ÕèÊØ´\n"
+" ¤Ø³ÂѧÊÒÁÒö¨ÐàÅ×Í¡ãªé§Ò¹Ãкº·Õè¤Ø³µÔ´µÑé§áºº \"Ẻ»ÃѺá¡éä´é\"ä´é´éÇÂ\n"
-#: ../help.pm_.c:40
+#: ../../help.pm_.c:49
+msgid ""
+"The different choices for your machine's usage (provided, hence, that you "
+"have\n"
+"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
+"following:\n"
+"\n"
+" - Normal: choose this if you intend to use your machine primarily for\n"
+" everyday use (office work, graphics manipulation and so on). Do not\n"
+" expect any compiler, development utility et al. installed.\n"
+"\n"
+" - Development: as its name says. Choose this if you intend to use your\n"
+" machine primarily for software development. You will then have a "
+"complete\n"
+" collection of software installed in order to compile, debug and format\n"
+" source code, or create software packages.\n"
+"\n"
+" - Server: choose this if the machine which you're installing "
+"Linux-Mandrake\n"
+" on is intended to be used as a server. Either a file server (NFS or "
+"SMB),\n"
+" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
+" printing), an authentication server (NIS), a database server and so on. "
+"As\n"
+" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+msgstr ""
+
+#: ../../help.pm_.c:70
msgid ""
"DrakX will attempt at first to look for one or more PCI\n"
"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
@@ -1029,7 +1409,8 @@ msgstr ""
"㹤ÙèÁ×͵ԴµÑé§áÅÐá¹Ð¹Ó¡ÒÃãªé§Ò¹àº×éͧµé¹ µèÍ仹Õéà»ç¹ option ·Õè¤Ø³\n"
"¨ÐµéͧãÊèãËé¡Ñºä´ÃàÇÍÃì"
-#: ../help.pm_.c:64
+#: ../../help.pm_.c:94
+#, fuzzy
msgid ""
"At this point, you may choose what partition(s) to use to install\n"
"your Linux-Mandrake system if they have been already defined (from a\n"
@@ -1054,8 +1435,19 @@ msgid ""
"\n"
"Because the effects of this process are usually irreversible, partitioning\n"
"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it need not be. Consult the documentation\n"
-"and take your time before proceeding."
+"simplifies the process so that it must not be. Consult the documentation\n"
+"and take your time before proceeding.\n"
+"\n"
+"\n"
+"You can reach any option using the keyboard: navigate through the "
+"partitions\n"
+"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"\n"
+"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+"- Ctrl-d to delete a partition\n"
+"\n"
+"- Ctrl-m to set the mount point\n"
msgstr ""
"µÍ¹¹Õé¤Ø³ÊÒÁÒöàÅ×Í¡¾ÒÃìµÔªÑè¹·Õè¨Ð·Ó¡ÒõԴµÑé§ Linux-Mandrake «Ö觵éͧ\n"
"à»ç¹¾ÒÃìµÔªÑè¹·Õè¤Ø³ä´é¡Ó˹´äÇéáÅéÇ (¨Ò¡¡ÒõԴµÑé§Åչء«ìÁÒ¡è͹ ËÃ×Í\n"
@@ -1082,7 +1474,7 @@ msgstr ""
"¡Ò÷ӤÇÒÁà¢éÒ㨠¤Ø³ÊÒÁÒöãªé DiskDrake 㹡ÒêèÇ·ӡÒÃáºè§¾ÒÃìµÔªÑè¹\n"
"â»Ã´ÈÖ¡ÉÒ¤ÙèÁ×ÍáÅзӤÇÒÁà¢éÒ㨡è͹ãªé§Ò¹"
-#: ../help.pm_.c:90
+#: ../../help.pm_.c:131
msgid ""
"Any partitions that have been newly defined must be formatted for\n"
"use (formatting meaning creating a filesystem). At this time, you may\n"
@@ -1100,39 +1492,30 @@ msgstr ""
"à¾ÃÒкҧ¾ÒÃìµÔªÑè¹ÍÒ¨ºÃèآéÍÁÙÅ·Õè¤Ø³µéͧ¡ÒÃãªé§Ò¹ÀÒÂËÅѧ ÍÂèÒ§àªè¹\n"
"¾ÒÃìµÔªÑè¹·Õèà¡çº¢éÍÁÙŢͧä´àÃç¡·ÍÃÕ /home áÅÐ /usr/local à»ç¹µé¹"
-#: ../help.pm_.c:98
+#: ../../help.pm_.c:139
msgid ""
-"You may now select the packages you wish to install.\n"
-"\n"
-"\n"
-"First you can select group of package to install or upgrade. After that\n"
-"you can select more packages according to the total size you wish to\n"
-"select.\n"
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
"\n"
-"\n"
-"If you are in expert mode, you can select packages individually.\n"
-"Please note that some packages require the installation of others.\n"
-"These are referred to as package dependencies. The packages you select,\n"
-"and the packages they require will be automatically selected for\n"
-"install. It is impossible to install a package without installing all\n"
-"of its dependencies."
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed "
+"onto\n"
+"the installation of all selected groups but will drop some packages of "
+"lesser\n"
+"interest. At the bottom of the list you can select the option\n"
+"\"Individual package selection\"; in this case you will have to browse\n"
+"through more than 1000 packages..."
+msgstr ""
+
+#: ../../help.pm_.c:150
+msgid ""
+"If you have all the CDs in the list above, 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 ""
-"µÍ¹¹Õé¤Ø³ÊÒÁÒöàÅ×Í¡á¾ç¤à¡ç¨·Õè¤Ø³µéͧ¡ÒõԴµÑé§ä´é\n"
-"\n"
-"\n"
-"¡è͹Í×蹤سÊÒÁÒöàÅ×Í¡¢¹Ò´¢Í§Ãкº·Õèµéͧ¡ÒõԴµÑé§ áÅÐâ»Ãá¡ÃÁ¨Ð·Ó¡ÒÃàÅ×Í¡\n"
-"á¾ç¤à¡ç¨áººÍѵâ¹ÁѵÔâ´Â´Ù¨Ò¡¢¹Ò´·Õè¤Ø³àÅ×Í¡ ËÅѧ¨Ò¡¹Ñ鹤سÊÒÁÒöàÅ×Í¡\n"
-"á¾ç¤à¡ç¨à¾ÔèÁàµÔÁµÒÁ¡ÅØèÁ ËÃ×ͤÅÔé¡ Ok à¾×èÍãªéµÑÇàÅ×Í¡·Õè¡Ó˹´äÇéáÅéÇ\n"
-"\n"
-"\n"
-"¶éҤسÍÂÙèã¹âËÁ´¼ÙéàªÕèÂǪҭ (expert mode) ¤Ø³ÊÒÁÒöàÅ×Í¡á¾ç¤à¡ç¨\n"
-"â´ÂÃкصÑÇá¾ç¤à¡ç¨ â»Ã´·ÃÒº´éÇÂÇèÒá¾ç¤à¡ç¨ºÒ§µÑÇÍÒ¨µéͧ¡ÒÃãËéÁÕ¡ÒõԴµÑé§\n"
-"á¾ç¤à¡ç¨µÑÇÍ×è¹æŧ仡è͹ (ËÃ×ÍàÃÕ¡ÇèÒ dependencies) "
-"·Ñé§á¾ç¤à¡ç¨·Õè¤Ø³àÅ×Í¡\n"
-"áÅÐá¾ç¤à¡ç¨·ÕèµéͧµÔ´µÑé§Å§ä»´éǨж١â»Ãá¡ÃÁµÔ´µÑé§â´ÂÍѵâ¹ÁÑµÔ àÃÒäÁè\n"
-"ÊÒÁÒöµÔ´µÑé§á¾ç¤à¡ç¨Å§ä»â´ÂäÁèµÔ´µÑé§á¾ç¤à¡ç¨·Õèµéͧ¡ÒÃä´é"
-#: ../help.pm_.c:114
+#: ../../help.pm_.c:155
msgid ""
"The packages selected are now being installed. This operation\n"
"should take a few minutes unless you have chosen to upgrade an\n"
@@ -1143,7 +1526,7 @@ msgstr ""
"àÇÅÒäÁè¹Ò¹ ¶éÒËÒ¡¤Ø³äÁèä´éàÅ×Í¡ÍѾà¡Ã´Ãкº«Öè§ÇÔ¸Õ¡ÒùÕé¨Ðµéͧãªé\n"
"àÇÅÒ¾ÍÊÁ¤Çà ¡è͹¡ÒõԴµÑ駨ÐàÃÔèÁµé¹¢Öé¹"
-#: ../help.pm_.c:120
+#: ../../help.pm_.c:161
msgid ""
"If DrakX failed to find your mouse, or if you want to\n"
"check what it has done, you will be presented the list of mice\n"
@@ -1171,13 +1554,13 @@ msgstr ""
"㹡óշÕèà»ç¹àÁéÒÊìẺ«ÕàÃÕÂÅ (¾ÍÃìµÍ¹Ø¡ÃÁ) ¤Ø³¨ÐµéͧºÍ¡â»Ãá¡ÃÁ\n"
"ÇèÒàÁéÒÊì¢Í§¤Ø³µèÍà¢éҡѺ¾ÍÃìµã´"
-#: ../help.pm_.c:135
+#: ../../help.pm_.c:176
msgid ""
-"Please select the correct port. For example, the COM1 port in MS Windows\n"
-"is named ttyS0 in Linux."
+"Please select the correct port. For example, the COM1 port under MS Windows\n"
+"is named ttyS0 under Linux."
msgstr ""
-#: ../help.pm_.c:139
+#: ../../help.pm_.c:180
#, fuzzy
msgid ""
"This section is dedicated to configuring a local area\n"
@@ -1235,7 +1618,7 @@ msgstr ""
"ÍÔ¹à·ÍÃìà¹çµ´éÇÂâÁà´çÁãËé¤Ø³ DrakX ¨ÐÅͧ¤é¹ËÒâÁà´çÁ ËÒ¡â»Ãá¡ÃÁËÒäÁ辺\n"
"¤Ø³¨ÐµéͧªèÇÂâ»Ãá¡ÃÁâ´ÂàÅ×Í¡¾ÍÃìµÍ¹Ø¡ÃÁ·Õèµè͡ѺâÁà´çÁÍÂÙè"
-#: ../help.pm_.c:169
+#: ../../help.pm_.c:210
msgid ""
"Enter:\n"
"\n"
@@ -1252,19 +1635,19 @@ msgid ""
"not sure, ask your network administrator or ISP.\n"
msgstr ""
-#: ../help.pm_.c:184
+#: ../../help.pm_.c:225
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
-#: ../help.pm_.c:188
+#: ../../help.pm_.c:229
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
-"you will use proxies, ask your network administrator or your ISP."
+"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-#: ../help.pm_.c:192
+#: ../../help.pm_.c:233
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
@@ -1275,32 +1658,45 @@ msgid ""
"to your legislation."
msgstr ""
-#: ../help.pm_.c:200
+#: ../../help.pm_.c:241
msgid ""
"You can now select your timezone according to where you live.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Meridian Time\" and translates it\n"
+"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
"in local time according to the time zone you have selected."
msgstr ""
"µÍ¹¹Õé¤Ø³ÊÒÁÒö¡Ó˹´ÂèÒ¹àÇÅÒµÒÁ¶Ôè¹·ÕèÍÂÙèÍÒÈÑ¢ͧ¤Ø³\n"
"\n"
"\n"
-"ÅÕչء«ì¨Ð¨Ñ´¡ÒÃÃкºàÇÅÒà»ç¹ GMT ËÃ×Í \"Greenwich Meridian Time\" "
-"áÅÐá»Å§¤èÒ\n"
+"ÅÕչء«ì¨Ð¨Ñ´¡ÒÃÃкºàÇÅÒà»ç¹ GMT ËÃ×Í \"Greenwich Mean Time\" áÅÐá»Å§¤èÒ\n"
"àÇÅÒãËéà»ç¹àÇÅÒ·éͧ¶Ôè¹ «Ö觨ТÖé¹ÍÂÙè¡ÑºÂèÒ¹àÇÅÒ·Õè¤Ø³ä´éàÅ×Í¡àÍÒäÇé"
-#: ../help.pm_.c:207
-msgid "Help"
-msgstr "¢éͤÇÒÁªèÇÂàËÅ×Í"
+#: ../../help.pm_.c:248
+msgid ""
+"You may now choose which services you want to see started at boot time.\n"
+"When your mouse comes over an item, a small balloon help will popup which\n"
+"describes the role of the service.\n"
+"\n"
+"Be especially careful in this step if you intend to use your machine as a\n"
+"server: you will probably want not to start any services which you don't\n"
+"want."
+msgstr ""
-#: ../help.pm_.c:210
+#: ../../help.pm_.c:257
+#, fuzzy
msgid ""
"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup.\n"
+"types require a different setup. Note however that the print\n"
+"spooler uses 'lp' as the default printer name; so you\n"
+"must have one printer with such a name; but you can give\n"
+"several names, separated by '|' characters, to a printer.\n"
+"So, if you prefer to have a more meaningful name you just have\n"
+"to put it first, eg: \"My Printer|lp\".\n"
+"The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
-"If your printer is directly connected to your computer, select\n"
+"If your printer is physically connected to your computer, select\n"
"\"Local printer\". You will then have to tell which port your\n"
"printer is connected to, and select the appropriate filter.\n"
"\n"
@@ -1340,7 +1736,7 @@ msgstr ""
"ÊÓËÃѺà¤Ã×èͧ¾ÔÁ¾ìã¹Ãкºà¹çµáÇÃì¨Ðµéͧ·ÓµÒÁÇÔ¸Õ¡ÒÃà´ÕÂÇ\n"
"¡Ñ¹¹Õé´éÇ ¡àÇé¹ÇèҤسäÁèµéͧ¡ÒâéÍÁÙŢͧàÇÔÃì¡¡ÃØê»"
-#: ../help.pm_.c:233
+#: ../../help.pm_.c:286
msgid ""
"You can now enter the root password for your Linux-Mandrake\n"
"system. The password must be entered twice to verify that both\n"
@@ -1353,7 +1749,7 @@ msgid ""
"be extremely dangerous to the integrity of the system and its data,\n"
"and other systems connected to it. The password should be a\n"
"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should *never* be written down. Do not make the password too long or\n"
+"should NEVER be written down. Do not make the password too long or\n"
"complicated, though: you must be able to remember without too much\n"
"effort."
msgstr ""
@@ -1370,19 +1766,19 @@ msgstr ""
"¤Ø³ *äÁè¤ÇÃ* ¨´ÃËÑʼèÒ¹¢Í§¤Ø³äÇé ÍÂèÒ¡Ó˹´ãËéÃËÑʼèÒ¹ÂÒÇËÃ×ͫѺ«é͹à¡Ô¹ä»\n"
"áÅÐÍÂèÒ¡Ó˹´ãËéÃËÑʼèÒ¹ÂÒ¡áÅЫѺ«é͹à¡Ô¹¡ÇèҤس¨Ð¨Óä´é´éÇÂ"
-#: ../help.pm_.c:249
+#: ../../help.pm_.c:302
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-#: ../help.pm_.c:253
+#: ../../help.pm_.c:306
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-#: ../help.pm_.c:257
+#: ../../help.pm_.c:310
#, fuzzy
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
@@ -1428,7 +1824,7 @@ msgstr ""
"«Ö觤سä´éÊÃéÒ§äÇéã¹¢Ñ鹵͹¹Õé áÅÐà¢éÒÅçÍ¡ÍÔ¹ãªé§Ò¹ã¹°Ò¹ÐÃٷ੾ÒÐàÁ×èÍÁըش\n"
"»ÃÐʧ¤ì㹡ÒúÃÔËÒÃÃкº áÅзӡÒëèÍÁºÓÃاà·èÒ¹Ñé¹"
-#: ../help.pm_.c:276
+#: ../../help.pm_.c:329
#, fuzzy
msgid ""
"It is strongly recommended that you answer \"Yes\" here. If you install\n"
@@ -1441,7 +1837,7 @@ msgstr ""
"äÁèä´é·Ó¡ÒÃÊÃéÒ§á¼è¹ºÙµäÇéµÒÁ·ÕèÁÕ¡ÒÃá¹Ð¹Ó ¤Ø³¨ÐäÁèÊÒÁÒöºÙµà¢éÒÃкºÅչء«ì\n"
"ä´éÍÕ¡àÅÂ!"
-#: ../help.pm_.c:282
+#: ../../help.pm_.c:335
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to Linux.\n"
@@ -1456,48 +1852,34 @@ msgstr ""
"\n"
"¶éҤسäÁè·ÃÒºÇèҤس¨Ðµéͧ·ÓÍÂèÒ§äà â»Ã´àÅ×Í¡ \"à«ç¡àµÍÃìáá¢Í§ä´ÃÇì (MBR)\"."
-#: ../help.pm_.c:290
+#: ../../help.pm_.c:343
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-"(the master drive on the primary channel)."
+" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-#: ../help.pm_.c:294
+#: ../../help.pm_.c:347
msgid ""
-"LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-"Normally they are correctly detected during installation. If you don't\n"
-"see yours detected, you can add one or more now.\n"
+"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
+"either Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
"\n"
"\n"
-"If you don't want that everybody could access at one of them, you can "
-"remove\n"
-"it now (a boot disk will be needed to boot it)."
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../help.pm_.c:303
+#: ../../help.pm_.c:359
msgid ""
-"LILO main options are:\n"
+"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
"partition) that contains the boot sector. Unless you know specifically\n"
"otherwise, choose \"/dev/hda\".\n"
"\n"
"\n"
-" - Linear: Generate linear sector addresses instead of\n"
-"sector/head/cylinder addresses. Linear addresses are translated at run\n"
-"time and do not depend on disk geometry. Note that boot disks may not be\n"
-"portable if \"linear\" is used, because the BIOS service to determine the\n"
-"disk geometry does not work reliably for floppy disks. When using\n"
-"\"linear\" with large disks, /sbin/lilo may generate references to\n"
-"inaccessible disk areas, because 3D sector addresses are not known\n"
-"before boot time.\n"
-"\n"
-"\n"
-" - Compact: Tries to merge read requests for adjacent sectors into a\n"
-"single read request. This drastically reduces load time and keeps the\n"
-"map smaller. Using \"compact\" is especially recommended when booting from\n"
-"a floppy disk.\n"
-"\n"
-"\n"
" - Delay before booting default image: Specifies the number in tenths\n"
"of a second the boot loader should wait before booting the first image.\n"
"This is useful on systems that immediately boot from the hard disk after\n"
@@ -1511,7 +1893,7 @@ msgid ""
" * <number>: use the corresponding text mode."
msgstr ""
-#: ../help.pm_.c:338
+#: ../../help.pm_.c:378
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -1535,49 +1917,57 @@ msgstr ""
"à¾×èÍãËé¤Ø³ÊÒÁÒöµÃǨáÅзÃÒºä´éÇèÒ¡ÒÃà«çµ¹Ñé¹ÊÒÁÒöãªé§Ò¹ä´é ËÒ¡äÁèÊÒÁÒö\n"
"·Ó§Ò¹ä´é ¤Ø³ÊÒÁÒö¡ÅѺä»á¡é䢡ÒÃà«çµÍѾä´éµÅÍ´àÇÅÒ"
-#: ../help.pm_.c:351
+#: ../../help.pm_.c:391
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr ""
-#: ../help.pm_.c:355
+#: ../../help.pm_.c:395
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-#: ../help.pm_.c:359
+#: ../../help.pm_.c:399
msgid ""
-"You can now select some miscellaneous options for you system.\n"
-"\n"
-" - Use hard drive optimizations: This option can improve hard disk\n"
-"accesses but is only for advanced users, it can ruin your hard drive if\n"
-"used incorrectly. Use it only if you know how.\n"
-"\n"
-"\n"
-" - Choose security level: You can choose a security level for your\n"
-"system.\n"
-" Please refer to the manual for more information.\n"
-"\n"
-"\n"
-" - Precise RAM size if needed: In some cases, Linux is unable to\n"
-"correctly detect all the installed RAM on some systems. If this is the\n"
-"case, specify the correct quantity. Note: a difference of 2 or 4 Mb is\n"
-"normal.\n"
-"\n"
+"You can now select some miscellaneous options for your system.\n"
+"\n"
+" - Use hard drive optimizations: this option can improve hard disk "
+"performance\n"
+" but is only for advanced users: some buggy chipsets can ruin your data, "
+"so\n"
+" beware. Note that the kernel has a builtin blacklist of drives and\n"
+" chipsets, but if you want to avoid bad surprises, leave this option "
+"unset.\n"
+"\n"
+" - Choose security level: you can choose a security level for your\n"
+" system. Please refer to the manual for complete information. Basically: "
+"if\n"
+" you don't know, select \"Medium\" ; if you really want to have a secure\n"
+" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
+" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
+"user\n"
+" and then use \"su\". More generally, do not expect to use your machine\n"
+" for anything but as a server. You have been warned.\n"
"\n"
-" - Removable media automounting: If you would prefer not to manually\n"
-"mount removable drives (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-"\"umount\", select this option. \n"
+" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
+"no\n"
+" standard method to ask the BIOS about the amount of RAM present in your\n"
+" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
+" correctly. If this is the case, you can specify the correct amount of "
+"RAM\n"
+" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
+" - Removable media automounting: if you would prefer not to manually\n"
+" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
+" \"umount\", select this option. \n"
"\n"
-" - Enable Num Lock at startup: If you want Number Lock enabled after\n"
-"booting, select this option (Note: Num Lock will still not work under\n"
-"X)."
+" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
+" select this option (Note: NumLock may or may not work under X)."
msgstr ""
-#: ../help.pm_.c:387
+#: ../../help.pm_.c:428
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1586,119 +1976,105 @@ msgid ""
"the additional instructions."
msgstr ""
-#: ../install2.pm_.c:43
+#: ../../install2.pm_.c:43
msgid "Choose your language"
msgstr "àÅ×Í¡ÀÒÉÒ·Õè¤Ø³ãªé"
-#: ../install2.pm_.c:44
+#: ../../install2.pm_.c:44
msgid "Select installation class"
msgstr "àÅ×Í¡ªØ´¡ÒõԴµÑé§"
-#: ../install2.pm_.c:45
-msgid "Setup SCSI"
-msgstr "à«çµÍѾ SCSI"
-
-#: ../install2.pm_.c:46
-msgid "Choose install or upgrade"
-msgstr "àÅ×Í¡µÔ´µÑé§/ÍѾà¡Ã´"
+#: ../../install2.pm_.c:45
+#, fuzzy
+msgid "Hard drive detection"
+msgstr "ãªéÇÔ¸Õ¡ÒúպÍÑ´ÎÒÃì´ä´ÃÇì (optimisations) ËÃ×ÍäÁè?"
-#: ../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Configure mouse"
msgstr "¤Í¹¿Ô¡àÁéÒÊì"
-#: ../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose your keyboard"
msgstr "àÅ×Í¡¤ÕÂìºÍÃì´"
-#: ../install2.pm_.c:49
+#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
msgid "Miscellaneous"
msgstr "·ÑèÇæä»"
-#: ../install2.pm_.c:50
+#: ../../install2.pm_.c:49
msgid "Setup filesystems"
msgstr "à«çµÍѾÃкºä¿Åì"
-#: ../install2.pm_.c:51
+#: ../../install2.pm_.c:50
msgid "Format partitions"
msgstr "¿ÍÃìáÁµ¾ÒÃìµÔªÑè¹"
-#: ../install2.pm_.c:52
+#: ../../install2.pm_.c:51
msgid "Choose packages to install"
msgstr "àÅ×Í¡á¾ç¤à¡ç¨"
-#: ../install2.pm_.c:53
+#: ../../install2.pm_.c:52
msgid "Install system"
msgstr "µÔ´µÑé§Ãкº"
-#: ../install2.pm_.c:54
+#: ../../install2.pm_.c:53
msgid "Configure networking"
msgstr "¤Í¹¿Ô¡Ãкºà¹çµàÇÔÃì¡"
-#: ../install2.pm_.c:55
+#: ../../install2.pm_.c:54
msgid "Cryptographic"
msgstr "Ãкºà¢éÒÃËÑÊ"
-#: ../install2.pm_.c:56
+#: ../../install2.pm_.c:55
msgid "Configure timezone"
msgstr "¤Í¹¿Ô¡ÂèÒ¹àÇÅÒ"
-#: ../install2.pm_.c:58
+#: ../../install2.pm_.c:56
+#, fuzzy
+msgid "Configure services"
+msgstr "¤Í¹¿Ô¡à¤Ã×èͧ¾ÔÁ¾ì"
+
+#: ../../install2.pm_.c:57
msgid "Configure printer"
msgstr "¤Í¹¿Ô¡à¤Ã×èͧ¾ÔÁ¾ì"
-#: ../install2.pm_.c:59 ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:577
+#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:653
msgid "Set root password"
msgstr "à«çµÃËÑʼèÒ¹ÃÙ·"
-#: ../install2.pm_.c:60
+#: ../../install2.pm_.c:59
msgid "Add a user"
msgstr "à¾ÔèÁ¼Ùéãªé"
-#: ../install2.pm_.c:61
+#: ../../install2.pm_.c:61
msgid "Create a bootdisk"
msgstr "ÊÃéÒ§á¼è¹ºÙµ"
-#: ../install2.pm_.c:62
+#: ../../install2.pm_.c:63
msgid "Install bootloader"
msgstr "µÔ´µÑ駺ٵâËÅ´à´ÍÃì"
-#: ../install2.pm_.c:63
+#: ../../install2.pm_.c:64
msgid "Configure X"
msgstr "¤Í¹¿Ô¡Ãкº X"
-#: ../install2.pm_.c:64
+#: ../../install2.pm_.c:65
+msgid "Auto install floppy"
+msgstr ""
+
+#: ../../install2.pm_.c:66
msgid "Exit install"
msgstr "ÍÍ¡¨Ò¡¡ÒõԴµÑé§"
-#: ../install2.pm_.c:83
-msgid "beginner"
-msgstr "beginner (àÃÔèÁµé¹)"
-
-#: ../install2.pm_.c:83
-msgid "developer"
-msgstr "developer (¹Ñ¡¾Ñ²¹Ò)"
-
-#: ../install2.pm_.c:83
-msgid "expert"
-msgstr "export (¼ÙéàªÕèÂǪҭ)"
-
-#: ../install2.pm_.c:83
-msgid "server"
-msgstr "server (à«ÔÃì¿àÇÍÃì)"
-
-#: ../install2.pm_.c:311
+#: ../../install2.pm_.c:308
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 ""
-#: ../install2.pm_.c:327
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "äÁèÁÕ¾×é¹·ÕèÊÇÍ»à¾Õ§¾Í¡Ñº¡ÒõԴµÑé§ â»Ã´à¾ÔèÁà¹×éÍ·Õè"
-
-#: ../install_any.pm_.c:194 ../standalone/diskdrake_.c:61
+#: ../../install_any.pm_.c:331 ../../standalone/diskdrake_.c:61
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -1706,7 +2082,7 @@ msgstr ""
"â»Ãá¡ÃÁäÁèÊÒÁÒöÍèÒ¹µÒÃÒ§¾ÒÃìµÔªÑè¹ä´é ¢éÍÁÙÅã¹µÒÃÒ§äÁè¶Ù¡µéͧ :(\n"
"â»Ãá¡ÃÁ¨Ð¾ÂÒÂÒÁà¤ÅÕÂÃì¾ÒÃìµÔªÑè¹·ÕèÁջѭËÒãËé"
-#: ../install_any.pm_.c:210
+#: ../../install_any.pm_.c:348
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -1714,37 +2090,32 @@ msgstr ""
"´ÔÊ¡ìà´Ã¡ ÅéÁàËÅÇ·Õè¨ÐÍèÒ¹µÒÃÒ§¾ÒÃìµÔªÑè¹ãËé¶Ù¡µéͧ\n"
"¶éÒ·Ó§Ò¹µèÍÍÒ¨ÁÕ¢éͼԴ¾ÅÒ´ä´é!"
-#: ../install_any.pm_.c:220
+#: ../../install_any.pm_.c:370
msgid "Searching root partition."
msgstr "¡ÓÅѧ¤é¹ËÒ¾ÒÃìµÔªÑè¹ÃÙ·"
-#: ../install_any.pm_.c:249
+#: ../../install_any.pm_.c:399
msgid "Information"
msgstr "¢éÍÁÙÅ"
-#: ../install_any.pm_.c:250
+#: ../../install_any.pm_.c:400
#, c-format
msgid "%s: This is not a root partition, please select another one."
msgstr "%s: ¹ÕèäÁèãªèÃÙ·¾ÒÃìµÔªÑè¹ â»Ã´àÅ×Í¡¾ÒÃìµÔªÑè¹ãËÁè"
-#: ../install_any.pm_.c:252
+#: ../../install_any.pm_.c:402
msgid "No root partition found"
msgstr "äÁ辺ÃÙ·¾ÒÃìµÔªÑè¹"
-#: ../install_any.pm_.c:289
+#: ../../install_any.pm_.c:440
msgid "Can't use broadcast with no NIS domain"
msgstr "äÁèÊÒÁÒöãªéºÃÍ´¤ÒÊ·ì¶éÒäÁèÁÕâ´àÁ¹ NIS"
-#: ../install_any.pm_.c:473
+#: ../../install_any.pm_.c:602
msgid "Error reading file $f"
msgstr "äÁèÊÒÁÒöÍèÒ¹ä¿Åì $f"
-#: ../install_any.pm_.c:479
-#, c-format
-msgid "Bad kickstart file %s (failed %s)"
-msgstr "ä¿Åì¤Ô¡ÊµÒÃì·äÁè¶Ù¡µéͧ %s (¢éͼԴ¾ÅÒ´ %s)"
-
-#: ../install_steps.pm_.c:72
+#: ../../install_steps.pm_.c:75
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -1752,30 +2123,39 @@ msgstr ""
"ÁÕ¤ÇÒÁ¼Ô´¾ÅÒ´à¡Ô´¢Öé¹ áµèâ»Ãá¡ÃÁäÁèÊÒÁÒöá¡éä¢ä´é\n"
"ËÒ¡·Ó§Ò¹µèÍÍÒ¨à¡Ô´¤ÇÒÁàÊÕÂËÒÂä´é"
-#: ../install_steps.pm_.c:136
+#: ../../install_steps.pm_.c:174
#, c-format
msgid "Duplicate mount point %s"
msgstr "·Ó«éӨشàÁéÒ·ì %s"
-#: ../install_steps.pm_.c:295
+#: ../../install_steps.pm_.c:318
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+
+#: ../../install_steps.pm_.c:385
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../install_steps.pm_.c:562
+#: ../../install_steps.pm_.c:737
msgid "No floppy drive available"
msgstr "äÁèÁÕä´ÃÇì¿ÅéÍ»»ÕçàËÅ×ÍÍÂÙè"
-#: ../install_steps_auto_install.pm_.c:18 ../install_steps_stdio.pm_.c:26
+#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:125
+#: ../../install_steps_stdio.pm_.c:26
#, c-format
msgid "Entering step `%s'\n"
msgstr "à¢éÒÊÙè¢Ñ鹵͹ `%s'\n"
-#: ../install_steps_graphical.pm_.c:259 ../install_steps_gtk.pm_.c:294
+#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:249
msgid "You must have a swap partition"
msgstr "¤Ø³¨ÐµéͧÁÕ¾ÒÃìµÔªÑè¹ÊÇÍ»"
-#: ../install_steps_graphical.pm_.c:261 ../install_steps_gtk.pm_.c:296
+#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:251
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -1785,79 +2165,95 @@ msgstr ""
"\n"
"µéͧ¡ÒèзӵèÍËÃ×ÍäÁè?"
-#: ../install_steps_graphical.pm_.c:287 ../install_steps_gtk.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
msgstr "àÅ×Í¡¢¹Ò´·Õè¤Ø³µéͧ¡ÒõԴµÑé§"
-#: ../install_steps_graphical.pm_.c:334 ../install_steps_gtk.pm_.c:361
+#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "¢¹Ò´ÃÇÁ: "
-#: ../install_steps_graphical.pm_.c:346 ../install_steps_gtk.pm_.c:373
-#: ../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:447
+#: ../../standalone/rpmdrake_.c:136
#, c-format
msgid "Version: %s\n"
msgstr "àÇÍÃìªÑè¹: %s\n"
-#: ../install_steps_graphical.pm_.c:347 ../install_steps_gtk.pm_.c:374
-#: ../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:448
+#: ../../standalone/rpmdrake_.c:137
#, c-format
msgid "Size: %d KB\n"
msgstr "¢¹Ò´: %d KB\n"
-#: ../install_steps_graphical.pm_.c:462 ../install_steps_gtk.pm_.c:489
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:360
msgid "Choose the packages you want to install"
msgstr "àÅ×Í¡á¾ç¤à¡ç¨·Õè¤Ø³µéͧ¡ÒõԴµÑé§"
-#: ../install_steps_graphical.pm_.c:465 ../install_steps_gtk.pm_.c:492
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:363
msgid "Info"
msgstr "¢éÍÁÙÅ"
-#: ../install_steps_graphical.pm_.c:473 ../install_steps_gtk.pm_.c:500
-#: ../install_steps_interactive.pm_.c:81 ../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:368
+#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
msgid "Install"
msgstr "µÔ´µÑé§"
-#: ../install_steps_graphical.pm_.c:492 ../install_steps_gtk.pm_.c:519
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:533
+#: ../../install_steps_interactive.pm_.c:382
msgid "Installing"
msgstr "¡ÓÅѧµÔ´µÑé§"
-#: ../install_steps_graphical.pm_.c:499 ../install_steps_gtk.pm_.c:526
+#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:539
msgid "Please wait, "
msgstr "â»Ã´ÃÍÊÑ¡¤ÃÙè"
-#: ../install_steps_graphical.pm_.c:501 ../install_steps_gtk.pm_.c:528
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:541
msgid "Time remaining "
msgstr "àÇÅÒ·ÕèàËÅ×Í "
-#: ../install_steps_graphical.pm_.c:502 ../install_steps_gtk.pm_.c:529
+#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:542
msgid "Total time "
msgstr "àÇÅÒ·Ñé§ËÁ´ "
-#: ../install_steps_graphical.pm_.c:507 ../install_steps_gtk.pm_.c:534
-#: ../install_steps_interactive.pm_.c:317
+#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:382
msgid "Preparing installation"
msgstr "¡ÓÅѧàµÃÕÂÁ¡ÒõԴµÑé§"
-#: ../install_steps_graphical.pm_.c:528 ../install_steps_gtk.pm_.c:549
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:566
#, c-format
msgid "Installing package %s"
msgstr "¡ÓÅѧµÔ´µÑé§á¾ç¤à¡ç¨ %s"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
+#: ../../install_steps_gtk.pm_.c:611
msgid "Go on anyway?"
msgstr "·Ó§Ò¹µèÍËÃ×ÍäÁè?"
-#: ../install_steps_graphical.pm_.c:553 ../install_steps_gtk.pm_.c:574
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:607
msgid "There was an error ordering packages:"
msgstr "ÁջѭËÒ¡ÒÃÅӴѺ¢Í§á¾ç¤à¡ç¨:"
-#: ../install_steps_graphical.pm_.c:577 ../install_steps_interactive.pm_.c:893
+#: ../../install_steps_graphical.pm_.c:577
+#: ../../install_steps_interactive.pm_.c:997
msgid "Use existing configuration for X11?"
msgstr "ãªé¤Í¹¿Ô¡·ÕèÁÕÍÂÙèáÅéǢͧÃкº X11 ËÃ×ÍäÁè?"
-#: ../install_steps_gtk.pm_.c:259
+#: ../../install_steps_gtk.pm_.c:154
+msgid "Please, choose one of the following classes of installation:"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:195
+#, fuzzy
+msgid "You don't have any windows partitions!"
+msgstr "¤Ø³ÂѧäÁèä´éáºè§¾ÒÃìµÔªÑè¹!"
+
+#: ../../install_steps_gtk.pm_.c:197
+#, fuzzy
+msgid "You don't have any enough room for Lnx4win"
+msgstr "¤Ø³ÂѧäÁèä´éáºè§¾ÒÃìµÔªÑè¹!"
+
+#: ../../install_steps_gtk.pm_.c:213
msgid ""
"WARNING!\n"
"\n"
@@ -1869,174 +2265,358 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../install_steps_gtk.pm_.c:278
+#: ../../install_steps_gtk.pm_.c:232
#, fuzzy
msgid "Automatic resizing failed"
msgstr "¡Ó˹´¢¹Ò´¨ÍÀÒ¾â´ÂÍѵâ¹ÁѵÔ"
-#: ../install_steps_gtk.pm_.c:312
+#: ../../install_steps_gtk.pm_.c:261
+#, fuzzy
+msgid "Which partition do you want to use to put Linux4Win?"
+msgstr "¤Ø³µéͧ¡ÒÃÂéÒÂä»à«ç¡àµÍÃìä˹"
+
+#: ../../install_steps_gtk.pm_.c:280
+#, fuzzy
+msgid "Choose the sizes"
+msgstr "àÅ×Í¡¢¹Ò´ãËÁè"
+
+#: ../../install_steps_gtk.pm_.c:282
+#, fuzzy
+msgid "Root partition size in MB: "
+msgstr "¾ÒÃìµÔªÑè¹ÃÙ·"
+
+#: ../../install_steps_gtk.pm_.c:284
+#, fuzzy
+msgid "Swap partition size in MB: "
+msgstr "¢¹Ò´à»ç¹ MB: "
+
+#: ../../install_steps_gtk.pm_.c:316
+#, c-format
msgid ""
-"Now that you've selected desired groups, please choose \n"
-"how many packages you want, ranging from minimal to full \n"
-"installation of each selected groups."
+"The total size for the groups you have selected is approximately %d MB.\n"
msgstr ""
-#: ../install_steps_gtk.pm_.c:315
-msgid "You will be able to choose more precisely in next step"
+#: ../../install_steps_gtk.pm_.c:318
+msgid ""
+"If you wish to install less than this size,\n"
+"select the percentage of packages that you want to install.\n"
+"\n"
+"A low percentage will install only the most important packages;\n"
+"a percentage of 100%% will install all selected packages."
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:323
+msgid ""
+"You have space on your disk for only %d%% of these packages.\n"
+"\n"
+"If you wish to install less than this,\n"
+"select the percentage of packages that you want to install.\n"
+"A low percentage will install only the most important packages;\n"
+"a percentage of %d%% will install as many packages as possible."
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:329
+#, fuzzy
+msgid "You will be able to choose them more specifically in the next step."
msgstr "¤Ø³¨ÐµéͧàÅ×Í¡ãËé¶Ù¡µéͧÁÒ¡¢Öé¹ã¹¢Ñ鹵͹¶Ñ´ä»"
-#: ../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:331
+#, fuzzy
+msgid "Percentage of packages to install"
+msgstr "àÅ×Í¡á¾ç¤à¡ç¨"
+
+#: ../../install_steps_gtk.pm_.c:372
+#, fuzzy
+msgid "Automatic dependencies"
+msgstr "¡Ó˹´¢¹Ò´¨ÍÀÒ¾â´ÂÍѵâ¹ÁѵÔ"
+
+#: ../../install_steps_gtk.pm_.c:425 ../../standalone/rpmdrake_.c:101
+msgid "Expand Tree"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:426 ../../standalone/rpmdrake_.c:102
+msgid "Collapse Tree"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:427
+msgid "Toggle between flat and group sorted"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:445
#, fuzzy
msgid "Bad package"
msgstr "á¾ç¤à¡ç¨ %d ªØ´"
-#: ../install_steps_gtk.pm_.c:522
+#: ../../install_steps_gtk.pm_.c:446
+#, c-format
+msgid "Name: %s\n"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:449
+#, c-format
+msgid "Importance: %s\n"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:457
+#, fuzzy, c-format
+msgid "Total size: %d / %d MB"
+msgstr "¢¹Ò´ÃÇÁ: "
+
+#: ../../install_steps_gtk.pm_.c:467
+msgid "This is a mandatory package, it can't be unselected"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:469
+msgid "You can't unselect this package. It is already installed"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:473
+msgid ""
+"This package must be upgraded\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:476
+msgid "You can't unselect this package. It must be upgraded"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:489
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:492
+#, fuzzy
+msgid "The following packages are going to be installed/removed"
+msgstr "àÅ×Í¡á¾ç¤à¡ç¨"
+
+#: ../../install_steps_gtk.pm_.c:501
+msgid "You can't select/unselect this package"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:536
msgid "Estimating"
msgstr "¡ÒûÃÐàÁÔ¹"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:548 ../../interactive.pm_.c:84
+#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
+#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+msgid "Cancel"
+msgstr "¡àÅÔ¡"
+
+#: ../../install_steps_gtk.pm_.c:561
#, c-format
msgid "%d packages"
msgstr "á¾ç¤à¡ç¨ %d ªØ´"
-#: ../install_steps_gtk.pm_.c:544
+#: ../../install_steps_gtk.pm_.c:561
msgid ", %U MB"
msgstr ", %U MB"
-#: ../install_steps_interactive.pm_.c:37
+#: ../../install_steps_gtk.pm_.c:592
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:611
+#, fuzzy
+msgid "There was an error installing packages:"
+msgstr "ÁջѭËÒ¡ÒÃÅӴѺ¢Í§á¾ç¤à¡ç¨:"
+
+#: ../../install_steps_interactive.pm_.c:40
msgid "An error occurred"
msgstr "ÁջѭËÒà¡Ô´¢Öé¹"
-#: ../install_steps_interactive.pm_.c:54
-msgid "Which language do you want?"
-msgstr "¤Ø³µéͧ¡ÒÃàÅ×Í¡ÀÒÉÒã´"
+#: ../../install_steps_interactive.pm_.c:57
+#, fuzzy
+msgid "Please, choose a language to use."
+msgstr "¤Ø³ÁÕàÁéÒÊ쪹Դã´"
-#: ../install_steps_interactive.pm_.c:68 ../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:72
+#: ../../standalone/keyboarddrake_.c:22
msgid "Keyboard"
msgstr "¤ÕÂìºÍÃì´"
-#: ../install_steps_interactive.pm_.c:69 ../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
+#: ../../install_steps_interactive.pm_.c:73
+#, fuzzy
+msgid "Please, choose your keyboard layout."
msgstr "¤Ø³µéͧ¡ÒÃàÅ×Í¡¤ÕÂìºÍÃì´àÅÂìàÍéÒ·ìẺã´"
-#: ../install_steps_interactive.pm_.c:79
-msgid "Install/Upgrade"
-msgstr "µÔ´µÑé§/ÍѾà¡Ã´"
-
-#: ../install_steps_interactive.pm_.c:80
-msgid "Is this an install or an upgrade?"
-msgstr "¹Õèà»ç¹¡ÒõԴµÑé§ËÃ×Í¡ÒÃÍѾà¡Ã´"
-
-#: ../install_steps_interactive.pm_.c:81
-msgid "Upgrade"
-msgstr "ÍѾà¡Ã´"
+#: ../../install_steps_interactive.pm_.c:81
+msgid "You can choose other languages that will be available after install"
+msgstr ""
-#: ../install_steps_interactive.pm_.c:89
+#: ../../install_steps_interactive.pm_.c:91
msgid "Root Partition"
msgstr "¾ÒÃìµÔªÑè¹ÃÙ·"
-#: ../install_steps_interactive.pm_.c:90
+#: ../../install_steps_interactive.pm_.c:92
msgid "What is the root partition (/) of your system?"
msgstr "¾ÒÃìµÔªÑè¹ã´à»ç¹ÃÙ·¾ÒÃìµÔªÑè¹ (/) ã¹Ãкº¢Í§¤Ø³"
-#: ../install_steps_interactive.pm_.c:100
-msgid "Recommended"
-msgstr "Ẻá¹Ð¹Ó (Recommended)"
+#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:140
+msgid "Install Class"
+msgstr "»ÃÐàÀ·¢Í§¡ÒõԴµÑé§"
+
+#: ../../install_steps_interactive.pm_.c:100
+#, fuzzy
+msgid "Which installation class do you want?"
+msgstr "¤Ø³µéͧ¡ÒõԴµÑ駻ÃÐàÀ·ã´"
-#: ../install_steps_interactive.pm_.c:101
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Install/Upgrade"
+msgstr "µÔ´µÑé§/ÍѾà¡Ã´"
+
+#: ../../install_steps_interactive.pm_.c:102
+msgid "Is this an install or an upgrade?"
+msgstr "¹Õèà»ç¹¡ÒõԴµÑé§ËÃ×Í¡ÒÃÍѾà¡Ã´"
+
+#: ../../install_steps_interactive.pm_.c:110
+#, fuzzy
+msgid "Automated"
+msgstr "¡Ó˹´¤èÒ IP ẺÍѵâ¹ÁѵÔ"
+
+#: ../../install_steps_interactive.pm_.c:112
+#: ../../install_steps_interactive.pm_.c:124
msgid "Customized"
msgstr "Ẻ»ÃѺá¡éä´é (Customized)"
-#: ../install_steps_interactive.pm_.c:102
+#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_steps_interactive.pm_.c:124
msgid "Expert"
-msgstr "Ẻ¼ÙéàªÕèÂǪҭ (Expert"
+msgstr "Ẻ¼ÙéàªÕèÂǪҭ (Expert)"
-#: ../install_steps_interactive.pm_.c:104
-#: ../install_steps_interactive.pm_.c:118
-msgid "Install Class"
-msgstr "»ÃÐàÀ·¢Í§¡ÒõԴµÑé§"
+#: ../../install_steps_interactive.pm_.c:122
+msgid ""
+"Are you sure you are an expert? \n"
+"You will be allowed to make powerfull but dangerous things here."
+msgstr ""
-#: ../install_steps_interactive.pm_.c:105
-msgid "What installation class do you want?"
-msgstr "¤Ø³µéͧ¡ÒõԴµÑ駻ÃÐàÀ·ã´"
+#: ../../install_steps_interactive.pm_.c:129
+msgid "Upgrade"
+msgstr "ÍѾà¡Ã´"
-#: ../install_steps_interactive.pm_.c:114
+#: ../../install_steps_interactive.pm_.c:135
msgid "Normal"
msgstr "»¡µÔ (Normal)"
-#: ../install_steps_interactive.pm_.c:115
+#: ../../install_steps_interactive.pm_.c:136
msgid "Development"
msgstr "¾Ñ²¹Ò«Í¿·ìáÇÃì (Development)"
-#: ../install_steps_interactive.pm_.c:116
+#: ../../install_steps_interactive.pm_.c:137
msgid "Server"
msgstr "à«ÔÿìàÇÍÃì (Server)"
-#: ../install_steps_interactive.pm_.c:119
-msgid "What usage do you want?"
-msgstr "¤Ø³µéͧ¡ÒÃãªé§Ò¹ÍÐäÃ>"
+#: ../../install_steps_interactive.pm_.c:141
+#, fuzzy
+msgid "Which usage is your system used for ?"
+msgstr "¤Ø³ãªéÂèÒ¹àÇÅÒã´?"
-#: ../install_steps_interactive.pm_.c:132 ../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
+#: ../../install_steps_interactive.pm_.c:152
+msgid "Please, choose the type of your mouse."
msgstr "¤Ø³ÁÕàÁéÒÊ쪹Դã´"
-#: ../install_steps_interactive.pm_.c:140 ../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
msgid "Mouse Port"
msgstr "¾ÍÃ쵢ͧàÁéÒÊì"
-#: ../install_steps_interactive.pm_.c:141 ../standalone/mousedrake_.c:39
-msgid "Which serial port is your mouse connected to?"
+#: ../../install_steps_interactive.pm_.c:161
+msgid "Please choose on which serial port your mouse is connected to."
msgstr "àÁéÒÊì¢Í§¤Ø³µèÍà¢éҡѺ¾ÍÃìµÍ¹Ø¡ÃÁã´"
-#: ../install_steps_interactive.pm_.c:157
+#: ../../install_steps_interactive.pm_.c:172
+#, fuzzy
+msgid "Configuring IDE"
+msgstr "·´Êͺ¡Òä͹¿Ô¡"
+
+#: ../../install_steps_interactive.pm_.c:172
+msgid "IDE"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:182
msgid "no available partitions"
msgstr "äÁèÁÕ¾ÒÃìµÔªÑè¹àËÅ×Í"
-#: ../install_steps_interactive.pm_.c:159
+#: ../../install_steps_interactive.pm_.c:184
#, c-format
-msgid "(%dMb)"
-msgstr "(%dMb)"
+msgid "(%dMB)"
+msgstr "(%dMB)"
-#: ../install_steps_interactive.pm_.c:166
-msgid "Which partition do you want to use as your root partition"
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Please choose a partition to use as your root partition."
msgstr "¾ÒÃìµÔªÑè¹ã´·Õè¤Ø³µéͧ¡ÒÃãªéà»ç¹ÃÙ·¾ÒÃìµÔªÑè¹"
-#: ../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:198
msgid "Choose the mount points"
msgstr "àÅ×Í¡¨Ø´àÁéÒ·ì"
-#: ../install_steps_interactive.pm_.c:185
+#: ../../install_steps_interactive.pm_.c:210
msgid "You need to reboot for the partition table modifications to take place"
msgstr "¤Ø³µéͧ·Ó¡ÒÃÃÕºÙµÃкºãËéà¤Ã×èͧÃѺ·ÃÒº¡ÒÃà»ÅÕè¹á»Å§µÒÃÒ§¾ÒÃìµÔªÑè¹"
-#: ../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:236
msgid "Choose the partitions you want to format"
msgstr "àÅ×Í¡¾ÒÃìµÔªÑè¹·Õè¤Ø³µéͧ¡ÒÿÍÃìáÁµ"
-#: ../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:240
msgid "Check bad blocks?"
msgstr ""
-#: ../install_steps_interactive.pm_.c:230
+#: ../../install_steps_interactive.pm_.c:248
+#, fuzzy
+msgid "Formatting partitions"
+msgstr "¿ÍÃìáÁµ¾ÒÃìµÔªÑè¹ %s"
+
+#: ../../install_steps_interactive.pm_.c:252
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Not enough swap to fulfill installation, please add some"
+msgstr "äÁèÁÕ¾×é¹·ÕèÊÇÍ»à¾Õ§¾Í¡Ñº¡ÒõԴµÑé§ â»Ã´à¾ÔèÁà¹×éÍ·Õè"
+
+#: ../../install_steps_interactive.pm_.c:261
msgid "Looking for available packages"
msgstr "¡ÓÅѧËÒá¾ç¤à¡ç¨·ÕèÁÕÍÂÙè"
-#: ../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:267
msgid "Finding packages to upgrade"
msgstr "¡ÓÅѧËÒá¾ç¤à¡ç¨·Õè¨Ð·Ó¡ÒÃÍѾà¡Ã´"
-#: ../install_steps_interactive.pm_.c:266
-#, c-format
-msgid ""
-"You need %dMB for a full install of the groups you selected.\n"
-"You can go on anyway, but be warned that you won't get all packages"
+#: ../../install_steps_interactive.pm_.c:284
+msgid "Your system has not enough space left for installation or upgrade"
msgstr ""
-#: ../install_steps_interactive.pm_.c:290
+#: ../../install_steps_interactive.pm_.c:317
msgid "Package Group Selection"
msgstr "àÅ×Í¡¡ÅØèÁá¾ç¤à¡ç¨"
-#: ../install_steps_interactive.pm_.c:326
+#: ../../install_steps_interactive.pm_.c:320
+msgid "Individual package selection"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:360
+msgid ""
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:363
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:391
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2044,56 +2624,59 @@ msgstr ""
"¡ÓÅѧµÔ´µÑé§á¾ç¤à¡ç¨ %s\n"
"%d%%"
-#: ../install_steps_interactive.pm_.c:335
+#: ../../install_steps_interactive.pm_.c:400
#, fuzzy
-msgid "Post install configuration"
+msgid "Post-install configuration"
msgstr "¡Òä͹¿Ô¡ Proxies"
-#: ../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:410
msgid "Keep the current IP configuration"
msgstr "ãªé¤Í¹¿Ô¡ IP ¢Í§»Ñ¨¨ØºÑ¹"
-#: ../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:411
msgid "Reconfigure network now"
msgstr "·Ó¡Òä͹¿Ô¡à¹çµàÇÔÃì¡ÍÕ¡¤ÃÑé§"
-#: ../install_steps_interactive.pm_.c:348
-#: ../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:412
msgid "Do not set up networking"
msgstr "ÍÂèÒà«çµÍѾà¹çµàÇÔÃì¡"
-#: ../install_steps_interactive.pm_.c:350
-#: ../install_steps_interactive.pm_.c:358
+#: ../../install_steps_interactive.pm_.c:415
+#: ../../install_steps_interactive.pm_.c:420
msgid "Network Configuration"
msgstr "¡Òä͹¿Ô¡Ãкºà¹çµàÇÔÃì¡"
-#: ../install_steps_interactive.pm_.c:351
+#: ../../install_steps_interactive.pm_.c:416
msgid "Local networking has already been configured. Do you want to:"
msgstr "Ãкºà¹çµàÇÔÃì¡·éͧ¶Ôè¹ä´é·Ó¡Òä͹¿Ô¡àÃÕºÃéÍÂáÅéÇ ¤Ø³µéͧ¡ÒèÐ:"
-#: ../install_steps_interactive.pm_.c:359
-msgid "Do you want to configure networking for your system?"
+#: ../../install_steps_interactive.pm_.c:421
+#, fuzzy
+msgid "Do you want to configure a local network for your system?"
msgstr "¤Ø³µéͧ¡Òä͹¿Ô¡Ãкºà¹çµàÇÔÃì¡ÊÓËÃѺÃкº¢Í§¤Ø³ËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:360
-msgid "Dialup with modem"
-msgstr "¡ÒÃËÁعâ·ÃÈѾ·ì´éÇÂâÁà´çÁ"
-
-#: ../install_steps_interactive.pm_.c:360
-msgid "Local LAN"
-msgstr "ÃкºáŹẺ·éͧ¶Ôè¹"
-
-#: ../install_steps_interactive.pm_.c:369
+#: ../../install_steps_interactive.pm_.c:427
msgid "no network card found"
msgstr "äÁ辺¡ÒÃì´à¹çµàÇÔÃì¡"
-#: ../install_steps_interactive.pm_.c:399
-#: ../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy
+msgid "Modem Configuration"
+msgstr "·´Êͺ¡Òä͹¿Ô¡"
+
+#: ../../install_steps_interactive.pm_.c:450
+#, fuzzy
+msgid ""
+"Do you want to configure a dialup connection with modem for your system?"
+msgstr "¤Ø³µéͧ¡Òä͹¿Ô¡Ãкºà¹çµàÇÔÃì¡ÊÓËÃѺÃкº¢Í§¤Ø³ËÃ×ÍäÁè?"
+
+#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid "Configuring network device %s"
msgstr "¡ÓÅѧ¤Í¹¿Ô¡ÍØ»¡Ã³ìà¹çµàÇÔÃì¡ %s"
-#: ../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:464
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -2103,31 +2686,31 @@ msgstr ""
"¢éÍÁÙÅáµèÅÐÍÂèÒ§ÊÒÁÒöãÊèà¢éÒä»ä´éâ´Âãªé¤èÒ IP ã¹ÃٻẺµÑÇàÅ¢¤Ñè¹´éǨش\n"
"(dotted-decimal notation) µÑÇÍÂèÒ§àªè¹ 1.2.3.4"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Automatic IP"
msgstr "¡Ó˹´¤èÒ IP ẺÍѵâ¹ÁѵÔ"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "IP address:"
msgstr "¤èÒ IP:"
-#: ../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:467
msgid "Netmask:"
msgstr "à¹çµÁÒÊ¡ì:"
-#: ../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:468
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../install_steps_interactive.pm_.c:411 ../printerdrake.pm_.c:149
+#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
msgid "IP address should be in format 1.2.3.4"
msgstr "¤èҢͧ IP ¤ÇÃÍÂÙèã¹ÃٻẺ 1.2.3.4"
-#: ../install_steps_interactive.pm_.c:429
+#: ../../install_steps_interactive.pm_.c:492
msgid "Configuring network"
msgstr "¡ÓÅѧ¤Í¹¿Ô¡Ãкºà¹çµàÇÔÃì¡"
-#: ../install_steps_interactive.pm_.c:430
+#: ../../install_steps_interactive.pm_.c:493
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -2139,91 +2722,79 @@ msgstr ""
"µÑÇÍÂèÒ§àªè¹ ``mybox.mylab.yco.com''\n"
"¤Ø³ÍÒ¨¨ÐãÊè¤èÒ IP ¢Í§à¡µàÇÂì´éǶéҤسÁÕà¤Ã×èͧ·Õè·Ó˹éÒ·Õèà»ç¹à¡µàÇÂìÍÂÙè"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "DNS server:"
msgstr "à«ÔÃì¿àÇÍÃì DNS:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway device:"
msgstr "ÍØ»¡Ã³ìࡵàÇÂì"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Gateway:"
msgstr "ࡵàÇÂì:"
-#: ../install_steps_interactive.pm_.c:434
+#: ../../install_steps_interactive.pm_.c:497
msgid "Host name:"
msgstr "ª×èÍâÎʵì:"
-#: ../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:510
msgid "Try to find a modem?"
msgstr "¨ÐÅͧËÒâÁà´çÁËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:457
-msgid "Which serial port is your modem connected to?"
+#: ../../install_steps_interactive.pm_.c:521
+msgid "Please choose which serial port your modem is connected to."
msgstr "¤Ø³µéͧ¡ÒÃãËéâÁà´çÁ¢Í§¤Ø³µè͡Ѻ¾ÍÃìµÍ¹Ø¡ÃÁã´?"
-#: ../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:527
msgid "Dialup options"
msgstr "ÍçÍ»ªÑ蹢ͧ¡ÒÃËÁعâ·ÃÈѾ·ì"
-#: ../install_steps_interactive.pm_.c:463
+#: ../../install_steps_interactive.pm_.c:528
msgid "Connection name"
msgstr "ª×èÍ¡ÒÃàª×èÍÁµèÍ"
-#: ../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:529
msgid "Phone number"
msgstr "ËÁÒÂàÅ¢â·ÃÈѾ·ì"
-#: ../install_steps_interactive.pm_.c:465
+#: ../../install_steps_interactive.pm_.c:530
msgid "Login ID"
msgstr "ËÁÒÂàÅ¢»ÃШӵÑÇ¡ÒÃÅçÍ¡ÍÔ¹"
-#: ../install_steps_interactive.pm_.c:466
-#: ../install_steps_interactive.pm_.c:578
-#: ../install_steps_interactive.pm_.c:624
-#: ../install_steps_interactive.pm_.c:724 ../standalone/adduserdrake_.c:40
-msgid "Password"
-msgstr "ÃËÑʼèÒ¹"
-
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Authentication"
msgstr "¡ÒõÃǨÊͺÊÔ·¸Ôì¡ÒÃãªé§Ò¹"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "CHAP"
msgstr "CHAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "PAP"
msgstr "PAP"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Script-based"
msgstr "ÃٻẺʤÃÔ»µì"
-#: ../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:532
msgid "Terminal-based"
msgstr "ÃٻẺà·ÍÃìÁÔ¹ÍÅ"
-#: ../install_steps_interactive.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:533
msgid "Domain name"
msgstr "ª×èÍâ´àÁ¹"
-#: ../install_steps_interactive.pm_.c:469
+#: ../../install_steps_interactive.pm_.c:535
msgid "First DNS Server"
msgstr "à«ÔÿìàÇÍÃì DNS à¤Ã×èͧáá"
-#: ../install_steps_interactive.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:536
msgid "Second DNS Server"
msgstr "à«ÔÿìàÇÍÃì DNS à¤Ã×èͧ·ÕèÊͧ"
-#: ../install_steps_interactive.pm_.c:483
-#, fuzzy
-msgid "Bringing up the network"
-msgstr "¡ÓÅѧ¤Í¹¿Ô¡Ãкºà¹çµàÇÔÃì¡"
-
-#: ../install_steps_interactive.pm_.c:492
+#: ../../install_steps_interactive.pm_.c:549
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2240,7 +2811,7 @@ msgid ""
"In addition customer and/or end user shall particularly be aware to not "
"infringe\n"
"the laws of his/their jurisdiction. Should customer and/or end user do not\n"
-"respect the provision of these applicable laws, he/they will incur serious\n"
+"respect the provision of these applicable laws, he/they will incure serious\n"
"sanctions.\n"
"\n"
"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
@@ -2262,124 +2833,90 @@ msgid ""
"USA"
msgstr ""
-#: ../install_steps_interactive.pm_.c:523
+#: ../../install_steps_interactive.pm_.c:580
msgid "Choose a mirror from which to get the packages"
msgstr "àÅ×Í¡ÁÔÅàÃÍÃì䫵ì·Õè¨Ðãªé㹡ÒôÒǹìâËÅ´á¾ç¤à¡ç¨"
-#: ../install_steps_interactive.pm_.c:528
+#: ../../install_steps_interactive.pm_.c:588
msgid "Contacting the mirror to get the list of available packages"
msgstr "¡ÓÅѧµÔ´µè͡ѺÁÔÅàÃÍÃì䫵ìà¾×èÍËÒÃÒ¡Òâͧá¾ç¤à¡ç¨·ÕèÁÕãËé"
-#: ../install_steps_interactive.pm_.c:532
-msgid "Which packages do you want to install"
+#: ../../install_steps_interactive.pm_.c:592
+#, fuzzy
+msgid "Please choose the packages you want to install."
msgstr "àÅ×Í¡á¾ç¤à¡ç¨·Õè¤Ø³µéͧ¡ÒõԴµÑé§"
-#: ../install_steps_interactive.pm_.c:534
-msgid "Downloading cryptographic packages"
-msgstr "¡ÓÅѧ´ÒǹìâËÅ´á¾ç¤à¡ç¨Ãкºà¢éÒÃËÑÊ"
-
-#: ../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:606
msgid "Which is your timezone?"
msgstr "¤Ø³ãªéÂèÒ¹àÇÅÒã´?"
-#: ../install_steps_interactive.pm_.c:545
+#: ../../install_steps_interactive.pm_.c:607
msgid "Is your hardware clock set to GMT?"
msgstr "¤Ø³µéͧ¡ÒÃãËéà«çµ¹ÒÌÔ¡ÒÎÒÃì´áÇÃìà»ç¹ GMT?"
-#: ../install_steps_interactive.pm_.c:555
-msgid "Printer"
-msgstr "à¤Ã×èͧ¾ÔÁ¾ì"
-
-#: ../install_steps_interactive.pm_.c:556
-msgid "Would you like to configure a printer?"
-msgstr "¤Ø³µéͧ¡Òä͹¿Ô¡à¤Ã×èͧ¾ÔÁ¾ì´éÇÂËÃ×ÍäÁè"
-
-#: ../install_steps_interactive.pm_.c:576
+#: ../../install_steps_interactive.pm_.c:652
msgid "No password"
msgstr "äÁèÁÕÃËÑʼèÒ¹"
-#: ../install_steps_interactive.pm_.c:576
-#: ../install_steps_interactive.pm_.c:798 ../interactive.pm_.c:74
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:164
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:192 ../my_gtk.pm_.c:425
-#: ../my_gtk.pm_.c:525
-msgid "Ok"
-msgstr "µ¡Å§"
-
-#: ../install_steps_interactive.pm_.c:579
-#: ../install_steps_interactive.pm_.c:625
-#: ../install_steps_interactive.pm_.c:725 ../standalone/adduserdrake_.c:41
-msgid "Password (again)"
-msgstr "ÃËÑʼèÒ¹ (ãÊèÍÕ¡¤ÃÑé§)"
-
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "Use shadow file"
msgstr "ãªéä¿ÅìẺªÒâ´Çì (shadow)"
-#: ../install_steps_interactive.pm_.c:581
+#: ../../install_steps_interactive.pm_.c:657
msgid "shadow"
msgstr "ªÒâ´Çì"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "MD5"
msgstr "MD5"
-#: ../install_steps_interactive.pm_.c:582
+#: ../../install_steps_interactive.pm_.c:658
msgid "Use MD5 passwords"
msgstr "ãªéÃËÑʼèÒ¹ MD5"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "Use NIS"
msgstr "ãªé NIS"
-#: ../install_steps_interactive.pm_.c:584
+#: ../../install_steps_interactive.pm_.c:660
msgid "yellow pages"
msgstr "ãªéÃкºÊÁش˹éÒàËÅ×ͧ (yellow pages)"
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "Please try again"
-msgstr "â»Ã´ÅͧÍÕ¡¤ÃÑé§"
-
-#: ../install_steps_interactive.pm_.c:588
-#: ../install_steps_interactive.pm_.c:636
-#: ../install_steps_interactive.pm_.c:736 ../standalone/adduserdrake_.c:52
-msgid "The passwords do not match"
-msgstr "ÃËÑʼèÒ¹äÁèàËÁ×͹¡Ñ¹"
-
-#: ../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:666
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
-#: ../install_steps_interactive.pm_.c:597
+#: ../../install_steps_interactive.pm_.c:673
msgid "Authentification NIS"
msgstr "¡ÒõÃǨÊͺÊÔ·¸Ôì¡ÒÃãªé§Ò¹¢Í§ NIS"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Domain"
msgstr "â´àÁ¹ NIS"
-#: ../install_steps_interactive.pm_.c:598
+#: ../../install_steps_interactive.pm_.c:674
msgid "NIS Server"
msgstr "à«ÔÃì¿àÇÍÃì NIS"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "ÂÍÁÃѺ¼Ùéãªé"
-#: ../install_steps_interactive.pm_.c:618 ../standalone/adduserdrake_.c:34
+#: ../../install_steps_interactive.pm_.c:699
+#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "à¾ÔèÁ¼Ùéãªé"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(à¾ÔèÁ %s àÃÕºÃéÍÂáÅéÇ)"
-#: ../install_steps_interactive.pm_.c:619 ../standalone/adduserdrake_.c:35
+#: ../../install_steps_interactive.pm_.c:700
+#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
"Enter a user\n"
@@ -2388,56 +2925,69 @@ msgstr ""
"ãËéãÊè¼Ùéãªé\n"
"%s"
-#: ../install_steps_interactive.pm_.c:621 ../standalone/adduserdrake_.c:37
+#: ../../install_steps_interactive.pm_.c:702
+#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "ª×èÍàµçÁ"
-#: ../install_steps_interactive.pm_.c:622 ../standalone/adduserdrake_.c:38
+#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "ª×èͼÙéãªé"
-#: ../install_steps_interactive.pm_.c:627 ../standalone/adduserdrake_.c:43
+#: ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "àªÅÅì·Õèãªé"
-#: ../install_steps_interactive.pm_.c:637 ../standalone/adduserdrake_.c:53
+#: ../../install_steps_interactive.pm_.c:710
+#: ../../standalone/adduserdrake_.c:47
+msgid "Icon"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:720
+#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "ÃËÑʼèÒ¹¹Õé§èÒµèÍ¡ÒÃà´Ò"
-#: ../install_steps_interactive.pm_.c:638 ../standalone/adduserdrake_.c:54
+#: ../../install_steps_interactive.pm_.c:721
+#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "â»Ã´»é͹ª×èͼÙéãªé"
-#: ../install_steps_interactive.pm_.c:639 ../standalone/adduserdrake_.c:55
+#: ../../install_steps_interactive.pm_.c:722
+#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ª×èͼÙéãªé¨ÐÊÒÁÒöÁÕä´é੾ÒеÑÇÍÑ¡ÉõÑÇàÅç¡ µÑÇàÅ¢ '-' áÅÐ '_'"
-#: ../install_steps_interactive.pm_.c:640 ../standalone/adduserdrake_.c:56
+#: ../../install_steps_interactive.pm_.c:723
+#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "ª×èͼÙéãªé¹Õéä´é¶Ù¡à¾ÔèÁŧä»ã¹ÃкºàÃÕºÃéÍÂáÅéÇ"
-#: ../install_steps_interactive.pm_.c:659
+#: ../../install_steps_interactive.pm_.c:747
#, fuzzy
-msgid "First drive"
+msgid "First floppy drive"
msgstr "à«ÔÿìàÇÍÃì DNS à¤Ã×èͧáá"
-#: ../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:748
#, fuzzy
-msgid "Second drive"
+msgid "Second floppy drive"
msgstr "à«ÔÿìàÇÍÃì DNS à¤Ã×èͧ·ÕèÊͧ"
-#: ../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:749
msgid "Skip"
msgstr "¢éÒÁä»"
-#: ../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:755
+#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
-"LILO on your system, or another operating system removes LILO, or LILO "
-"doesn't\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
@@ -2451,259 +3001,188 @@ msgstr ""
"¨ÐÊÒÁÒöãªé¡ÑºÍÔÁàÁ¨¡Ùé¤×¹Ãкº¢Í§áÁ¹à´Ãç¡ «Ö觨ЪèÇÂãËé¤Ø³ÊÒÁÒö·Ó¡ÒáÙé\n"
"¤×¹Ãкº¨Ò¡¤ÇÒÁ¼Ô´¾ÅÒ´ä´é´éÇ ¤Ø³µéͧ¡ÒèÐÊÃéÒ§á¼è¹ºÙµËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:764
msgid "Sorry, no floppy drive available"
msgstr "¢ÍÍÀÑ äÁèÁÕ¿ÅéÍ»»Õéä´ÃÇìàÅÂ"
-#: ../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:767
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ãËéàÅ×Í¡¿ÅéÍ»»Õéä´ÃÇì·Õè¤Ø³µéͧ¡Ò÷Óà»ç¹á¼è¹ºÙµ"
-#: ../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "ãËéãÊèá¼è¹¿ÅéÍ»»Õéŧã¹ä´ÃÇì %s"
-#: ../install_steps_interactive.pm_.c:684
-#: ../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:773
msgid "Creating bootdisk"
msgstr "¡ÓÅѧÊÃéÒ§á¼è¹ºÙµ"
-#: ../install_steps_interactive.pm_.c:691
-msgid "Preparing bootloader"
-msgstr "¡ÓÅѧàµÃÕÂÁºÙµâËÅ´à´ÍÃì"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of boot partition"
-msgstr "à«ç¡àµÍÃìáá¢Í§ºÙµ¾ÒÃìµÔªÑè¹"
-
-#: ../install_steps_interactive.pm_.c:703
-msgid "First sector of drive (MBR)"
-msgstr "à«ç¡àµÍÃìáá¢Í§ä´ÃÇì (MBR)"
-
-#: ../install_steps_interactive.pm_.c:708
-msgid "LILO Installation"
-msgstr "¡ÒõԴµÑé§ LILO"
-
-#: ../install_steps_interactive.pm_.c:709
-msgid "Where do you want to install the bootloader?"
-msgstr "¤Ø³¨ÐµÔ´µÑ駺ٵâËÅ´à´ÍÃìäÇé·Õèä˹?"
-
-#: ../install_steps_interactive.pm_.c:715
-msgid "Do you want to use LILO?"
-msgstr "¤Ø³µéͧ¡ÒÃãªé LILO ËÃ×ÍäÁè"
-
-#: ../install_steps_interactive.pm_.c:718
-msgid "Boot device"
-msgstr "ÍØ»¡Ã³ìºÙµ"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "Linear (needed for some SCSI drives)"
-msgstr "Linear (ãªéÊÓËÃѺä´ÃÇìẺ SCSI ºÒ§µÑÇ)"
-
-#: ../install_steps_interactive.pm_.c:719
-msgid "linear"
-msgstr "linear"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "Compact"
-msgstr "ẺÍÑ´ (Compact)"
-
-#: ../install_steps_interactive.pm_.c:720
-msgid "compact"
-msgstr "ẺÍÑ´ (compact)"
-
-#: ../install_steps_interactive.pm_.c:721
-msgid "Delay before booting default image"
-msgstr "˹èǧàÇÅÒ¡è͹·Ó¡ÒúٵÍÔÁàÁ¨·Õèãªé"
-
-#: ../install_steps_interactive.pm_.c:722
-msgid "Video mode"
-msgstr "âËÁ´¢Í§¡ÒÃáÊ´§¼Å"
-
-#: ../install_steps_interactive.pm_.c:726
-msgid "Restrict command line options"
-msgstr "ÍçÍ»ªÑ蹨Óà¾ÒзÕèãªé¡Ñº¤ÍÁÁÒ¹´ìäŹì"
+#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:55
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "¡ÒõԴµÑé§ LILO ÅéÁàËÅÇ µèÍ仹Õéà»ç¹¢éͼԴ¾ÅÒ´·Õèà¡Ô´¢Öé¹"
-#: ../install_steps_interactive.pm_.c:726
-msgid "restrict"
-msgstr "¨Óà¾ÒÐ"
+#: ../../install_steps_interactive.pm_.c:806
+msgid "Do you want to use SILO?"
+msgstr "¤Ø³µéͧ¡ÒÃãªé SILO ËÃ×ÍäÁè"
-#: ../install_steps_interactive.pm_.c:732
-msgid "LILO main options"
-msgstr "ÍêÍ»ªÑè¹ËÅÑ¡¢Í§ LILO"
+#: ../../install_steps_interactive.pm_.c:817
+msgid "SILO main options"
+msgstr "ÍêÍ»ªÑè¹ËÅÑ¡¢Í§ SILO"
-#: ../install_steps_interactive.pm_.c:735
+#: ../../install_steps_interactive.pm_.c:830
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "ÍçÍ»ªÑè¹ ``ÍêÍ»ªÑ蹨Óà¾ÒзÕèãªé¡Ñº¤ÍÁÁÒ¹´ìäŹì'' ¨ÐµéͧãÊèÃËÑʼèÒ¹´éÇÂ"
-
-#: ../install_steps_interactive.pm_.c:746
-#, fuzzy
-msgid ""
-"Here are the following entries in LILO.\n"
+"Here are the following entries in SILO.\n"
"You can add some more or change the existing ones."
msgstr ""
-"µèÍ仹Õéà»ç¹¢éÍÁÙÅã¹ LILO\n"
+"µèÍ仹Õéà»ç¹¢éÍÁÙÅã¹ SILO\n"
"¤Ø³µéͧ¡ÒÃà¾ÔèÁ¢éÍÁÙÅËÃ×Íá¡é䢢éÍÁÙÅ·ÕèÁÕä´é"
-#: ../install_steps_interactive.pm_.c:748 ../standalone/rpmdrake_.c:302
-msgid "Add"
-msgstr "à¾ÔèÁ"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Linux"
-msgstr "Åչء«ì"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Other OS (windows...)"
-msgstr "Ãкº»¯ÔºÑµÔ¡ÒÃÍ×è¹æ (ÇÔ¹â´ÇÊì...)"
-
-#: ../install_steps_interactive.pm_.c:757
-msgid "Which type of entry do you want to add"
-msgstr "¢éÍÁÙÅ»ÃÐàÀ·ã´·Õè¤Ø³µéͧ¡ÒÃà¾ÔèÁ"
-
-#: ../install_steps_interactive.pm_.c:777
-msgid "Image"
-msgstr "Image"
-
-#: ../install_steps_interactive.pm_.c:778
-#: ../install_steps_interactive.pm_.c:786
-msgid "Root"
-msgstr "Root"
-
-#: ../install_steps_interactive.pm_.c:779
-msgid "Append"
-msgstr "Append"
-
-#: ../install_steps_interactive.pm_.c:780
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../install_steps_interactive.pm_.c:781
-msgid "Read-write"
-msgstr "Read-write"
-
-#: ../install_steps_interactive.pm_.c:787
-msgid "Table"
-msgstr "Table"
-
-#: ../install_steps_interactive.pm_.c:788
-msgid "Unsafe"
-msgstr "Unsafe"
-
-#: ../install_steps_interactive.pm_.c:793
-msgid "Label"
-msgstr "Label"
-
-#: ../install_steps_interactive.pm_.c:795
-msgid "Default"
-msgstr "Default"
-
-#: ../install_steps_interactive.pm_.c:798
-msgid "Remove entry"
-msgstr "ź¢éÍÁÙÅ"
-
-#: ../install_steps_interactive.pm_.c:801
-msgid "Empty label not allowed"
-msgstr "äÁè͹حҵãËéÁÕËÑÇ¢éÍÇèÒ§"
+#: ../../install_steps_interactive.pm_.c:858
+#, fuzzy
+msgid "Partition"
+msgstr "¾ÒÃìµÔªÑè¹ÃÙ·"
-#: ../install_steps_interactive.pm_.c:802
+#: ../../install_steps_interactive.pm_.c:878
msgid "This label is already in use"
msgstr "ËÑÇ¢é͹Õé¶Ù¡ãªéä»àÃÕºÃéÍÂáÅéÇ"
-#: ../install_steps_interactive.pm_.c:803
-#, c-format
-msgid "A entry %s already exists"
-msgstr "ÁÕ¢éÍÁÙÅ %s ÍÂÙèáÅéÇ"
+#: ../../install_steps_interactive.pm_.c:891
+msgid "Installation of SILO failed. The following error occured:"
+msgstr "¡ÒõԴµÑé§ SILO ÅéÁàËÅÇ µèÍ仹Õéà»ç¹¢éͼԴ¾ÅÒ´·Õèà¡Ô´¢Öé¹"
-#: ../install_steps_interactive.pm_.c:817
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "¡ÒõԴµÑé§ LILO ÅéÁàËÅÇ µèÍ仹Õéà»ç¹¢éͼԴ¾ÅÒ´·Õèà¡Ô´¢Öé¹"
+#: ../../install_steps_interactive.pm_.c:901
+msgid "Preparing bootloader"
+msgstr "¡ÓÅѧàµÃÕÂÁºÙµâËÅ´à´ÍÃì"
+
+#: ../../install_steps_interactive.pm_.c:909
+msgid "Do you want to use aboot?"
+msgstr "¤Ø³µéͧ¡ÒÃãªé aboot ËÃ×ÍäÁè"
-#: ../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:912
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:929
msgid "Proxies configuration"
msgstr "¡Òä͹¿Ô¡ Proxies"
-#: ../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:930
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:931
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:937
msgid "Proxy should be http://..."
msgstr "¤èҢͧ Proxy ¤ÇèÐà»ç¹ http://..."
-#: ../install_steps_interactive.pm_.c:840
+#: ../../install_steps_interactive.pm_.c:938
msgid "Proxy should be ftp://..."
msgstr "¤èҢͧ Proxy ¤ÇèÐà»ç¹ ftp://..."
-#: ../install_steps_interactive.pm_.c:850 ../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr ""
-#: ../install_steps_interactive.pm_.c:851 ../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "µèÓ¡ÇèÒÁҵðҹ"
-#: ../install_steps_interactive.pm_.c:852 ../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "µèÓ"
-#: ../install_steps_interactive.pm_.c:853 ../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "»Ò¹¡ÅÒ§"
-#: ../install_steps_interactive.pm_.c:854 ../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:24
msgid "High"
msgstr "ÊÙ§"
-#: ../install_steps_interactive.pm_.c:855 ../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoid"
-#: ../install_steps_interactive.pm_.c:868
+#: ../../install_steps_interactive.pm_.c:966
msgid "Miscellaneous questions"
msgstr "¤Ó¶ÒÁÍ×è¹æ"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "(may cause data corruption)"
msgstr "(ÍÒ¨à¡Ô´¢éÍÁÙÅàÊÕÂËÒÂ)"
-#: ../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:967
msgid "Use hard drive optimisations?"
msgstr "ãªéÇÔ¸Õ¡ÒúպÍÑ´ÎÒÃì´ä´ÃÇì (optimisations) ËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:870 ../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:968 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "àÅ×Í¡ÃдѺÃкºÃÑ¡ÉÒ¤ÇÒÁ»ÅÍ´ÀÑÂ"
-#: ../install_steps_interactive.pm_.c:871
+#: ../../install_steps_interactive.pm_.c:969
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "¡Ó˹´¤èÒ˹èǤÇÒÁ¨Ó (RAM) ãËé¶Ù¡µéͧ¶éÒµéͧ¡Òà (Ãкº¾º %d MB)"
-#: ../install_steps_interactive.pm_.c:872
+#: ../../install_steps_interactive.pm_.c:970
msgid "Removable media automounting"
msgstr ""
-#: ../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Clean /tmp at each boot"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:975
+msgid "Enable multi profiles"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:977
msgid "Enable num lock at startup"
msgstr "ãËéà»Ô´ num lock àÁ×èÍàÃÔèÁÃкº"
-#: ../install_steps_interactive.pm_.c:877
-msgid "Give the ram size in Mb"
+#: ../../install_steps_interactive.pm_.c:980
+msgid "Give the ram size in MB"
msgstr "ãËé»é͹¢éÍÁÙŢͧ¢¹Ò´Ë¹èǤÇÒÁ¨Óà»ç¹ Mb"
-#: ../install_steps_interactive.pm_.c:905
-#: ../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Can't use supermount in high security level"
+msgstr "àÅ×Í¡ÃдѺÃкºÃÑ¡ÉÒ¤ÇÒÁ»ÅÍ´ÀÑÂ"
+
+#: ../../install_steps_interactive.pm_.c:1002
+msgid ""
+"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+"By default, the 3.3 server is used because it works on more graphic cards.\n"
+"\n"
+"Do you want to try XFree 4.0?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1167
msgid "Try to find PCI devices?"
msgstr "ãËéÅͧ¤é¹ËÒÍØ»¡Ã³ì PCI ËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1034
+msgid "Do you want to generate an auto install floppy for linux replication?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1036
+#, fuzzy, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "ãËéãÊèá¼è¹¿ÅéÍ»»Õéŧã¹ä´ÃÇì %s"
+
+#: ../../install_steps_interactive.pm_.c:1044
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "¡ÓÅѧàµÃÕÂÁ¡ÒõԴµÑé§"
+
+#: ../../install_steps_interactive.pm_.c:1068
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -2713,7 +3192,7 @@ msgstr ""
"\n"
"¤Ø³µéͧ¡ÒÃÍÍ¡¨Ò¡¡ÒõԴµÑ駨ÃÔ§æËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:927
+#: ../../install_steps_interactive.pm_.c:1075
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -2735,26 +3214,26 @@ msgstr ""
"¢éÍÁÙÅÊÓËÃѺ¡Òä͹¿Ô¡Ãкº¢Í§¤Ø³ ÊÒÁÒöËÒä´é¨Ò¡ªèǧ\n"
"º·ËÅѧ¨Ò¡¡ÒõԴµÑ駢ͧ¤ÙèÁ×Íá¹Ð¹Ó¼Ùéãªé§Ò¹Åչء«ì-áÁ¹à´Ã¡©ºÑºà»ç¹·Ò§¡ÒÃ"
-#: ../install_steps_interactive.pm_.c:936
+#: ../../install_steps_interactive.pm_.c:1084
msgid "Shutting down"
msgstr "ÂصԡÒ÷ӧҹÃкº"
-#: ../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:1096
#, c-format
msgid "Installing driver for %s card %s"
msgstr "µÔ´µÑé§ä´ÃàÇÍÃìÊÓËÃѺ %s ¡ÒÃì´ %s"
-#: ../install_steps_interactive.pm_.c:951
+#: ../../install_steps_interactive.pm_.c:1097
#, c-format
msgid "(module %s)"
msgstr "(âÁ´ÙÅ %s)"
-#: ../install_steps_interactive.pm_.c:961
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "Which %s driver should I try?"
msgstr "µéͧ¡ÒÃãËéâ»Ãá¡ÃÁ·´Åͧãªéä´ÃàÇÍÃì %s ª¹Ô´ã´?"
-#: ../install_steps_interactive.pm_.c:969
+#: ../../install_steps_interactive.pm_.c:1115
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -2771,20 +3250,20 @@ msgstr ""
"µÃǨËÒ¢éÍÁÙÅ·Õè¨Óà»ç¹µéͧãªé? 㹺ҧ¡Ã³Õ¡ÒõÃǨËÒÍÒ¨·ÓãËé¤ÍÁ¾ÔÇàµÍÃìáΧ¤ì\n"
"áµè¨ÐäÁèà»ç¹ÍѹµÃÒ¡Ѻ¤ÍÁ¾ÔÇàµÍÃì"
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Autoprobe"
msgstr "µÃǨËÒÍѵâ¹ÁѵÔ"
-#: ../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:1120
msgid "Specify options"
msgstr "ÃкØÍêÍ»ªÑè¹"
-#: ../install_steps_interactive.pm_.c:978
+#: ../../install_steps_interactive.pm_.c:1124
#, c-format
msgid "You may now provide its options to module %s."
msgstr "¤Ø³ÊÒÁÒö»é͹¢éÍÁÙÅÍêÍ»ªÑè¹ãËé¡ÑºâÁ´ÙÅ %s ä´éáÅéÇ"
-#: ../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:1130
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -2795,11 +3274,11 @@ msgstr ""
"ÍêÍ»ªÑ蹨ÐÍÂÙèã¹ÃٻẺ ``name=value name2=value2 ...''\n"
"µÑÇÍÂèÒ§àªè¹, ``io=0x300 irq=7''"
-#: ../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1133
msgid "Module options:"
msgstr "ÍêÍ»ªÑ蹢ͧâÁ´ÙÅ:"
-#: ../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:1143
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -2808,301 +3287,309 @@ msgstr ""
"¡ÒÃâËÅ´âÁ´ÙÅ %s ÅéÁàËÅÇ\n"
"¤Ø³µéͧ¡ÒÃãËé·´ÅͧÍÕ¡¤ÃÑ駴éǾÒÃÒÁÔàµÍÃìÍ×è¹æÍÕ¡ËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:1010
+#: ../../install_steps_interactive.pm_.c:1156
msgid "Try to find PCMCIA cards?"
msgstr "ãËéÅͧ¤é¹ËÒ¡ÒÃì´ PCMCIA ËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "Configuring PCMCIA cards..."
msgstr "¡ÓÅѧ¤Í¹¿Ô¡¡ÒÃì´ PCMCIA..."
-#: ../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1157
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../install_steps_interactive.pm_.c:1018
-msgid ""
-"Linux does not yet fully support ultra dma 66 HPT.\n"
-"As a work-around i can make a custom floppy giving access the hard drive on "
-"ide2 and ide3"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1039
-#, fuzzy
-msgid ""
-"Enter a floppy to create an HTP enabled boot\n"
-"(all data on floppy will be lost)"
-msgstr ""
-"¡ÃسÒãÊèá¼è¹¿ÅéÍ»»Õéã¹ä´ÃÇì\n"
-"¢éÍÁÙÅ·Ñé§ËÁ´º¹á¼è¹¿ÅéÍ»»Õé¨Ð¶Ù¡Åº"
-
-#: ../install_steps_interactive.pm_.c:1056
-msgid "It is necessary to restart installation booting on the floppy"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1057
-msgid "It is necessary to restart installation with the new parameters"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1061
-#, c-format
-msgid ""
-"Failed to create an HTP boot floppy.\n"
-"You may have to restart installation and give ``%s'' at the prompt"
-msgstr ""
-
-#: ../install_steps_interactive.pm_.c:1081
+#: ../../install_steps_interactive.pm_.c:1176
#, c-format
msgid "Found %s %s interfaces"
msgstr "µÃǨ¾º %s ÍÔ¹à·ÍÃìà¿Ê %s"
-#: ../install_steps_interactive.pm_.c:1082
+#: ../../install_steps_interactive.pm_.c:1177
msgid "Do you have another one?"
msgstr "¤Ø³ÁÕÍѹÍ×è¹æÍÕ¡ËÃ×ÍäÁè?"
-#: ../install_steps_interactive.pm_.c:1083
+#: ../../install_steps_interactive.pm_.c:1178
#, c-format
-msgid "Do you have any %s interface?"
+msgid "Do you have any %s interfaces?"
msgstr "¤Ø³ÁÕÍÔ¹à·ÍÃìà¿Ê %s ¨Ó¹Ç¹à·èÒäËÃè?"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424 ../printerdrake.pm_.c:176
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
msgid "No"
msgstr "äÁèµéͧ"
-#: ../install_steps_interactive.pm_.c:1085 ../interactive.pm_.c:79
-#: ../my_gtk.pm_.c:424
+#: ../../install_steps_interactive.pm_.c:1180 ../../interactive.pm_.c:79
+#: ../../my_gtk.pm_.c:458
msgid "Yes"
msgstr "ãªè"
-#: ../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1181
msgid "See hardware info"
msgstr "ÍèÒ¹µèÍ¢éÍÁÙŢͧÎÒÃì´áÇÃì"
-#: ../install_steps_newt.pm_.c:19
+#: ../../install_steps_interactive.pm_.c:1197
+#, fuzzy
+msgid "Bringing up the network"
+msgstr "¡ÓÅѧ¤Í¹¿Ô¡Ãкºà¹çµàÇÔÃì¡"
+
+#: ../../install_steps_interactive.pm_.c:1202
+#, fuzzy
+msgid "Bringing down the network"
+msgstr "¡ÓÅѧ¤Í¹¿Ô¡Ãкºà¹çµàÇÔÃì¡"
+
+#: ../../install_steps_newt.pm_.c:21
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "¡ÒõԴµÑé§Åչء«ì-áÁ¹à´Ã¡ %s"
-#: ../install_steps_newt.pm_.c:30
+#: ../../install_steps_newt.pm_.c:32
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tab>/<Alt-Tab> ÃÐËÇèÒ§µÑÇàÅ×Í¡ | <Space> àÅ×Í¡ | <F12> ˹éÒ¶Ñ´ä» "
-#: ../interactive.pm_.c:84 ../interactive.pm_.c:163
-#: ../interactive_newt.pm_.c:50 ../interactive_newt.pm_.c:97
-#: ../interactive_stdio.pm_.c:27 ../my_gtk.pm_.c:193 ../my_gtk.pm_.c:425
-msgid "Cancel"
-msgstr "¡àÅÔ¡"
+#: ../../install_steps_newt.pm_.c:43
+#, c-format
+msgid ""
+"You can now partition your %s hard drive\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
-#: ../interactive.pm_.c:181
+#: ../../interactive.pm_.c:244
msgid "Please wait"
msgstr "â»Ã´ÃÍÊÑ¡¤ÃÙè"
-#: ../interactive_stdio.pm_.c:35
+#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
msgstr "à¡Ô´¢é͢ѴáÂé§ (%s), â»Ã´àÅ×Í¡ãËé¶Ù¡µéͧ\n"
-#: ../interactive_stdio.pm_.c:36 ../interactive_stdio.pm_.c:51
-#: ../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
+#: ../../interactive_stdio.pm_.c:70
msgid "Bad choice, try again\n"
msgstr "µÑÇàÅ×Í¡¼Ô´¾ÅÒ´ â»Ã´·´ÅͧÍÕ¡¤ÃÑé§\n"
-#: ../interactive_stdio.pm_.c:39
+#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
msgstr " ? (¤èÒµÑé§µé¹ %s) "
-#: ../interactive_stdio.pm_.c:52
+#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
msgstr "µÑÇàÅ×Í¡¢Í§¤Ø³? (¤èÒµÑé§µé¹ %s)"
-#: ../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:71
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "µÑÇàÅ×Í¡¢Í§¤Ø³? (¤èÒµÑé§µé¹ %s ãËéãÊè `none' à¾×è͵ÑÇàÅ×Í¡ÇèÒ§) "
-#: ../keyboard.pm_.c:88
-msgid "Armenian"
+#: ../../keyboard.pm_.c:89 ../../keyboard.pm_.c:116
+msgid "Czech"
+msgstr "તâ¡ÊâÅÇÒà¡ÕÂ"
+
+#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:117
+msgid "German"
+msgstr "àÂÍÃÁѹ"
+
+#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:120
+msgid "Dvorak"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+msgid "Spanish"
+msgstr "Ê໹"
+
+#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:123
+msgid "Finnish"
+msgstr "¿Ô¹áŹ´ì"
+
+#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:124
+msgid "French"
+msgstr "½ÃÑè§àÈÉ"
+
+#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:143
+msgid "Norwegian"
+msgstr "¹ÍÃìàÇÂì"
+
+#: ../../keyboard.pm_.c:96
+msgid "Polish"
+msgstr "â»áŹ´ì"
+
+#: ../../keyboard.pm_.c:97 ../../keyboard.pm_.c:148
+msgid "Russian"
+msgstr "ÃÑÊà«ÕÂ"
+
+#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:157
+msgid "UK keyboard"
+msgstr "Íѧ¡ÄÉ"
+
+#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:102 ../../keyboard.pm_.c:158
+msgid "US keyboard"
+msgstr "ÍàÁÃÔ¡Ò"
+
+#: ../../keyboard.pm_.c:106
+#, fuzzy
+msgid "Armenian (old)"
msgstr "ÍÒÃìàÁà¹Õ¹"
-#: ../keyboard.pm_.c:89
+#: ../../keyboard.pm_.c:107
+#, fuzzy
+msgid "Armenian (typewriter)"
+msgstr "ÍÒÃìàÁà¹Õ¹ (â¿à¹µÔ¤)"
+
+#: ../../keyboard.pm_.c:108
+msgid "Armenian (phonetic)"
+msgstr "ÍÒÃìàÁà¹Õ¹ (â¿à¹µÔ¤)"
+
+#: ../../keyboard.pm_.c:111
msgid "Belgian"
msgstr "àºÅàÂÕèÂÁ"
-#: ../keyboard.pm_.c:90
+#: ../../keyboard.pm_.c:112
msgid "Bulgarian"
msgstr "ºÑÅ¡ÒàÃÕÂ"
-#: ../keyboard.pm_.c:91
-msgid "Brazilian"
+#: ../../keyboard.pm_.c:113
+msgid "Brazilian (ABNT-2)"
msgstr "ºÃÒ«ÔÅ"
-#: ../keyboard.pm_.c:92
-msgid "Swiss (French layout)"
-msgstr "ÊÇÔÊ (àÅÂìàÍéÒ·ìµÒÁ½ÃÑè§àÈÉ)"
-
-#: ../keyboard.pm_.c:93
+#: ../../keyboard.pm_.c:114
msgid "Swiss (German layout)"
msgstr "ÊÇÔÊ (àÅÂìàÍéÒ·ìµÒÁàÂÍÃÁѹ)"
-#: ../keyboard.pm_.c:94
-msgid "Czech"
-msgstr "તâ¡ÊâÅÇÒà¡ÕÂ"
+#: ../../keyboard.pm_.c:115
+msgid "Swiss (French layout)"
+msgstr "ÊÇÔÊ (àÅÂìàÍéÒ·ìµÒÁ½ÃÑè§àÈÉ)"
-#: ../keyboard.pm_.c:95
-msgid "German"
-msgstr "àÂÍÃÁѹ"
+#: ../../keyboard.pm_.c:118
+msgid "German (no dead keys)"
+msgstr ""
-#: ../keyboard.pm_.c:96
+#: ../../keyboard.pm_.c:119
msgid "Danish"
msgstr "à´¹ÁÒÃì¡"
-#: ../keyboard.pm_.c:97
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../keyboard.pm_.c:98
+#: ../../keyboard.pm_.c:121
msgid "Estonian"
msgstr "Estonian"
-#: ../keyboard.pm_.c:99
-msgid "Spanish"
-msgstr "Ê໹"
-
-#: ../keyboard.pm_.c:100
-msgid "Finnish"
-msgstr "¿Ô¹áŹ´ì"
-
-#: ../keyboard.pm_.c:101
-msgid "French"
-msgstr "½ÃÑè§àÈÉ"
-
-#: ../keyboard.pm_.c:102
+#: ../../keyboard.pm_.c:125
msgid "Georgian (\"Russian\" layout)"
msgstr "¨ÍÃìà¨Õ (àÅÂìàÍéÒ·ìẺÃÑÊà«ÕÂ)"
-#: ../keyboard.pm_.c:103
+#: ../../keyboard.pm_.c:126
msgid "Georgian (\"Latin\" layout)"
msgstr "¨ÍÃìà¨Õ (àÅÂìàÍéÒ·ìẺÅеԹ)"
-#: ../keyboard.pm_.c:104
+#: ../../keyboard.pm_.c:127
msgid "Greek"
msgstr "¡ÃÕ¡"
-#: ../keyboard.pm_.c:105
+#: ../../keyboard.pm_.c:128
msgid "Hungarian"
msgstr "Íѧ¡ÒÃÕ"
-#: ../keyboard.pm_.c:106
+#: ../../keyboard.pm_.c:129
+msgid "Croatian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:130
msgid "Israeli"
msgstr "ÍÔÊÃÒàÍÅ"
-#: ../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:131
msgid "Israeli (Phonetic)"
msgstr "ÍÔÅÃÒàÍÅ (â¿à¹µÔ¤)"
-#: ../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:134
msgid "Icelandic"
msgstr "äÍ«ìᏴì"
-#: ../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:135
msgid "Italian"
msgstr "ÍÔµÒÅÕ"
-#: ../keyboard.pm_.c:110
+#: ../../keyboard.pm_.c:136
msgid "Latin American"
msgstr "ÅеԹÍàÁÃÔ¡Ò"
-#: ../keyboard.pm_.c:111
+#: ../../keyboard.pm_.c:137
msgid "Dutch"
msgstr "ÎÍÅᏴì"
-#: ../keyboard.pm_.c:112
-msgid "Lithuanian AZERTY"
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Lithuanian AZERTY (old)"
msgstr "ÅÔ¸ÑÇà¹Õ AZERTY"
-#: ../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:140
+#, fuzzy
+msgid "Lithuanian AZERTY (new)"
+msgstr "ÅÔ¸ÑÇà¹Õ AZERTY"
+
+#: ../../keyboard.pm_.c:141
msgid "Lithuanian \"number row\" QWERTY"
msgstr "ÅÔ¸ÑÇà¹Õ \"á¶ÇµÑÇàÅ¢\" QWERTY"
-#: ../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:142
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "ÅÔ¸ÑÇà¹Õ \"â¿à¹µÔ¤\" QWERTY"
-#: ../keyboard.pm_.c:115
-msgid "Norwegian"
-msgstr "¹ÍÃìàÇÂì"
-
-#: ../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:144
#, fuzzy
msgid "Polish (qwerty layout)"
msgstr "ÊÇÔÊ (àÅÂìàÍéÒ·ìµÒÁàÂÍÃÁѹ)"
-#: ../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:145
#, fuzzy
msgid "Polish (qwertz layout)"
msgstr "ÊÇÔÊ (àÅÂìàÍéÒ·ìµÒÁàÂÍÃÁѹ)"
-#: ../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:146
msgid "Portuguese"
msgstr "â»ÃµØà¡Ê"
-#: ../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:147
msgid "Canadian (Quebec)"
msgstr "¤Ò¹Ò´Ò (¤ÇÔ຤)"
-#: ../keyboard.pm_.c:120
-msgid "Russian"
-msgstr "ÃÑÊà«ÕÂ"
-
-#: ../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:149
msgid "Russian (Yawerty)"
msgstr "ÃÑÊà«ÕÂ (Yawerty)"
-#: ../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:150
msgid "Swedish"
msgstr "ÊÇÕà´¹"
-#: ../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:151
msgid "Slovenian"
msgstr "ÊâÅÇÒà¹ÕÂ"
-#: ../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:152
msgid "Slovakian"
msgstr "ÊâÅÇÒà¡ÕÂ"
-#: ../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:153
msgid "Thai keyboard"
msgstr "ä·Â"
-#: ../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:154
msgid "Turkish (traditional \"F\" model)"
msgstr "µØÃ¡Õ (âÁà´ÅẺἹ \"F\")"
-#: ../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:155
msgid "Turkish (modern \"Q\" model)"
msgstr "µØÃ¡Õ (âÁà´ÅÊÁÑÂãËÁè \"Q\")"
-#: ../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:156
msgid "Ukrainian"
msgstr "ÂÙà¤Ã¹"
-#: ../keyboard.pm_.c:129
-msgid "UK keyboard"
-msgstr "Íѧ¡ÄÉ"
-
-#: ../keyboard.pm_.c:130
-msgid "US keyboard"
-msgstr "ÍàÁÃÔ¡Ò"
-
-#: ../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:159
msgid "US keyboard (international)"
msgstr "¤ÕÂìºÍÃì´ÍàÁÃԡѹ (¹Ò¹ÒªÒµÔ)"
-#: ../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:160
msgid "Yugoslavian (latin layout)"
msgstr "ÂÙâ¡ÊÅÒàÇÕ (àÅÂìàÍéÒ·ìẺÅеԹ)"
@@ -3112,7 +3599,7 @@ msgstr "ÂÙâ¡ÊÅÒàÇÕ (àÅÂìàÍéÒ·ìẺÅеԹ)"
# transliteration be used; or maybe the english text be used; as it is best
# When possible cp437 accentuated letters can be used too.
#
-#: ../lilo.pm_.c:145
+#: ../../lilo.pm_.c:176
#, c-format
msgid ""
"Welcome to LILO the operating system chooser!\n"
@@ -3131,131 +3618,213 @@ msgstr ""
"áÅéÇ¡´ <ENTER> ËÃ×ÍãËéÃÍÊÑ¡ %d ÇÔ¹Ò·Õà¾×èÍãªé¡Òúٵ¨Ò¡µÑÇàÅ×Í¡µÑ駵é¹\n"
"\n"
-#: ../mouse.pm_.c:20
-msgid "No Mouse"
-msgstr "äÁèÁÕàÁéÒÊì"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../lilo.pm_.c:431
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr ""
-#: ../mouse.pm_.c:21
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A ËÃ×ÍÊÙ§¡ÇèÒ (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../lilo.pm_.c:432
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
-#: ../mouse.pm_.c:22
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../lilo.pm_.c:433
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
-#: ../mouse.pm_.c:23
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../lilo.pm_.c:434
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
-#: ../mouse.pm_.c:24
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../lilo.pm_.c:435
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr ""
-#: ../mouse.pm_.c:25
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../lilo.pm_.c:439
+msgid "not enough room in /boot"
+msgstr ""
-#: ../mouse.pm_.c:26
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../lilo.pm_.c:518
+msgid "Desktop"
+msgstr ""
-#: ../mouse.pm_.c:27
-msgid "MM Series (serial)"
-msgstr "MM Series (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../lilo.pm_.c:518
+msgid "Start Menu"
+msgstr ""
-#: ../mouse.pm_.c:28
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../mouse.pm_.c:21
+#, fuzzy
+msgid "Sun - Mouse"
+msgstr "àÁéÒÊìẺ USB"
-#: ../mouse.pm_.c:29
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (¾ÍÃìµÍ¹Ø¡ÃÁ, Ẻà¡èÒ C7)"
+#: ../../mouse.pm_.c:23
+#, fuzzy
+msgid "Apple ADB Mouse"
+msgstr "àÁéÒÊìẺ ATI ºÑÊ"
-#: ../mouse.pm_.c:30
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../mouse.pm_.c:24
+#, fuzzy
+msgid "Apple ADB Mouse (2 Buttons)"
+msgstr "àÁéÒÊìẺ USB (3 »ØèÁËÃ×ÍÁÒ¡¡ÇèÒ)"
-#: ../mouse.pm_.c:31
-msgid "Generic Mouse (serial)"
-msgstr "àÁéÒÊìẺ»¡µÔ (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../mouse.pm_.c:25
+#, fuzzy
+msgid "Apple ADB Mouse (3+ Buttons)"
+msgstr "àÁéÒÊìẺ USB (3 »ØèÁËÃ×ÍÁÒ¡¡ÇèÒ)"
-#: ../mouse.pm_.c:32
-msgid "Microsoft compatible (serial)"
-msgstr "àÁéÒÊì·Õèà¢éҡѹä´é¡ÑºäÁâ¤Ã«Í¿·ì (¾ÍÃìµ»¡µÔ)"
+#: ../../mouse.pm_.c:26
+#, fuzzy
+msgid "Apple USB Mouse"
+msgstr "àÁéÒÊìẺ USB"
-#: ../mouse.pm_.c:33
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "àÁéÒÊìẺ»¡µÔ·Õèãªé§Ò¹ÊÒÁ»ØèÁ (¾ÍÃìµ»¡µÔ)"
+#: ../../mouse.pm_.c:27
+#, fuzzy
+msgid "Apple USB Mouse (2 Buttons)"
+msgstr "àÁéÒÊìẺ USB (3 »ØèÁËÃ×ÍÁÒ¡¡ÇèÒ)"
-#: ../mouse.pm_.c:34
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+#: ../../mouse.pm_.c:28
+#, fuzzy
+msgid "Apple USB Mouse (3+ Buttons)"
+msgstr "àÁéÒÊìẺ USB (3 »ØèÁËÃ×ÍÁÒ¡¡ÇèÒ)"
-#: ../mouse.pm_.c:35
+#: ../../mouse.pm_.c:30
msgid "Generic Mouse (PS/2)"
msgstr "àÁéÒÊìẺ»¡µÔ (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:36
+#: ../../mouse.pm_.c:31
msgid "Logitech MouseMan/FirstMouse (ps/2)"
msgstr "Logitech MouseMan/FirstMouse (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:37
+#: ../../mouse.pm_.c:32
msgid "Generic 3 Button Mouse (PS/2)"
msgstr "àÁéÒÊìẺ»¡µÔ·Õèãªé§Ò¹ÊÒÁ»ØèÁ (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:38
+#: ../../mouse.pm_.c:33
msgid "ALPS GlidePoint (PS/2)"
msgstr "ALPS GlidePoint (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:39
+#: ../../mouse.pm_.c:34
msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
msgstr "Logitech MouseMan+/FirstMouse+ (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:40
+#: ../../mouse.pm_.c:35
msgid "Kensington Thinking Mouse (PS/2)"
msgstr "Kensington Thinking Mouse (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:41
+#: ../../mouse.pm_.c:36
msgid "ASCII MieMouse (PS/2)"
msgstr "ASCII MieMouse (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:42
+#: ../../mouse.pm_.c:37
msgid "Genius NetMouse (PS/2)"
msgstr "Genius NetMouse (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:43
+#: ../../mouse.pm_.c:38
msgid "Genius NetMouse Pro (PS/2)"
msgstr "Genius NetMouse Pro (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:44
+#: ../../mouse.pm_.c:39
msgid "Genius NetScroll (PS/2)"
msgstr "Genius NetScroll (¾ÍÃìµ PS/2)"
-#: ../mouse.pm_.c:45
+#: ../../mouse.pm_.c:40
msgid "Microsoft IntelliMouse (PS/2)"
msgstr "Microsoft IntelliMouse (PS/2)"
-#: ../mouse.pm_.c:46
+#: ../../mouse.pm_.c:41
msgid "ATI Bus Mouse"
msgstr "àÁéÒÊìẺ ATI ºÑÊ"
-#: ../mouse.pm_.c:47
+#: ../../mouse.pm_.c:42
msgid "Microsoft Bus Mouse"
msgstr "àÁéÒÊìẺäÁâ¤Ã«Í¿·ìºÑÊ"
-#: ../mouse.pm_.c:48
+#: ../../mouse.pm_.c:43
msgid "Logitech Bus Mouse"
msgstr "àÁéÒÊìẺÅͨÔà·¤ºÑÊ"
-#: ../mouse.pm_.c:49
+#: ../../mouse.pm_.c:44
msgid "USB Mouse"
msgstr "àÁéÒÊìẺ USB"
-#: ../mouse.pm_.c:50
+#: ../../mouse.pm_.c:45
msgid "USB Mouse (3 buttons or more)"
msgstr "àÁéÒÊìẺ USB (3 »ØèÁËÃ×ÍÁÒ¡¡ÇèÒ)"
-#: ../partition_table.pm_.c:486
+#: ../../mouse.pm_.c:47
+msgid "No Mouse"
+msgstr "äÁèÁÕàÁéÒÊì"
+
+#: ../../mouse.pm_.c:48
+msgid "Microsoft Rev 2.1A or higher (serial)"
+msgstr "Microsoft Rev 2.1A ËÃ×ÍÊÙ§¡ÇèÒ (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:49
+msgid "Logitech CC Series (serial)"
+msgstr "Logitech CC Series (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:50
+msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+msgstr "Logitech MouseMan+/FirstMouse+ (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:51
+msgid "ASCII MieMouse (serial)"
+msgstr "ASCII MieMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:52
+msgid "Genius NetMouse (serial)"
+msgstr "Genius NetMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:53
+msgid "Microsoft IntelliMouse (serial)"
+msgstr "Microsoft IntelliMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:54
+msgid "MM Series (serial)"
+msgstr "MM Series (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:55
+msgid "MM HitTablet (serial)"
+msgstr "MM HitTablet (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (¾ÍÃìµÍ¹Ø¡ÃÁ, Ẻà¡èÒ C7)"
+
+#: ../../mouse.pm_.c:57
+msgid "Logitech MouseMan/FirstMouse (serial)"
+msgstr "Logitech MouseMan/FirstMouse (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:58
+msgid "Generic Mouse (serial)"
+msgstr "àÁéÒÊìẺ»¡µÔ (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../mouse.pm_.c:59
+msgid "Microsoft compatible (serial)"
+msgstr "àÁéÒÊì·Õèà¢éҡѹä´é¡ÑºäÁâ¤Ã«Í¿·ì (¾ÍÃìµ»¡µÔ)"
+
+#: ../../mouse.pm_.c:60
+msgid "Generic 3 Button Mouse (serial)"
+msgstr "àÁéÒÊìẺ»¡µÔ·Õèãªé§Ò¹ÊÒÁ»ØèÁ (¾ÍÃìµ»¡µÔ)"
+
+#: ../../mouse.pm_.c:61
+msgid "Mouse Systems (serial)"
+msgstr "Mouse Systems (¾ÍÃìµÍ¹Ø¡ÃÁ)"
+
+#: ../../my_gtk.pm_.c:459
+msgid "Is this correct?"
+msgstr "¶Ù¡µéͧËÃ×ÍäÁè?"
+
+#: ../../partition_table.pm_.c:533
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 "
@@ -3265,114 +3834,129 @@ msgstr ""
"¡ÒÃá¡é䢻ѭËÒÊÒÁÒö·Óä´éâ´ÂÂéÒÂä¾ÃÁÒÃÕ¾ÒÃìµÔªÑè¹ "
"à¾×èÍãËéªèͧÇèÒ仵èÍ·éÒ¾ÒÃìµÔªÑè¹áºº extended"
-#: ../partition_table.pm_.c:572
+#: ../../partition_table.pm_.c:621
#, c-format
msgid "Error reading file %s"
msgstr "ÁջѭËҡѺ¡ÒÃÍèÒ¹¢éÍÁÙÅã¹ä¿Åì %s"
-#: ../partition_table.pm_.c:579
+#: ../../partition_table.pm_.c:628
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "¡ÒáÙé¤×¹¨Ò¡ä¿Åì %s ÅéÁàËÅÇ: %s"
-#: ../partition_table.pm_.c:581
+#: ../../partition_table.pm_.c:630
msgid "Bad backup file"
msgstr "ä¿Åìáºç¤ÍѾÁջѭËÒ"
-#: ../partition_table.pm_.c:602
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error writing to file %s"
msgstr "¢éͼԴ¾ÅÒ´¶Ù¡ºÑ¹·Ö¡ã¹ä¿Åì %s"
-#: ../placeholder.pm_.c:5
+#: ../../pkgs.pm_.c:20
+msgid "mandatory"
+msgstr ""
+
+#: ../../pkgs.pm_.c:21
+msgid "must have"
+msgstr ""
+
+#: ../../pkgs.pm_.c:22
+msgid "important"
+msgstr ""
+
+#: ../../pkgs.pm_.c:24
+msgid "very nice"
+msgstr ""
+
+#: ../../pkgs.pm_.c:25
+#, fuzzy
+msgid "nice"
+msgstr "ÍØ»¡Ã³ì"
+
+#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
+#, fuzzy
+msgid "interesting"
+msgstr "»ÃѺ¢¹Ò´"
+
+#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
+#: ../../pkgs.pm_.c:31
+#, fuzzy
+msgid "maybe"
+msgstr "Image"
+
+#: ../../pkgs.pm_.c:33
+msgid "i18n (important)"
+msgstr ""
+
+#: ../../pkgs.pm_.c:34
+msgid "i18n (very nice)"
+msgstr ""
+
+#: ../../pkgs.pm_.c:35
+msgid "i18n (nice)"
+msgstr ""
+
+#: ../../placeholder.pm_.c:5
#, fuzzy
msgid "Show less"
msgstr "áÊ´§¢éÍÁÙÅ·Ñé§ËÁ´"
-#: ../placeholder.pm_.c:6
+#: ../../placeholder.pm_.c:6
msgid "Show more"
msgstr ""
-#: ../printer.pm_.c:244
+#: ../../printer.pm_.c:244
msgid "Local printer"
msgstr "à¤Ã×èͧ¾ÔÁ¾ìâŤÍÅ (µè͵Դ¡ÑºµÑÇà¤Ã×èͧ)"
-#: ../printer.pm_.c:245
+#: ../../printer.pm_.c:245
msgid "Remote lpd"
msgstr "ÃÕâÁµ lpd"
-#: ../printer.pm_.c:246
+#: ../../printer.pm_.c:246
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/ÇÔ¹â´ÇÊì 95/98/NT"
-#: ../printer.pm_.c:247
+#: ../../printer.pm_.c:247
msgid "NetWare"
msgstr "à¹çµáÇÃì"
-#: ../printerdrake.pm_.c:75
-msgid "Local Printer Options"
-msgstr "ÍçÍ»ªÑ蹢ͧà¤Ã×èͧ¾ÔÁ¾ìâŤÍÅ"
-
-#: ../printerdrake.pm_.c:76
-msgid ""
-"Every print queue (which print jobs are directed to) needs a\n"
-"name (often lp) and a spool directory associated with it. What\n"
-"name and directory should be used for this queue?"
-msgstr ""
-"¾ÃÔ¹µì¤ÔÇ (¾ÃÔ¹µì¤ÔÇà»ç¹·Õèæ§Ò¹¾ÔÁ¾ì¨Ðä»à¡çºäÇé·Õè¹Õè¡è͹Êè§à¤Ã×èͧ¾ÔÁ¾ì)\n"
-"µéͧ¡ÒÃãËéÁÕ¡ÒõÑ駪×èÍ (»¡µÔ¨Ðà»ç¹ lp) áÅÐä´àÃç¡·ÍÃÕ·Õèà¡çº¢éÍÁÙÅ\n"
-"¤Ø³µéͧ¡ÒõÑ駪×èÍ áÅСÓ˹´ä´àÃç¡·ÍÃÕãËéà»ç¹¤èÒã´ºéÒ§?"
-
-#: ../printerdrake.pm_.c:79
-msgid "Name of queue:"
-msgstr "ª×èͧ͢¤ÔÇ:"
-
-#: ../printerdrake.pm_.c:79
-msgid "Spool directory:"
-msgstr "Ê»ÙÅä´àÃç¡·ÍÃÕ:"
-
-#: ../printerdrake.pm_.c:90
-msgid "Select Printer Connection"
-msgstr "àÅ×Í¡¡ÒÃàª×èÍÁµè͡Ѻà¤Ã×èͧ¾ÔÁ¾ì"
-
-#: ../printerdrake.pm_.c:91
-msgid "How is the printer connected?"
-msgstr "à¤Ã×èͧ¾ÔÁ¾ìàª×èÍÁµèÍÍÂèÒ§äÃ?"
-
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "¡ÓÅѧµÃǨÊͺÍØ»¡Ã³ì..."
-#: ../printerdrake.pm_.c:99
+#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "¡ÓÅѧµÃǨÊͺ¾ÍÃìµ"
-#: ../printerdrake.pm_.c:112
+#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "µÃǨ¾ºà¤Ã×èͧ¾ÔÁ¾ìâÁà´Å \"%s\""
-#: ../printerdrake.pm_.c:119
+#: ../../printerdrake.pm_.c:44
msgid "Local Printer Device"
msgstr "ÍØ»¡Ã³ìà¤Ã×èͧ¾ÔÁ¾ìâŤÍÅ"
-#: ../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:45
msgid ""
-"What device is your printer connected to \n"
+"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
"ÍØ»¡Ã³ì·Õèà¤Ã×èͧ¾ÔÁ¾ì¢Í§¤Ø³àª×èÍÁµèÍÍÂÙè¤×Í \n"
"( /dev/lp0 ¨Ðà·Õºà·èҡѺ LPT1:)?\n"
-#: ../printerdrake.pm_.c:121
-msgid "Printer Device:"
+#: ../../printerdrake.pm_.c:47
+#, fuzzy
+msgid "Printer Device"
msgstr "ÍØ»¡Ã³ìà¤Ã×èͧ¾ÔÁ¾ì:"
-#: ../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:62
msgid "Remote lpd Printer Options"
msgstr "ÍêÍ»ªÑ蹢ͧà¤Ã×èͧ¾ÔÁ¾ìẺÃÕâÁ·"
-#: ../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:63
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -3382,19 +3966,20 @@ msgstr ""
"¢Í§ª×èÍâÎʵì·ÕèãËéºÃÔ¡ÒÃà¤Ã×èͧ¾ÔÁ¾ì¹Ñé¹ áÅЪ×èͤÔǢͧà«ÔÃì¿àÇÍÃì¹Ñé¹\n"
"«Öè§à»ç¹·Õèæ§Ò¹¾ÔÁ¾ì¨Ð¶Ù¡à¡çºäÇé"
-#: ../printerdrake.pm_.c:129
-msgid "Remote hostname:"
+#: ../../printerdrake.pm_.c:66
+#, fuzzy
+msgid "Remote hostname"
msgstr "ª×èÍâÎʵìÃÕâÁ·:"
-#: ../printerdrake.pm_.c:129
+#: ../../printerdrake.pm_.c:67
msgid "Remote queue"
msgstr "ª×èͤÔÇÃÕâÁ·"
-#: ../printerdrake.pm_.c:134
+#: ../../printerdrake.pm_.c:75
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "ÍêÍ»ªÑ蹢ͧà¤Ã×èͧ¾ÔÁ¾ìẺ SMB (à¤Ã×èͧ¾ÔÁ¾ìã¹ÃкºÇÔ¹â´ÇÊì 9x/NT)"
-#: ../printerdrake.pm_.c:135
+#: ../../printerdrake.pm_.c:76
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3408,35 +3993,27 @@ msgstr ""
"ª×èͧ͢à¤Ã×èͧ¾ÔÁ¾ì·Õèµéͧ¡ÒÃãªé (share name) áÅЪ×èͧ͢¼Ùéãªé (username)\n"
"ÃËÑʼèÒ¹ (password) áÅТéÍÁÙŢͧàÇÔÃ줡ÃØê» (workgroup) ´éÇÂ"
-#: ../printerdrake.pm_.c:140
-msgid "SMB server IP:"
-msgstr "¤èÒ IP ¢Í§ SMB à«ÔÃì¿àÇÍÃì:"
-
-#: ../printerdrake.pm_.c:140
-msgid "SMB server host:"
-msgstr "ª×èÍâÎʵì¢Í§ SMB server:"
+#: ../../printerdrake.pm_.c:81
+msgid "SMB server host"
+msgstr "ª×èÍâÎʵì¢Í§ SMB server"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "Password:"
-msgstr "ÃËÑʼèÒ¹:"
+#: ../../printerdrake.pm_.c:82
+msgid "SMB server IP"
+msgstr "¤èÒ IP ¢Í§ SMB à«ÔÃì¿àÇÍÃì"
-#: ../printerdrake.pm_.c:141
-msgid "Share name:"
-msgstr "ª×èÍ·Õèãªé㹡ÃØê» (sharename):"
+#: ../../printerdrake.pm_.c:83
+msgid "Share name"
+msgstr "ª×èÍ·Õèãªé㹡ÃØê» (sharename)"
-#: ../printerdrake.pm_.c:141 ../printerdrake.pm_.c:163
-msgid "User name:"
-msgstr "ª×èͼÙéãªé:"
+#: ../../printerdrake.pm_.c:86
+msgid "Workgroup"
+msgstr "àÇÔÃì¡¡ÃØê» (workgroup)"
-#: ../printerdrake.pm_.c:142
-msgid "Workgroup:"
-msgstr "àÇÔÃì¡¡ÃØê» (workgroup):"
-
-#: ../printerdrake.pm_.c:157
+#: ../../printerdrake.pm_.c:102
msgid "NetWare Printer Options"
msgstr "ÍêÍ»ªÑ蹢ͧà¤Ã×èͧ¾ÔÁ¾ìã¹Ãкºà¹çµáÇÃì"
-#: ../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:103
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3448,68 +4025,97 @@ msgstr ""
"âÎʵìẺ TCP/IP) áÅТéÍÁÙŪ×èͤÔǢͧà¤Ã×èͧ¾ÔÁ¾ì·Õèµéͧ¡ÒÃãªé\n"
"ÃÇÁ·Ñ駪×èͼÙéãªéáÅÐÃËÑʼèÒ¹´éÇÂ"
-#: ../printerdrake.pm_.c:162
-msgid "Print Queue Name:"
-msgstr "ª×è;ÃÔ¹µì¤ÔÇ:"
-
-#: ../printerdrake.pm_.c:162
-msgid "Printer Server:"
+#: ../../printerdrake.pm_.c:107
+msgid "Printer Server"
msgstr "ª×èÍà«ÔÃì¿àÇÍÃì¢Í§¾ÃÔ¹àµÍÃì"
-#: ../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:108
+msgid "Print Queue Name"
+msgstr "ª×è;ÃÔ¹µì¤ÔÇ"
+
+#: ../../printerdrake.pm_.c:121
msgid "Yes, print ASCII test page"
msgstr "ãªè ãËé¾ÔÁ¾ì¡ÃдÒÉ·´ÊͺẺ ASCII"
-#: ../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:122
msgid "Yes, print PostScript test page"
msgstr "ãªè ãËé¾ÔÁ¾ì¡ÃдÒÉ·´ÊͺẺâ¾ÊµìʤÃÔ»µì"
-#: ../printerdrake.pm_.c:175
+#: ../../printerdrake.pm_.c:123
msgid "Yes, print both test pages"
msgstr "ãªé ãËé¾ÔÁ¾ì¡ÃдÒÉ·´Êͺ·Ñé§ÊͧẺ"
-#: ../printerdrake.pm_.c:183
+#: ../../printerdrake.pm_.c:130
msgid "Configure Printer"
msgstr "¡Òä͹¿Ô¡à¤Ã×èͧ¾ÔÁ¾ì"
-#: ../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:131
msgid "What type of printer do you have?"
msgstr "¤Ø³ÁÕà¤Ã×èͧ¾ÔÁ¾ìª¹Ô´ã´?"
-#: ../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:163
msgid "Printer options"
msgstr "ÍêÍ»ªÑ蹢ͧà¤Ã×èͧ¾ÔÁ¾ì"
-#: ../printerdrake.pm_.c:205
+#: ../../printerdrake.pm_.c:164
msgid "Paper Size"
msgstr "¢¹Ò´¡ÃдÒÉ"
-#: ../printerdrake.pm_.c:206
+#: ../../printerdrake.pm_.c:165
msgid "Eject page after job?"
msgstr "ãËé¤×¹¡ÃдÒÉÍÍ¡ÁÒËÅѧ¨Ò¡àÊÃ稧ҹ´éÇÂËÃ×ÍäÁè?"
-#: ../printerdrake.pm_.c:209
-msgid "Fix stair-stepping text?"
-msgstr "ãËé·Ó¢éͤÇÒÁ stair-stepping Ẻ¤§·ÕèËÃ×ÍäÁè"
-
-#: ../printerdrake.pm_.c:212
+#: ../../printerdrake.pm_.c:170
msgid "Uniprint driver options"
msgstr "ÍêÍ»ªÑ蹢ͧä´ÃàÇÍÃìẺ Uniprint"
-#: ../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:171
msgid "Color depth options"
msgstr "ÍêÍ»ªÑ蹢ͧ¤ÇÒÁÅÐàÍÕ´ÊÕ"
-#: ../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:173
+msgid "Print text as PostScript?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:174
+msgid "Reverse page order"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:176
+msgid "Fix stair-stepping text?"
+msgstr "ãËé·Ó¢éͤÇÒÁ stair-stepping Ẻ¤§·ÕèËÃ×ÍäÁè"
+
+#: ../../printerdrake.pm_.c:179
+msgid "Number of pages per output pages"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:180
+msgid "Right/Left margins in points (1/72 of inch)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:181
+msgid "Top/Bottom margins in points (1/72 of inch)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:184
+msgid "Extra GhostScript options"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:187
+#, fuzzy
+msgid "Extra Text options"
+msgstr "ÍêÍ»ªÑ蹢ͧ¤ÇÒÁÅÐàÍÕ´ÊÕ"
+
+#: ../../printerdrake.pm_.c:198
msgid "Do you want to test printing?"
msgstr "¤Ø³µéͧ¡ÒþÔÁ¾ì·´ÊͺËÃ×ÍäÁè?"
-#: ../printerdrake.pm_.c:234
+#: ../../printerdrake.pm_.c:210
#, fuzzy
msgid "Printing test page(s)..."
msgstr "ãªé ãËé¾ÔÁ¾ì¡ÃдÒÉ·´Êͺ·Ñé§ÊͧẺ"
-#: ../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:218
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -3520,53 +4126,325 @@ msgid ""
"Does it work properly?"
msgstr ""
-#: ../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:222
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Does it work properly?"
msgstr ""
-#: ../raid.pm_.c:36
+#: ../../printerdrake.pm_.c:238
+msgid "Printer"
+msgstr "à¤Ã×èͧ¾ÔÁ¾ì"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Would you like to configure a printer?"
+msgstr "¤Ø³µéͧ¡Òä͹¿Ô¡à¤Ã×èͧ¾ÔÁ¾ì´éÇÂËÃ×ÍäÁè"
+
+#: ../../printerdrake.pm_.c:243
+#, fuzzy
+msgid ""
+"Here are the following print queues.\n"
+"You can add some more or change the existing ones."
+msgstr ""
+"µèÍ仹Õéà»ç¹¢éÍÁÙÅã¹ LILO\n"
+"¤Ø³µéͧ¡ÒÃà¾ÔèÁ¢éÍÁÙÅËÃ×Íá¡é䢢éÍÁÙÅ·ÕèÁÕä´é"
+
+#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+msgid "Select Printer Connection"
+msgstr "àÅ×Í¡¡ÒÃàª×èÍÁµè͡Ѻà¤Ã×èͧ¾ÔÁ¾ì"
+
+#: ../../printerdrake.pm_.c:267
+msgid "How is the printer connected?"
+msgstr "à¤Ã×èͧ¾ÔÁ¾ìàª×èÍÁµèÍÍÂèÒ§äÃ?"
+
+#: ../../printerdrake.pm_.c:272
+#, fuzzy
+msgid "Remove queue"
+msgstr "ª×èͤÔÇÃÕâÁ·"
+
+#: ../../printerdrake.pm_.c:273
+msgid ""
+"Every print queue (which print jobs are directed to) needs a\n"
+"name (often lp) and a spool directory associated with it. What\n"
+"name and directory should be used for this queue and how is the printer "
+"connected?"
+msgstr ""
+"¾ÃÔ¹µì¤ÔÇ (¾ÃÔ¹µì¤ÔÇà»ç¹·Õèæ§Ò¹¾ÔÁ¾ì¨Ðä»à¡çºäÇé·Õè¹Õè¡è͹Êè§à¤Ã×èͧ¾ÔÁ¾ì)\n"
+"µéͧ¡ÒÃãËéÁÕ¡ÒõÑ駪×èÍ (»¡µÔ¨Ðà»ç¹ lp) áÅÐä´àÃç¡·ÍÃÕ·Õèà¡çº¢éÍÁÙÅ\n"
+"¤Ø³µéͧ¡ÒõÑ駪×èÍ áÅСÓ˹´ä´àÃç¡·ÍÃÕãËéà»ç¹¤èÒã´ºéÒ§?"
+
+#: ../../printerdrake.pm_.c:276
+#, fuzzy
+msgid "Name of queue"
+msgstr "ª×èͧ͢¤ÔÇ:"
+
+#: ../../printerdrake.pm_.c:277
+#, fuzzy
+msgid "Spool directory"
+msgstr "Ê»ÙÅä´àÃç¡·ÍÃÕ:"
+
+#: ../../printerdrake.pm_.c:278
+#, fuzzy
+msgid "Printer Connection"
+msgstr "àÅ×Í¡¡ÒÃàª×èÍÁµè͡Ѻà¤Ã×èͧ¾ÔÁ¾ì"
+
+#: ../../raid.pm_.c:36
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "äÁèÊÒÁÒöà¾ÔèÁ¾ÒÃìµÔªÑè¹à»ç¹ _formatted_ RAID md%d"
-#: ../raid.pm_.c:106
+#: ../../raid.pm_.c:106
msgid "Can't write file $file"
msgstr "äÁèÊÒÁÒöºÑ¹·Ö¡ä¿Åì $file"
-#: ../raid.pm_.c:146
+#: ../../raid.pm_.c:131
+msgid "mkraid failed"
+msgstr ""
+
+#: ../../raid.pm_.c:131
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr ""
+
+#: ../../raid.pm_.c:147
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "äÁèÁÕ¾ÒÃìµÔªÑè¹¾ÍÊÓËÃѺ RAID ÃдѺ %d\n"
-#: ../standalone/draksec_.c:28
+#: ../../services.pm_.c:14
+msgid "Anacron a periodic command scheduler."
+msgstr ""
+
+#: ../../services.pm_.c:15
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+
+#: ../../services.pm_.c:17
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+
+#: ../../services.pm_.c:19
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+
+#: ../../services.pm_.c:22
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+
+#: ../../services.pm_.c:25
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files\n"
+"and CGI."
+msgstr ""
+
+#: ../../services.pm_.c:27
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+
+#: ../../services.pm_.c:31
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+
+#: ../../services.pm_.c:34
+msgid ""
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
+msgstr ""
+
+#: ../../services.pm_.c:36
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+"host names to IP addresses."
+msgstr ""
+
+#: ../../services.pm_.c:38
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+
+#: ../../services.pm_.c:40
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+
+#: ../../services.pm_.c:42
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
+msgstr ""
+
+#: ../../services.pm_.c:45
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+
+#: ../../services.pm_.c:47
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
+msgstr ""
+
+#: ../../services.pm_.c:50
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+
+#: ../../services.pm_.c:53
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that\n"
+"moves mail from one machine to another."
+msgstr ""
+
+#: ../../services.pm_.c:55
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+
+#: ../../services.pm_.c:57
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+
+#: ../../services.pm_.c:60
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+
+#: ../../services.pm_.c:62
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+
+#: ../../services.pm_.c:64
+msgid ""
+"The rwho protocol lets remote users get a list of all of the users\n"
+"logged into a machine running the rwho daemon (similiar to finger)."
+msgstr ""
+
+#: ../../services.pm_.c:66
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+
+#: ../../services.pm_.c:68
+msgid "This startup script try to load your modules for your usb mouse."
+msgstr ""
+
+#: ../../services.pm_.c:69
+msgid "Starts and stops the X Font Server at boot time and shutdown."
+msgstr ""
+
+#: ../../services.pm_.c:92
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is then suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# When possible cp437 accentuated letters can be used too.
+#
+#: ../../silo.pm_.c:116
+#, c-format
+msgid ""
+"Welcome to SILO the operating system chooser!\n"
+"\n"
+"To list the possible choices, press <TAB>.\n"
+"\n"
+"To load one of them, write its name and press <ENTER> or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"ÂÔ¹´Õµé͹ÃѺÊÙè SILO â»Ãá¡ÃÁàÅ×Í¡ãªéÃкº»¯ÔºÑµÔ¡ÒÃ!\n"
+"\n"
+"à¾×èÍãËéáÊ´§ÃÒ¡Ò÷Õèà»ç¹ä»ä´é ãËé¡´»ØèÁ <TAB>\n"
+"\n"
+"à¾×èÍãËéâËÅ´ÃÒ¡ÒèҡµÑÇàÅ×Í¡·ÕèÁÕ ãËéà¢Õ¹ª×èͧ͢ÃÒ¡Ò÷ÕèàÅ×͡ŧä»\n"
+"áÅéÇ¡´ <ENTER> ËÃ×ÍãËéÃÍÊÑ¡ %d ÇÔ¹Ò·Õà¾×èÍãªé¡Òúٵ¨Ò¡µÑÇàÅ×Í¡µÑ駵é¹\n"
+"\n"
+
+#: ../../standalone/drakboot_.c:23
+#, fuzzy
+msgid "Configure LILO/GRUB"
+msgstr "¤Í¹¿Ô¡Ãкº X"
+
+#: ../../standalone/drakboot_.c:24
+#, fuzzy
+msgid "Create a boot floppy"
+msgstr "ÊÃéÒ§á¼è¹ºÙµ"
+
+#: ../../standalone/drakboot_.c:25
+#, fuzzy
+msgid "Format floppy"
+msgstr "¿ÍÃìáÁµ·Ñé§ËÁ´"
+
+#: ../../standalone/drakboot_.c:36
+#, fuzzy
+msgid "Choice"
+msgstr "ÍØ»¡Ã³ì"
+
+#: ../../standalone/draksec_.c:28
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 ""
-#: ../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:31
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:32
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
msgstr ""
-#: ../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:34
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
-#: ../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:36
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -3574,275 +4452,399 @@ msgid ""
"connections from many clients. "
msgstr ""
-#: ../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:39
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
msgstr ""
-#: ../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:49
#, fuzzy
msgid "Setting security level"
msgstr "àÅ×Í¡ÃдѺÃкºÃÑ¡ÉÒ¤ÇÒÁ»ÅÍ´ÀÑÂ"
-#: ../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:21
#, fuzzy
msgid "Choose the tool you want to use"
msgstr "àÅ×Í¡¢¹Ò´·Õè¤Ø³µéͧ¡ÒõԴµÑé§"
-#: ../standalone/drakxservices_.c:21
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
+#: ../../standalone/keyboarddrake_.c:23
+msgid "What is your keyboard layout?"
+msgstr "¤Ø³µéͧ¡ÒÃàÅ×Í¡¤ÕÂìºÍÃì´àÅÂìàÍéÒ·ìẺã´"
+
+#: ../../standalone/mousedrake_.c:25
+#, fuzzy
+msgid "What is the type of your mouse?"
+msgstr "¤Ø³ÁÕàÁéÒÊ쪹Դã´"
-#: ../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:30
msgid "no serial_usb found\n"
msgstr ""
-#: ../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:35
msgid "Emulate third button?"
msgstr "µéͧ¡ÒèÓÅͧàÁéÒÊì»ØèÁ·ÕèÊÒÁ´éÇÂËÃ×ÍäÁè?"
-#: ../standalone/rpmdrake_.c:25
+#: ../../standalone/mousedrake_.c:39
+#, fuzzy
+msgid "Which serial port is your mouse connected to?"
+msgstr "àÁéÒÊì¢Í§¤Ø³µèÍà¢éҡѺ¾ÍÃìµÍ¹Ø¡ÃÁã´"
+
+#: ../../standalone/rpmdrake_.c:25
#, fuzzy
msgid "reading configuration"
msgstr "·´Êͺ¡Òä͹¿Ô¡"
-#: ../standalone/rpmdrake_.c:45 ../standalone/rpmdrake_.c:50
-#: ../standalone/rpmdrake_.c:253
+#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
+#: ../../standalone/rpmdrake_.c:253
msgid "File"
msgstr ""
-#: ../standalone/rpmdrake_.c:48 ../standalone/rpmdrake_.c:229
-#: ../standalone/rpmdrake_.c:253 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
msgid "Search"
msgstr ""
-#: ../standalone/rpmdrake_.c:49 ../standalone/rpmdrake_.c:56
+#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
#, fuzzy
msgid "Package"
msgstr "á¾ç¤à¡ç¨ %d ªØ´"
-#: ../standalone/rpmdrake_.c:51
+#: ../../standalone/rpmdrake_.c:51
#, fuzzy
msgid "Text"
msgstr "export (¼ÙéàªÕèÂǪҭ)"
-#: ../standalone/rpmdrake_.c:53
+#: ../../standalone/rpmdrake_.c:53
#, fuzzy
msgid "Tree"
msgstr "¡ÃÕ¡"
-#: ../standalone/rpmdrake_.c:54
+#: ../../standalone/rpmdrake_.c:54
msgid "Sort by"
msgstr ""
-#: ../standalone/rpmdrake_.c:55
+#: ../../standalone/rpmdrake_.c:55
msgid "Category"
msgstr ""
-#: ../standalone/rpmdrake_.c:58
+#: ../../standalone/rpmdrake_.c:58
#, fuzzy
msgid "See"
msgstr "à«ÔÿìàÇÍÃì (Server)"
-#: ../standalone/rpmdrake_.c:59 ../standalone/rpmdrake_.c:163
+#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
#, fuzzy
msgid "Installed packages"
msgstr "¡ÓÅѧµÔ´µÑé§á¾ç¤à¡ç¨ %s"
-#: ../standalone/rpmdrake_.c:60
+#: ../../standalone/rpmdrake_.c:60
#, fuzzy
msgid "Available packages"
msgstr "¡ÓÅѧËÒá¾ç¤à¡ç¨·ÕèÁÕÍÂÙè"
-#: ../standalone/rpmdrake_.c:62
+#: ../../standalone/rpmdrake_.c:62
#, fuzzy
msgid "Show only leaves"
msgstr "áÊ´§¢éÍÁÙÅ·Ñé§ËÁ´"
-#: ../standalone/rpmdrake_.c:67
+#: ../../standalone/rpmdrake_.c:67
msgid "Expand all"
msgstr ""
-#: ../standalone/rpmdrake_.c:68
+#: ../../standalone/rpmdrake_.c:68
#, fuzzy
msgid "Collapse all"
msgstr "ÅéÒ§·Ñé§ËÁ´"
-#: ../standalone/rpmdrake_.c:70
+#: ../../standalone/rpmdrake_.c:70
#, fuzzy
msgid "Configuration"
msgstr "·´Êͺ¡Òä͹¿Ô¡"
-#: ../standalone/rpmdrake_.c:71
+#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
msgstr ""
-#: ../standalone/rpmdrake_.c:75
+#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
msgstr ""
-#: ../standalone/rpmdrake_.c:79 ../standalone/rpmdrake_.c:328
+#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
#, fuzzy
msgid "Remove"
msgstr "ź¢éÍÁÙÅ"
-#: ../standalone/rpmdrake_.c:100
+#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
msgstr ""
-#: ../standalone/rpmdrake_.c:101
-msgid "Expand Tree"
-msgstr ""
-
-#: ../standalone/rpmdrake_.c:102
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../standalone/rpmdrake_.c:103
+#: ../../standalone/rpmdrake_.c:103
#, fuzzy
msgid "Find Package"
msgstr "á¾ç¤à¡ç¨ %d ªØ´"
-#: ../standalone/rpmdrake_.c:104
+#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
msgstr ""
-#: ../standalone/rpmdrake_.c:105
+#: ../../standalone/rpmdrake_.c:105
msgid "Toggle between Installed and Available"
msgstr ""
-#: ../standalone/rpmdrake_.c:139
+#: ../../standalone/rpmdrake_.c:139
msgid "Files:\n"
msgstr ""
-#: ../standalone/rpmdrake_.c:161 ../standalone/rpmdrake_.c:209
+#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
#, fuzzy
msgid "Uninstall"
msgstr "µÔ´µÑé§"
-#: ../standalone/rpmdrake_.c:163
+#: ../../standalone/rpmdrake_.c:163
#, fuzzy
msgid "Choose package to install"
msgstr "àÅ×Í¡á¾ç¤à¡ç¨"
-#: ../standalone/rpmdrake_.c:190
+#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
msgstr ""
-#: ../standalone/rpmdrake_.c:190 ../standalone/rpmdrake_.c:409
+#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
msgid "Wait"
msgstr ""
-#: ../standalone/rpmdrake_.c:209
+#: ../../standalone/rpmdrake_.c:209
#, fuzzy
msgid "The following packages are going to be uninstalled"
msgstr "àÅ×Í¡á¾ç¤à¡ç¨"
-#: ../standalone/rpmdrake_.c:210
+#: ../../standalone/rpmdrake_.c:210
#, fuzzy
msgid "Uninstalling the RPMs"
msgstr "¡ÓÅѧµÔ´µÑé§á¾ç¤à¡ç¨ %s"
-#: ../standalone/rpmdrake_.c:229 ../standalone/rpmdrake_.c:269
+#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
msgid "Regexp"
msgstr ""
-#: ../standalone/rpmdrake_.c:229
+#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
msgstr ""
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
#, c-format
msgid "%s not found"
msgstr ""
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No match"
msgstr ""
-#: ../standalone/rpmdrake_.c:238 ../standalone/rpmdrake_.c:262
-#: ../standalone/rpmdrake_.c:278
+#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
+#: ../../standalone/rpmdrake_.c:278
msgid "No more match"
msgstr ""
-#: ../standalone/rpmdrake_.c:246
+#: ../../standalone/rpmdrake_.c:246
msgid ""
"rpmdrake is currently in ``low memory'' mode.\n"
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
-#: ../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for"
+#: ../../standalone/rpmdrake_.c:253
+msgid "Which file are you looking for?"
msgstr ""
-#: ../standalone/rpmdrake_.c:269
-msgid "What are looking for"
+#: ../../standalone/rpmdrake_.c:269
+msgid "What are looking for?"
msgstr ""
-#: ../standalone/rpmdrake_.c:289
+#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
msgstr ""
-#: ../standalone/rpmdrake_.c:291
+#: ../../standalone/rpmdrake_.c:291
#, fuzzy
msgid "Directory"
msgstr "à«ç¡àµÍÃì"
-#: ../standalone/rpmdrake_.c:294
+#: ../../standalone/rpmdrake_.c:294
msgid "No cdrom available (nothing in /mnt/cdrom)"
msgstr ""
-#: ../standalone/rpmdrake_.c:298
+#: ../../standalone/rpmdrake_.c:298
msgid "URL of the directory containing the RPMs"
msgstr ""
-#: ../standalone/rpmdrake_.c:299
+#: ../../standalone/rpmdrake_.c:299
msgid ""
"For FTP and HTTP, you need to give the location for hdlist\n"
"It must be relative to the URL above"
msgstr ""
-#: ../standalone/rpmdrake_.c:302
+#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
msgstr ""
-#: ../standalone/rpmdrake_.c:304
+#: ../../standalone/rpmdrake_.c:304
#, fuzzy, c-format
msgid "%s is already in use"
msgstr "ËÑÇ¢é͹Õé¶Ù¡ãªéä»àÃÕºÃéÍÂáÅéÇ"
-#: ../standalone/rpmdrake_.c:315 ../standalone/rpmdrake_.c:321
-#: ../standalone/rpmdrake_.c:329
+#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
+#: ../../standalone/rpmdrake_.c:329
msgid "Updating the RPMs base"
msgstr ""
-#: ../standalone/rpmdrake_.c:328
+#: ../../standalone/rpmdrake_.c:328
#, fuzzy, c-format
msgid "Going to remove entry %s"
msgstr "ź¢éÍÁÙÅ"
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves"
msgstr ""
-#: ../standalone/rpmdrake_.c:360
+#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
msgstr ""
-#~ msgid "Polish"
-#~ msgstr "â»áŹ´ì"
+#~ msgid "Recommended"
+#~ msgstr "Ẻá¹Ð¹Ó (Recommended)"
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "¡ÓÅѧ¨ÐµÔ´µÑé§ %d MB ¤Ø³ÊÒÁÒöàÅ×Í¡â»Ãá¡ÃÁÁÒ¡¡ÇèÒ¹Õéä´é"
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
+#~ "Linux:\n"
+#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
+#~ "2000\n"
+#~ "or 7.0 (Air)."
+#~ msgstr ""
+#~ "àÅ×Í¡ \"µÔ´µÑé§\" ¶éÒËÒ¡¤Ø³äÁèä´éµÔ´µÑé§Åչء«ìàÇÍÃìªÑè¹à´ÔÁ\n"
+#~ "ËÃ×͵éͧ¡ÒõԴµÑé§ËÅÒ´ÔʵÃÔºÔǪÑè¹ (ËÃ×ÍËÅÒÂàÇÍÃìªÑè¹)\n"
+#~ "\n"
+#~ "\n"
+#~ "àÅ×Í¡ \"ÍѾà¡Ã´\" ¶éҤسµéͧ¡ÒÃÍѾവàÇÍÃìªÑ蹢ͧáÁ¹à´Ã¡Åչء«ì:\n"
+#~ "5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
+#~ "6.1 (Helios), Gold 2000 ËÃ×Í 7.0 (Air)."
+
+#~ msgid "Do you want to use LILO?"
+#~ msgstr "¤Ø³µéͧ¡ÒÃãªé LILO ËÃ×ÍäÁè"
+
+#~ msgid ""
+#~ "You may now select the packages you wish to install.\n"
+#~ "\n"
+#~ "\n"
+#~ "First you can select group of package to install or upgrade. After that\n"
+#~ "you can select more packages according to the total size you wish to\n"
+#~ "select.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you are in expert mode, you can select packages individually.\n"
+#~ "Please note that some packages require the installation of others.\n"
+#~ "These are referred to as package dependencies. The packages you select,\n"
+#~ "and the packages they require will be automatically selected for\n"
+#~ "install. It is impossible to install a package without installing all\n"
+#~ "of its dependencies."
+#~ msgstr ""
+#~ "µÍ¹¹Õé¤Ø³ÊÒÁÒöàÅ×Í¡á¾ç¤à¡ç¨·Õè¤Ø³µéͧ¡ÒõԴµÑé§ä´é\n"
+#~ "\n"
+#~ "\n"
+#~ "¡è͹Í×蹤سÊÒÁÒöàÅ×Í¡¢¹Ò´¢Í§Ãкº·Õèµéͧ¡ÒõԴµÑé§ áÅÐâ»Ãá¡ÃÁ¨Ð·Ó¡ÒÃàÅ×Í¡\n"
+#~ "á¾ç¤à¡ç¨áººÍѵâ¹ÁѵÔâ´Â´Ù¨Ò¡¢¹Ò´·Õè¤Ø³àÅ×Í¡ ËÅѧ¨Ò¡¹Ñ鹤سÊÒÁÒöàÅ×Í¡\n"
+#~ "á¾ç¤à¡ç¨à¾ÔèÁàµÔÁµÒÁ¡ÅØèÁ ËÃ×ͤÅÔé¡ Ok à¾×èÍãªéµÑÇàÅ×Í¡·Õè¡Ó˹´äÇéáÅéÇ\n"
+#~ "\n"
+#~ "\n"
+#~ "¶éҤسÍÂÙèã¹âËÁ´¼ÙéàªÕèÂǪҭ (expert mode) ¤Ø³ÊÒÁÒöàÅ×Í¡á¾ç¤à¡ç¨\n"
+#~ "â´ÂÃкصÑÇá¾ç¤à¡ç¨ â»Ã´·ÃÒº´éÇÂÇèÒá¾ç¤à¡ç¨ºÒ§µÑÇÍÒ¨µéͧ¡ÒÃãËéÁÕ¡ÒõԴµÑé§\n"
+#~ "á¾ç¤à¡ç¨µÑÇÍ×è¹æŧ仡è͹ (ËÃ×ÍàÃÕ¡ÇèÒ dependencies) "
+#~ "·Ñé§á¾ç¤à¡ç¨·Õè¤Ø³àÅ×Í¡\n"
+#~ "áÅÐá¾ç¤à¡ç¨·ÕèµéͧµÔ´µÑé§Å§ä»´éǨж١â»Ãá¡ÃÁµÔ´µÑé§â´ÂÍѵâ¹ÁÑµÔ àÃÒäÁè\n"
+#~ "ÊÒÁÒöµÔ´µÑé§á¾ç¤à¡ç¨Å§ä»â´ÂäÁèµÔ´µÑé§á¾ç¤à¡ç¨·Õèµéͧ¡ÒÃä´é"
+
+#~ msgid "Help"
+#~ msgstr "¢éͤÇÒÁªèÇÂàËÅ×Í"
+
+#~ msgid "Downloading cryptographic packages"
+#~ msgstr "¡ÓÅѧ´ÒǹìâËÅ´á¾ç¤à¡ç¨Ãкºà¢éÒÃËÑÊ"
+
+#~ msgid "Setup SCSI"
+#~ msgstr "à«çµÍѾ SCSI"
+
+#~ msgid "Which language do you want?"
+#~ msgstr "¤Ø³µéͧ¡ÒÃàÅ×Í¡ÀÒÉÒã´"
+
+#~ msgid "Which packages do you want to install"
+#~ msgstr "àÅ×Í¡á¾ç¤à¡ç¨·Õè¤Ø³µéͧ¡ÒõԴµÑé§"
+
+#~ msgid "Local LAN"
+#~ msgstr "ÃкºáŹẺ·éͧ¶Ôè¹"
+
+#~ msgid "Dialup with modem"
+#~ msgstr "¡ÒÃËÁعâ·ÃÈѾ·ì´éÇÂâÁà´çÁ"
+
+#~ msgid "Local Printer Options"
+#~ msgstr "ÍçÍ»ªÑ蹢ͧà¤Ã×èͧ¾ÔÁ¾ìâŤÍÅ"
+
+#~ msgid "server"
+#~ msgstr "server (à«ÔÃì¿àÇÍÃì)"
+
+#~ msgid "expert"
+#~ msgstr "export (¼ÙéàªÕèÂǪҭ)"
+
+#~ msgid "developer"
+#~ msgstr "developer (¹Ñ¡¾Ñ²¹Ò)"
+
+#~ msgid "beginner"
+#~ msgstr "beginner (àÃÔèÁµé¹)"
+
+#~ msgid "Linear (needed for some SCSI drives)"
+#~ msgstr "Linear (ãªéÊÓËÃѺä´ÃÇìẺ SCSI ºÒ§µÑÇ)"
+
+#~ msgid "linear"
+#~ msgstr "linear"
+
+#~ msgid "After %s partition %s,"
+#~ msgstr "ËÅѧ¨Ò¡ %s ¾ÒÃìµÔªÑè¹ %s,"
+
+#~ msgid "changing type of"
+#~ msgstr "à»ÅÕè¹»ÃÐàÀ·¢Í§"
+
+#~ msgid "formatting"
+#~ msgstr "¿ÍÃìáÁµ"
+
+#~ msgid "resizing"
+#~ msgstr "»ÃѺ¢¹Ò´"
+
+#~ msgid "Size: %s MB"
+#~ msgstr "¢¹Ò´: %s MB"
+
+#~ msgid "Bad kickstart file %s (failed %s)"
+#~ msgstr "ä¿Åì¤Ô¡ÊµÒÃì·äÁè¶Ù¡µéͧ %s (¢éͼԴ¾ÅÒ´ %s)"
#~ msgid "Partitioning failed: no root filesystem"
#~ msgstr "¡Ò÷ӾÒÃìµÔªÑè¹ÅéÁàËÅÇ: äÁèÁÕÃÙ·ä¿Åì«ÔÊàµçÁ"
-#, fuzzy
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr ""
-#~ "¡ÃسÒãÊèá¼è¹¿ÅéÍ»»Õéã¹ä´ÃÇì\n"
-#~ "¢éÍÁÙÅ·Ñé§ËÁ´º¹á¼è¹¿ÅéÍ»»Õé¨Ð¶Ù¡Åº"
+#~ msgid "Going to install %d MB. You can choose to install more programs"
+#~ msgstr "¡ÓÅѧ¨ÐµÔ´µÑé§ %d MB ¤Ø³ÊÒÁÒöàÅ×Í¡â»Ãá¡ÃÁÁÒ¡¡ÇèÒ¹Õéä´é"
+
+#~ msgid "Password:"
+#~ msgstr "ÃËÑʼèÒ¹:"
+
+#~ msgid "User name:"
+#~ msgstr "ª×èͼÙéãªé:"
+
+#~ msgid "A entry %s already exists"
+#~ msgstr "ÁÕ¢éÍÁÙÅ %s ÍÂÙèáÅéÇ"
+
+#~ msgid "Choose install or upgrade"
+#~ msgstr "àÅ×Í¡µÔ´µÑé§/ÍѾà¡Ã´"
+
+#~ msgid "What usage do you want?"
+#~ msgstr "¤Ø³µéͧ¡ÒÃãªé§Ò¹ÍÐäÃ>"