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

use diagnostics;
use strict;
use vars qw(*LOG);

use common qw(:common :file :functional);
use install_any;
use log;
use pkgs;
use fs;
use lang;
use c;

#- lower bound on the left ( aka 90 means [90-100[ )
my %compssList = (
  90 => __("must have"), #- every install have these packages (unless hand de-selected in expert, or not enough room)
  80 => __("important"), #- every beginner/custom install have these packages (unless not enough space)
		         #- has minimum X install (XFree86 + icewm)(normal)
  70 => __("very nice"), #- KDE(normal)
  60 => __("nice"),      #- gnome(normal)
  50 => __("interesting"),
  40 => __("interesting"),
  30 => __("maybe"),
  20 => __("maybe"),
  10 => __("useless"),
   0 => __("garbage"),
#- if the package requires locales-LANG and LANG is chosen, rating += 90
 -10 => __("i18n (important)"), #- every install in the corresponding lang have these packages
 -20 => __("i18n (very nice)"), #- every beginner/custom install in the corresponding lang have theses packages
 -30 => __("i18n (nice)"),
);
#- HACK: rating += 10 if the group is selected and it is not a kde package (aka name !~ /^k/)


my @skip_list = qw(
XFree86-8514 XFree86-AGX XFree86-Mach32 XFree86-Mach64 XFree86-Mach8 XFree86-Mono
XFree86-P9000 XFree86-S3 XFree86-S3V XFree86-SVGA XFree86-W32 XFree86-I128
XFree86-Sun XFree86-SunMono XFree86-Sun24 XFree86-3DLabs
MySQL MySQL_GPL mod_php3 midgard postfix metroess metrotmpl
kernel-linus kernel-secure kernel-fb kernel-BOOT
hackkernel hackkernel-BOOT hackkernel-fb hackkernel-headers
hackkernel-pcmcia-cs hackkernel-smp hackkernel-smp-fb 
autoirpm autoirpm-icons numlock 
);

my %by_lang = (
  ar    => [ 'acon' ],
  cs	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  hr	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  hu	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  ja    => [ 'rxvt-CLE', 'fonts-ttf-japanese', 'kterm' ],
  ko    => [ 'rxvt-CLE', 'fonts-ttf-korean' ],
  pl	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  ro	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  ru	=> [ 'XFree86-cyrillic-fonts' ],
  sk	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  sl	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  sr	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  'tr'	=> [ 'XFree86-ISO8859-9', 'XFree86-ISO8859-9-75dpi-fonts' ],
  zh_CN => [ 'rxvt-CLE', 'fonts-ttf-gb2312' ],
  'zh_TW.Big5' => [ 'rxvt-CLE', 'fonts-ttf-big5' ],
);

my @preferred = qw(perl-GTK postfix ghostscript-X);

my $A = 20471;
my $B = 16258;
sub correctSize { ($A - $_[0]) * $_[0] / $B } #- size correction in MB.
sub invCorrectSize { $A / 2 - sqrt(max(0, sqr($A) - 4 * $B * $_[0])) / 2 }

sub selectedSize {
    my ($packages) = @_;
    int (sum map { $_->{size} } grep { $_->{selected} } values %$packages) / sqr(1024);
}
sub correctedSelectedSize { correctSize(selectedSize($_[0])) }

sub Package {
    my ($packages, $name) = @_;
    $packages->{$name} or log::l("unknown package `$name'") && undef;
}

sub allpackages {
    my ($packages) = @_;
    my %skip_list; @skip_list{@skip_list} = ();
    grep { !exists $skip_list{$_->{name}} } values %$packages;
}

sub select($$;$) {
    my ($packages, $p, $base) = @_;
    my %preferred; @preferred{@preferred} = ();
    my ($n, $v);
#   print "## $p->{name}\n";
    unless ($p->{installed}) { #- if the same or better version is installed, do not select.
	$p->{base} ||= $base;
	$p->{selected} = -1; #- selected by user
	my %l; @l{@{$p->{deps} || die "missing deps file"}} = ();
	while (do { my %l = %l; while (($n, $v) = each %l) { last if $v != 1; } $n }) {
	    $l{$n} = 1;
	    my $i = $packages->{$n};
	    if (!$i && $n =~ /\|/) {
		foreach (split '\|', $n) {
		    my $p = Package($packages, $_);
		    $i ||= $p;
		    $p && $p->{selected} and $i = $p, last;
		    $p && exists $preferred{$_} and $i = $p;
		}
	    }
	    $i->{base} ||= $base;
	    $i->{deps} or log::l("missing deps for $n");
	    unless ($i->{installed}) {
		unless ($i->{selected}) {
#		    print ">> $i->{name}\n";
#		    /gnome-games/ and print ">>> $i->{name}\n" foreach @{$i->{deps} || []};
		    $l{$_} ||= 0 foreach @{$i->{deps} || []};
		}
		$i->{selected}++ unless $i->{selected} == -1;
	    }
	}
    }
    1;
}
sub unselect($$) {
    my ($packages, $p) = @_;
    $p->{base} and return;
    my $set = set_new($p->{name});
    my $l = $set->{list};

    #- get the list of provided packages
    foreach my $q (@$l) {
	my $i = Package($packages, $q);
	$i->{selected} && !$i->{base} or next;
	$i->{selected} = 1; #- that way, its counter will be zero the first time
	set_add($set, @{$i->{provides} || []});
    }
    while (@$l) {
	my $n = shift @$l;
	my $i = Package($packages, $n);

	$i->{selected} <= 0 || $i->{base} and next;
	if (--$i->{selected} == 0) {
	    push @$l, @{$i->{deps} || []};
	}
    }
    1;
}
sub toggle($$) {
    my ($packages, $p) = @_;
    $p->{selected} ? unselect($packages, $p) : &select($packages, $p);
}
sub set($$$) {
    my ($packages, $p, $val) = @_;
    $val ? &select($packages, $p) : unselect($packages, $p);
}

sub unselect_all($) {
    my ($packages) = @_;
    $_->{selected} = $_->{base} foreach values %$packages;
}

sub size_selected {
    my ($packages) = @_;
    my $nb = 0; foreach (values %$packages) {
	$nb += $_->{size} if $_->{selected};
    }
    $nb;
}

sub skip_set {
    my ($packages, @l) = @_;
    $_->{skip} = 1 foreach @l, grep { $_ } map { Package($packages, $_) } map { @{$_->{provides} || []} } @l;
}

sub psUsingDirectory(;$) {
    my $dirname = $_[0] || "/tmp/rhimage/Mandrake/RPMS";
    my %packages;

    log::l("scanning $dirname for packages");
    foreach (all("$dirname")) {
	my ($name, $version, $release) = /(.*)-([^-]+)-([^-]+)\.[^.]+\.rpm/ or log::l("skipping $_"), next;

	$packages{$name} = {
            name => $name, version => $version, release => $release,
	    file => $_, selected => 0, deps => [],
        };
    }
    \%packages;
}

sub psUsingHdlist() {
    my $f = install_any::getFile('hdlist') or die "no hdlist found";
    my %packages;

#-    my ($noSeek, $end) = 0;
#-    $end = sysseek F, 0, 2 or die "seek failed";
#-    sysseek F, 0, 0 or die "seek failed";

    while (my $header = c::headerRead(fileno $f, 1)) {
#-	 or die "error reading header at offset ", sysseek(F, 0, 1);
	my $name = c::headerGetEntry($header, 'name');

	$packages{$name} = {
             name => $name, header => $header, selected => 0, deps => [],
	     version   => c::headerGetEntry($header, 'version'),
	     release   => c::headerGetEntry($header, 'release'),
	     size      => c::headerGetEntry($header, 'size'),
        };
    }
    log::l("psUsingHdlist read " . scalar keys(%packages) . " headers");

    \%packages;
}

sub chop_version($) {
    first($_[0] =~ /(.*)-[^-]+-[^-]+/) || $_[0];
}

sub getDeps($) {
    my ($packages) = @_;

    my $f = install_any::getFile("depslist") or die "can't find dependencies list";
    foreach (<$f>) {
	my ($name, $size, @deps) = split;
	($name, @deps) = map { join '|', map { chop_version($_) } split '\|' } ($name, @deps);
	$packages->{$name} or next;
	$packages->{$name}{size} = $size;
	$packages->{$name}{deps} = \@deps;
	map { push @{$packages->{$_}{provides}}, $name if $packages->{$_} } @deps;
    }
}

sub category2packages($) {
    my ($p) = @_;
    $p->{packages} || [ map { @{ category2packages($_) } } values %{$p->{childs}} ];
}

sub readCompss($) {
    my ($packages) = @_;
    my ($compss, $compss_, $ps) = { childs => {} };

    my $f = install_any::getFile("compss") or die "can't find compss";
    foreach (<$f>) {
	/^\s*$/ || /^#/ and next;
	s/#.*//;

	if (/^(\S+)/) {
	    my $p = $compss;
	    my @l = split ':', $1;
#- Why?	    pop @l if $l[-1] =~ /^(x11|console)$/;
	    foreach (@l) {
		$p->{childs}{$_} ||= { childs => {} };
		$p = $p->{childs}{$_};
	    }
	    $ps = $p->{packages} ||= [];
	    $compss_->{$1} = $p;
	} else {
	    /(\S+)/ or log::l("bad line in compss: $_"), next;
	    push @$ps, $packages->{$1} || do { log::l("unknown package $1 (in compss)"); next };
	}
    }
    ($compss, $compss_);
}

sub readCompssList($$$) {
    my ($packages, $compss_) = @_;
    my $f = install_any::getFile("compssList") or die "can't find compssList";
    local $_ = <$f>;
    my $level = [ split ];

    my $nb_values = 3;
    my $e;
    foreach (<$f>) {
	/^\s*$/ || /^#/ and next;

	/^packages\s*$/ and do { $e = $packages; next };
	/^categories\s*$/ and do { $e = $compss_; next };

	my ($name, @values) = split;

	$e or log::l("neither packages nor categories");
	my $p = $e->{$name} or log::l("unknown entry $name (in compssList)"), next;
	$p->{values} = \@values;
    }

    my %done;
    foreach (split ':', $ENV{RPM_INSTALL_LANG}) {
	my $p = $packages->{"locales-$_"} || {};
	foreach ("locales-$_", @{$p->{provides} || []}, @{$by_lang{$_} || []}) {
	    next if $done{$_}; $done{$_} = 1;
	    my $p = $packages->{$_} or next;
	    $p->{values} = [ map { $_ + 90 } @{$p->{values} || [ (0) x $nb_values ]} ];
	}
    }
    $level;
}

sub readCompssUsers {
    my ($packages, $compss) = @_;
    my (%compssUsers, @sorted, $l);

    my $f = install_any::getFile("compssUsers") or die "can't find compssUsers";
    foreach (<$f>) {
	/^\s*$/ || /^#/ and next;
	s/#.*//;

	if (/^(\S.*)/) {
	    push @sorted, $1;
	    $compssUsers{$1} = $l = [];
	} elsif (/\s+\+(\S+)/) {
	    push @$l, $packages->{$1} || do { log::l("unknown package $1 (in compssUsers)"); next };
	} elsif (/\s+(\S+)/) {
	    my $p = $compss;
	    $p &&= $p->{childs}{$_} foreach split ':', $1;
	    $p or log::l("unknown category $1 (in compssUsers)"), next;
	    push @$l, @{ category2packages($p) };
	}
    }
    \%compssUsers, \@sorted;
}

#- sub isLangSensitive($$) {
#-     my ($name, $lang) = @_;
#-     local $SIG{__DIE__} = 'none';
#-     $name =~ /-([^-]*)$/ or return;
#-     $1 eq $lang || eval { lang::text2lang($1) eq $lang } && !$@;
#- }

sub setSelectedFromCompssList {
    my ($compssListLevels, $packages, $min_level, $max_size, $install_class) = @_;
    my ($ind);

    my @packages = allpackages($packages);
    my @places = do {
	map_index { $ind = $::i if $_ eq $install_class } @$compssListLevels;
	defined $ind or log::l("unknown install class $install_class in compssList"), return;

	#- special case for /^k/ aka kde stuff
	my @values = map { $_->{values}[$ind] + ($_->{unskip} && $_->{name} !~ /^k/ ? 10 : 0) } @packages;
	sort { $values[$b] <=> $values[$a] } 0 .. $#packages;
    };
    foreach (@places) {
	my $p = $packages[$_];
	next if $p->{skip};
	last if $p->{values}[$ind] < $min_level;

	&select($packages, $p);

	my $nb = 0; foreach (@packages) {
	    $nb += $_->{size} if $_->{selected};
	}
	if ($max_size && $nb > $max_size) {
	    unselect($packages, $p);
	    $min_level = $p->{values}[$ind];
	    log::l("setSelectedFromCompssList: up to indice $min_level (reached size $max_size)");
	    last;
	}
    }
    $ind, $min_level;
}

sub init_db {
    my ($prefix, $isUpgrade) = @_;

    my $f = "$prefix/root/install.log";
    open(LOG, "> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept.");
    *LOG or *LOG = log::F() or *LOG = *STDERR;
    CORE::select((CORE::select(LOG), $| = 1)[0]);
    c::rpmErrorSetCallback(fileno LOG);
#-    c::rpmSetVeryVerbose();

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    if ($isUpgrade) {
	c::rpmdbRebuild($prefix) or die "rebuilding of rpm database failed: ", c::rpmErrorString();
    }

    c::rpmdbInit($prefix, 0644) or die "creation of rpm database failed: ", c::rpmErrorString();
#-    $isUpgrade ? c::rpmdbRebuild($prefix) : c::rpmdbInit($prefix, 0644) or die "creation/rebuilding of rpm database failed: ", c::rpmErrorString();
}

sub done_db {
    log::l("closing install.log file");
    close LOG;
}

sub getHeader($) {
    my ($p) = @_;

    unless ($p->{header}) {
	my $f = install_any::getFile($p->{file}) or die "error opening package $p->{name} (file $p->{file})";
	$p->{header} = c::rpmReadPackageHeader(fileno $f) or die "bad package $p->{name}";
    }
    $p->{header};
}

sub versionCompare($$) {
    my ($a, $b) = @_;
    local $_;

    while ($a && $b) {
	my ($sb, $sa) =  map { $1 if $a =~ /^\W*\d/ ? s/^\W*0*(\d+)// : s/^\W*(\D+)// } ($b, $a);
	$_ = length($sa) cmp length($sb) || $sa cmp $sb and return $_;
    }
}

sub selectPackagesToUpgrade($$$;$$) {
    my ($packages, $prefix, $base, $toRemove, $toSave) = @_;

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    my $db = c::rpmdbOpenForTraversal($prefix) or die "unable to open $prefix/var/lib/rpm/packages.rpm";
    log::l("opened rpm database for examining existing packages");

    local $_; #- else perl complains on the map { ... } grep { ... } @...;
    my %installedFilesForUpgrade; #- help searching package to upgrade in regard to already installed files.

    #- used for package that are not correctly updated.
    my %upgradeNeedRemove = (
			     'compat-glibc' => 1,
			     'compat-libs' => 1,
			    );

    #- help removing package which may have different release numbering
    my %toRemove; map { $toRemove{$_} = 1 } @{$toRemove || []};

    #- mark all files which are not in /etc/rc.d/ for packages which are already installed but which
    #- are not in the packages list to upgrade.
    #- the 'installed' property will make a package unable to be selected, look at select.
    c::rpmdbTraverse($db, sub {
			 my ($header) = @_;
			 my $p = $packages->{c::headerGetEntry($header, 'name')};
			 my $otherPackage = (c::headerGetEntry($header, 'release') !~ /mdk\w*$/ &&
					     (c::headerGetEntry($header, 'name'). '-' .
					      c::headerGetEntry($header, 'version'). '-' .
					      c::headerGetEntry($header, 'release')));
			 if ($p) {
			     eval { getHeader($p) }; $@ && log::l("cannot get the header for package $p->{name}");
			     my $version_cmp = versionCompare(c::headerGetEntry($header, 'version'), $p->{version});
			     my $version_rel_test = $p->{header} ? c::rpmVersionCompare($header, $p->{header}) >= 0 :
			       ($version_cmp > 0 ||
				$version_cmp == 0 &&
				versionCompare(c::headerGetEntry($header, 'release'), $p->{release}) >= 0);
			     if ($version_rel_test) {
				 if ($otherPackage && $version_cmp <= 0) {
				     log::l("removing $otherPackage since it will not be updated otherwise");
				     $toRemove{$otherPackage} = 1; #- force removing for theses other packages, select our.
				 } else {
				     $p->{installed} = 1;
				 }
			     } elsif ($upgradeNeedRemove{$p->{name}}) {
				 my $otherPackage = (c::headerGetEntry($header, 'name'). '-' .
						     c::headerGetEntry($header, 'version'). '-' .
						     c::headerGetEntry($header, 'release'));
				 log::l("removing $otherPackage since it will not upgrade correctly!");
				 $toRemove{$otherPackage} = 1; #- force removing for theses other packages, select our.
			     }
			 } else {
			     my @files = c::headerGetEntry($header, 'filenames');
			     @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
							       ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
			 }
		     });

    #- find new packages to upgrade.
    foreach (values %$packages) {
	my $p = $_;
	my $skipThis = 0;
	my $count = c::rpmdbNameTraverse($db, $p->{name}, sub {
					     my ($header) = @_;
					     $skipThis ||= $p->{installed};
					 });

	#- skip if not installed (package not found in current install).
	$skipThis ||= ($count == 0);

	#- select the package if it is already installed with a lower version or simply not installed.
	unless ($skipThis) {
	    my $cumulSize;

	    pkgs::select($packages, $p) unless $p->{selected};

	    #- keep in mind installed files which are not being updated. doing this costs in
	    #- execution time but use less memory, else hash all installed files and unhash
	    #- all file for package marked for upgrade.
	    c::rpmdbNameTraverse($db, $p->{name}, sub {
				     my ($header) = @_;
				     my $otherPackage = (c::headerGetEntry($header, 'release') !~ /mdk\w*$/ &&
							 (c::headerGetEntry($header, 'name'). '-' .
							  c::headerGetEntry($header, 'version'). '-' .
							  c::headerGetEntry($header, 'release')));
				     $cumulSize += c::headerGetEntry($header, 'size'); #- all these will be deleted on upgrade.
				     my @files = c::headerGetEntry($header, 'filenames');
				     @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
								       ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
				 });
	    eval { getHeader($p) };
	    my @availFiles = $p->{header} ? c::headerGetEntry($p->{header}, 'filenames') : ();
	    map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| } @availFiles;

	    #- keep in mind the cumul size of installed package since they will be deleted
	    #- on upgrade.
	    $p->{installedCumulSize} = $cumulSize;
	}
    }

    #- unmark all files for all packages marked for upgrade. it may not have been done above
    #- since some packages may have been selected by depsList.
    foreach (values %$packages) {
	my $p = $_;

	if ($p->{selected}) {
	    eval { getHeader($p) };
	    my @availFiles = $p->{header} ? c::headerGetEntry($p->{header}, 'filenames') : ();
	    map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| } @availFiles;
	}
    }

    #- select packages which contains marked files, then unmark on selection.
    foreach (values %$packages) {
	my $p = $_;

	unless ($p->{selected}) {
	    eval { getHeader($p) };
	    my @availFiles = $p->{header} ? c::headerGetEntry($p->{header}, 'filenames') : ();
	    my $toSelect = 0;
	    map { if (exists $installedFilesForUpgrade{$_}) {
		$toSelect ||= ! -d "$prefix/$_" && ! -l "$prefix/$_"; delete $installedFilesForUpgrade{$_} }
	      } grep { $_ !~ m@^/etc/rc.d/@ } @availFiles;
	    pkgs::select($packages, $p) if ($toSelect);
	}
    }

    #- select packages which obseletes other package, obselete package are not removed,
    #- should we remove them ? this could be dangerous !
    foreach (values %$packages) {
	my $p = $_;

	eval { getHeader($p) };
	my @obsoletes = $p->{header} ? c::headerGetEntry(getHeader($p), 'obsoletes'): ();
	map { pkgs::select($packages, $p) if c::rpmdbNameTraverse($db, $_) > 0 } @obsoletes;
    }

    #- select all base packages which are not installed and not selected.
    foreach (@$base) {
	my $p = $packages->{$_} or log::l("missing base package $_"), next;
	log::l("base package $_ is not installed") unless $p->{installed} || $p->{selected}; #- installed not set on upgrade.
	pkgs::select($packages, $p, 1) unless $p->{selected}; #- if installed it cannot be selected.
    }

    #- clean false value on toRemove.
    delete $toRemove{''};

    #- get filenames that should be saved for packages to remove.
    #- typically config files, but it may broke for packages that
    #- are very old when compabilty has been broken.
    #- but new version may saved to .rpmnew so it not so hard !
    if ($toSave && keys %toRemove) {
	c::rpmdbTraverse($db, sub {
			     my ($header) = @_;
			     my $otherPackage = (c::headerGetEntry($header, 'name'). '-' .
						 c::headerGetEntry($header, 'version'). '-' .
						 c::headerGetEntry($header, 'release'));
			     if ($toRemove{$otherPackage}) {
				 if ($packages->{c::headerGetEntry($header, 'name')}{base}) {
				     delete $toRemove{$otherPackage}; #- keep it selected, but force upgrade.
				 } else {
				     my @files = c::headerGetEntry($header, 'filenames');
				     my @flags = c::headerGetEntry($header, 'fileflags');
				     for my $i (0..$#flags) {
					 if ($flags[$i] & c::RPMFILE_CONFIG()) {
					     push @$toSave, $files[$i] unless $files[$i] =~ /kdelnk/; #- avoid doublons for KDE.
					 }
				     }
				 }
			     }
			 });
    }

    log::l("before closing db");
    #- close db, job finished !
    c::rpmdbClose($db);
    log::l("done selecting packages to upgrade");

    #- update external copy with local one.
    @{$toRemove || []} = keys %toRemove;
}

sub installCallback {
    my $msg = shift;

    log::l($msg .": ". join(',', @_));
}

sub install($$$;$) {
    my ($prefix, $isUpgrade, $toInstall) = @_;
    my %packages;

#-    foreach (@$toInstall) {
#-	  print "$_->{name}\n";
#-    }

    return if $::g_auto_install;

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    my $db = c::rpmdbOpen($prefix) or die "error opening RPM database: ", c::rpmErrorString();
    log::l("opened rpm database for installing new packages");

    my $trans = c::rpmtransCreateSet($db, $prefix);

    my ($total, $nb);

    foreach my $p (@$toInstall) {
	eval { getHeader($p) }; $@ and next;
	$p->{file} ||= sprintf "%s-%s-%s.%s.rpm",
	                       $p->{name}, $p->{version}, $p->{release},
			       c::headerGetEntry(getHeader($p), 'arch');
	$packages{$p->{name}} = $p;
	c::rpmtransAddPackage($trans, getHeader($p), $p->{name}, $isUpgrade && $p->{name} !~ /kernel/); #- TODO: replace `named kernel' by `provides kernel'
	$nb++;
	$total += $p->{size};
    }

    c::rpmdepOrder($trans) or
	cdie "error ordering package list: " . c::rpmErrorString(),
	  sub {
	      c::rpmtransFree($trans);
	      c::rpmdbClose($db);
	  };
    c::rpmtransSetScriptFd($trans, fileno LOG);

    eval { fs::mount("/proc", "$prefix/proc", "proc", 0) } unless -e "$prefix/proc/cpuinfo";

    my $callbackOpen = sub {
	my $f = (my $p = $packages{$_[0]})->{file};
	print LOG "$f\n";
	my $fd = install_any::getFile($f) or log::l("ERROR: bad file $f");
	$fd ? fileno $fd : -1;
    };
    my $callbackClose = sub { $packages{$_[0]}{installed} = 1; };
    my $callbackMessage = \&pkgs::installCallback;

    #- do not modify/translate the message used with installCallback since
    #- these are keys during progressing installation, or change in other
    #- place (install_steps_gtk.pm,...).
    &$callbackMessage("Starting installation", $nb, $total);

    if (my @probs = c::rpmRunTransactions($trans, $callbackOpen, $callbackClose, $callbackMessage, 0)) {
	my %parts;
	@probs = reverse grep {
	    if (s/(installing package) .* (needs (?:.*) on the (.*) filesystem)/$1 $2/) {
		$parts{$3} ? 0 : ($parts{$3} = 1);
	    } else { 1; }
	} reverse @probs;

	c::rpmtransFree($trans);
	c::rpmdbClose($db);
#	if ($isUpgrade && !$useOnlyUpgrade && %parts) {
#	    #- recurse only once to try with only upgrade (including kernel).
#	    log::l("trying to upgrade all packages to save space");
#	    install($prefix,$isUpgrade,$toInstall,1);
#	}
	die "installation of rpms failed:\n  ", join("\n  ", @probs);
    }
    c::rpmtransFree($trans);
    c::rpmdbClose($db);
    log::l("rpm database closed");

    install_any::rewindGetFile(); #- make sure to reopen the connection, usefull for ftp.
}

sub remove($$) {
    my ($prefix, $toRemove) = @_;

    return if $::g_auto_install || !@{$toRemove || []};

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    my $db = c::rpmdbOpen($prefix) or die "error opening RPM database: ", c::rpmErrorString();
    log::l("opened rpm database for removing old packages");

    my $trans = c::rpmtransCreateSet($db, $prefix);

    foreach my $p (@$toRemove) {
	#- stuff remove all packages that matches $p, not a problem since $p has name-version-release format.
	c::rpmtransRemovePackages($db, $trans, $p) if $p !~ /kernel/;
    }

    eval { fs::mount("/proc", "$prefix/proc", "proc", 0) } unless -e "$prefix/proc/cpuinfo";

    my $callbackOpen = sub { log::l("trying to open file from $_[0] which should not happen"); };
    my $callbackClose = sub { log::l("trying to close file from $_[0] which should not happen"); };
    my $callbackMessage = \&pkgs::installCallback;

    #- we are not checking depends since it should come when
    #- upgrading a system. although we may remove some functionalities ?

    #- do not modify/translate the message used with installCallback since
    #- these are keys during progressing installation, or change in other
    #- place (install_steps_gtk.pm,...).
    &$callbackMessage("Starting removing other packages", scalar @$toRemove);

    if (my @probs = c::rpmRunTransactions($trans, $callbackOpen, $callbackClose, $callbackMessage, 0)) {
	die "removing of old rpms failed:\n  ", join("\n  ", @probs);
    }
    c::rpmtransFree($trans);
    c::rpmdbClose($db);
    log::l("rpm database closed");

    #- keep in mind removing of these packages by cleaning $toRemove.
    @{$toRemove || []} = ();
}

1;
'>3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137
# traducción de DrakX-es.po to Español
# spanish translation of DrakX
# Copyright (C) 2000, 2001,2002 Mandriva S.A.
# Fabián Mandelbaum <fmandelbaum@gmail.com>, 2000-2004, 2006, 2007.
# Pablo Saratxaga <pablo@mandriva.com>, 2004, 2006.
# Jaime Crespo <505201@unizar.es>, 2004, 2005.
# José Manuel Pérez <jmprodu@hotmail.com>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX-es\n"
"POT-Creation-Date: 2008-08-12 17:53+0200\n"
"PO-Revision-Date: 2007-09-24 18:26-0300\n"
"Last-Translator: Fabián Mandelbaum <fmandelbaum@gmail.com>\n"
"Language-Team: Español <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10\n"
"Plural-Forms:  nplurals=2; plural=(n != 1);\n"

#: any.pm:245 diskdrake/interactive.pm:554 diskdrake/interactive.pm:741
#: diskdrake/interactive.pm:785 diskdrake/interactive.pm:843
#: diskdrake/interactive.pm:1133 do_pkgs.pm:220 do_pkgs.pm:262
#: harddrake/sound.pm:285 interactive.pm:580
#, c-format
msgid "Please wait"
msgstr "Espere, por favor"

#: any.pm:245
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalación del cargador de arranque en progreso"

#: any.pm:256
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
"LILO desea asignar un nuevo ID de Volumen a la unidad %s.  Sin embargo,\n"
"cambiar el ID de Volumen de un disco de arranque de Windows NT, 2000,\n"
"o XP es un error fatal de Windows.\n"
"Esta advertencia no se aplica a Windows 95 o 98, o a discos de datos de NT.\n"
"\n"
"¿Asignar un nuevo ID de Volumen?"

#: any.pm:267
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"

#: any.pm:273
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Puede necesitar cambiar el dispositivo de arranque de Open Firmware para\n"
" activar el cargador de arranque. Si no ve el prompt del cargador de\n"
" arranque al reiniciar, mantenga presionado Command-Option-O-F al\n"
" reiniciar e introduzca:\n"
" setenv boot-device %s, \\\\:tbxi\n"
" Luego escriba: shut-down\n"
"La próxima vez que arranque debería ver el prompt del cargador de arranque."

#: any.pm:313
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Decidió instalar el cargador de arranque en una partición.\n"
"Esto implica que ya tiene un cargador de arranque en el disco desde el que "
"arranca (ej.: System Commander).\n"
"\n"
"¿Desde qué disco arranca?"

#: any.pm:339
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primer sector del disco (MBR)"

#: any.pm:341
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disco (MBR)"

#: any.pm:343
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partición raíz"

#: any.pm:345
#, c-format
msgid "On Floppy"
msgstr "En disquete"

#: any.pm:347
#, c-format
msgid "Skip"
msgstr "Omitir"

#: any.pm:351
#, c-format
msgid "LILO/grub Installation"
msgstr "Instalación de LILO/grub"

#: any.pm:352
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Dónde quiere instalar el cargador de arranque?"

#: any.pm:379
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración del estilo de arranque"

#: any.pm:389 any.pm:420 any.pm:421
#, c-format
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"

#: any.pm:393
#, c-format
msgid "Bootloader"
msgstr "Cargador de arranque"

#: any.pm:394 any.pm:424
#, c-format
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"

#: any.pm:396 any.pm:426
#, c-format
msgid "Boot device"
msgstr "Dispositivo de arranque"

#: any.pm:398
#, c-format
msgid "Main options"
msgstr "Opciones principales"

#: any.pm:399
#, c-format
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"

#: any.pm:400
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"

#: any.pm:401
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"

#: any.pm:402
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC local"

#: any.pm:404 any.pm:790 any.pm:799 authentication.pm:239
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contraseña"

#: any.pm:406 authentication.pm:250
#, c-format
msgid "The passwords do not match"
msgstr "Las contraseñas no coinciden"

#: any.pm:406 authentication.pm:250 diskdrake/interactive.pm:1300
#, c-format
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"

#: any.pm:407
#, c-format
msgid "You can not use a password with %s"
msgstr "No puede usar una contraseña con %s"

#: any.pm:410 any.pm:792 any.pm:801 authentication.pm:240
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nuevo)"

#: any.pm:411
#, c-format
msgid "Restrict command line options"
msgstr "Restringir las opciones de la línea de comandos"

#: any.pm:411
#, c-format
msgid "restrict"
msgstr "restringir"

#: any.pm:412
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"La opción \"Restringir las opciones de la línea de comandos\"\n"
"no tiene sentido sin contraseña"

#: any.pm:414
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Limpiar /tmp en cada inicio del equipo"

#: any.pm:415
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precise el tamaño de la RAM si es necesario (se encontraron %d MB)"

#: any.pm:416
#, c-format
msgid "Give the ram size in MB"
msgstr "Proporcione el tamaño de la RAM en MB"

#: any.pm:425
#, c-format
msgid "Init Message"
msgstr "Mensaje de inicio"

#: any.pm:427
#, c-format
msgid "Open Firmware Delay"
msgstr "Demora de Open firmware"

#: any.pm:428
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tiempo de espera de arranque del núcleo"

#: any.pm:429
#, c-format
msgid "Enable CD Boot?"
msgstr "¿Habilitar el arranque desde CD?"

#: any.pm:430
#, c-format
msgid "Enable OF Boot?"
msgstr "¿Habilitar el arranque de OF?"

#: any.pm:431
#, c-format
msgid "Default OS?"
msgstr "¿SO predeterminado?"

#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imagen"

#: any.pm:499 any.pm:512
#, c-format
msgid "Root"
msgstr "Raíz"

#: any.pm:500 any.pm:525
#, c-format
msgid "Append"
msgstr "Añadir"

#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Añadir Xen"

#: any.pm:505
#, c-format
msgid "Video mode"
msgstr "Modo de vídeo"

#: any.pm:507
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:508
#, c-format
msgid "Network profile"
msgstr "Perfil de red"

#: any.pm:517 any.pm:522 any.pm:524 diskdrake/interactive.pm:376
#, c-format
msgid "Label"
msgstr "Etiqueta"

#: any.pm:519 any.pm:527 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"

#: any.pm:526
#, c-format
msgid "NoVideo"
msgstr "Sin vídeo"

#: any.pm:537
#, c-format
msgid "Empty label not allowed"
msgstr "No se admite una etiqueta vacía"

#: any.pm:538
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar una imagen del núcleo"

#: any.pm:538
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar una partición raíz"

#: any.pm:539
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta ya está en uso"

#: any.pm:557
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desea añadir?"

#: any.pm:558
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:558
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Otro SO (SunOS...)"

#: any.pm:559
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Otro SO (MacOS...)"

#: any.pm:559
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otro SO (Windows...)"

#: any.pm:587
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Aquí están las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."

#: any.pm:751
#, c-format
msgid "access to X programs"
msgstr "acceso a programas X"

#: any.pm:752
#, c-format
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"

#: any.pm:753
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""

#: any.pm:754
#, c-format
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"

#: any.pm:755
#, c-format
msgid "access to network tools"
msgstr "acceso a herramientas de red"

#: any.pm:756
#, c-format
msgid "access to compilation tools"
msgstr "acceso a herramientas de compilación"

#: any.pm:762
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue añadido)"

#: any.pm:768
#, c-format
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"

#: any.pm:769
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nombre de usuario (login) sólo debe contener letras, números, `-' y `_'"

#: any.pm:770
#, c-format
msgid "The user name is too long"
msgstr "El nombre de usuario es muy largo"

#: any.pm:771
#, c-format
msgid "This user name has already been added"
msgstr "Este nombre de usuario ya fue añadido"

#: any.pm:777 any.pm:803
#, c-format
msgid "User ID"
msgstr "ID de usuario"

#: any.pm:777 any.pm:804
#, c-format
msgid "Group ID"
msgstr "ID de grupo"

#: any.pm:778
#, c-format
msgid "%s must be a number"
msgstr %s debe ser un número!"

#: any.pm:779
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s debería ser superior a 500. ¿Aceptarlo igual?"

#: any.pm:783
#, c-format
msgid "User management"
msgstr "Administración de usuarios"

#: any.pm:789 authentication.pm:226
#, c-format
msgid "Set administrator (root) password"
msgstr "Introduzca contraseña del administrador (root)"

#: any.pm:794
#, c-format
msgid "Enter a user"
msgstr "Ingrese un usuario"

#: any.pm:795
#, c-format
msgid "Real name"
msgstr "Nombre y apellidos"

#: any.pm:798
#, c-format
msgid "Login name"
msgstr "Nombre de conexión"

#: any.pm:802
#, c-format
msgid "Shell"
msgstr "Shell"

#: any.pm:806
#, c-format
msgid "Icon"
msgstr "Icono"

#: any.pm:844 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Conexión automática"

#: any.pm:845
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puedo configurar su computadora para que entre automáticamente con un "
"usuario."

#: any.pm:846
#, c-format
msgid "Use this feature"
msgstr "Utilizar esa característica"

#: any.pm:847
#, c-format
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"

#: any.pm:848
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"

#: any.pm:871 any.pm:920
#, c-format
msgid "Release Notes"
msgstr "Notas de versión"

#: any.pm:878 any.pm:1214 interactive/gtk.pm:766
#, c-format
msgid "Close"
msgstr "Cerrar"

#: any.pm:914
#, c-format
msgid "License agreement"
msgstr "Acuerdo de licencia"

#: any.pm:916 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Salir"

#: any.pm:923
#, c-format
msgid "Accept"
msgstr "Aceptar"

#: any.pm:923
#, c-format
msgid "Refuse"
msgstr "Rechazar"

#: any.pm:943 any.pm:1009
#, c-format
msgid "Please choose a language to use."
msgstr "Por favor, elija el idioma a usar."

#: any.pm:944 any.pm:1010
#, c-format
msgid "Language choice"
msgstr "Selección del idioma"

#: any.pm:973
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"Mandriva Linux puede soportar múltiples idiomas. Seleccione\n"
"los que desea instalar. Los mismos estarán disponibles cuando\n"
"su instalación esté completa y Usted reinicie su sistema."

#: any.pm:976
#, c-format
msgid "Multi languages"
msgstr "Multi-idiomas"

#: any.pm:987 any.pm:1018
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación (no UTF-8) para compatibilidad antigua"

#: any.pm:989
#, c-format
msgid "All languages"
msgstr "Todos los idiomas"

#: any.pm:1065
#, c-format
msgid "Country / Region"
msgstr "País / Región"

#: any.pm:1066
#, c-format
msgid "Please choose your country."
msgstr "Seleccione su país, por favor."

#: any.pm:1068
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquí tiene la lista completa de países disponibles"

#: any.pm:1069
#, c-format
msgid "Other Countries"
msgstr "Otros países"

#: any.pm:1069 interactive.pm:481
#, c-format
msgid "Advanced"
msgstr "Avanzada"

#: any.pm:1075
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"

#: any.pm:1078
#, c-format
msgid "None"
msgstr "Ninguno"

#: any.pm:1159
#, c-format
msgid "No sharing"
msgstr "No compartir"

#: any.pm:1159
#, c-format
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"

#: any.pm:1159
#, c-format
msgid "Custom"
msgstr "Personalizada"

#: any.pm:1163
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"¿Desea permitir a los usuarios exportar algunos directorios personales?\n"
"Si lo hace, los usuarios podrán simplemente hacer clic sobre \"Compartir\" "
"en Konqueror y Nautilus.\n"
"\n"
"\"Personalizada\" permite una granularidad por usuario.\n"

#: any.pm:1175
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: sistema tradicional Unix para compartir archivos, con menos soporte en "
"Mac y Windows."

#: any.pm:1178
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: sistema para compartir archivos usado por Windows, Mac OS X y muchos "
"sistemas Linux modernos."

#: any.pm:1186
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Puede exportar usando NFS o SMB. Por favor, elija el que desea utilizar."

#: any.pm:1214
#, c-format
msgid "Launch userdrake"
msgstr "Lanzar UserDrake"

#: any.pm:1216
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Los recursos compartidos por usuario utilizan el grupo \"fileshare\". \n"
"Puede utilizar UserDrake para añadir un usuario a este grupo."

#: any.pm:1308
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Por favor salga de la sesión y luego pulse Ctrl-Alt-BackSpace"

#: any.pm:1312
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Debe desconectarse y volver a conectarse para que los cambios tengan efecto"

#: any.pm:1347
#, c-format
msgid "Timezone"
msgstr "Huso horario"

#: any.pm:1347
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál es su huso horario?"

#: any.pm:1370 any.pm:1372
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de la fecha, hora y huso horario"

#: any.pm:1373
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál es la mejor hora?"

#: any.pm:1377
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reloj interno puesto en hora UTC)"

#: any.pm:1378
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reloj interno puesto en hora local)"

#: any.pm:1380
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"

#: any.pm:1381
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática de hora (usando NTP)"

#: authentication.pm:25
#, c-format
msgid "Local file"
msgstr "Archivo local"

#: authentication.pm:26
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:27
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:28
#, c-format
msgid "Smart Card"
msgstr "Tarjeta inteligente (Smart Card)"

#: authentication.pm:29 authentication.pm:205
#, c-format
msgid "Windows Domain"
msgstr "Dominio Windows"

#: authentication.pm:30
#, c-format
msgid "Kerberos 5"
msgstr ""

#: authentication.pm:64
#, c-format
msgid "Local file:"
msgstr "Archivo local:"

#: authentication.pm:64
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
"Usar local para toda autenticación y la información que el usuario brinda en "
"archivo local"

#: authentication.pm:65
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:65
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Le dice a la computadora que use LDAP para alguna o toda la autenticación. "
"LDAP consolida ciertos tipos de información dentro de su organización."

#: authentication.pm:66
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:66
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
"Le permite correr un grupo de computadoras en el mismo dominio NIS con "
"archivos comunes de grupo y contraseñas."

#: authentication.pm:67
#, c-format
msgid "Windows Domain:"
msgstr "Dominio Windows:"

#: authentication.pm:67
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind permite que el sistema obtenga información y autentique a los "
"usuarios en un dominio Windows."

#: authentication.pm:68
#, c-format
msgid "Kerberos 5 :"
msgstr ""

#: authentication.pm:68
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr "Con Kerberos y LDAP para autenticación en servidor Active Directory"

#: authentication.pm:96 authentication.pm:130 authentication.pm:149
#: authentication.pm:150 authentication.pm:176 authentication.pm:200
#: authentication.pm:871
#, c-format
msgid " "
msgstr ""

#: authentication.pm:97 authentication.pm:131 authentication.pm:177
#: authentication.pm:201
#, fuzzy, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Se necesita autenticación de dominio"

#: authentication.pm:99
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:101 authentication.pm:156
#, c-format
msgid "LDAP Server"
msgstr "Servidor LDAP"

#: authentication.pm:102 authentication.pm:157
#, fuzzy, c-format
msgid "Base dn"
msgstr "LDAP Base dn"

#: authentication.pm:103
#, c-format
msgid "Fetch base Dn "
msgstr ""

#: authentication.pm:105 authentication.pm:160
#, c-format
msgid "Use encrypt connection with TLS "
msgstr ""

#: authentication.pm:106 authentication.pm:161
#, c-format
msgid "Download CA Certificate "
msgstr ""

#: authentication.pm:108 authentication.pm:141
#, c-format
msgid "Use Disconnect mode "
msgstr ""

#: authentication.pm:109 authentication.pm:162
#, fuzzy, c-format
msgid "Use anonymous BIND "
msgstr "Usar BIND anónimo"

#: authentication.pm:110 authentication.pm:113 authentication.pm:115
#: authentication.pm:119
#, c-format
msgid "  "
msgstr ""

#: authentication.pm:111 authentication.pm:163
#, c-format
msgid "Bind DN "
msgstr ""

#: authentication.pm:112 authentication.pm:164
#, fuzzy, c-format
msgid "Bind Password "
msgstr "Contraseña"

#: authentication.pm:114
#, c-format
msgid "Advanced path for group "
msgstr ""

#: authentication.pm:116
#, fuzzy, c-format
msgid "Password base"
msgstr "Contraseña"

#: authentication.pm:117
#, fuzzy, c-format
msgid "Group base"
msgstr "ID de grupo"

#: authentication.pm:118
#, c-format
msgid "Shadow base"
msgstr ""

#: authentication.pm:133
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:135
#, fuzzy, c-format
msgid "Realm "
msgstr "Nombre y apellidos"

#: authentication.pm:137
#, fuzzy, c-format
msgid "KDCs Servers"
msgstr "Servidor LDAP"

#: authentication.pm:139
#, c-format
msgid "Use DNS to resolve hosts for realms "
msgstr ""

#: authentication.pm:140
#, c-format
msgid "Use DNS to resolve KDCs for realms "
msgstr ""

#: authentication.pm:145
#, fuzzy, c-format
msgid "Use local file for users informations"
msgstr "Utilizar libsafe para los servidores"

#: authentication.pm:146
#, fuzzy, c-format
msgid "Use Ldap for users informations"
msgstr "Información del disco rígido"

#: authentication.pm:152
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""

#: authentication.pm:158
#, c-format
msgid "Fecth base Dn "
msgstr ""

#: authentication.pm:179
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:181
#, c-format
msgid "NIS Domain"
msgstr "Dominio NIS"

#: authentication.pm:182
#, c-format
msgid "NIS Server"
msgstr "Servidor NIS"

#: authentication.pm:203
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""

#: authentication.pm:207
#, fuzzy, c-format
msgid "Domain Model "
msgstr "Dominio"

#: authentication.pm:209
#, c-format
msgid "Active Directory Realm "
msgstr "Reino Active Directory"

#: authentication.pm:225 authentication.pm:241
#, c-format
msgid "Authentication"
msgstr "Autentificación"

#: authentication.pm:227
#, c-format
msgid "Authentication method"
msgstr "Método de autenticación"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:232
#, c-format
msgid "No password"
msgstr "Sin contraseña"

#: authentication.pm:253
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Esta contraseña es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"

#: authentication.pm:353
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "No se puede usar difusión sin un dominio NIS"

#: authentication.pm:866
#, c-format
msgid "Select file"
msgstr "Elija un archivo"

#: authentication.pm:872
#, fuzzy, c-format
msgid "Domain Windows for authentication : "
msgstr "Se necesita autenticación de dominio"

#: authentication.pm:874
#, c-format
msgid "Domain Admin User Name"
msgstr "Nombre de usuario del Administrador del Dominio"

#: authentication.pm:875
#, c-format
msgid "Domain Admin Password"
msgstr "Contraseña del Administrador del Dominio"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:942
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Bienvenido al selector de SO de arranque!\n"
"\n"
"Elija un sistema operativo de la lista de arriba o espere\n"
"a que arranque el sistema predeterminado.\n"
"\n"

#: bootloader.pm:1110
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menú de texto"

#: bootloader.pm:1111
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"

#: bootloader.pm:1112
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menú de texto"

#: bootloader.pm:1113
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1114
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1195
#, c-format
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"

#: bootloader.pm:1843
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una partición %s\n"

#: bootloader.pm:1964
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Se debe actualizar la configuración de su cargador de arranque debido a que "
"cambió el número de la partición"

#: bootloader.pm:1977
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"No se puede instalar correctamente el cargador de arranque. Debe arrancar "
"con rescate y elegir \"%s\""

#: bootloader.pm:1978
#, c-format
msgid "Re-install Boot Loader"
msgstr "Volver a instalar cargador de arranque"

#: common.pm:142
#, c-format
msgid "B"
msgstr "B"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d minutos"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 minuto"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d segundos"

#: common.pm:358
#, c-format
msgid "command %s missing"
msgstr "falta el comando %s"

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV es un protocolo que le permite montar localmente un directorio de un\n"
"servidor web, y tratarlo como un sistema de archivos local (siempre y "
"cuando\n"
"el servidor web está configurado como servidor WebDAV). Si desea añadir\n"
"puntos de montaje WebDAV, seleccione \"Nuevo\"."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Nuevo"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:382 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmontar"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:379 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montar"

#: diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Servidor"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:373
#: diskdrake/interactive.pm:613 diskdrake/interactive.pm:631
#: diskdrake/interactive.pm:635 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Punto de montaje"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:375
#: diskdrake/interactive.pm:989 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opciones"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:164 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Hecho"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/hd_gtk.pm:263
#: diskdrake/interactive.pm:233 diskdrake/interactive.pm:246
#: diskdrake/interactive.pm:480 diskdrake/interactive.pm:485
#: diskdrake/interactive.pm:603 diskdrake/interactive.pm:861
#: diskdrake/interactive.pm:1035 diskdrake/interactive.pm:1048
#: diskdrake/interactive.pm:1051 diskdrake/interactive.pm:1300
#: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44
#: do_pkgs.pm:60 do_pkgs.pm:65 fsedit.pm:222 interactive/http.pm:117
#: interactive/http.pm:118 modules/interactive.pm:19 scanner.pm:94
#: scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95 wizards.pm:99
#: wizards.pm:121
#, c-format
msgid "Error"
msgstr "Error"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Por favor, ingrese la URL del servidor WebDAV"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "La URL debería empezar con http:// o https://"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Servidor: "

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:453
#: diskdrake/interactive.pm:1180 diskdrake/interactive.pm:1260
#, c-format
msgid "Mount point: "
msgstr "Punto de montaje: "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1267
#, c-format
msgid "Options: %s"
msgstr "Opciones: %s"

#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:284
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:51 fs/partitioning_wizard.pm:206
#: fs/partitioning_wizard.pm:211 fs/partitioning_wizard.pm:250
#: fs/partitioning_wizard.pm:269 fs/partitioning_wizard.pm:274
#, c-format
msgid "Partitioning"
msgstr "Particionando"

#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1010
#: diskdrake/interactive.pm:1020 diskdrake/interactive.pm:1073
#, c-format
msgid "Read carefully!"
msgstr "¡Lea con cuidado!"

#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Por favor, haga primero una copia de seguridad de sus datos"

#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:226
#, c-format
msgid "Exit"
msgstr "Salir"

#: diskdrake/hd_gtk.pm:94
#, c-format
msgid "Continue"
msgstr "Continuar"

#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Si piensa usar aboot, no olvide dejar espacio libre (2048 sectores es\n"
"suficiente) al principio del disco"

#: diskdrake/hd_gtk.pm:160 interactive.pm:644 interactive/gtk.pm:744
#: interactive/gtk.pm:759 interactive/gtk.pm:779 ugtk2.pm:938 ugtk2.pm:939
#, c-format
msgid "Help"
msgstr "Ayuda"

#: diskdrake/hd_gtk.pm:195
#, c-format
msgid "Choose action"
msgstr "Elija una acción"

#: diskdrake/hd_gtk.pm:199
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Tiene una partición Microsoft Windows de gran tamaño.\n"
"Le sugiero que primero cambie el tamaño de la misma\n"
"(para eso haga clic sobre ella, y luego sobre \"Redimensionar\")"

#: diskdrake/hd_gtk.pm:201
#, c-format
msgid "Please click on a partition"
msgstr "Por favor, haga clic sobre una partición"

#: diskdrake/hd_gtk.pm:215 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detalles"

#: diskdrake/hd_gtk.pm:263
#, c-format
msgid "No hard drives found"
msgstr "¡No se encontraron discos rígidos!"

#: diskdrake/hd_gtk.pm:290
#, c-format
msgid "Unknown"
msgstr "Desconocido"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "Ext3"
msgstr "Ext3"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "XFS"
msgstr "XFS"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "Swap"
msgstr "Intercambio"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:353 services.pm:158
#, c-format
msgid "Other"
msgstr "Otros"

#: diskdrake/hd_gtk.pm:353 diskdrake/interactive.pm:1195
#, c-format
msgid "Empty"
msgstr "Vacío"

#: diskdrake/hd_gtk.pm:357
#, c-format
msgid "Filesystem types:"
msgstr "Tipos de sistemas de archivos:"

#: diskdrake/hd_gtk.pm:381 diskdrake/interactive.pm:289
#: diskdrake/interactive.pm:361 diskdrake/interactive.pm:510
#: diskdrake/interactive.pm:694 diskdrake/interactive.pm:752
#: diskdrake/interactive.pm:841 diskdrake/interactive.pm:883
#: diskdrake/interactive.pm:884 diskdrake/interactive.pm:1118
#: diskdrake/interactive.pm:1156 diskdrake/interactive.pm:1299 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 harddrake/sound.pm:422
#, c-format
msgid "Warning"
msgstr "Advertencia"

#: diskdrake/hd_gtk.pm:381
#, c-format
msgid "This partition is already empty"
msgstr "Esta partición ya está vacía"

#: diskdrake/hd_gtk.pm:390
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Use \"Desmontar\" primero"

#: diskdrake/hd_gtk.pm:390
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Use \"%s\" en su lugar"

#: diskdrake/hd_gtk.pm:390 diskdrake/interactive.pm:374
#: diskdrake/interactive.pm:548 diskdrake/interactive.pm:1026
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Tipo"

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose another partition"
msgstr "Elija otra partición"

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose a partition"
msgstr "Elija una partición"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to normal mode"
msgstr "Cambiar al modo normal"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to expert mode"
msgstr "Cambiar al modo experto"

#: diskdrake/interactive.pm:267 diskdrake/interactive.pm:277
#: diskdrake/interactive.pm:1103
#, c-format
msgid "Confirmation"
msgstr "Confirmación"

#: diskdrake/interactive.pm:267
#, c-format
msgid "Continue anyway?"
msgstr "¿Seguir adelante?"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without saving"
msgstr "Salir sin grabar"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without writing the partition table?"
msgstr "¿Salir del programa sin grabar la tabla de particiones?"

#: diskdrake/interactive.pm:277
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "¿Desea guardar las modificaciones en /etc/fstab?"

#: diskdrake/interactive.pm:284 fs/partitioning_wizard.pm:250
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar el equipo para que se efectúe la modificación de la tabla "
"de particiones"

#: diskdrake/interactive.pm:289
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""
"Debe formatear las particiones %s.\n"
"Si no, no se escribirá ninguna entrada en fstab para el punto de montaje %"
"s.\n"
"¿Salir de todas formas?"

#: diskdrake/interactive.pm:302
#, c-format
msgid "Clear all"
msgstr "Borrar todas"

#: diskdrake/interactive.pm:303
#, c-format
msgid "Auto allocate"
msgstr "Asignación automática"

#: diskdrake/interactive.pm:304 diskdrake/interactive.pm:352
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Más"

#: diskdrake/interactive.pm:309
#, c-format
msgid "Hard drive information"
msgstr "Información del disco rígido"

#: diskdrake/interactive.pm:341
#, c-format
msgid "All primary partitions are used"
msgstr "Todas las particiones primarias están usadas"

#: diskdrake/interactive.pm:342
#, c-format
msgid "I can not add any more partitions"
msgstr "No se pueden agregar más particiones"

#: diskdrake/interactive.pm:343
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Por favor, para tener más particiones borre alguna para poder crear una "
"partición extendida"

#: diskdrake/interactive.pm:354
#, c-format
msgid "Reload partition table"
msgstr "Volver a cargar la tabla de particiones"

#: diskdrake/interactive.pm:361
#, c-format
msgid "Detailed information"
msgstr "Información detallada"

#: diskdrake/interactive.pm:377 diskdrake/interactive.pm:707
#, c-format
msgid "Resize"
msgstr "Redimensionar"

#: diskdrake/interactive.pm:378
#, c-format
msgid "Format"
msgstr "Formatear"

#: diskdrake/interactive.pm:380 diskdrake/interactive.pm:793
#, c-format
msgid "Add to RAID"
msgstr "Añadir al RAID"

#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:811
#, c-format
msgid "Add to LVM"
msgstr "Añadir al LVM"

#: diskdrake/interactive.pm:383
#, c-format
msgid "Delete"
msgstr "Borrar"

#: diskdrake/interactive.pm:384
#, c-format
msgid "Remove from RAID"
msgstr "Quitar del RAID"

#: diskdrake/interactive.pm:385
#, c-format
msgid "Remove from LVM"
msgstr "Quitar del LVM"

#: diskdrake/interactive.pm:386
#, c-format
msgid "Modify RAID"
msgstr "Modificar el RAID"

#: diskdrake/interactive.pm:387
#, c-format
msgid "Use for loopback"
msgstr "Usar para loopback"

#: diskdrake/interactive.pm:398
#, c-format
msgid "Create"
msgstr "Crear"

#: diskdrake/interactive.pm:442 diskdrake/interactive.pm:444
#, c-format
msgid "Create a new partition"
msgstr "Crear una partición nueva"

#: diskdrake/interactive.pm:446
#, c-format
msgid "Start sector: "
msgstr "Sector de comienzo: "

#: diskdrake/interactive.pm:449 diskdrake/interactive.pm:876
#, c-format
msgid "Size in MB: "
msgstr "Tamaño en MB: "

#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:877
#, c-format
msgid "Filesystem type: "
msgstr "Tipo de sistema de. archivos: "

#: diskdrake/interactive.pm:457
#, c-format
msgid "Preference: "
msgstr "Preferencia: "

#: diskdrake/interactive.pm:460
#, c-format
msgid "Logical volume name "
msgstr "Nombre del volumen lógico"

#: diskdrake/interactive.pm:480
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"No puede crear una partición nueva\n"
"(debido a que alcanzó la cantidad máxima de particiones primarias).\n"
"Primero debe quitar una partición primaria y crear una partición extendida."

#: diskdrake/interactive.pm:510
#, c-format
msgid "Remove the loopback file?"
msgstr "¿Borrar el archivo de loopback?"

#: diskdrake/interactive.pm:532
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Se perderán todos los datos de la partición %s después de cambiar su tipo"

#: diskdrake/interactive.pm:545
#, c-format
msgid "Change partition type"
msgstr "Cambiar el tipo de partición"

#: diskdrake/interactive.pm:547 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "¿Qué sistema de archivos desea?"

#: diskdrake/interactive.pm:554
#, fuzzy, c-format
msgid "Switching from %s to %s"
msgstr "Cambiando de ext2 a ext3"

#: diskdrake/interactive.pm:580 diskdrake/interactive.pm:583
#, c-format
msgid "Which volume label?"
msgstr "¿Cual etiqueta de volumen?"

#: diskdrake/interactive.pm:584
#, c-format
msgid "Label:"
msgstr "Etiqueta:"

#: diskdrake/interactive.pm:598
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "¿Dónde desea montar el archivo de loopback %s?"

#: diskdrake/interactive.pm:599
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "¿Dónde desea montar el dispositivo %s?"

#: diskdrake/interactive.pm:604
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"No se puede deseleccionar el punto de montaje ya que esta partición\n"
"se usa para un montaje en loopback.\n"
"Quite el montaje de loopback primero"

#: diskdrake/interactive.pm:634
#, c-format
msgid "Where do you want to mount %s?"
msgstr "¿Dónde desea montar a %s?"

#: diskdrake/interactive.pm:658 diskdrake/interactive.pm:741
#: fs/partitioning_wizard.pm:146 fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing"
msgstr "Cambiando tamaño"

#: diskdrake/interactive.pm:658
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Calculando los límites del sistema de archivos FAT"

#: diskdrake/interactive.pm:694
#, c-format
msgid "This partition is not resizeable"
msgstr "No se puede cambiar el tamaño a esta partición"

#: diskdrake/interactive.pm:699
#, c-format
msgid "All data on this partition should be backed-up"
msgstr ""
"Debería hacer una copia de seguridad de todos los datos de esta partición"

#: diskdrake/interactive.pm:701
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Se perderán todos los datos de la partición %s tras cambiar su tamaño"

#: diskdrake/interactive.pm:708
#, c-format
msgid "Choose the new size"
msgstr "Eligiendo el tamaño nuevo"

#: diskdrake/interactive.pm:709
#, c-format
msgid "New size in MB: "
msgstr "Tamaño nuevo en MB: "

#: diskdrake/interactive.pm:710
#, c-format
msgid "Minimum size: %s MB"
msgstr "Tamaño mínimo: %s MB"

#: diskdrake/interactive.pm:711
#, c-format
msgid "Maximum size: %s MB"
msgstr "Tamaño máximo: %s MB"

#: diskdrake/interactive.pm:752 fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"Para asegurar la integridad de los datos luego de cambiar el tamaño a\n"
"las particiones, se pueden ejecutar verificaciones de los sist. de archivos\n"
"la próxima vez que arranque en Windows(TM)"

#: diskdrake/interactive.pm:793
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Elegir un RAID existente al que añadir"

#: diskdrake/interactive.pm:795 diskdrake/interactive.pm:813
#, c-format
msgid "new"
msgstr "nuevo"

#: diskdrake/interactive.pm:811
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Elegir un LVM existente al que añadir"

#: diskdrake/interactive.pm:818
#, c-format
msgid "LVM name?"
msgstr "¿nombre de LVM?"

#: diskdrake/interactive.pm:841
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
"El volúmen físico %s todavía está en uso.\n"
"¿Desea mover el espacio físico usado en este volumen a otros volúmenes?"

#: diskdrake/interactive.pm:843
#, c-format
msgid "Moving physical extents"
msgstr "Moviendo el espacio físico"

#: diskdrake/interactive.pm:861
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Esta partición no puede usarse para el loopback"

#: diskdrake/interactive.pm:874
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: diskdrake/interactive.pm:875
#, c-format
msgid "Loopback file name: "
msgstr "Nombre del archivo de loopback: "

#: diskdrake/interactive.pm:880
#, c-format
msgid "Give a file name"
msgstr "Indique el nombre de un archivo"

#: diskdrake/interactive.pm:883
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "El archivo ya lo utiliza otro dispositivo loopback, seleccione otro"

#: diskdrake/interactive.pm:884
#, c-format
msgid "File already exists. Use it?"
msgstr "El archivo ya existe. ¿Desea usarlo?"

#: diskdrake/interactive.pm:916 diskdrake/interactive.pm:919
#, c-format
msgid "Mount options"
msgstr "Opciones de montaje"

#: diskdrake/interactive.pm:926
#, c-format
msgid "Various"
msgstr "Varios"

#: diskdrake/interactive.pm:991
#, c-format
msgid "device"
msgstr "dispositivo"

#: diskdrake/interactive.pm:992
#, c-format
msgid "level"
msgstr "nivel"

#: diskdrake/interactive.pm:993
#, c-format
msgid "chunk size in KiB"
msgstr "tamaño de bloque en KiB"

#: diskdrake/interactive.pm:1011
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Cuidado: esta operación es peligrosa."

#: diskdrake/interactive.pm:1026
#, c-format
msgid "What type of partitioning?"
msgstr "¿Qué tipo de particionamiento?"

#: diskdrake/interactive.pm:1064
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Necesita reiniciar el equipo para que la modificación tenga efecto"

#: diskdrake/interactive.pm:1073
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "¡Se escribirá al disco la tabla de particiones de la unidad %s!"

#: diskdrake/interactive.pm:1098
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Se perderán todos los datos de la partición %s después de formatearla"

#: diskdrake/interactive.pm:1103 fs/partitioning.pm:48
#, c-format
msgid "Check bad blocks?"
msgstr "¿Verificar el disco en busca de bloques malos?"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Move files to the new partition"
msgstr "Mover los archivos a la nueva partición"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Hide files"
msgstr "Ocultar archivos"

#: diskdrake/interactive.pm:1118
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
"You can either choose to move the files into the partition that will be "
"mounted there or leave them where they are (which results in hiding them by "
"the contents of the mounted partition)"
msgstr ""
"El directorio %s ya contiene datos\n"
"(%s)\n"
"\n"
"Puede elegir mover los archivos a la partición que se montará allí o "
"dejarlos donde están (lo cual hará que los mismos queden ocultos por los "
"contenidos de la partición montada)"

#: diskdrake/interactive.pm:1133
#, c-format
msgid "Moving files to the new partition"
msgstr "Moviendo los archivos a la nueva partición"

#: diskdrake/interactive.pm:1137
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"

#: diskdrake/interactive.pm:1141
#, c-format
msgid "Removing %s"
msgstr "Borrando %s"

#: diskdrake/interactive.pm:1155
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partición %s ahora se conoce como %s"

#: diskdrake/interactive.pm:1156
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Las particiones han sido renumeradas: "

#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1244
#, c-format
msgid "Device: "
msgstr "Dispositivo: "

#: diskdrake/interactive.pm:1182
#, c-format
msgid "Volume label: "
msgstr "Etiqueta de volumen: "

#: diskdrake/interactive.pm:1183
#, c-format
msgid "UUID: "
msgstr "UUID: "

#: diskdrake/interactive.pm:1184
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra DOS: %s (simplemente una adivinanza)\n"

#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1197
#: diskdrake/interactive.pm:1263
#, c-format
msgid "Type: "
msgstr "Tipo: "

#: diskdrake/interactive.pm:1192 diskdrake/interactive.pm:1248
#, c-format
msgid "Name: "
msgstr "Nombre: "

#: diskdrake/interactive.pm:1199
#, c-format
msgid "Start: sector %s\n"
msgstr "Comienzo: sector %s\n"

#: diskdrake/interactive.pm:1200
#, c-format
msgid "Size: %s"
msgstr "Tamaño: %s"

#: diskdrake/interactive.pm:1202
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"

#: diskdrake/interactive.pm:1204
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindros %d a %d\n"

#: diskdrake/interactive.pm:1205
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Número de extensiones lógicas: %d\n"

#: diskdrake/interactive.pm:1206
#, c-format
msgid "Formatted\n"
msgstr "Formateado\n"

#: diskdrake/interactive.pm:1207
#, c-format
msgid "Not formatted\n"
msgstr "No formateado\n"

#: diskdrake/interactive.pm:1208
#, c-format
msgid "Mounted\n"
msgstr "Montado\n"

#: diskdrake/interactive.pm:1209
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1214
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Archivo(s) de loopback:\n"
"   %s\n"

#: diskdrake/interactive.pm:1215
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Partición predeterminada de arranque\n"
"    (para arranque de MS-DOS, no para lilo)\n"

#: diskdrake/interactive.pm:1217
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"

#: diskdrake/interactive.pm:1218
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Tamaño de bloque %d KiB\n"

#: diskdrake/interactive.pm:1219
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos-RAID %s\n"

#: diskdrake/interactive.pm:1221
#, c-format
msgid "Loopback file name: %s"
msgstr "Nombre del archivo de loopback: %s"

#: diskdrake/interactive.pm:1224
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Es probable que esta partición sea\n"
"una partición de Controlador, probablemente\n"
"debería dejarla como está.\n"

#: diskdrake/interactive.pm:1227
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Esta partición especial de Bootstrap\n"
"es para el arranque\n"
"dual de su sistema.\n"

#: diskdrake/interactive.pm:1236
#, c-format
msgid "Free space on %s (%s)"
msgstr "Espacio libre en %s (%s)"

#: diskdrake/interactive.pm:1245
#, c-format
msgid "Read-only"
msgstr "Sólo lectura"

#: diskdrake/interactive.pm:1246
#, c-format
msgid "Size: %s\n"
msgstr "Tamaño: %s\n"

#: diskdrake/interactive.pm:1247
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometría: %s cilindros, %s cabezas, %s sectores\n"

#: diskdrake/interactive.pm:1249
#, fuzzy, c-format
msgid "Medium type: "
msgstr "Tipo de sistema de. archivos: "

#: diskdrake/interactive.pm:1250
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos-LVM %s\n"

#: diskdrake/interactive.pm:1251
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de la tabla de particiones: %s\n"

#: diskdrake/interactive.pm:1252
#, c-format
msgid "on channel %d id %d\n"
msgstr "en el canal %d id %d\n"

#: diskdrake/interactive.pm:1295
#, c-format
msgid "Filesystem encryption key"
msgstr "Clave de cifrado del sistema de archivos"

#: diskdrake/interactive.pm:1296
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Elija la clave de cifrado de su sistema de archivos"

#: diskdrake/interactive.pm:1299
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Esta clave de cifrado es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"

#: diskdrake/interactive.pm:1300
#, c-format
msgid "The encryption keys do not match"
msgstr "Las claves de cifrado no coinciden"

#: diskdrake/interactive.pm:1303
#, c-format
msgid "Encryption key"
msgstr "Clave de cifrado"

#: diskdrake/interactive.pm:1304
#, c-format
msgid "Encryption key (again)"
msgstr "Clave de cifrado (otra vez)"

#: diskdrake/interactive.pm:1306
#, c-format
msgid "Encryption algorithm"
msgstr "Algoritmo de cifrado"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Cambiar tipo"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:543
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 ugtk2.pm:409 ugtk2.pm:511
#: ugtk2.pm:520 ugtk2.pm:803
#, c-format
msgid "Cancel"
msgstr "Cancelar"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
"No se puede conectar utilizando el nombre de usuario %s (¿contraseña "
"incorrecta?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Se necesita autenticación de dominio"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Qué nombre de usuario"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Otro"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Por favor, ingrese su nombre de usuario, contraseña y nombre de dominio para "
"acceder a este host."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Nombre de usuario"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Dominio"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Buscar servidores"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Buscar servidores nuevos"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60
#, c-format
msgid "Could not install the %s package!"
msgstr "¡No se pudo instalar el paquete %s!"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Falta el paquete obligatorio %s"

#: do_pkgs.pm:39
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Se deben instalar los siguientes paquetes:\n"

#: do_pkgs.pm:220
#, c-format
msgid "Installing packages..."
msgstr "Instalando paquetes..."

#: do_pkgs.pm:262
#, c-format
msgid "Removing packages..."
msgstr "Quitando paquetes..."

#: fs/any.pm:17
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ocurrió un error - no se encontró ningún dispositivo válido para crear los "
"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
"razón de este fallo"

#: fs/any.pm:75 fs/partitioning_wizard.pm:59
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe tener una partición FAT montada en /boot/efi"

#: fs/format.pm:63 fs/format.pm:70
#, c-format
msgid "Formatting partition %s"
msgstr "Formateando la partición %s"

#: fs/format.pm:67
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando y formateando el archivo %s"

#: fs/format.pm:122
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "No sé cómo formatear %s en el tipo %s"

#: fs/format.pm:127 fs/format.pm:129
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formateo de %s falló"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Montajes circulares %s\n"

#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Montando la partición %s"

#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "falló el montaje de la partición %s en el directorio %s"

#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Verificando %s"

#: fs/mount.pm:119 partition_table.pm:403
#, c-format
msgid "error unmounting %s: %s"
msgstr "error desmontando %s: %s"

#: fs/mount.pm:134
#, c-format
msgid "Enabling swap partition %s"
msgstr "Habilitando la partición swap %s"

#: fs/mount_options.pm:115
#, c-format
msgid "Use an encrypted file system"
msgstr "Usar un sistema de archivos cifrado"

#: fs/mount_options.pm:117
#, c-format
msgid "Flush write cache on file close"
msgstr "Vaciar el cache de escritura al cerrar los ficheros"

#: fs/mount_options.pm:119
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""
"Permitir la contabilidad de las cuotas del disco y opcionalmente, forzar "
"límites"

#: fs/mount_options.pm:121
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"No actualizar los tiempos de acceso al inodo en este sistema de archivos\n"
"(ej: para un acceso más rápido al spool de noticias en un servidor de "
"noticias)"

#: fs/mount_options.pm:124
#, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Actualizar más eficientemente tiempo de acceso a inodos en este sist. de "
"archivos\n"
"(ej: para mejorar el tiempo de respuesta de un servidor de noticias)"

#: fs/mount_options.pm:127
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
"Sólo se puede montar explícitamente (es decir,\n"
"la opción -a no causará que se monte el sistema de archivos)"

#: fs/mount_options.pm:130
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
"No interpretar dispositivos especiales de bloque o carácter en el sistema de "
"archivos."

#: fs/mount_options.pm:132
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""
"No permitir la ejecución de binarios en el sistema de archivos montado.\n"
"Esta opción puede ser útil para un servidor que tiene sistemas de archivos\n"
"que contienen binaros para arquitecturas distintas a la propia."

#: fs/mount_options.pm:136
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
"No permitir que tengan efecto el ajuste de los bits set-user-id o set-group-"
"id\n"
"(Esto parece seguro, pero de hecho es bastante inseguro si tiene\n"
"suidperl(1) instalado)"

#: fs/mount_options.pm:140
#, c-format
msgid "Mount the file system read-only."
msgstr "Montar el sistema de archivos como sólo de lectura."

#: fs/mount_options.pm:142
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr ""
"Toda la E/S del sistema de archivos debería hacerse de manera sincrónica."

#: fs/mount_options.pm:144
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr "Permitir a cada usuario montar y desmontar el sistema de archivos."

#: fs/mount_options.pm:146
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Permitir a un usuario común montar el sistema de archivos."

#: fs/mount_options.pm:148
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
"Permitir la contabilidad de las cuotas de disco para los usuarios, y "
"opcionalmente forzar límites"

#: fs/mount_options.pm:150
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Soportar atributos extendidos \"user.\""

#: fs/mount_options.pm:152
#, c-format
msgid "Give write access to ordinary users"
msgstr "Dar acceso de escritura a usuarios regulares"

#: fs/mount_options.pm:154
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Dar acceso sólo de lectura a usuarios regulares"

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaje %s duplicado"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "no hay particiones disponibles"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Rastreando las particiones para encontrar los puntos de montaje"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Seleccione los puntos de montaje"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Elija las particiones que desea formatear"

#: fs/partitioning.pm:75
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Falló la verificación del sistema de archivos %s. ¿Desea reparar los "
"errores? (cuidado, puede perder datos)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Espacio de intercambio insuficiente para completar la instalación, añada un "
"poco más"

#: fs/partitioning_wizard.pm:51
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Debe tener una partición raíz.\n"
"Para ello, cree una partición (o haga clic sobre una que ya existe).\n"
"Luego elija la acción \"Punto de montaje\" y defínalo como '/'"

#: fs/partitioning_wizard.pm:56
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"No dispone de una partición de intercambio\n"
"\n"
"¿Desea continuar de todas formas?"

#: fs/partitioning_wizard.pm:84
#, c-format
msgid "Use free space"
msgstr "Usar el espacio libre"

#: fs/partitioning_wizard.pm:86
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"

#: fs/partitioning_wizard.pm:94
#, c-format
msgid "Use existing partitions"
msgstr "Usar la partición existente"

#: fs/partitioning_wizard.pm:96
#, c-format
msgid "There is no existing partition to use"
msgstr "No hay ninguna partición existente para usar"

#: fs/partitioning_wizard.pm:103
#, c-format
msgid "Use the Microsoft Windows® partition for loopback"
msgstr "Usar la partición de Microsoft Windows® para loopback"

#: fs/partitioning_wizard.pm:106
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "¿Qué partición desea usar para Linux4Win?"

#: fs/partitioning_wizard.pm:108
#, c-format
msgid "Choose the sizes"
msgstr "Elija los tamaños"

#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Root partition size in MB: "
msgstr "Tamaño de la partición raíz en MB: "

#: fs/partitioning_wizard.pm:110
#, c-format
msgid "Swap partition size in MB: "
msgstr "Tamaño de la partición de intercambio en MB: "

#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"No hay particiones FAT para usar como loopback (o no queda espacio "
"suficiente)"

#: fs/partitioning_wizard.pm:127
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Usar el espacio libre de la partición Windows"

#: fs/partitioning_wizard.pm:129
#, c-format
msgid "Which partition do you want to resize?"
msgstr "¿A qué partición desea cambiarle el tamaño?"

#: fs/partitioning_wizard.pm:143
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"El redimensionador de tamaño de la FAT no puede gestionar su partición, \n"
"ocurrió el error siguiente: %s"

#: fs/partitioning_wizard.pm:146
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Calculando el espacio de la partición Microsoft Windows®"

#: fs/partitioning_wizard.pm:153
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr ""
"Su partición Microsoft Windows® está muy fragmentada, por favor primero "
"ejecute \"defrag\""

#: fs/partitioning_wizard.pm:156
#, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr ""
"¡ADVERTENCIA!\n"
"\n"
"\n"
"Ahora DrakX cambiará el tamaño de su partición Windows.\n"
"\n"
"\n"
"Proceda con cuidado: esta operación es peligrosa. Si aún no lo hizo, primero "
"debería salir de la instalación, ejecutar \"chkdsk c:\" desde una Línea de "
"Comandos bajo Windows (atención, ejecutar el programa gráfico \"scandisk\" "
"no es suficiente, ¡asegúrese de usar \"chkdsk\" en una Línea de Comandos!), "
"ejecutar \"defrag\" opcionalmente, y luego volver a iniciar la instalación. "
"También debería hacer una copia de seguridad de sus datos.\n"
"\n"
"\n"
"Cuando esté seguro, pulse sobre %s."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:165 interactive.pm:542 interactive/curses.pm:263
#: ugtk2.pm:513
#, c-format
msgid "Next"
msgstr "Siguiente"

#: fs/partitioning_wizard.pm:168
#, c-format
msgid "Partitionning"
msgstr "Particionando"

#: fs/partitioning_wizard.pm:168
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"¿Qué tamaño desea conservar para Microsoft Windows® en la partición %s?"

#: fs/partitioning_wizard.pm:169
#, c-format
msgid "Size"
msgstr "Tamaño"

#: fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Cambiando tamaño a partición Microsoft Windows®"

#: fs/partitioning_wizard.pm:183
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Falló el redimensionado de la FAT: %s"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"No hay particiones FAT para redimensionar (o no queda espacio suficiente)"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Quitar Microsoft Windows®"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Erase and use entire disk"
msgstr "Borrar y usar el disco entero"

#: fs/partitioning_wizard.pm:205
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tiene más de un disco rígido, ¿sobre cuál desea instalar Linux?"

#: fs/partitioning_wizard.pm:210 fsedit.pm:570
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Se perderán TODAS las particiones y sus datos en la unidad  %s"

#: fs/partitioning_wizard.pm:220
#, c-format
msgid "Custom disk partitioning"
msgstr "Particionamiento de disco personalizado"

#: fs/partitioning_wizard.pm:226
#, c-format
msgid "Use fdisk"
msgstr "Usar fdisk"

#: fs/partitioning_wizard.pm:229
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Ahora puede particionar %s.\n"
"Cuando haya terminado, no se olvide de guardar usando 'w'"

#: fs/partitioning_wizard.pm:269
#, c-format
msgid "I can not find any room for installing"
msgstr "No se puede encontrar nada de espacio para instalar"

#: fs/partitioning_wizard.pm:273
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"El asistente de particionamiento de DrakX encontró las siguientes soluciones:"

#: fs/partitioning_wizard.pm:284
#, c-format
msgid "Partitioning failed: %s"
msgstr "Falló el particionamiento: %s"

#: fs/type.pm:370
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "No se puede usar JFS para particiones menores de 32MB"

#: fs/type.pm:371
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "No se puede usar ReiserFS para particiones menores de 32MB"

#: fsedit.pm:23
#, c-format
msgid "simple"
msgstr "simple"

#: fsedit.pm:27
#, c-format
msgid "with /usr"
msgstr "con /usr"

#: fsedit.pm:32
#, c-format
msgid "server"
msgstr "servidor"

#: fsedit.pm:116
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
"Se detectó RAID por software para los discos %s en el BIOS ¿Desea activarlo?"

#: fsedit.pm:223
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"No se puede leer la tabla de particiones de %s, está demasiado corrupta :(\n"
"Se puede seguir, borrando las particiones malas (¡perderá TODOS LOS "
"DATOS!).\n"
"La otra solución es no permitir que DrakX modifique la tabla de "
"particiones.\n"
"(el error es %s)\n"
"\n"
"¿Está de acuerdo en perder todas las particiones?\n"

#: fsedit.pm:397
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Los puntos de montaje deben comenzar con una /"

#: fsedit.pm:398
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Los puntos de montaje deberían contener sólo caracteres alfanuméricos"

#: fsedit.pm:399
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ya existe una partición con el punto de montaje %s\n"

#: fsedit.pm:403
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Eligió una partición RAID en software como partición raíz (/).\n"
"Ningún cargador de arranque es capaz de manejar esto sin una partición /"
"boot.\n"
"Por favor, asegúrese de añadir una partición /boot."

#: fsedit.pm:409
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"No puede usar un Volumen Lógico LVM para el punto de montaje %s ya que cubre "
"varios volúmenes físicos"

#: fsedit.pm:411
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr ""
"Seleccionó un volumen lógico LVM como raíz (/).\n"
"El cargador de arranque no puede manejar esto cuando el volume lógico se "
"extiende sobre varios volúmenes físicos.\n"
"Debería crear una partición /boot primero"

#: fsedit.pm:415 fsedit.pm:417
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro del sistema de archivos raíz"

#: fsedit.pm:419 fsedit.pm:421
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Necesita un sistema de archivos verdadero (ext2/ext3, reiserfs, xfs o jfs) "
"para este punto de montaje\n"

#: fsedit.pm:423
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"No puede usar un sistema de archivos cifrado para el punto de montaje %s"

#: fsedit.pm:487
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "No hay espacio libre suficiente para la asignación automática"

#: fsedit.pm:489
#, c-format
msgid "Nothing to do"
msgstr "Nada para hacer"

#: harddrake/data.pm:64
#, c-format
msgid "SATA controllers"
msgstr "Controladoras SATA"

#: harddrake/data.pm:73
#, c-format
msgid "RAID controllers"
msgstr "Controladoras RAID"

#: harddrake/data.pm:83
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Controladores (E)IDE/ATA"

#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Lectores de tarjetas"

#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Controladores Firewire"

#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Controladores PCMCIA"

#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Controladores SCSI"

#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Controladores USB"

#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Puertos USB"

#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Controladores SMBus"

#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Puentes y controladores del sistema"

#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disquete"

#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disco"

#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dispositivos de almacenamiento USB"

#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"

#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Grabadoras de CD/DVD"

#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Cinta"

#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Controladoras AGP"

#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Tarjeta de vídeo"

#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Tarjeta DVB"

#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Tarjeta de TV"

#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Otros dispositivos multimedios"

#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Tarjeta de sonido"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Cámara web"

#: harddrake/data.pm:326
#, c-format
msgid "Processors"
msgstr "Procesadores"

#: harddrake/data.pm:336
#, c-format
msgid "ISDN adapters"
msgstr "Adaptadores RDSI"

#: harddrake/data.pm:347
#, c-format
msgid "USB sound devices"
msgstr "Dispositivos de sonido USB"

#: harddrake/data.pm:356
#, c-format
msgid "Radio cards"
msgstr "Tarjetas de radio"

#: harddrake/data.pm:365
#, c-format
msgid "ATM network cards"
msgstr "Tarjetas de red ATM"

#: harddrake/data.pm:374
#, c-format
msgid "WAN network cards"
msgstr "Tarjetas de red WAN"

#: harddrake/data.pm:383
#, c-format
msgid "Bluetooth devices"
msgstr "Dispositivos Bluetooth"

#: harddrake/data.pm:392
#, c-format
msgid "Ethernetcard"
msgstr "Tarjeta Ethernet"

#: harddrake/data.pm:409
#, c-format
msgid "Modem"
msgstr "Módem"

#: harddrake/data.pm:419
#, c-format
msgid "ADSL adapters"
msgstr "Adaptadores ADSL"

#: harddrake/data.pm:431
#, c-format
msgid "Memory"
msgstr "Memoria"

#: harddrake/data.pm:440
#, c-format
msgid "Printer"
msgstr "Impresora"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:454
#, c-format
msgid "Game port controllers"
msgstr "Controladores de juegos"

#: harddrake/data.pm:463
#, c-format
msgid "Joystick"
msgstr "Joystick"

#: harddrake/data.pm:473
#, c-format
msgid "Keyboard"
msgstr "Teclado"

#: harddrake/data.pm:486
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tableta y touchscreen"

#: harddrake/data.pm:495
#, c-format
msgid "Mouse"
msgstr "Ratón"

#: harddrake/data.pm:509
#, c-format
msgid "Biometry"
msgstr "Biometría"

#: harddrake/data.pm:517
#, c-format
msgid "UPS"
msgstr "UPS"

#: harddrake/data.pm:526
#, c-format
msgid "Scanner"
msgstr "Escáner"

#: harddrake/data.pm:537
#, c-format
msgid "Unknown/Others"
msgstr "Desconocido/Otros"

#: harddrake/data.pm:565
#, c-format
msgid "cpu # "
msgstr "cpu #"

#: harddrake/sound.pm:285
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Espere, por favor... Aplicando la configuración"

#: harddrake/sound.pm:346
#, c-format
msgid "Enable PulseAudio"
msgstr ""

#: harddrake/sound.pm:350
#, c-format
msgid "Automatic routing from ALSA to PulseAudio"
msgstr ""

#: harddrake/sound.pm:355
#, c-format
msgid "Enable 5.1 sound with Pulse Audio"
msgstr ""

#: harddrake/sound.pm:360
#, c-format
msgid "Enable user switching for audio applications"
msgstr ""

#: harddrake/sound.pm:365
#, c-format
msgid "Reset sound mixer to default values"
msgstr ""

#: harddrake/sound.pm:370
#, c-format
msgid "Trouble shooting"
msgstr "Solución de problemas"

#: harddrake/sound.pm:377
#, c-format
msgid "No alternative driver"
msgstr "No hay controlador alternativo"

#: harddrake/sound.pm:378
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"No hay controlador alternativo OSS/ALSA conocido para su tarjeta de sonido (%"
"s) que en este momento usa \"%s\""

#: harddrake/sound.pm:385
#, c-format
msgid "Sound configuration"
msgstr "Configuración de sonido"

#: harddrake/sound.pm:387
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Aquí puede seleccionar un controlador alternativo (OSS o ALSA) para su "
"tarjeta de sonido (%s)"

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:392
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Actualmente su tarjeta usa el controlador %s\"%s\" (el controlador predet. "
"para su tarjeta es \"%s\")"

#: harddrake/sound.pm:394
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (Open Sound System) fue el primer API de sonido. Es un API de sonido "
"independiente del sistema operativo (está disponible en la mayoría de los "
"sistemas UNIX(tm)) pero es un API muy básico y limitado.\n"
"Es más, todos los controladores OSS reinventan la rueda.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) es una arquitectura modular que\n"
"soporta un amplio rango de tarjetas ISA, USB y PCI.\n"
"\n"
"También brinda un API de más alto nivel que OSS.\n"
"\n"
"Para utilizar ALSA, uno puede utilizar:\n"
"- el API antiguo de compatibilidad OSS\n"
"- el API nuevo de ALSA que brinda muchas características mejoradas pero "
"necesita del uso de la biblioteca ALSA.\n"

#: harddrake/sound.pm:408 harddrake/sound.pm:491
#, c-format
msgid "Driver:"
msgstr "Controlador:"

#: harddrake/sound.pm:422
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
"El controlador antiguo \"%s\" está en la lista negra.\n"
"\n"
"Ha sido reportado como problemático para el núcleo al descargarlo.\n"
"\n"
"El controlador nuevo \"%s\" sólo se utilizará en el próximo arranque."

#: harddrake/sound.pm:430
#, c-format
msgid "No open source driver"
msgstr "No hay controlador de código libre"

#: harddrake/sound.pm:431
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"No hay controlador libre para su tarjeta de sonido (%s), pero hay uno "
"propietario en \"%s\"."

#: harddrake/sound.pm:434
#, c-format
msgid "No known driver"
msgstr "No hay controlador conocido"

#: harddrake/sound.pm:435
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "No hay un controlador conocido para su tarjeta de sonido (%s)"

#: harddrake/sound.pm:450
#, c-format
msgid "Sound trouble shooting"
msgstr "Solución de problemas de sonido"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:453
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"El probador de sonido clásico va a ejecutar los comandos siguientes:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" le dirá qué controlador predet. usa su\n"
"tarjeta de sonido\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\n"
"\" le dirá qué controlador usa la misma\n"
"en este momento\n"
"\n"
"- \"/sbin/lsmod\" le permitirá verificar si su módulo (controlador) está\n"
"cargado o no\n"
"\n"
"- \"/sbin/chkconfig --list sound\" y \"/sbin/chkconfig --list alsa\" le "
"dirá\n"
"si los servicios alsa y sonido están configurados para correr en el nivel\n"
"de ejecución 3\n"
"\n"
"- \"aumix -q\" le dirá si el volumen del sonido está mudo o no\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" le dirá qué programa utiliza la tarjeta de "
"sonido.\n"

#: harddrake/sound.pm:480
#, c-format
msgid "Let me pick any driver"
msgstr "Permitirme elegir cualquier controlador"

#: harddrake/sound.pm:483
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Eligiendo un controlador arbitrario"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:486
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Si realmente cree que sabe qué controlador es el adecuado para su tarjeta\n"
"puede elegir uno en la lista de arriba.\n"
"\n"
"El controlador corriente para su tarjeta de sonido \"%s\" es \"%s\" "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Detección automática"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Desconocido|Genérico"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Desconocido|CPH05X (bt878) [muchos fabricantes]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Desconocido|CPH06X (bt878) [muchos fabricantes]"

#: harddrake/v4l.pm:475
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"El módulo bttv del núcleo GNU/Linux simplemente detecta automáticamente los "
"parámetros correctos para la mayoría de las tarjetas de TV modernas.\n"
"Si no se detecta correctamente la suya, aquí puede forzar los tipos de "
"tarjeta y sintonizador adecuados. Simplemente seleccione los parámetros de "
"su tarjeta de TV si lo necesita."

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "Modelo de la tarjeta :"

#: harddrake/v4l.pm:479
#, c-format
msgid "Tuner type:"
msgstr "Tipo de sintonizador :"

#: interactive.pm:125 interactive.pm:542 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 ugtk2.pm:415 ugtk2.pm:513
#: ugtk2.pm:803 ugtk2.pm:826
#, c-format
msgid "Ok"
msgstr "Aceptar"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:802 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sí"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:802 wizards.pm:156
#, c-format
msgid "No"
msgstr "No"

#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Elija un archivo"

#: interactive.pm:383 interactive/gtk.pm:420
#, c-format
msgid "Add"
msgstr "Agregar"

#: interactive.pm:383 interactive/gtk.pm:420
#, c-format
msgid "Modify"
msgstr "Modificar"

#: interactive.pm:383 interactive/gtk.pm:420
#, c-format
msgid "Remove"
msgstr "Quitar"

#: interactive.pm:542 interactive/curses.pm:263 ugtk2.pm:513
#, c-format
msgid "Finish"
msgstr "Finalizar"

#: interactive.pm:543 interactive/curses.pm:260 ugtk2.pm:511
#, c-format
msgid "Previous"
msgstr "Anterior"

#: interactive/gtk.pm:548
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Atención, está habilitado el bloqueo de mayúsculas"

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Elección incorrecta, inténtelo de nuevo\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "¿Su elección? (por defecto %s)"

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Entradas que tendrá que rellenar:\n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "¿Su elección? (0/1, por defecto '%s') "

#: interactive/stdio.pm:97
#, c-format
msgid "Button `%s': %s"
msgstr "Botón `%s': %s"

#: interactive/stdio.pm:98
#, c-format
msgid "Do you want to click on this button?"
msgstr "¿Desea pulsar este botón?"

#: interactive/stdio.pm:110
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "¿Su elección? (por defecto %s'%s) "

#: interactive/stdio.pm:110
#, c-format
msgid " enter `void' for void entry"
msgstr "ingrese `void' para una entrada vacía"

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Hay muchas cosas para seleccionar (%s).\n"

#: interactive/stdio.pm:131
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"Por favor, seleccione el primer número del rango de 10 que desee\n"
"editar, o pulse Intro para continuar.\n"
"¿Su elección?"

#: interactive/stdio.pm:144
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Aviso, una etiqueta cambió:\n"
"%s"

#: interactive/stdio.pm:151
#, c-format
msgid "Re-submit"
msgstr "Reenviar"

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: lang.pm:211 timezone.pm:226
#, c-format
msgid "United Arab Emirates"
msgstr "Emiratos Árabes Unidos"

#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afganistán"

#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua y Barbuda"

#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"

#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albania"

#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenia"

#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Antillas Holandesas"

#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antártica"

#: lang.pm:220 timezone.pm:271
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Samoa Americana"

#: lang.pm:222 mirror.pm:12 timezone.pm:229
#, c-format
msgid "Austria"
msgstr "Austria"

#: lang.pm:223 mirror.pm:11 timezone.pm:267
#, c-format
msgid "Australia"
msgstr "Australia"

#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbayán"

#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnia Herzegovina"

#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:228 timezone.pm:211
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"

#: lang.pm:229 mirror.pm:13 timezone.pm:231
#, c-format
msgid "Belgium"
msgstr "Bélgica"

#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:231 timezone.pm:232
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"

#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrein"

#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benín"

#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"

#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivia"

#: lang.pm:238 mirror.pm:14 timezone.pm:272
#, c-format
msgid "Brazil"
msgstr "Brasil"

#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bután"

#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Isla Bouvet"

#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:243 timezone.pm:230
#, c-format
msgid "Belarus"
msgstr "Bielorrusia"

#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belice"

#: lang.pm:245 mirror.pm:15 timezone.pm:261
#, c-format
msgid "Canada"
msgstr "Canadá"

#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Islas Cocos (Keeling)"

#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Congo (Kinshasa)"

#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "República Centroafricana"

#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"

#: lang.pm:250 mirror.pm:39 timezone.pm:255
#, c-format
msgid "Switzerland"
msgstr "Suiza"

#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Costa de Marfil"

#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Islas Cook"

#: lang.pm:253 timezone.pm:273
#, c-format
msgid "Chile"
msgstr "Chile"

#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Camerún"

#: lang.pm:255 timezone.pm:212
#, c-format
msgid "China"
msgstr "China"

#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Colombia"

#: lang.pm:257 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia & Montenegro"

#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Cuba"

#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Cabo Verde"

#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Isla Navidad"

#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Chipre"

#: lang.pm:263 mirror.pm:17 timezone.pm:233
#, c-format
msgid "Czech Republic"
msgstr "República Checa"

#: lang.pm:264 mirror.pm:22 timezone.pm:238
#, c-format
msgid "Germany"
msgstr "Alemania"

#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibuti"

#: lang.pm:266 mirror.pm:18 timezone.pm:234
#, c-format
msgid "Denmark"
msgstr "Dinamarca"

#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominica"

#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "República Dominicana"

#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Argelia"

#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ecuador"

#: lang.pm:271 mirror.pm:19 timezone.pm:235
#, c-format
msgid "Estonia"
msgstr "Estonia"

#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egipto"

#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Sahara Oeste"

#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"

#: lang.pm:275 mirror.pm:37 timezone.pm:253
#, c-format
msgid "Spain"
msgstr "España"

#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiopía"

#: lang.pm:277 mirror.pm:20 timezone.pm:236
#, c-format
msgid "Finland"
msgstr "Finlandia"

#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidji"

#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Islas Malvinas"

#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Micronesia"

#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Islas Feroe"

#: lang.pm:282 mirror.pm:21 timezone.pm:237
#, c-format
msgid "France"
msgstr "Francia"

#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabón"

#: lang.pm:284 timezone.pm:257
#, c-format
msgid "United Kingdom"
msgstr "Reino Unido"

#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Granada"

#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgia"

#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Guayana Francesa"

#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"

#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"

#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Groenlandia"

#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambia"

#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"

#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Guadalupe"

#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Guinea Ecuatorial"

#: lang.pm:295 mirror.pm:23 timezone.pm:239
#, c-format
msgid "Greece"
msgstr "Grecia"

#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Islas Georgia del Sur y Sandwich del Sur"

#: lang.pm:297 timezone.pm:262
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"

#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"

#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"

#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Hong Kong SAR (China)"

#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Islas Heard y McDonald"

#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Croacia"

#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haití"

#: lang.pm:306 mirror.pm:24 timezone.pm:240
#, c-format
msgid "Hungary"
msgstr "Hungría"

#: lang.pm:307 timezone.pm:215
#, c-format
msgid "Indonesia"
msgstr "Indonesia"

#: lang.pm:308 mirror.pm:25 timezone.pm:241
#, c-format
msgid "Ireland"
msgstr "Irlanda"

#: lang.pm:309 mirror.pm:26 timezone.pm:217
#, c-format
msgid "Israel"
msgstr "Israel"

#: lang.pm:310 timezone.pm:214
#, c-format
msgid "India"
msgstr "India"

#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Territorio Británico del Océano Índico"

#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Iraq"

#: lang.pm:313 timezone.pm:216
#, c-format
msgid "Iran"
msgstr "Irán"

#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Islandia"

#: lang.pm:315 mirror.pm:27 timezone.pm:242
#, c-format
msgid "Italy"
msgstr "Italia"

#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaica"

#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordania"

#: lang.pm:318 mirror.pm:28 timezone.pm:218
#, c-format
msgid "Japan"
msgstr "Japón"

#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenia"

#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirguizistán"

#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Camboya"

#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Comores"

#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts y Nevis"

#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Corea (del Norte)"

#: lang.pm:326 timezone.pm:219
#, c-format
msgid "Korea"
msgstr "Corea"

#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuwait"

#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Islas Caimán"

#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazajstán"

#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Líbano"

#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Santa Lucía"

#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesoto"

#: lang.pm:337 timezone.pm:243
#, c-format
msgid "Lithuania"
msgstr "Lituania"

#: lang.pm:338 timezone.pm:244
#, c-format
msgid "Luxembourg"
msgstr "Luxemburgo"

#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Letonia"

#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libia"

#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marruecos"

#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Mónaco"

#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldavia"

#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagascar"

#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Islas Marshall"

#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Macedonia"

#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"

#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"

#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolia"

#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Islas Marianas del Norte"

#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinica"

#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauritania"

#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Monserrat"

#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"

#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauricio"

#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldivas"

#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: lang.pm:358 timezone.pm:263
#, c-format
msgid "Mexico"
msgstr "México"

#: lang.pm:359 timezone.pm:220
#, c-format
msgid "Malaysia"
msgstr "Malasia"

#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambique"

#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibia"

#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nueva Caledonia"

#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Níger"

#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Isla Norfolk"

#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigeria"

#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"

#: lang.pm:367 mirror.pm:29 timezone.pm:245
#, c-format
msgid "Netherlands"
msgstr "Holanda"

#: lang.pm:368 mirror.pm:31 timezone.pm:246
#, c-format
msgid "Norway"
msgstr "Noruega"

#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"

#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:372 mirror.pm:30 timezone.pm:268
#, c-format
msgid "New Zealand"
msgstr "Nueva Zelanda"

#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Omán"

#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panamá"

#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Perú"

#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Polinesia Francesa"

#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papúa Nueva Guinea"

#: lang.pm:378 timezone.pm:221
#, c-format
msgid "Philippines"
msgstr "Filipinas"

#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistán"

#: lang.pm:380 mirror.pm:32 timezone.pm:247
#, c-format
msgid "Poland"
msgstr "Polonia"

#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint Pierre y Miquelon"

#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"

#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"

#: lang.pm:385 mirror.pm:33 timezone.pm:248
#, c-format
msgid "Portugal"
msgstr "Portugal"

#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"

#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"

#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Qatar"

#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunión"

#: lang.pm:390 timezone.pm:249
#, c-format
msgid "Romania"
msgstr "Rumanía"

#: lang.pm:391 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "Rusia"

#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ruanda"

#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Arabia Saudí"

#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Islas Salomón"

#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychelles"

#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudán"

#: lang.pm:397 mirror.pm:38 timezone.pm:254
#, c-format
msgid "Sweden"
msgstr "Suecia"

#: lang.pm:398 timezone.pm:222
#, c-format
msgid "Singapore"
msgstr "Singapur"

#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Santa Helena"

#: lang.pm:400 timezone.pm:252
#, c-format
msgid "Slovenia"
msgstr "Eslovenia"

#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Islas Svalbard e Islas Jan Mayen"

#: lang.pm:402 mirror.pm:35 timezone.pm:251
#, c-format
msgid "Slovakia"
msgstr "Eslovaquia"

#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leona"

#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalia"

#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"

#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Santo Tomé y Príncipe"

#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"

#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Siria"

#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swazilandia"

#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Islas Turks y Caicos"

#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Chad"

#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Territorios Franceses del Sur"

#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"

#: lang.pm:416 mirror.pm:41 timezone.pm:224
#, c-format
msgid "Thailand"
msgstr "Tailandia"

#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tajikistán"

#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"

#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Timor Oriental"

#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistán"

#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunicia"

#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: lang.pm:423 timezone.pm:225
#, c-format
msgid "Turkey"
msgstr "Turquía"

#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad y Tobago"

#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"

#: lang.pm:426 mirror.pm:40 timezone.pm:223
#, c-format
msgid "Taiwan"
msgstr "Taiwán"

#: lang.pm:427 timezone.pm:208
#, c-format
msgid "Tanzania"
msgstr "Tanzania"

#: lang.pm:428 timezone.pm:256
#, c-format
msgid "Ukraine"
msgstr "Ucrania"

#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"

#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Islas Circundantes Menores de los Estados Unidos"

#: lang.pm:431 mirror.pm:42 timezone.pm:264
#, c-format
msgid "United States"
msgstr "Estados Unidos"

#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"

#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistán"

#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vaticano"

#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "San Vicente y las Granadinas"

#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"

#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Islas Vírgenes (Británicas)"

#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Islas Vírgenes (EE.UU.)"

#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vietnam"

#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis y Futuna"

#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"

#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yemen"

#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"

#: lang.pm:445 mirror.pm:36 timezone.pm:207
#, c-format
msgid "South Africa"
msgstr "Sudáfrica"

#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambia"

#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbaue"

#: lang.pm:1201
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"

#: lvm.pm:84
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Falló el movimiento de espacio físico a otros volúmenes físicos"

#: lvm.pm:141
#, c-format
msgid "Physical volume %s is still in use"
msgstr "El volumen físico %s todavía está en uso"

#: lvm.pm:151
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Quite los volúmenes lógicos primero\n"

#: lvm.pm:184
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
"El cargador de arranque no puede manejar /boot en múltiples volúmenes físicos"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:10
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurrence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandriva Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A.  \n"
msgstr ""
"EL PRESENTE TEXTO ES UNA TRADUCCIÓN A PROPÓSITO EXCLUSIVAMENTE\n"
"INFORMATIVO DE LOS TÉRMINOS DE LA LICENCIA DE MANDRAKELINUX. EN\n"
"NINGÚN CASO LA PRESENTE TRADUCCIÓN TIENE VALOR LEGAL SIENDO OFICIAL\n"
"EXCLUSIVAMENTE LA VERSIÓN EN FRANCÉS DE LA LICENCIA DE MANDRAKELINUX.\n"
"No obstante, esperamos que esta traducción ayudará a los que hablan\n"
"castellano a entenderla mejor.\n"
"\n"
"\n"
"Introducción\n"
"\n"
"El sistema operativo y los diferentes componentes disponibles en\n"
"la distribución Mandriva Linux se denominarán \"Productos Software\"\n"
"en adelante.\n"
"Los Productos Software incluyen, pero no están restringidos a,\n"
"el conjunto de programas, métodos, reglas y documentación\n"
"relativas al sistema operativo y a los diferentes componentes de la\n"
"distribución Mandriva Linux.\n"
"\n"
"\n"
"1. Acuerdo de Licencia\n"
"\n"
"Por favor, lea con cuidado este documento. El mismo constituye un\n"
"contrato de licencia entre Usted y Mandriva S.A. que se aplica\n"
" a los Productos Software.\n"
"El hecho de instalar, duplicar o usar los Productos Software de\n"
"cualquier manera, indica que acepta explícitamente, y está de acuerdo\n"
"con, los términos y condiciones de esta Licencia.\n"
"Si no está de acuerdo con cualquier porción de esta Licencia, no está\n"
"autorizado a instalar, duplicar o usar de manera alguna\n"
"los Productos Software.\n"
"Cualquier intento de instalar, duplicar o usar los Productos Software\n"
"en una manera tal que no cumpla con los términos y condiciones\n"
"de esta Licencia es nulo y terminará sus derechos bajo esta\n"
"Licencia. En caso de anulación de la Licencia, Usted deberá destruir\n"
"de inmediato todas las copias de los Productos Software.\n"
"\n"
"\n"
"2. Garantía limitada\n"
"\n"
"Los Productos Software y la documentación que los acompaña se\n"
"proporcionan \"tal cual\", sin garantía alguna hasta donde lo permita la "
"ley.\n"
"Mandriva S.A. no se responsabilizará, bajo circunstancia alguna,\n"
"y hasta donde lo permita la ley, por cualquier daño directo o indirecto,\n"
"especial o accesorio, de cualquier naturaleza (incluyendo\n"
"sin limitación daños por pérdidas de beneficios, interrupción de\n"
"actividad, pérdidas financieras,\n"
"costas legales y penalidades resultantes de un juicio en la corte,\n"
" o cualquier pérdida consecuente)\n"
"que resulte del uso o de la incapacidad de uso de los\n"
"Productos Software, incluso si Mandriva S.A. hubiera sido informada\n"
"de la posibilidad de ocurrencia de tales daños.\n"
"\n"
"ADVERTENCIA EN CUANTO A LA POSESIÓN O USO DE PROGRAMAS PROHIBIDOS\n"
"EN CIERTOS PAÍSES\n"
"\n"
"Dentro de lo que permita la ley, Mandriva S.A. ni sus proveedores\n"
"podrán ser responsabilizados en circunstancia alguna por un perjuicio\n"
"especial, directo, indirecto o accesorio, de cualquier naturaleza\n"
"(incluyendo sin limitación daños por pérdidas de beneficio, interrupción\n"
"de actividad, pérdidas financieras, costas legales y penalidades "
"resultantes\n"
"de un juicio en la corte, o cualquier pérdida consecuente) como\n"
"consecuencia de la posesión y el uso de los componentes software\n"
"o como consecuencia de la descarga de los componentes\n"
"software desde alguno de los sitios Mandriva Linux, los cuales están\n"
"prohibidos o restringidos en algunos países por las leyes locales.\n"
"Esta responsabilidad limitada se aplica, pero no esta limitada, a los\n"
"componentes de criptografía fuerte incluídos en los Productos Software.\n"
"\n"
"\n"
"3. Licencia GPL y relacionadas\n"
"\n"
"Los Productos Software están constituidos por componentes creados\n"
"por personas o entidades diferentes.\n"
"La mayoría se distribuyen bajo los términos de la Licencia Pública General "
"GNU\n"
"(denominada a partir de ahora \"GPL\"), u otras licencias similares.\n"
"La mayoría de estas licencias le permiten copiar, adaptar o redistribuir "
"los\n"
"componentes de los programas que cubren.  Por favor lea y acepte los\n"
"términos y condiciones de las licencias que acompañan a cada uno de\n"
"ellos antes de usarlos. Toda pregunta relativa a la licencia de un\n"
"componente se debe dirigir al autor (o su representante) de dicho\n"
"componente, y no a Mandriva.  Los programas desarrollados\n"
"por Mandriva están sometidos a la licencia GPL.  La documentación\n"
"escrita por Mandriva está sometida a una licencia especifica.\n"
"Por favor, consulte la documentación para obtener más detalles.\n"
"\n"
"\n"
"4. Derechos de propiedad intelectual\n"
"\n"
"Todos los derechos de los componentes de los Productos Software\n"
"pertenecen a sus autores respectivos y están protegidos por la ley\n"
"de propiedad intelectual y de copyright aplicables a los programas\n"
"de software.\n"
"Mandriva S.A. se reserva el derecho de modificar o adaptar los\n"
"Productos Software, como un todo o en parte, por todos los medios\n"
"y para cualquier propósito.\n"
"\"Mandriva\", \"Mandriva Linux\" y los logos asociados están registrados\n"
"por Mandriva S.A.\n"
"\n"
"\n"
"5. Disposiciones diversas\n"
" \n"
"Si cualquier disposición de este contrato fuera declarada\n"
"nula, ilegal o inaplicable por un tribunal competente, esta\n"
"disposición se excluye del presente contrato.  Usted permanecerá\n"
"sometido a las otras disposiciones aplicables del acuerdo.\n"
"Los términos y condiciones de esta Licencia están regidos por las\n"
"Leyes de Francia.\n"
"Toda disputa relativa a los términos de esta licencia será\n"
"resuelta, preferentemente, por vía judicial.  Como último recurso,\n"
"la disputa será tramitada en la Corte de Ley correspondiente de\n"
"París, Francia.\n"
"Para cualquier pregunta relacionada con este documento, por favor,\n"
"póngase en contacto con Mandriva S.A.\n"

#: messages.pm:90
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
"Atención: El software libre (Free Software) puede no ser estar "
"necesariamente\n"
"libre de patentes, y alguno software libre incluido puede estar cubierto "
"por\n"
"patentes en su país. Por ejemplo, los decodificadores MP3 incluídos pueden\n"
"necesitar una licencia para uso adicional (vea http://www.mp3licensing.com\n"
"para más detalles). Si no está seguro si una patente puede o no aplicarse\n"
"a Usted, por favor consulte las leyes locales."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:98
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Importante\n"
"\n"
"Haga el favor de leer cuidadosamente el presente documento. En caso de "
"desacuerdo\n"
"con el presente documento, no está autorizado a instalar los demás\n"
"CD.  En este caso seleccione 'Rechazar' para seguir la instalación sin\n"
"estos CD.\n"
"\n"
"\n"
"Algunos componentes de software contenidos en los siguientes CD no\n"
"están sometidos a las licencias GPL o similares que permitan la copia,\n"
"adaptación o redistribución.  Cada uno de los componentes de software\n"
"esta distribuido bajo los términos y condiciones de un acuerdo de\n"
"licencia propio. Por favor, dirájase a éste y acéptelo antes de instalarlo,\n"
"usarlo o redistribuirlo. Generalmente, estas licencias no autorizan la\n"
"copia (salvo las destinadas a copias de seguridad), la distribución, "
"descompilación,\n"
"desensamblado, ingeniería inversa, reconstitución de la lógica del\n"
"programa y/o modificación, salvo en la medida y para las necesidades\n"
"autorizadas por las leyes vigentes.  Toda violación de la licencia\n"
"vigente implica generalmente la caducidad de está, sin perjuicio a\n"
"todos los demás derechos o acciones dirigidos en contra de Ud. Salvo si\n"
"el acuerdo de licencia lo autoriza, no puede instalar estos programas\n"
"en más de una máquina, ni adaptarlos para un uso en red. Si fuese\n"
"necesario, contacte con el distribuidor de cada programa para\n"
"obtener licencias adicionales. La distribución a terceros de copias de\n"
"los programas o de la documentación que lo acompaña generalmente\n"
"suele estar prohibida.\n"
"\n"
"\n"
"Todos los derechos, títulos e intereses de esos programas son la\n"
"propiedad exclusiva de sus autores respectivos y están protegidos por el\n"
"derecho de la propiedad intelectual y otras leyes aplicables al derecho\n"
"del software.\n"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:131
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"Felicidades, la instalación está completa.\n"
"Extraiga el soporte de arranque y presione Intro para reiniciar.\n"
"\n"
"\n"
"Para obtener información sobre correcciones disponibles para esta versión\n"
"de Mandriva Linux, consulte el archivo de erratas disponible en\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Hay información disponible sobre cómo configurar su sistema en el capítulo "
"de\n"
"configuración tras la instalación de la Guía del Usuario de Mandriva Linux "
"oficial."

#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
msgstr "¡Este controlador no tiene parámetros de configuración!"

#: modules/interactive.pm:22
#, c-format
msgid "Module configuration"
msgstr "Configuración del módulo"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Aquí puede configurar cada parámetro del módulo."

#: modules/interactive.pm:63
#, c-format
msgid "Found %s interfaces"
msgstr "Interfaces encontradas: %s"

#: modules/interactive.pm:64
#, c-format
msgid "Do you have another one?"
msgstr "¿Tiene alguna otra?"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¿Tiene alguna interfaz %s?"

#: modules/interactive.pm:71
#, c-format
msgid "See hardware info"
msgstr "Ver información sobre el hardware"

#: modules/interactive.pm:82
#, c-format
msgid "Installing driver for USB controller"
msgstr "Instalando controlador para el USB"

#: modules/interactive.pm:83
#, c-format
msgid "Installing driver for firewire controller %s"
msgstr "Instalando controlador para el firewire %s"

#: modules/interactive.pm:84
#, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "Instalando controlador para la unidad de disco duro %s"

#: modules/interactive.pm:85
#, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "Instalando controlador para la tarjeta ethernet %s"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:96
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando controlador para la tarjeta %s %s"

#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Ahora puede proporcionar las opciones al módulo %s.\n"
"Note que cualquier dirección debe ingresarse con el prefijo 0x, ej.: '0x123'"

#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Aquí deben ir las diferentes opciones para el módulo %s.\n"
"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
"Por ejemplo, \"io=0x300 irq=7\""

#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Opciones de los módulos:"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "¿Qué controlador de %s debo probar?"

#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"En algunos casos, el controlador de %s necesita información extra\n"
"para funcionar correctamente, aunque normalmente funcione sin ella.\n"
"¿Desea especificar información extra para el controlador o dejar que el "
"mismo\n"
"pruebe su equipo y encuentre la información que necesita? A veces,\n"
"el probar el equipo puede provocar que éste se cuelgue, pero no debería\n"
"causar ningún daño."

#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Autodetección"

#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Especificar las opciones"

#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Error al cargar el módulo %s.\n"
"¿Desea intentarlo de nuevo con otros parámetros?"

#: partition_table.pm:409
#, c-format
msgid "mount failed: "
msgstr "mount falló: "

#: partition_table.pm:518
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "La partición extendida no está disponible en esta plataforma"

#: partition_table.pm:536
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
"La única solución es desplazar sus particiones primarias para que el hueco "
"esté después de las particiones extendidas"

#: partition_table/raw.pm:285
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Está ocurriendo algo malo en su unidad. \n"
"Ha fallado una prueba para verificar la integridad de los datos. \n"
"Esto significa que escribir cualquier cosa en el disco terminará produciendo "
"datos aleatorios, corruptos."

#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "No se puede añadir una partición al RAID %s_ya formateado_"

#: raid.pm:157
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hay suficientes particiones para un RAID de nivel %d\n"

#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "¡No se pudo crear directorio /usr/share/sane/firmware!"

#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "¡No se pudo crear vínculo /usr/share/sane/%s!"

#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
"¡No se pudo copiar el archivo de firmware %s a /usr/share/sane/firmware!"

#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "¡No se pudo ajustar permisos en el archivo de firmware %s!"

#: scanner.pm:200
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"

#: scanner.pm:201
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
"No se pueden instalar los paquetes necesarios para compartir sus escáneres."

#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
"Sus escáneres no estarán disponibles para los usuarios no privilegiados."

#: security/help.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages."
msgstr "Aceptar mensajes de error IPv4 simulados."

#: security/help.pm:13
#, c-format
msgid "Accept broadcasted icmp echo."
msgstr "Aceptar eco ICMP por difusión."

#: security/help.pm:15
#, c-format
msgid "Accept icmp echo."
msgstr "Aceptar eco ICMP."

#: security/help.pm:17
#, c-format
msgid "Allow autologin."
msgstr "Permitir conexión automática."

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""
"Si se elige \"TODO\", permitir que existan /etc/issue y /etc/issue.net.\n"
"\n"
"Si se elige \"NINGUNO\" no se permiten \"issues\".\n"
"\n"
"De lo contrario sólo se permite /etc/issue."

#: security/help.pm:27
#, c-format
msgid "Allow reboot by the console user."
msgstr "Permitir reinicio por parte del usuario de la consola."

#: security/help.pm:29
#, c-format
msgid "Allow remote root login."
msgstr "Permitir conexión remota del administrador del sistema."

#: security/help.pm:31
#, c-format
msgid "Allow direct root login."
msgstr "Permitir conexión directa del administrador del sistema."

#: security/help.pm:33
#, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Permitir la lista de usuarios del sistema en administradores de conexión "
"(kdm y gdm)."

#: security/help.pm:35
#, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""
"Permitir exportar pantalla cuando\n"
"se pasa de la cuenta del administrador del sistema a las otras cuentas.\n"
"\n"
"Consulte pam_xauth(8) para más detalles.'"

#: security/help.pm:40
#, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr ""
"Permitir conexiones X:\n"
"\n"
"- TODO (se permiten todas las conexiones),\n"
"\n"
"- LOCAL (sólo conexiones desde la máquina local),\n"
"\n"
"- NINGUNO (ninguna conexión)."

#: security/help.pm:48
#, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""
"El argumento especifica si los clientes están autorizados a conectar\n"
"al servidor X en el puerto TCP 6000 o no."

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
"Autorizar:\n"
"\n"
"- todos los servicios controlados por tcp_wrappers (ver hosts.deny(5)) si se "
"configura en \"TODO\",\n"
"\n"
"- sólo los locales si se configura en \"LOCAL\"\n"
"\n"
"- ninguno si se configura en \"NINGUNO\".\n"
"\n"
"Para autorizar los servicios que necesita, use /etc/hosts.allow (ver hosts."
"allow(5))."

#: security/help.pm:63
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
"Si SERVER_LEVEL (o SECURE_LEVEL si no está)\n"
"es mayor que 3 en /etc/security/msec/security.conf, crea el\n"
"symlink /etc/security/msec/server para que apunte a\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"chkconfig --add utiliza a /etc/security/msec/server para decidir\n"
"añadir un servicio si está presente en el archivo\n"
"durante la instalación de paquetes."

#: security/help.pm:72
#, c-format
msgid ""
"Enable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""
"Habilitar los trabajos planificados (crontab y at) para los usuarios.\n"
"\n"
"Poner los usuarios permitidos en /etc/cron.allow y /etc/at.allow\n"
"(ver man at(1) y crontab(1))."

#: security/help.pm:77
#, c-format
msgid "Enable syslog reports to console 12"
msgstr "Habilitar reportes de syslog en la consola 12"

#: security/help.pm:79
#, c-format
msgid ""
"Enable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""
"Habilitar protección de usurpación de resolución de nombres. Si\n"
"\"%s\" es verdadero, también reportar a syslog."

#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Alertas de seguridad:"

#: security/help.pm:82
#, c-format
msgid "Enable IP spoofing protection."
msgstr "Habilitar protección contra usurpación de IP"

#: security/help.pm:84
#, c-format
msgid "Enable libsafe if libsafe is found on the system."
msgstr "Habilitar libsafe si es que se encuentra en el sistema."

#: security/help.pm:86
#, c-format
msgid "Enable the logging of IPv4 strange packets."
msgstr "Habilitar registro de paquetes IPv4 extraños."

#: security/help.pm:88
#, c-format
msgid "Enable msec hourly security check."
msgstr "Habilitar las verificaciones de msec todas las horas."

#: security/help.pm:90
#, c-format
msgid ""
"Enable su only from members of the wheel group. If set to no, allows su from "
"any user."
msgstr ""
"Permitir su sólo a miembros del grupo wheel. Si es No, permite hacer su a "
"cualquier usuario."

#: security/help.pm:92
#, c-format
msgid "Use password to authenticate users."
msgstr "Usar contraseña para autenticar usuarios."

#: security/help.pm:94
#, c-format
msgid "Activate ethernet cards promiscuity check."
msgstr "Activar verificaciones de promiscuidad de tarjetas Ethernet."

#: security/help.pm:96
#, c-format
msgid "Activate daily security check."
msgstr "Activar verificaciones diarias de seguridad."

#: security/help.pm:98
#, c-format
msgid "Enable sulogin(8) in single user level."
msgstr "Habilitar sulogin(8) en nivel de usuario único."

#: security/help.pm:100
#, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr ""
"Añadir el nombre como una excepción al manejo de edad de contraseñas por "
"msec."

#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
"Configurar edad de contraseñas en \"max\" días y demorar el cambio a "
"\"inactive\"."

#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
msgstr ""
"Configurar la longitud de la historia de contraseñas para prevenir "
"reutilización de contraseñas."

#: security/help.pm:106
#, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
"Configurar la longitud mínima de contraseña y la cantidad mínima de dígitos "
"y cantidad mínima de letras mayúsculas."

#: security/help.pm:108
#, c-format
msgid "Set the root's file mode creation mask."
msgstr ""
"Configurar la máscara de modo de creación de ficheros para el administrador "
"del sistema."

#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
msgstr "si se pone en sí, verificar puertos abiertos."

#: security/help.pm:110
#, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""
"si se pone en sí, verificar:\n"
"\n"
"- contraseña vacía,\n"
"\n"
"- sin contraseña en /etc/shadow\n"
"\n"
"- a los usuarios con el id 0 que no sean el administrador del sistema."

#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
"si se pone en sí, verificar permisos de archivos en dirs. personales de "
"usuarios."

#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
"si se pone en sí, verificar si los dispositivos de red están en modo "
"promiscuo."

#: security/help.pm:119
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr "si se pone en sí, ejecutar las verificaciones de seguridad diarias."

#: security/help.pm:120
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr "si se pone en sí, verificar adiciones/remociones de archivos sgid."

#: security/help.pm:121
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr "si se pone en sí, verificar contraseña vacía en /etc/shadow."

#: security/help.pm:122
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr "si se pone en sí, verificar suma de los archivos suid/sgid."

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
"si se pone en sí, verificar adiciones/remociones de archivos suid root."

#: security/help.pm:124
#, c-format
msgid "if set to yes, report unowned files."
msgstr "si se pone en sí, reportar archivos sin dueño."

#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
"si se pone en sí, verificar archivos/directorios que todos pueden escribir."

#: security/help.pm:126
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr "si se pone en sí, ejecutar verificaciones chkrootkit."

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
"si está activo, enviar el correo de reporte a esta dirección, caso contrario "
"al administrador del sistema."

#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
msgstr "si se pone en sí, reportar resultado de verificación por correo-e."

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr "No enviar correo si no hay advertencias"

#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr ""
"si se pone en sí, correr algunas pruebas contra la base de datos de rpm."

#: security/help.pm:131
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr "si se pone en sí, reportar resultado de verificación en syslog."

#: security/help.pm:132
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr "si se pone en sí, reportar resultados de verificación en tty."

#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""
"Ajustar el tamaño de la historia de comandos. Un valor de -1 significa "
"ilimitada."

#: security/help.pm:136
#, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr "Ajustar el timeout del shell. Un valor de cero significa sin timeout."

#: security/help.pm:136
#, c-format
msgid "Timeout unit is second"
msgstr "La unidad del tiempo de espera es el segundo"

#: security/help.pm:138
#, c-format
msgid "Set the user's file mode creation mask."
msgstr "Configurar la máscara de creación de ficheros para los usuarios."

#: security/l10n.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages"
msgstr "Aceptar mensajes de error IPv4 simulados"

#: security/l10n.pm:12
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr "Aceptar eco ICMP difundido"

#: security/l10n.pm:13
#, c-format
msgid "Accept icmp echo"
msgstr "Aceptar eco ICMP"

#: security/l10n.pm:15
#, c-format
msgid "/etc/issue* exist"
msgstr "/etc/issue*.exist"

#: security/l10n.pm:16
#, c-format
msgid "Reboot by the console user"
msgstr "El usuario puede reiniciar desde la consola"

#: security/l10n.pm:17
#, c-format
msgid "Allow remote root login"
msgstr "Permitir conexión remota del administrador del sistema"

#: security/l10n.pm:18
#, c-format
msgid "Direct root login"
msgstr "Conexión directa del administrador del sistema"

#: security/l10n.pm:19
#, c-format
msgid "List users on display managers (kdm and gdm)"
msgstr "Listar usuarios del sistema en administradores de conexión (kdm y gdm)"

#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
msgstr ""
"Exportar pantalla cuando se pasa del administrador del sistema a otras "
"cuentas"

#: security/l10n.pm:21
#, c-format
msgid "Allow X Window connections"
msgstr "Permitir conexiones X Window"

#: security/l10n.pm:22
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr "Autorizar conexiones TCP desde X Window"

#: security/l10n.pm:23
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr "Autorizar todos los servicios controlados por tcp_wrappers"

#: security/l10n.pm:24
#, c-format
msgid "Chkconfig obey msec rules"
msgstr "Chkconfig obedece las reglas de msec"

#: security/l10n.pm:25
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr "Habilitar \"crontab\" y \"at\" para los usuarios"

#: security/l10n.pm:26
#, c-format
msgid "Syslog reports to console 12"
msgstr "Syslog reporta en la consola 12"

#: security/l10n.pm:27
#, c-format
msgid "Name resolution spoofing protection"