summaryrefslogtreecommitdiffstats
path: root/source4/scripting/python/samba/upgradehelpers.py
blob: 3a7dfb39973ae5277cade454914e34036f9c5d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
#!/usr/bin/env python
#
# Helpers for provision stuff
# Copyright (C) Matthieu Patou <mat@matws.net> 2009-2010
#
# Based on provision a Samba4 server by
# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2008
# Copyright (C) Andrew Bartlett <abartlet@samba.org> 2008
#
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""Helers used for upgrading between different database formats."""

import os
import string
import re
import shutil
import samba

from samba import Ldb, version, ntacls
from samba.dsdb import DS_DOMAIN_FUNCTION_2000
from ldb import SCOPE_SUBTREE, SCOPE_ONELEVEL, SCOPE_BASE
import ldb
from samba.provision import (ProvisionNames, provision_paths_from_lp,
                            getpolicypath, set_gpos_acl, create_gpo_struct,
                            FILL_FULL, provision, ProvisioningError,
                            setsysvolacl, secretsdb_self_join)
from samba.dcerpc import misc, security, xattr
from samba.dcerpc.misc import SEC_CHAN_BDC
from samba.ndr import ndr_unpack
from samba.samdb import SamDB

# All the ldb related to registry are commented because the path for them is
# relative in the provisionPath object
# And so opening them create a file in the current directory which is not what
# we want
# I still keep them commented because I plan soon to make more cleaner
ERROR =     -1
SIMPLE =     0x00
CHANGE =     0x01
CHANGESD =     0x02
GUESS =     0x04
PROVISION =    0x08
CHANGEALL =    0xff

hashAttrNotCopied = set(["dn", "whenCreated", "whenChanged", "objectGUID",
    "uSNCreated", "replPropertyMetaData", "uSNChanged", "parentGUID",
    "objectCategory", "distinguishedName", "nTMixedDomain",
    "showInAdvancedViewOnly", "instanceType", "msDS-Behavior-Version",
    "nextRid", "cn", "versionNumber", "lmPwdHistory", "pwdLastSet",
    "ntPwdHistory", "unicodePwd","dBCSPwd", "supplementalCredentials",
    "gPCUserExtensionNames", "gPCMachineExtensionNames","maxPwdAge", "secret",
    "possibleInferiors", "privilege", "sAMAccountType"])


class ProvisionLDB(object):

    def __init__(self):
        self.sam = None
        self.secrets = None
        self.idmap = None
        self.privilege = None
        self.hkcr = None
        self.hkcu = None
        self.hku = None
        self.hklm = None

    def startTransactions(self):
        self.sam.transaction_start()
        self.secrets.transaction_start()
        self.idmap.transaction_start()
        self.privilege.transaction_start()
# TO BE DONE
#        self.hkcr.transaction_start()
#        self.hkcu.transaction_start()
#        self.hku.transaction_start()
#        self.hklm.transaction_start()

    def groupedRollback(self):
        ok = True
        try:
            self.sam.transaction_cancel()
        except Exception:
            ok = False

        try:
            self.secrets.transaction_cancel()
        except Exception:
            ok = False

        try:
            self.idmap.transaction_cancel()
        except Exception:
            ok = False

        try:
            self.privilege.transaction_cancel()
        except Exception:
            ok = False

        return ok
# TO BE DONE
#        self.hkcr.transaction_cancel()
#        self.hkcu.transaction_cancel()
#        self.hku.transaction_cancel()
#        self.hklm.transaction_cancel()

    def groupedCommit(self):
        try:
            self.sam.transaction_prepare_commit()
            self.secrets.transaction_prepare_commit()
            self.idmap.transaction_prepare_commit()
            self.privilege.transaction_prepare_commit()
        except Exception:
            return self.groupedRollback()
# TO BE DONE
#        self.hkcr.transaction_prepare_commit()
#        self.hkcu.transaction_prepare_commit()
#        self.hku.transaction_prepare_commit()
#        self.hklm.transaction_prepare_commit()
        try:
            self.sam.transaction_commit()
            self.secrets.transaction_commit()
            self.idmap.transaction_commit()
            self.privilege.transaction_commit()
        except Exception:
            return self.groupedRollback()

# TO BE DONE
#        self.hkcr.transaction_commit()
#        self.hkcu.transaction_commit()
#        self.hku.transaction_commit()
#        self.hklm.transaction_commit()
        return True

def get_ldbs(paths, creds, session, lp):
    """Return LDB object mapped on most important databases

    :param paths: An object holding the different importants paths for provision object
    :param creds: Credential used for openning LDB files
    :param session: Session to use for openning LDB files
    :param lp: A loadparam object
    :return: A ProvisionLDB object that contains LDB object for the different LDB files of the provision"""

    ldbs = ProvisionLDB()

    ldbs.sam = SamDB(paths.samdb, session_info=session, credentials=creds, lp=lp, options=["modules:samba_dsdb"])
    ldbs.secrets = Ldb(paths.secrets, session_info=session, credentials=creds, lp=lp)
    ldbs.idmap = Ldb(paths.idmapdb, session_info=session, credentials=creds, lp=lp)
    ldbs.privilege = Ldb(paths.privilege, session_info=session, credentials=creds, lp=lp)
#    ldbs.hkcr = Ldb(paths.hkcr, session_info=session, credentials=creds, lp=lp)
#    ldbs.hkcu = Ldb(paths.hkcu, session_info=session, credentials=creds, lp=lp)
#    ldbs.hku = Ldb(paths.hku, session_info=session, credentials=creds, lp=lp)
#    ldbs.hklm = Ldb(paths.hklm, session_info=session, credentials=creds, lp=lp)

    return ldbs


def usn_in_range(usn, range):
    """Check if the usn is in one of the range provided.
    To do so, the value is checked to be between the lower bound and
    higher bound of a range

    :param usn: A integer value corresponding to the usn that we want to update
    :param range: A list of integer representing ranges, lower bounds are in
                  the even indices, higher in odd indices
    :return: True if the usn is in one of the range, False otherwise
    """

    idx = 0
    cont = True
    ok = False
    while cont:
        if idx ==  len(range):
            cont = False
            continue
        if usn < int(range[idx]):
            if idx %2 == 1:
                ok = True
            cont = False
        if usn == int(range[idx]):
            cont = False
            ok = True
        idx = idx + 1
    return ok


def get_paths(param, targetdir=None, smbconf=None):
    """Get paths to important provision objects (smb.conf, ldb files, ...)

    :param param: Param object
    :param targetdir: Directory where the provision is (or will be) stored
    :param smbconf: Path to the smb.conf file
    :return: A list with the path of important provision objects"""
    if targetdir is not None:
        etcdir = os.path.join(targetdir, "etc")
        if not os.path.exists(etcdir):
            os.makedirs(etcdir)
        smbconf = os.path.join(etcdir, "smb.conf")
    if smbconf is None:
        smbconf = param.default_path()

    if not os.path.exists(smbconf):
        raise ProvisioningError("Unable to find smb.conf")

    lp = param.LoadParm()
    lp.load(smbconf)
    paths = provision_paths_from_lp(lp, lp.get("realm"))
    return paths

def update_policyids(names, samdb):
    """Update policy ids that could have changed after sam update

    :param names: List of key provision parameters
    :param samdb: An Ldb object conntected with the sam DB
    """
    # policy guid
    res = samdb.search(expression="(displayName=Default Domain Policy)",
                        base="CN=Policies,CN=System," + str(names.rootdn),
                        scope=SCOPE_ONELEVEL, attrs=["cn","displayName"])
    names.policyid = str(res[0]["cn"]).replace("{","").replace("}","")
    # dc policy guid
    res2 = samdb.search(expression="(displayName=Default Domain Controllers"
                                   " Policy)",
                            base="CN=Policies,CN=System," + str(names.rootdn),
                            scope=SCOPE_ONELEVEL, attrs=["cn","displayName"])
    if len(res2) == 1:
        names.policyid_dc = str(res2[0]["cn"]).replace("{","").replace("}","")
    else:
        names.policyid_dc = None


def find_provision_key_parameters(samdb, secretsdb, idmapdb, paths, smbconf, lp):
    """Get key provision parameters (realm, domain, ...) from a given provision

    :param samdb: An LDB object connected to the sam.ldb file
    :param secretsdb: An LDB object connected to the secrets.ldb file
    :param idmapdb: An LDB object connected to the idmap.ldb file
    :param paths: A list of path to provision object
    :param smbconf: Path to the smb.conf file
    :param lp: A LoadParm object
    :return: A list of key provision parameters
    """
    names = ProvisionNames()
    names.adminpass = None

    # NT domain, kerberos realm, root dn, domain dn, domain dns name
    names.domain = string.upper(lp.get("workgroup"))
    names.realm = lp.get("realm")
    basedn = "DC=" + names.realm.replace(".",",DC=")
    names.dnsdomain = names.realm.lower()
    names.realm = string.upper(names.realm)
    # netbiosname
    # Get the netbiosname first (could be obtained from smb.conf in theory)
    res = secretsdb.search(expression="(flatname=%s)" %
                            names.domain,base="CN=Primary Domains",
                            scope=SCOPE_SUBTREE, attrs=["sAMAccountName"])
    names.netbiosname = str(res[0]["sAMAccountName"]).replace("$","")

    names.smbconf = smbconf

    # That's a bit simplistic but it's ok as long as we have only 3
    # partitions
    current = samdb.search(expression="(objectClass=*)", 
        base="", scope=SCOPE_BASE,
        attrs=["defaultNamingContext", "schemaNamingContext",
               "configurationNamingContext","rootDomainNamingContext"])

    names.configdn = current[0]["configurationNamingContext"]
    configdn = str(names.configdn)
    names.schemadn = current[0]["schemaNamingContext"]
    if not (ldb.Dn(samdb, basedn) == (ldb.Dn(samdb,
                                       current[0]["defaultNamingContext"][0]))):
        raise ProvisioningError(("basedn in %s (%s) and from %s (%s)"
                                 "is not the same ..." % (paths.samdb,
                                    str(current[0]["defaultNamingContext"][0]),
                                    paths.smbconf, basedn)))

    names.domaindn=current[0]["defaultNamingContext"]
    names.rootdn=current[0]["rootDomainNamingContext"]
    # default site name
    res3 = samdb.search(expression="(objectClass=*)", 
        base="CN=Sites," + configdn, scope=SCOPE_ONELEVEL, attrs=["cn"])
    names.sitename = str(res3[0]["cn"])

    # dns hostname and server dn
    res4 = samdb.search(expression="(CN=%s)" % names.netbiosname,
                            base="OU=Domain Controllers,%s" % basedn,
                            scope=SCOPE_ONELEVEL, attrs=["dNSHostName"])
    names.hostname = str(res4[0]["dNSHostName"]).replace("." + names.dnsdomain,"")

    server_res = samdb.search(expression="serverReference=%s" % res4[0].dn,
                                attrs=[], base=configdn)
    names.serverdn = server_res[0].dn

    # invocation id/objectguid
    res5 = samdb.search(expression="(objectClass=*)",
            base="CN=NTDS Settings,%s" % str(names.serverdn), scope=SCOPE_BASE,
            attrs=["invocationID", "objectGUID"])
    names.invocation = str(ndr_unpack(misc.GUID, res5[0]["invocationId"][0]))
    names.ntdsguid = str(ndr_unpack(misc.GUID, res5[0]["objectGUID"][0]))

    # domain guid/sid
    res6 = samdb.search(expression="(objectClass=*)", base=basedn,
            scope=SCOPE_BASE, attrs=["objectGUID",
                "objectSid","msDS-Behavior-Version" ])
    names.domainguid = str(ndr_unpack(misc.GUID, res6[0]["objectGUID"][0]))
    names.domainsid = ndr_unpack( security.dom_sid, res6[0]["objectSid"][0])
    if res6[0].get("msDS-Behavior-Version") is None or \
        int(res6[0]["msDS-Behavior-Version"][0]) < DS_DOMAIN_FUNCTION_2000:
        names.domainlevel = DS_DOMAIN_FUNCTION_2000
    else:
        names.domainlevel = int(res6[0]["msDS-Behavior-Version"][0])

    # policy guid
    res7 = samdb.search(expression="(displayName=Default Domain Policy)",
                        base="CN=Policies,CN=System," + basedn,
                        scope=SCOPE_ONELEVEL, attrs=["cn","displayName"])
    names.policyid = str(res7[0]["cn"]).replace("{","").replace("}","")
    # dc policy guid
    res8 = samdb.search(expression="(displayName=Default Domain Controllers"
                                   " Policy)",
                            base="CN=Policies,CN=System," + basedn,
                            scope=SCOPE_ONELEVEL, attrs=["cn","displayName"])
    if len(res8) == 1:
        names.policyid_dc = str(res8[0]["cn"]).replace("{","").replace("}","")
    else:
        names.policyid_dc = None
    res9 = idmapdb.search(expression="(cn=%s)" %
                            (security.SID_BUILTIN_ADMINISTRATORS),
                            attrs=["xidNumber"])
    if len(res9) == 1:
        names.wheel_gid = res9[0]["xidNumber"]
    else:
        raise ProvisioningError("Unable to find uid/gid for Domain Admins rid")
    return names


def newprovision(names, creds, session, smbconf, provdir, logger):
    """Create a new provision.

    This provision will be the reference for knowing what has changed in the
    since the latest upgrade in the current provision

    :param names: List of provision parameters
    :param creds: Credentials for the authentification
    :param session: Session object
    :param smbconf: Path to the smb.conf file
    :param provdir: Directory where the provision will be stored
    :param logger: A Logger
    """
    if os.path.isdir(provdir):
        shutil.rmtree(provdir)
    os.mkdir(provdir)
    logger.info("Provision stored in %s", provdir)
    provision(logger, session, creds, smbconf=smbconf,
            targetdir=provdir, samdb_fill=FILL_FULL, realm=names.realm,
            domain=names.domain, domainguid=names.domainguid,
            domainsid=str(names.domainsid), ntdsguid=names.ntdsguid,
            policyguid=names.policyid, policyguid_dc=names.policyid_dc,
            hostname=names.netbiosname.lower(), hostip=None, hostip6=None,
            invocationid=names.invocation, adminpass=names.adminpass,
            krbtgtpass=None, machinepass=None, dnspass=None, root=None,
            nobody=None, wheel=None, users=None,
            serverrole="domain controller", ldap_backend_extra_port=None,
            backend_type=None, ldapadminpass=None, ol_mmr_urls=None,
            slapd_path=None, setup_ds_path=None, nosync=None,
            dom_for_fun_level=names.domainlevel,
            ldap_dryrun_mode=None, useeadb=True)


def dn_sort(x, y):
    """Sorts two DNs in the lexicographical order it and put higher level DN
    before.

    So given the dns cn=bar,cn=foo and cn=foo the later will be return as
    smaller

    :param x: First object to compare
    :param y: Second object to compare
    """
    p = re.compile(r'(?<!\\), ?')
    tab1 = p.split(str(x))
    tab2 = p.split(str(y))
    minimum = min(len(tab1), len(tab2))
    len1 = len(tab1)-1
    len2 = len(tab2)-1
    # Note: python range go up to upper limit but do not include it
    for i in range(0, minimum):
        ret = cmp(tab1[len1-i], tab2[len2-i])
        if ret != 0:
            return ret
        else:
            if i == minimum-1:
                assert len1!=len2,"PB PB PB" + " ".join(tab1)+" / " + " ".join(tab2)
                if len1 > len2:
                    return 1
                else:
                    return -1
    return ret


def identic_rename(ldbobj, dn):
    """Perform a back and forth rename to trigger renaming on attribute that
    can't be directly modified.

    :param lbdobj: An Ldb Object
    :param dn: DN of the object to manipulate
    """
    (before, after) = str(dn).split('=', 1)
    # we need to use relax to avoid the subtree_rename constraints
    ldbobj.rename(dn, ldb.Dn(ldbobj, "%s=foo%s" % (before, after)), ["relax:0"])
    ldbobj.rename(ldb.Dn(ldbobj, "%s=foo%s" % (before, after)), dn, ["relax:0"])


def chunck_acl(acl):
    """Return separate ACE of an ACL

    :param acl: A string representing the ACL
    :return: A hash with different parts
    """

    p = re.compile(r'(\w+)?(\(.*?\))')
    tab = p.findall(acl)

    hash = {}
    hash["aces"] = []
    for e in tab:
        if len(e[0]) > 0:
            hash["flags"] = e[0]
        hash["aces"].append(e[1])

    return hash


def chunck_sddl(sddl):
    """ Return separate parts of the SDDL (owner, group, ...)

    :param sddl: An string containing the SDDL to chunk
    :return: A hash with the different chunk
    """

    p = re.compile(r'([OGDS]:)(.*?)(?=(?:[GDS]:|$))')
    tab = p.findall(sddl)

    hash = {}
    for e in tab:
        if e[0] == "O:":
            hash["owner"] = e[1]
        if e[0] == "G:":
            hash["group"] = e[1]
        if e[0] == "D:":
            hash["dacl"] = e[1]
        if e[0] == "S:":
            hash["sacl"] = e[1]

    return hash


def get_diff_sddls(refsddl, cursddl):
    """Get the difference between 2 sddl

    This function split the textual representation of ACL into smaller
    chunck in order to not to report a simple permutation as a difference

    :param refsddl: First sddl to compare
    :param cursddl: Second sddl to compare
    :return: A string that explain difference between sddls
    """

    txt = ""
    hash_new = chunck_sddl(cursddl)
    hash_ref = chunck_sddl(refsddl)

    if hash_new["owner"] != hash_ref["owner"]:
        txt = "\tOwner mismatch: %s (in ref) %s" \
              "(in current)\n" % (hash_ref["owner"], hash_new["owner"])

    if hash_new["group"] != hash_ref["group"]:
        txt = "%s\tGroup mismatch: %s (in ref) %s" \
              "(in current)\n" % (txt, hash_ref["group"], hash_new["group"])

    for part in ["dacl", "sacl"]:
        if hash_new.has_key(part) and hash_ref.has_key(part):

            # both are present, check if they contain the same ACE
            h_new = set()
            h_ref = set()
            c_new = chunck_acl(hash_new[part])
            c_ref = chunck_acl(hash_ref[part])

            for elem in c_new["aces"]:
                h_new.add(elem)

            for elem in c_ref["aces"]:
                h_ref.add(elem)

            for k in set(h_ref):
                if k in h_new:
                    h_new.remove(k)
                    h_ref.remove(k)

            if len(h_new) + len(h_ref) > 0:
                txt = "%s\tPart %s is different between reference" \
                      " and current here is the detail:\n" % (txt, part)

                for item in h_new:
                    txt = "%s\t\t%s ACE is not present in the" \
                          " reference\n" % (txt, item)

                for item in h_ref:
                    txt = "%s\t\t%s ACE is not present in the" \
                          " current\n" % (txt, item)

        elif hash_new.has_key(part) and not hash_ref.has_key(part):
            txt = "%s\tReference ACL hasn't a %s part\n" % (txt, part)
        elif not hash_new.has_key(part) and hash_ref.has_key(part):
            txt = "%s\tCurrent ACL hasn't a %s part\n" % (txt, part)

    return txt


def update_secrets(newsecrets_ldb, secrets_ldb, messagefunc):
    """Update secrets.ldb

    :param newsecrets_ldb: An LDB object that is connected to the secrets.ldb
        of the reference provision
    :param secrets_ldb: An LDB object that is connected to the secrets.ldb
        of the updated provision
    """

    messagefunc(SIMPLE, "update secrets.ldb")
    reference = newsecrets_ldb.search(expression="dn=@MODULES", base="",
                                        scope=SCOPE_SUBTREE)
    current = secrets_ldb.search(expression="dn=@MODULES", base="",
                                        scope=SCOPE_SUBTREE)
    assert reference, "Reference modules list can not be empty"
    if len(current) == 0:
        # No modules present
        delta = secrets_ldb.msg_diff(ldb.Message(), reference[0])
        delta.dn = reference[0].dn
        secrets_ldb.add(reference[0])
    else:
        delta = secrets_ldb.msg_diff(current[0], reference[0])
        delta.dn = current[0].dn
        secrets_ldb.modify(delta)

    reference = newsecrets_ldb.search(expression="objectClass=top", base="",
                                        scope=SCOPE_SUBTREE, attrs=["dn"])
    current = secrets_ldb.search(expression="objectClass=top", base="",
                                        scope=SCOPE_SUBTREE, attrs=["dn"])
    hash_new = {}
    hash = {}
    listMissing = []
    listPresent = []

    empty = ldb.Message()
    for i in range(0, len(reference)):
        hash_new[str(reference[i]["dn"]).lower()] = reference[i]["dn"]

    # Create a hash for speeding the search of existing object in the
    # current provision
    for i in range(0, len(current)):
        hash[str(current[i]["dn"]).lower()] = current[i]["dn"]

    for k in hash_new.keys():
        if not hash.has_key(k):
            listMissing.append(hash_new[k])
        else:
            listPresent.append(hash_new[k])

    for entry in listMissing:
        reference = newsecrets_ldb.search(expression="dn=%s" % entry,
                                            base="", scope=SCOPE_SUBTREE)
        current = secrets_ldb.search(expression="dn=%s" % entry,
                                            base="", scope=SCOPE_SUBTREE)
        delta = secrets_ldb.msg_diff(empty, reference[0])
        for att in hashAttrNotCopied:
            delta.remove(att)
        messagefunc(CHANGE, "Entry %s is missing from secrets.ldb" %
                    reference[0].dn)
        for att in delta:
            messagefunc(CHANGE, " Adding attribute %s" % att)
        delta.dn = reference[0].dn
        secrets_ldb.add(delta)

    for entry in listPresent:
        reference = newsecrets_ldb.search(expression="dn=%s" % entry,
                                            base="", scope=SCOPE_SUBTREE)
        current = secrets_ldb.search(expression="dn=%s" % entry, base="",
                                            scope=SCOPE_SUBTREE)
        delta = secrets_ldb.msg_diff(current[0], reference[0])
        for att in hashAttrNotCopied:
            delta.remove(att)
        for att in delta:
            if att == "name":
                messagefunc(CHANGE, "Found attribute name on  %s,"
                                    " must rename the DN" % (current[0].dn))
                identic_rename(secrets_ldb, reference[0].dn)
            else:
                delta.remove(att)

    for entry in listPresent:
        reference = newsecrets_ldb.search(expression="dn=%s" % entry, base="",
                                            scope=SCOPE_SUBTREE)
        current = secrets_ldb.search(expression="dn=%s" % entry, base="",
                                            scope=SCOPE_SUBTREE)
        delta = secrets_ldb.msg_diff(current[0], reference[0])
        for att in hashAttrNotCopied:
            delta.remove(att)
        for att in delta:
            if att == "msDS-KeyVersionNumber":
                delta.remove(att)
            if att != "dn":
                messagefunc(CHANGE,
                            "Adding/Changing attribute %s to %s" %
                            (att, current[0].dn))

        delta.dn = current[0].dn
        secrets_ldb.modify(delta)

    res2 = secrets_ldb.search(expression="(samaccountname=dns)",
                                scope=SCOPE_SUBTREE, attrs=["dn"])

    if (len(res2) == 1):
            messagefunc(SIMPLE, "Remove old dns account")
            secrets_ldb.delete(res2[0]["dn"])


def getOEMInfo(samdb, rootdn):
    """Return OEM Information on the top level Samba4 use to store version
    info in this field

    :param samdb: An LDB object connect to sam.ldb
    :param rootdn: Root DN of the domain
    :return: The content of the field oEMInformation (if any)
    """
    res = samdb.search(expression="(objectClass=*)", base=str(rootdn),
                            scope=SCOPE_BASE, attrs=["dn", "oEMInformation"])
    if len(res) > 0:
        info = res[0]["oEMInformation"]
        return info
    else:
        return ""


def updateOEMInfo(samdb, rootdn):
    """Update the OEMinfo field to add information about upgrade

    :param samdb: an LDB object connected to the sam DB
    :param rootdn: The string representation of the root DN of
        the provision (ie. DC=...,DC=...)
    """
    res = samdb.search(expression="(objectClass=*)", base=rootdn,
                            scope=SCOPE_BASE, attrs=["dn", "oEMInformation"])
    if len(res) > 0:
        info = res[0]["oEMInformation"]
        info = "%s, upgrade to %s" % (info, version)
        delta = ldb.Message()
        delta.dn = ldb.Dn(samdb, str(res[0]["dn"]))
        delta["oEMInformation"] = ldb.MessageElement(info, ldb.FLAG_MOD_REPLACE,
                                                        "oEMInformation" )
        samdb.modify(delta)

def update_gpo(paths, samdb, names, lp, message, force=0):
    """Create missing GPO file object if needed

    Set ACL correctly also.
    Check ACLs for sysvol/netlogon dirs also
    """
    resetacls = False
    try:
        ntacls.checkset_backend(lp, None, None)
        eadbname = lp.get("posix:eadb")
        if eadbname is not None and eadbname != "":
            try:
                attribute = samba.xattr_tdb.wrap_getxattr(eadbname,
                                paths.sysvol, xattr.XATTR_NTACL_NAME)
            except Exception:
                attribute = samba.xattr_native.wrap_getxattr(paths.sysvol,
                                xattr.XATTR_NTACL_NAME)
        else:
            attribute = samba.xattr_native.wrap_getxattr(paths.sysvol,
                                xattr.XATTR_NTACL_NAME)
    except Exception:
       resetacls = True

    if force:
        resetacls = True

    dir = getpolicypath(paths.sysvol, names.dnsdomain, names.policyid)
    if not os.path.isdir(dir):
        create_gpo_struct(dir)

    if names.policyid_dc is None:
        raise ProvisioningError("Policy ID for Domain controller is missing")
    dir = getpolicypath(paths.sysvol, names.dnsdomain, names.policyid_dc)
    if not os.path.isdir(dir):
        create_gpo_struct(dir)
    # We always reinforce acls on GPO folder because they have to be in sync
    # with the one in DS
    try:
        set_gpos_acl(paths.sysvol, names.dnsdomain, names.domainsid,
            names.domaindn, samdb, lp)
    except TypeError, e:
        message(ERROR, "Unable to set ACLs on policies related objects,"
                       " if not using posix:eadb, you must be root to do it")

    if resetacls:
       try:
            setsysvolacl(samdb, paths.netlogon, paths.sysvol, names.wheel_gid,
                        names.domainsid, names.dnsdomain, names.domaindn, lp)
       except TypeError, e:
            message(ERROR, "Unable to set ACLs on sysvol share, if not using"
                           "posix:eadb, you must be root to do it")

def increment_calculated_keyversion_number(samdb, rootdn, hashDns):
    """For a given hash associating dn and a number, this function will
    update the replPropertyMetaData of each dn in the hash, so that the
    calculated value of the msDs-KeyVersionNumber is equal or superior to the
    one associated to the given dn.

    :param samdb: An SamDB object pointing to the sam
    :param rootdn: The base DN where we want to start
    :param hashDns: A hash with dn as key and number representing the
                 minimum value of msDs-KeyVersionNumber that we want to
                 have
    """
    entry = samdb.search(expression='(objectClass=user)',
                         base=ldb.Dn(samdb,str(rootdn)),
                         scope=SCOPE_SUBTREE, attrs=["msDs-KeyVersionNumber"],
                         controls=["search_options:1:2"])
    done = 0
    hashDone = {}
    if len(entry) == 0:
        raise ProvisioningError("Unable to find msDs-KeyVersionNumber")
    else:
        for e in entry:
            if hashDns.has_key(str(e.dn).lower()):
                val = e.get("msDs-KeyVersionNumber")
                if not val:
                    val = "0"
                version = int(str(hashDns[str(e.dn).lower()]))
                if int(str(val)) < version:
                    done = done + 1
                    samdb.set_attribute_replmetadata_version(str(e.dn),
                                                              "unicodePwd",
                                                              version, True)
def delta_update_basesamdb(refsampath, sampath, creds, session, lp, message):
    """Update the provision container db: sam.ldb
    This function is aimed for alpha9 and newer;

    :param refsampath: Path to the samdb in the reference provision
    :param sampath: Path to the samdb in the upgraded provision
    :param creds: Credential used for openning LDB files
    :param session: Session to use for openning LDB files
    :param lp: A loadparam object
    :return: A msg_diff object with the difference between the @ATTRIBUTES
             of the current provision and the reference provision
    """

    message(SIMPLE,
            "Update base samdb by searching difference with reference one")
    refsam = Ldb(refsampath, session_info=session, credentials=creds,
                    lp=lp, options=["modules:"])
    sam = Ldb(sampath, session_info=session, credentials=creds, lp=lp,
                options=["modules:"])

    empty = ldb.Message()
    deltaattr = None
    reference = refsam.search(expression="")

    for refentry in reference:
        entry = sam.search(expression="dn=%s" % refentry["dn"],
                            scope=SCOPE_SUBTREE)
        if not len(entry):
            delta = sam.msg_diff(empty, refentry)
            message(CHANGE, "Adding %s to sam db" % str(refentry.dn))
            if str(refentry.dn) == "@PROVISION" and\
                delta.get(samba.provision.LAST_PROVISION_USN_ATTRIBUTE):
                delta.remove(samba.provision.LAST_PROVISION_USN_ATTRIBUTE)
            delta.dn = refentry.dn
            sam.add(delta)
        else:
            delta = sam.msg_diff(entry[0], refentry)
            if str(refentry.dn) == "@ATTRIBUTES":
                deltaattr = sam.msg_diff(refentry, entry[0])
            if str(refentry.dn) == "@PROVISION" and\
                delta.get(samba.provision.LAST_PROVISION_USN_ATTRIBUTE):
                delta.remove(samba.provision.LAST_PROVISION_USN_ATTRIBUTE)
            if len(delta.items()) > 1:
                delta.dn = refentry.dn
                sam.modify(delta)

    return deltaattr


def construct_existor_expr(attrs):
    """Construct a exists or LDAP search expression.

    :param attrs: List of attribute on which we want to create the search
        expression.
    :return: A string representing the expression, if attrs is empty an
        empty string is returned
    """
    expr = ""
    if len(attrs) > 0:
        expr = "(|"
        for att in attrs:
            expr = "%s(%s=*)"%(expr,att)
        expr = "%s)"%expr
    return expr

def update_machine_account_password(samdb, secrets_ldb, names):
    """Update (change) the password of the current DC both in the SAM db and in
       secret one

    :param samdb: An LDB object related to the sam.ldb file of a given provision
    :param secrets_ldb: An LDB object related to the secrets.ldb file of a given
                        provision
    :param names: List of key provision parameters"""

    expression = "samAccountName=%s$" % names.netbiosname
    secrets_msg = secrets_ldb.search(expression=expression,
                                        attrs=["secureChannelType"])
    if int(secrets_msg[0]["secureChannelType"][0]) == SEC_CHAN_BDC:
        res = samdb.search(expression=expression, attrs=[])
        assert(len(res) == 1)

        msg = ldb.Message(res[0].dn)
        machinepass = samba.generate_random_password(128, 255)
        mputf16 = machinepass.encode('utf-16-le')
        msg["clearTextPassword"] = ldb.MessageElement(mputf16,
                                                ldb.FLAG_MOD_REPLACE,
                                                "clearTextPassword")
        samdb.modify(msg)

        res = samdb.search(expression=("samAccountName=%s$" % names.netbiosname),
                     attrs=["msDs-keyVersionNumber"])
        assert(len(res) == 1)
        kvno = int(str(res[0]["msDs-keyVersionNumber"]))
        secChanType = int(secrets_msg[0]["secureChannelType"][0])

        secretsdb_self_join(secrets_ldb, domain=names.domain,
                    realm=names.realm,
                    domainsid=names.domainsid,
                    dnsdomain=names.dnsdomain,
                    netbiosname=names.netbiosname,
                    machinepass=machinepass,
                    key_version_number=kvno,
                    secure_channel_type=secChanType)
    else:
        raise ProvisioningError("Unable to find a Secure Channel"
                                "of type SEC_CHAN_BDC")

def update_dns_account_password(samdb, secrets_ldb, names):
    """Update (change) the password of the dns both in the SAM db and in
       secret one

    :param samdb: An LDB object related to the sam.ldb file of a given provision
    :param secrets_ldb: An LDB object related to the secrets.ldb file of a given
                        provision
    :param names: List of key provision parameters"""

    expression = "samAccountName=dns-%s" % names.netbiosname
    secrets_msg = secrets_ldb.search(expression=expression)
    if len(secrets_msg) == 1:
        res = samdb.search(expression=expression, attrs=[])
        assert(len(res) == 1)

        msg = ldb.Message(res[0].dn)
        machinepass = samba.generate_random_password(128, 255)
        mputf16 = machinepass.encode('utf-16-le')
        msg["clearTextPassword"] = ldb.MessageElement(mputf16,
                                                ldb.FLAG_MOD_REPLACE,
                                                "clearTextPassword")

        samdb.modify(msg)

        res = samdb.search(expression=expression,
                     attrs=["msDs-keyVersionNumber"])
        assert(len(res) == 1)
        kvno = str(res[0]["msDs-keyVersionNumber"])

        msg = ldb.Message(secrets_msg[0].dn)
        msg["secret"] = ldb.MessageElement(machinepass,
                                                ldb.FLAG_MOD_REPLACE,
                                                "secret")
        msg["msDS-KeyVersionNumber"] = ldb.MessageElement(kvno,
                                                ldb.FLAG_MOD_REPLACE,
                                                "msDS-KeyVersionNumber")

        secrets_ldb.modify(msg)
    else:
        raise ProvisioningError("Unable to find an object"
                                " with %s" % expression )

def search_constructed_attrs_stored(samdb, rootdn, attrs):
    """Search a given sam DB for calculated attributes that are
    still stored in the db.

    :param samdb: An LDB object pointing to the sam
    :param rootdn: The base DN where the search should start
    :param attrs: A list of attributes to be searched
    :return: A hash with attributes as key and an array of
             array. Each array contains the dn and the associated
             values for this attribute as they are stored in the
             sam."""

    hashAtt = {}
    expr = construct_existor_expr(attrs)
    if expr == "":
        return hashAtt
    entry = samdb.search(expression=expr, base=ldb.Dn(samdb, str(rootdn)),
                         scope=SCOPE_SUBTREE, attrs=attrs,
                         controls=["search_options:1:2","bypassoperational:0"])
    if len(entry) == 0:
        # Nothing anymore
        return hashAtt

    for ent in entry:
        for att in attrs:
            if ent.get(att):
                if hashAtt.has_key(att):
                    hashAtt[att][str(ent.dn).lower()] = str(ent[att])
                else:
                    hashAtt[att] = {}
                    hashAtt[att][str(ent.dn).lower()] = str(ent[att])

    return hashAtt

def int64range2str(value):
    """Display the int64 range stored in value as xxx-yyy

    :param value: The int64 range
    :return: A string of the representation of the range
    """

    lvalue = long(value)
    str = "%d-%d" % (lvalue&0xFFFFFFFF, lvalue>>32)
    return str
d='n4739' href='#n4739'>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 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049
# translation of es.po to
# translation of es.po to Spanish
# translation of es.po to Español
# Copyright (C) 2000,2003,2004, 2005, 2006 Free Software Foundation, Inc.
# Tullio Dovera <tdovera@redhat.it>, 2000.
# Núria Soriano <nsoriano@redhat.es>,2001.
# Fernando Ruiz-Tapiador Gutiérrez <frtapiador@redhat.es>, 2001.
# Yelitza Louze <ylouze@redhat.com>, 2003,2004.
# Luis Mayoral <mayoral@linuxadicto.org>, 2003.
# Daniel Guerrero <daniel@danguer.com>, 2003.
#  <ccheng@brisbane.redhat.com>, 2004.
# Manuel Ospina <mospina@redhat.com>, 2005, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-06-27 13:46-0400\n"
"PO-Revision-Date: 2006-12-01 08:42+1000\n"
"Last-Translator: Manuel Ospina <mospina@redhat.com>\n"
"Language-Team: Spanish <en@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.9.1\n"

# ../textw/xconfig_text.py:564
# ../textw/xconfig_text.py:576
# ../textw/xconfig_text.py:576
#: ../anaconda:262
msgid "Unknown Error"
msgstr "Error desconocido"

# ../loader/kickstart.c:69
# ../loader/kickstart.c:69
# ../loader/kickstart.c:69
#: ../anaconda:265
#, c-format
msgid "Error pulling second part of kickstart config: %s!"
msgstr "Error al extraer la segunda parte del archivo kickstart: %s!"

#: ../anaconda:399
msgid "Press <enter> for a shell"
msgstr "Presione <intro> para entrar al shell"

# ../anaconda:332 ../iw/account_gui.py:150 ../iw/account_gui.py:161
# ../iw/partition_gui.py:496 ../iw/partition_gui.py:845
# ../iw/partition_gui.py:1315 ../loader/urls.c:79 ../loader/urls.c:89
# ../loader/urls.c:97 ../loader/urls.c:247 ../mouse.py:280 ../rescue.py:34
# ../rescue.py:130 ../rescue.py:151 ../rescue.py:168 ../rescue.py:174
# ../text.py:393 ../textw/bootdisk_text.py:65 ../textw/bootdisk_text.py:67
# ../textw/complete_text.py:41 ../textw/complete_text.py:56
# ../textw/complete_text.py:72 ../textw/confirm_text.py:24
# ../textw/confirm_text.py:36 ../textw/constants_text.py:20
# ../textw/firewall_text.py:201 ../textw/network_text.py:134
# ../textw/silo_text.py:110 ../xserver.py:51
# ../anaconda:332 ../iw/account_gui.py:150 ../iw/account_gui.py:161
# ../iw/partition_gui.py:496 ../iw/partition_gui.py:847
# ../iw/partition_gui.py:1317 ../loader/urls.c:79 ../loader/urls.c:89
# ../loader/urls.c:97 ../loader/urls.c:247 ../mouse.py:280 ../rescue.py:34
# ../rescue.py:130 ../rescue.py:151 ../rescue.py:168 ../rescue.py:174
# ../text.py:399 ../textw/bootdisk_text.py:65 ../textw/bootdisk_text.py:67
# ../textw/complete_text.py:47 ../textw/complete_text.py:62
# ../textw/complete_text.py:78 ../textw/confirm_text.py:24
# ../textw/confirm_text.py:36 ../textw/constants_text.py:20
# ../textw/firewall_text.py:201 ../textw/network_text.py:134
# ../textw/silo_text.py:110 ../xserver.py:51
# ../anaconda:332 ../gui.py:111 ../iw/account_gui.py:150
# ../iw/account_gui.py:161 ../iw/partition_gui.py:496
# ../iw/partition_gui.py:848 ../iw/partition_gui.py:1323 ../loader/cdrom.c:34
# ../loader/devices.c:92 ../loader/devices.c:237 ../loader/devices.c:259
# ../loader/devices.c:266 ../loader/devices.c:335 ../loader/devices.c:435
# ../loader/devices.c:480 ../loader/devices.c:500 ../loader/devices.c:532
# ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
# ../loader/lang.c:27 ../loader/lang.c:102 ../loader/lang.c:299
# ../loader/lang.c:608 ../loader/loader.c:323 ../loader/loader.c:478
# ../loader/loader.c:535 ../loader/loader.c:853 ../loader/loader.c:912
# ../loader/loader.c:967 ../loader/loader.c:1061 ../loader/loader.c:1140
# ../loader/loader.c:1145 ../loader/loader.c:1185 ../loader/loader.c:1213
# ../loader/loader.c:1244 ../loader/loader.c:1490 ../loader/loader.c:2207
# ../loader/loader.c:2237 ../loader/loader.c:2300 ../loader/loader.c:2315
# ../loader/loader.c:2524 ../loader/net.c:185 ../loader/net.c:272
# ../loader/net.c:359 ../loader/net.c:722 ../loader/net.c:755
# ../loader/pcmcia.c:104 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131
# ../loader/urls.c:79 ../loader/urls.c:89 ../loader/urls.c:97
# ../loader/urls.c:158 ../loader/urls.c:236 ../loader/urls.c:241
# ../loader/urls.c:247 ../loader/urls.c:387 ../mouse.py:281 ../rescue.py:34
# ../rescue.py:130 ../rescue.py:151 ../rescue.py:168 ../rescue.py:174
# ../text.py:283 ../text.py:400 ../textw/bootdisk_text.py:66
# ../textw/bootdisk_text.py:68 ../textw/complete_text.py:47
# ../textw/complete_text.py:62 ../textw/complete_text.py:78
# ../textw/confirm_text.py:24 ../textw/confirm_text.py:36
# ../textw/constants_text.py:20 ../textw/fdisk_text.py:41
# ../textw/firewall_text.py:201 ../textw/network_text.py:134
# ../textw/silo_text.py:110 ../textw/silo_text.py:147
# ../textw/silo_text.py:160 ../xserver.py:51
#: ../anaconda:414 ../gui.py:233 ../rescue.py:46 ../rescue.py:247
#: ../rescue.py:321 ../rescue.py:348 ../rescue.py:358 ../rescue.py:442
#: ../rescue.py:448 ../text.py:438 ../text.py:585 ../vnc.py:144
#: ../textw/confirm_text.py:26 ../textw/confirm_text.py:54
#: ../textw/constants_text.py:36 ../textw/network_text.py:39
#: ../textw/network_text.py:49 ../textw/network_text.py:71
#: ../textw/network_text.py:77 ../textw/network_text.py:225
#: ../textw/network_text.py:808 ../textw/network_text.py:816
#: ../loader2/cdinstall.c:140 ../loader2/cdinstall.c:141
#: ../loader2/cdinstall.c:258 ../loader2/cdinstall.c:261
#: ../loader2/cdinstall.c:382 ../loader2/cdinstall.c:387
#: ../loader2/cdinstall.c:392 ../loader2/cdinstall.c:463
#: ../loader2/dirbrowser.c:139 ../loader2/driverdisk.c:273
#: ../loader2/driverdisk.c:304 ../loader2/driverdisk.c:338
#: ../loader2/driverdisk.c:376 ../loader2/driverdisk.c:390
#: ../loader2/driverdisk.c:404 ../loader2/driverdisk.c:414
#: ../loader2/driverdisk.c:581 ../loader2/driverdisk.c:618
#: ../loader2/driverselect.c:70 ../loader2/driverselect.c:207
#: ../loader2/hdinstall.c:106 ../loader2/hdinstall.c:157
#: ../loader2/hdinstall.c:320 ../loader2/hdinstall.c:371
#: ../loader2/hdinstall.c:406 ../loader2/hdinstall.c:476
#: ../loader2/hdinstall.c:519 ../loader2/hdinstall.c:532 ../loader2/kbd.c:131
#: ../loader2/kickstart.c:124 ../loader2/kickstart.c:134
#: ../loader2/kickstart.c:177 ../loader2/kickstart.c:284
#: ../loader2/kickstart.c:342 ../loader2/kickstart.c:478 ../loader2/lang.c:106
#: ../loader2/lang.c:369 ../loader2/loader.c:338 ../loader2/loader.c:351
#: ../loader2/loader.c:362 ../loader2/loader.c:841 ../loader2/loader.c:1004
#: ../loader2/mediacheck.c:329 ../loader2/mediacheck.c:387
#: ../loader2/mediacheck.c:432 ../loader2/method.c:155 ../loader2/method.c:373
#: ../loader2/method.c:458 ../loader2/modules.c:1063 ../loader2/modules.c:1076
#: ../loader2/net.c:259 ../loader2/net.c:298 ../loader2/net.c:734
#: ../loader2/net.c:1059 ../loader2/net.c:1573 ../loader2/net.c:1596
#: ../loader2/net.c:1772 ../loader2/nfsinstall.c:57
#: ../loader2/nfsinstall.c:125 ../loader2/nfsinstall.c:205
#: ../loader2/nfsinstall.c:213 ../loader2/nfsinstall.c:251
#: ../loader2/telnetd.c:87 ../loader2/urlinstall.c:79
#: ../loader2/urlinstall.c:151 ../loader2/urlinstall.c:164
#: ../loader2/urlinstall.c:456 ../loader2/urlinstall.c:465
#: ../loader2/urlinstall.c:476 ../loader2/urls.c:282 ../loader2/urls.c:347
#: ../loader2/urls.c:352 ../loader2/urls.c:358 ../loader2/urls.c:464
msgid "OK"
msgstr "Aceptar"

# ../anaconda:313
# ../anaconda:313
# ../anaconda:313
#: ../anaconda:421
msgid ""
"You do not have enough RAM to use the graphical installer.  Starting text "
"mode."
msgstr ""
"No tiene suficiente RAM para usar la instalación gráfica. Inicio en modo "
"texto."

#: ../anaconda:437
msgid "No video hardware found, assuming headless"
msgstr "No se encontró hardware de vídeo, se asume sin cabezales"

#: ../anaconda:444 ../anaconda:924
msgid "Unable to instantiate a X hardware state object."
msgstr "No se pudo iniciar una instancia del estado del objeto de hardware X."

# ../upgrade.py:44
# ../upgrade.py:44
# ../upgrade.py:44
#: ../anaconda:501
msgid "Starting graphical installation..."
msgstr "Iniciando la instalación gráfica..."

#: ../anaconda:788
msgid "Install class forcing text mode installation"
msgstr "La clase de instalación forza a la instalación en modo texto."

# ../anaconda:410
# ../anaconda:410
# ../anaconda:410
#: ../anaconda:820
msgid "Graphical installation not available...  Starting text mode."
msgstr "La instalación gráfica no está disponible...Inicio en modo texto."

#: ../anaconda:828
msgid "DISPLAY variable not set. Starting text mode!"
msgstr "La variable DISPLAY no está establecida. ¡Iniciando en modo texto!"

# ../textw/xconfig_text.py:564
# ../textw/xconfig_text.py:576
# ../textw/xconfig_text.py:576
#: ../anaconda:889
msgid "Unknown install method"
msgstr "Método de instalación desconocido "

#: ../anaconda:890
msgid "You have specified an install method which isn't supported by anaconda."
msgstr ""
"Ha especificado un método de instalación que no es soportado por anaconda."

# ../textw/xconfig_text.py:564
# ../textw/xconfig_text.py:576
# ../textw/xconfig_text.py:576
#: ../anaconda:892
#, c-format
msgid "unknown install method: %s"
msgstr "Método de instalación desconocido: %s "

# ../autopart.py:675
# ../autopart.py:682
# ../autopart.py:682
#: ../autopart.py:949
#, python-format
msgid ""
"Could not allocate cylinder-based partitions as primary partitions.\n"
"\n"
"%s"
msgstr ""
"No se han podido asignar las particiones basadas en cilindros como "
"particiones primarias.\n"
"\n"
"%s"

# ../autopart.py:678
# ../autopart.py:685
# ../autopart.py:685
#: ../autopart.py:954
#, python-format
msgid ""
"Could not allocate partitions as primary partitions.\n"
"\n"
"%s"
msgstr ""
"No se han podido asignar las particiones como particiones primarias.\n"
"\n"
"%s"

# ../autopart.py:681
# ../autopart.py:688
# ../autopart.py:688
#: ../autopart.py:959
#, python-format
msgid ""
"Could not allocate cylinder-based partitions.\n"
"\n"
"%s"
msgstr ""
"No se han podido asignar las particiones basadas en cilindros.\n"
"\n"
"%s"

#: ../autopart.py:1019
#, python-format
msgid ""
"Boot partition %s doesn't belong to a BSD disk label. SRM won't be able to "
"boot from this partition. Use a partition belonging to a BSD disk label or "
"change this device disk label to BSD."
msgstr ""
"La partición de arranque %s no pertenece a una etiqueta de disco BSD. SRM no "
"podrá arrancar desde ésta partición. Use una partición que pertenezca a una "
"etiqueta de disco BSD o cambie esta etiqueta de dispositivo de disco a BSD."

#: ../autopart.py:1021
#, python-format
msgid ""
"Boot partition %s doesn't belong to a disk with enough free space at its "
"beginning for the bootloader to live on. Make sure that there's at least 5MB "
"of free space at the beginning of the disk that contains /boot"
msgstr ""
"La partición de arranque %s no pertenece a un disco con suficiente espacio "
"disponibleal comienzo para que el gestor de arranque se hospede. Asegúrese "
"de que tiene al menos 5MB de espacio libre al comienzo del disco que "
"contiene /boot"

#: ../autopart.py:1023
#, python-format
msgid ""
"Boot partition %s isn't a VFAT partition.  EFI won't be able to boot from "
"this partition."
msgstr ""
"La partición de arranque %s no es una partición VFAT. EFI no podrá arrancar "
"desde esta partición."

#: ../autopart.py:1025
msgid ""
"Boot partition isn't located early enough on the disk.  OpenFirmware won't "
"be able to boot this installation."
msgstr ""
"La partición de arranque no está localizada lo suficientemente al principio "
"del disco. OpenFirmware no podrá arrancar esta instalación."

# ../autopart.py:732
# ../autopart.py:739
# ../autopart.py:739
#: ../autopart.py:1032
#, python-format
msgid ""
"Boot partition %s may not meet booting constraints for your architecture."
msgstr ""
"La partición  de arranque %s podría no reunir las restricciones de arranque  "
"para su arquitectura. "

#: ../autopart.py:1058
#, python-format
msgid ""
"Adding this partition would not leave enough disk space for already "
"allocated logical volumes in %s."
msgstr ""
"Al añadir esta partición no le quedará suficiente espacio para localizar "
"volúmenes lógicos en %s."

# ../autopart.py:846
# ../autopart.py:853
# ../autopart.py:853
#: ../autopart.py:1253
msgid "Requested Partition Does Not Exist"
msgstr "La partición requerida no existe"

# ../autopart.py:847
# ../autopart.py:854
# ../autopart.py:854
#: ../autopart.py:1254
#, python-format
msgid ""
"Unable to locate partition %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""
"No se pudo localizar la partición %s para usarla para %s.\n"
"\n"
"Presione Aceptar para reiniciar su sistema."

# ../autopart.py:846
# ../autopart.py:853
# ../autopart.py:853
#: ../autopart.py:1281
msgid "Requested Raid Device Does Not Exist"
msgstr "El dispositivo Raid requerido no existe"

# ../autopart.py:847
# ../autopart.py:854
# ../autopart.py:854
#: ../autopart.py:1282
#, python-format
msgid ""
"Unable to locate raid device %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""
"Incapaz de localizar el dispositivo raid %s para usarlo para %s.\n"
"\n"
"Presione Aceptar para reiniciar su sistema."

# ../autopart.py:846
# ../autopart.py:853
# ../autopart.py:853
#: ../autopart.py:1313
msgid "Requested Volume Group Does Not Exist"
msgstr "El grupo volumen requerido no existe"

# ../autopart.py:847
# ../autopart.py:854
# ../autopart.py:854
#: ../autopart.py:1314
#, python-format
msgid ""
"Unable to locate volume group %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""
"Incapaz de localizar el grupo volumen %s para usarlo para %s.\n"
"\n"
"Presione Aceptar para reiniciar su sistema."

# ../autopart.py:846
# ../autopart.py:853
# ../autopart.py:853
#: ../autopart.py:1351
msgid "Requested Logical Volume Does Not Exist"
msgstr "El volumen lógico requerido no existe"

# ../autopart.py:847
# ../autopart.py:854
# ../autopart.py:854
#: ../autopart.py:1352
#, python-format
msgid ""
"Unable to locate logical volume %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""
"Incapaz de localizar el volumen lógico %s para usarla para %s.\n"
"\n"
"Presione 'Aceptar' para reiniciar su sistema."

# ../iw/partition_gui.py:1578 ../textw/partition_text.py:1052
# ../iw/partition_gui.py:1580 ../textw/partition_text.py:1052
# ../iw/partition_gui.py:1588 ../textw/partition_text.py:1063
#: ../autopart.py:1478 ../autopart.py:1525
msgid "Automatic Partitioning Errors"
msgstr "Errores de Particionamiento Automático"

# ../autopart.py:881
# ../autopart.py:888
# ../autopart.py:888
#: ../autopart.py:1479
#, python-format
msgid ""
"The following errors occurred with your partitioning:\n"
"\n"
"%s\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""
"Se han producido los siguientes errores con su particionamiento:\n"
"\n"
"%s\n"
"\n"
"Presione 'Aceptar' para reiniciar su sistema."

# ../autopart.py:890
# ../autopart.py:897
# ../autopart.py:897
#: ../autopart.py:1489
msgid "Warnings During Automatic Partitioning"
msgstr "Aviso durante la partición automática"

# ../autopart.py:891
# ../autopart.py:898
# ../autopart.py:898
#: ../autopart.py:1490
#, python-format
msgid ""
"Following warnings occurred during automatic partitioning:\n"
"\n"
"%s"
msgstr ""
"Durante el particionamiento automático se han producido los siguientes\n"
"avisos:\n"
"\n"
"%s"

# ../autopart.py:847
# ../autopart.py:854
# ../autopart.py:854
#: ../autopart.py:1504 ../autopart.py:1521
msgid ""
"\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""
"\n"
"\n"
"Presione 'Aceptar' para reiniciar su sistema."

# ../autopart.py:903 ../iw/partition_gui.py:1268
# ../textw/partition_text.py:163
# ../autopart.py:910 ../iw/partition_gui.py:1270
# ../textw/partition_text.py:163
# ../autopart.py:910 ../iw/partition_gui.py:1275
# ../textw/partition_text.py:163
#: ../autopart.py:1505 ../iw/partition_gui.py:997
#: ../textw/partition_text.py:228
msgid "Error Partitioning"
msgstr "Error de particionamiento"

# ../autopart.py:904
# ../autopart.py:911
# ../autopart.py:911
#: ../autopart.py:1506
#, python-format
msgid ""
"Could not allocate requested partitions: \n"
"\n"
"%s.%s"
msgstr ""
"No se han podido asignar las particiones requeridas: \n"
"\n"
"%s.%s"

#: ../autopart.py:1523
msgid ""
"\n"
"\n"
"Press 'OK' to choose a different partitioning option."
msgstr ""
"\n"
"\n"
"Presione Aceptar para elegir una opción de particionado diferente."

#: ../autopart.py:1526
#, python-format
msgid ""
"The following errors occurred with your partitioning:\n"
"\n"
"%s\n"
"\n"
"This can happen if there is not enough space on your hard drive(s) for the "
"installation.%s"
msgstr ""
"Se produjeron los siguientes errores con su particionamiento:\n"
"\n"
"%s\n"
"\n"
"Esto puede suceder cuando no hay suficiente espacio en su unidad(es) de "
"disco duro para la instalación.%s"

#: ../autopart.py:1537
msgid "Unrecoverable Error"
msgstr "Error irrecuperable"

#: ../autopart.py:1538
msgid "Your system will now be rebooted."
msgstr "Ahora se reinicará su sistema."

# ../autopart.py:938 ../harddrive.py:233 ../iw/bootloader_gui.py:58
# ../iw/bootloaderpassword_gui.py:29 ../iw/partition_gui.py:1273
# ../iw/partition_gui.py:1596 ../iw/upgrade_swap_gui.py:169
# ../iw/upgrade_swap_gui.py:177 ../iw/upgrade_swap_gui.py:184
# ../partitioning.py:675 ../partitioning.py:1378
# ../textw/bootloader_text.py:128 ../textw/bootloader_text.py:424
# ../textw/partition_text.py:167 ../textw/upgrade_text.py:172
# ../upgrade.py:235 ../upgrade.py:328 ../upgrade.py:345
# ../autopart.py:945 ../harddrive.py:233 ../iw/bootloader_gui.py:58
# ../iw/bootloaderpassword_gui.py:29 ../iw/partition_gui.py:1275
# ../iw/partition_gui.py:1598 ../iw/upgrade_swap_gui.py:169
# ../iw/upgrade_swap_gui.py:177 ../iw/upgrade_swap_gui.py:184
# ../partitioning.py:691 ../partitioning.py:1398
# ../textw/bootloader_text.py:128 ../textw/bootloader_text.py:424
# ../textw/partition_text.py:167 ../textw/upgrade_text.py:172
# ../upgrade.py:240 ../upgrade.py:342 ../upgrade.py:359
# ../autopart.py:945 ../harddrive.py:233 ../iw/bootloader_gui.py:58
# ../iw/bootloaderpassword_gui.py:29 ../iw/partition_gui.py:1280
# ../iw/partition_gui.py:1606 ../iw/upgrade_swap_gui.py:171
# ../iw/upgrade_swap_gui.py:179 ../iw/upgrade_swap_gui.py:186
# ../partitioning.py:694 ../partitioning.py:1401
# ../textw/bootloader_text.py:128 ../textw/bootloader_text.py:429
# ../textw/partition_text.py:167 ../textw/upgrade_text.py:172
# ../upgrade.py:240 ../upgrade.py:349 ../upgrade.py:366
#: ../autopart.py:1685 ../bootloader.py:197 ../image.py:435
#: ../partedUtils.py:304 ../partedUtils.py:334 ../partedUtils.py:1032
#: ../partedUtils.py:1172 ../upgrade.py:390 ../yuminstall.py:1328
#: ../iw/blpasswidget.py:145 ../iw/bootloader_advanced_gui.py:41
#: ../iw/task_gui.py:89 ../iw/upgrade_swap_gui.py:188
#: ../iw/upgrade_swap_gui.py:196 ../iw/upgrade_swap_gui.py:203
#: ../textw/bootloader_text.py:124 ../textw/bootloader_text.py:449
#: ../textw/partition_text.py:232 ../textw/upgrade_text.py:181
#: ../loader2/loader.c:405
msgid "Warning"
msgstr "Aviso"

# ../autopart.py:944
# ../autopart.py:951
# ../autopart.py:951
#: ../autopart.py:1691
msgid ""
"Automatic Partitioning sets partitions based on the selected installation "
"type. You also can customize the partitions once they have been created.\n"
"\n"
"The manual disk partitioning tool, Disk Druid, allows you to create "
"partitions in an interactive environment. You can set the file system types, "
"mount points, partition sizes, and more."
msgstr ""
"El particionamiento automático configura su particionamiento basándose en el "
"tipo de instalación. También puede personalizar las particiones una vez que "
"hayan sido creadas.\n"
"\n"
"La herramienta de particionamiento manual del disco, Disk Druid, le permite "
"configurar las particiones en un entorno interactivo. Puede configurar los "
"tipos de sistemas de archivos, puntos de montaje, tamaño y mucho más."

# ../autopart.py:960
# ../autopart.py:967
# ../autopart.py:967
#: ../autopart.py:1702
msgid ""
"Before automatic partitioning can be set up by the installation program, you "
"must choose how to use the space on your hard drives."
msgstr ""
"Antes que el particionamiento automático sea activado por el programa de "
"instalación, debe escoger el modo en el que desea utilizar el espacio en su"
"(s)disco(s) duro(s)."

# ../autopart.py:965
# ../autopart.py:972
# ../autopart.py:972
#: ../autopart.py:1707
msgid "Remove all partitions on this system"
msgstr "Eliminar todas las particiones de este sistema"

# ../autopart.py:966
# ../autopart.py:973
# ../autopart.py:973
#: ../autopart.py:1708
msgid "Remove all Linux partitions on this system"
msgstr "Eliminar todas la particiones Linux en este sistema"

# ../autopart.py:967
# ../autopart.py:974
# ../autopart.py:974
#: ../autopart.py:1709
msgid "Keep all partitions and use existing free space"
msgstr "Guarde todas las particiones y use el espacio libre existente"

# ../autopart.py:969
# ../autopart.py:976
# ../autopart.py:976
#: ../autopart.py:1711
#, python-format
msgid ""
"You have chosen to remove all partitions (ALL DATA) on the following drives:%"
"s\n"
"Are you sure you want to do this?"
msgstr ""
"Ha seleccionado borrar todas las particiones (TODOS LOS DATOS) en las "
"siguientes unidades: %s\n"
"¿Está seguro que quiere hacerlo?"

# ../autopart.py:974
# ../autopart.py:981
# ../autopart.py:981
#: ../autopart.py:1715
#, python-format
msgid ""
"You have chosen to remove all Linux partitions (and ALL DATA on them) on the "
"following drives:%s\n"
"Are you sure you want to do this?"
msgstr ""
"Ha seleccionado borrar todas las particiones Linux (y TODOS LOS DATOS en "
"ellas) en las siguientes unidades: %s\n"
"¿Está seguro que quiere hacerlo?"

# ../packages.py:508
# ../packages.py:515
# ../packages.py:516
#: ../backend.py:203
#, python-format
msgid "Upgrading %s\n"
msgstr "Actualizando %s\n"

# ../installclass.py:27
# ../installclass.py:27
# ../installclass.py:28
#: ../backend.py:205
#, python-format
msgid "Installing %s\n"
msgstr "Instalando %s\n"

# ../bootloader.py:656
# ../bootloader.py:682
# ../bootloader.py:710
#: ../bootloader.py:129
msgid "Bootloader"
msgstr "Gestor de arranque"

# ../bootloader.py:656
# ../bootloader.py:682
# ../bootloader.py:710
#: ../bootloader.py:129
msgid "Installing bootloader..."
msgstr "Instalación del gestor de arranque..."

#: ../bootloader.py:198
msgid ""
"No kernel packages were installed on your system.  Your boot loader "
"configuration will not be changed."
msgstr ""
"No se ha instalado ningún paquete del kernel en su sistema. La configuración "
"del gestor de arranque no cambiará. "

# ../iw/progress_gui.py:256
# ../iw/progress_gui.py:256
# ../iw/progress_gui.py:256
#: ../cmdline.py:44
msgid "Completed"
msgstr "Completado"

# ../iw/progress_gui.py:228
# ../iw/progress_gui.py:228
# ../iw/progress_gui.py:228
#: ../cmdline.py:52
msgid "In progress...   "
msgstr "En progreso..."

#: ../cmdline.py:66 ../cmdline.py:86
msgid "Can't have a question in command line mode!"
msgstr "No puede colocar una pregunta en el modo de línea de comandos!"

#: ../cmdline.py:74 ../gui.py:937 ../text.py:398
#, python-format
msgid ""
"The following error was found while parsing your kickstart configuration:\n"
"\n"
"%s"
msgstr ""
"Se encontró el error siguiente durante el análisis de su configuración "
"kickstart:\n"
"\n"
"%s"

#: ../cmdline.py:105
msgid "Parted exceptions can't be handled in command line mode!"
msgstr ""
"No se pueden manejar excepciones de Parted en modo de línea de comandos!"

#: ../cmdline.py:150
#, python-format
msgid "Done [%d/%d]"
msgstr "Listo [%d/%d]"

# ../packages.py:510
# ../packages.py:517
# ../packages.py:518
#: ../cmdline.py:156
#, python-format
msgid "Installing %s-%s-%s... "
msgstr "Instalación de %s-%s-%s..."

# ../gui.py:196 ../text.py:257
# ../gui.py:196 ../text.py:257
# ../gui.py:196 ../text.py:258
#: ../constants.py:69
#, python-format
msgid ""
"An unhandled exception has occurred.  This is most likely a bug.  Please "
"save a copy of the detailed exception and file a bug report against anaconda "
"at %s"
msgstr ""
"Se ha producido una situación excepcional. Se trata probablemente de un "
"error. Por favor copie el texto completo de esta excepción y registre un "
"informe detallado del error de anaconda en %s"

# ../comps/comps-master:477
# ../exception.py:150
# ../exception.py:150
# ../exception.py:150
#: ../exception.py:400 ../exception.py:417
msgid "Dump Written"
msgstr "Escrito vacío"

# ../exception.py:151
# ../exception.py:151
# ../exception.py:151
#: ../exception.py:401
msgid ""
"Your system's state has been successfully written to the floppy. Your system "
"will now be rebooted."
msgstr ""
"Se ha grabado exitosamente el estado de su sistema en el disco. Su sistema "
"será ahora reiniciado. "

# ../iw/partition_gui.py:1516
# ../iw/partition_gui.py:1518
# ../iw/partition_gui.py:1526
#: ../exception.py:404 ../exception.py:421 ../fsset.py:1847 ../fsset.py:2578
#: ../gui.py:942 ../gui.py:1092 ../harddrive.py:80 ../image.py:93
#: ../image.py:445 ../image.py:519 ../packages.py:344 ../partedUtils.py:1183
#: ../iw/confirm_gui.py:32 ../textw/confirm_text.py:38
#: ../textw/confirm_text.py:66
msgid "_Reboot"
msgstr "_Reiniciar"

# ../comps/comps-master:477
# ../exception.py:150
# ../exception.py:150
# ../exception.py:150
#: ../exception.py:409 ../exception.py:426
msgid "Dump Not Written"
msgstr "Vaciado no escrito"

#: ../exception.py:410
msgid "There was a problem writing the system state to the floppy."
msgstr "Hubo un problema al escribir el estado del sistema al disquete."

# ../exception.py:151
# ../exception.py:151
# ../exception.py:151
#: ../exception.py:418
msgid ""
"Your system's state has been successfully written to the remote host.  Your "
"system will now be rebooted."
msgstr ""
"El estado de su sistema ha sido grabado satisfactoriamente en el host "
"remoto. Su sistema será reiniciado en estos momentos. "

#: ../exception.py:427
msgid "There was a problem writing the system state to the remote host."
msgstr "Hubo un problema al escribir el estado del sistema en el host remoto."

# ../fsset.py:141
# ../fsset.py:144
# ../fsset.py:145
#: ../fsset.py:222
msgid "Checking for Bad Blocks"
msgstr "Controlar los bloques dañados"

# ../fsset.py:142
# ../fsset.py:145
# ../fsset.py:146
#: ../fsset.py:223
#, python-format
msgid "Checking for bad blocks on /dev/%s..."
msgstr "Controlar los bloques dañados en /dev/%s..."

# ../floppy.py:62 ../floppy.py:85 ../fsset.py:714 ../fsset.py:733
# ../fsset.py:778 ../fsset.py:798 ../fsset.py:827 ../fsset.py:847
# ../harddrive.py:171 ../image.py:65 ../image.py:142 ../loader/devices.c:259
# ../loader/devices.c:266 ../loader/devices.c:435 ../loader/devices.c:480
# ../loader/devices.c:500 ../loader/lang.c:27 ../loader/lang.c:102
# ../loader/loader.c:478 ../loader/loader.c:535 ../loader/loader.c:912
# ../loader/loader.c:967 ../loader/loader.c:1140 ../loader/loader.c:1145
# ../loader/loader.c:1185 ../loader/loader.c:1244 ../loader/loader.c:2207
# ../loader/loader.c:2237 ../loader/loader.c:2315 ../loader/loader.c:2524
# ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:79
# ../loader/urls.c:89 ../loader/urls.c:97 ../loader/urls.c:236
# ../loader/urls.c:241 ../packages.py:237 ../partitioning.py:1235
# ../partitioning.py:1266 ../textw/upgrade_text.py:160
# ../textw/upgrade_text.py:167 ../textw/upgrade_text.py:189 ../upgrade.py:279
# ../upgrade.py:291
# ../floppy.py:62 ../floppy.py:85 ../fsset.py:345 ../fsset.py:751
# ../fsset.py:770 ../fsset.py:815 ../fsset.py:835 ../fsset.py:869
# ../fsset.py:912 ../harddrive.py:171 ../image.py:65 ../image.py:142
# ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:435
# ../loader/devices.c:480 ../loader/devices.c:500 ../loader/lang.c:27
# ../loader/lang.c:102 ../loader/loader.c:478 ../loader/loader.c:535
# ../loader/loader.c:912 ../loader/loader.c:967 ../loader/loader.c:1140
# ../loader/loader.c:1145 ../loader/loader.c:1185 ../loader/loader.c:1244
# ../loader/loader.c:2207 ../loader/loader.c:2237 ../loader/loader.c:2315
# ../loader/loader.c:2524 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131
# ../loader/urls.c:79 ../loader/urls.c:89 ../loader/urls.c:97
# ../loader/urls.c:236 ../loader/urls.c:241 ../packages.py:236
# ../partitioning.py:1255 ../partitioning.py:1286
# ../textw/upgrade_text.py:160 ../textw/upgrade_text.py:167
# ../textw/upgrade_text.py:189 ../textw/xconfig_text.py:422 ../upgrade.py:293
# ../upgrade.py:305
# ../floppy.py:62 ../floppy.py:85 ../fsset.py:371 ../fsset.py:783
# ../fsset.py:802 ../fsset.py:847 ../fsset.py:867 ../fsset.py:901
# ../fsset.py:944 ../harddrive.py:171 ../image.py:65 ../image.py:142
# ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:435
# ../loader/devices.c:480 ../loader/devices.c:500 ../loader/lang.c:27
# ../loader/lang.c:102 ../loader/loader.c:478 ../loader/loader.c:535
# ../loader/loader.c:912 ../loader/loader.c:967 ../loader/loader.c:1140
# ../loader/loader.c:1145 ../loader/loader.c:1185 ../loader/loader.c:1244
# ../loader/loader.c:2207 ../loader/loader.c:2237 ../loader/loader.c:2315
# ../loader/loader.c:2524 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131
# ../loader/urls.c:79 ../loader/urls.c:89 ../loader/urls.c:97
# ../loader/urls.c:236 ../loader/urls.c:241 ../packages.py:237
# ../partitioning.py:1258 ../partitioning.py:1289
# ../textw/upgrade_text.py:160 ../textw/upgrade_text.py:167
# ../textw/upgrade_text.py:190 ../textw/xconfig_text.py:422 ../upgrade.py:293
# ../upgrade.py:305
#: ../fsset.py:672 ../fsset.py:1523 ../fsset.py:1554 ../fsset.py:1615
#: ../fsset.py:1626 ../fsset.py:1680 ../fsset.py:1691 ../fsset.py:1731
#: ../fsset.py:1789 ../fsset.py:1855 ../fsset.py:1874 ../image.py:135
#: ../image.py:176 ../image.py:308 ../partIntfHelpers.py:407
#: ../urlinstall.py:110 ../urlinstall.py:208 ../yuminstall.py:763
#: ../yuminstall.py:883 ../yuminstall.py:899 ../yuminstall.py:1173
#: ../iw/autopart_type.py:194 ../iw/netconfig_dialog.py:213
#: ../iw/osbootwidget.py:216 ../iw/osbootwidget.py:225
#: ../iw/raid_dialog_gui.py:622 ../iw/raid_dialog_gui.py:661
#: ../iw/task_gui.py:79 ../iw/task_gui.py:146 ../textw/grpselect_text.py:116
#: ../textw/partition_text.py:1670 ../textw/partition_text.py:1676
#: ../textw/partition_text.py:1698 ../textw/upgrade_text.py:169
#: ../textw/upgrade_text.py:176 ../loader2/cdinstall.c:141
#: ../loader2/cdinstall.c:463 ../loader2/driverdisk.c:338
#: ../loader2/driverdisk.c:376 ../loader2/driverdisk.c:404
#: ../loader2/driverdisk.c:414 ../loader2/driverdisk.c:479
#: ../loader2/hdinstall.c:106 ../loader2/hdinstall.c:157
#: ../loader2/hdinstall.c:371 ../loader2/hdinstall.c:476
#: ../loader2/hdinstall.c:519 ../loader2/hdinstall.c:532
#: ../loader2/kickstart.c:284 ../loader2/lang.c:106 ../loader2/loader.c:362
#: ../loader2/loader.c:841 ../loader2/mediacheck.c:329
#: ../loader2/mediacheck.c:387 ../loader2/method.c:155 ../loader2/method.c:373
#: ../loader2/method.c:458 ../loader2/nfsinstall.c:125
#: ../loader2/nfsinstall.c:205 ../loader2/nfsinstall.c:213
#: ../loader2/telnetd.c:87 ../loader2/urlinstall.c:79
#: ../loader2/urlinstall.c:151 ../loader2/urlinstall.c:164
#: ../loader2/urls.c:347 ../loader2/urls.c:352
msgid "Error"
msgstr "Error"

# ../fsset.py:346
# ../fsset.py:372
#: ../fsset.py:673
#, python-format
msgid ""
"An error occurred migrating %s to ext3.  It is possible to continue without "
"migrating this file system if desired.\n"
"\n"
"Would you like to continue without migrating %s?"
msgstr ""
"Se ha producido un error al migrar %s a ext3.  Es posible continuar sin "
"migrar este sistema de ficheros si así lo desea.\n"
"\n"
"¿Desea continuar sin migrar %s?"

# ../iw/partition_gui.py:724 ../textw/partition_text.py:147
# ../iw/partition_gui.py:724 ../textw/partition_text.py:147
# ../iw/partition_gui.py:724 ../textw/partition_text.py:147
#: ../fsset.py:1430
msgid "RAID Device"
msgstr "Dispositivo RAID"

#: ../fsset.py:1434 ../fsset.py:1440
msgid "Apple Bootstrap"
msgstr "Secuencia de arranque Apple"

#: ../fsset.py:1445 ../partitions.py:900
msgid "PPC PReP Boot"
msgstr "PPC PReP Boot"

# ../fsset.py:656 ../iw/silo_gui.py:184 ../textw/silo_text.py:76
# ../fsset.py:693 ../iw/silo_gui.py:184 ../textw/silo_text.py:76
# ../fsset.py:725 ../iw/silo_gui.py:184 ../textw/silo_text.py:76
#: ../fsset.py:1448
msgid "First sector of boot partition"
msgstr "Primer sector de partición de inicio "

# ../fsset.py:655 ../iw/silo_gui.py:181 ../textw/silo_text.py:75
# ../fsset.py:692 ../iw/silo_gui.py:181 ../textw/silo_text.py:75
# ../fsset.py:724 ../iw/silo_gui.py:181 ../textw/silo_text.py:75
#: ../fsset.py:1449
msgid "Master Boot Record (MBR)"
msgstr "Master Boot Record (MBR)"

# ../fsset.py:715
# ../fsset.py:752
# ../fsset.py:784
#: ../fsset.py:1524
#, python-format
msgid ""
"An error occurred trying to initialize swap on device %s.  This problem is "
"serious, and the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Se ha producido un error grave al intentar iniciar el dispositivo swap %s. "
"Este problema es serio y la instalación no puede seguir su curso.\n"
"\n"
"Pulse Intro para arrancar su sistema."

# ../rescue.py:99 ../rescue.py:101 ../textw/bootdisk_text.py:67
# ../textw/bootdisk_text.py:89 ../textw/silo_text.py:36
# ../textw/upgrade_text.py:118
# ../rescue.py:99 ../rescue.py:101 ../textw/bootdisk_text.py:67
# ../textw/bootdisk_text.py:89 ../textw/silo_text.py:36
# ../textw/upgrade_text.py:118
# ../rescue.py:99 ../rescue.py:101 ../textw/bootdisk_text.py:68
# ../textw/bootdisk_text.py:90 ../textw/silo_text.py:36
# ../textw/upgrade_text.py:118
#: ../fsset.py:1553 ../packages.py:288 ../rescue.py:287 ../rescue.py:289
#: ../textw/upgrade_text.py:127 ../loader2/cdinstall.c:258
#: ../loader2/cdinstall.c:261 ../loader2/method.c:420
msgid "Skip"
msgstr "Omitir"

# ../iw/partition_gui.py:1516
# ../iw/partition_gui.py:1518
# ../iw/partition_gui.py:1526
#: ../fsset.py:1553 ../upgrade.py:99 ../textw/complete_text.py:47
msgid "Reboot"
msgstr "Reiniciar"

#: ../fsset.py:1574
#, python-format
msgid ""
"The swap device:\n"
"\n"
"     /dev/%s\n"
"\n"
"is a version 0 Linux swap partition. If you want to use this device, you "
"must reformat as a version 1 Linux swap partition. If you skip it, the "
"installer will ignore it during the installation."
msgstr ""
"El dispositivo swap:\n"
"\n"
"     /dev/%s\n"
"\n"
"es una partición Linux swap versión 0. Si desea utilizar este dispositivo,"
"debe formatearlo como un partición Linux swap versión 1. Si decide omitirlo, "
"el instalador lo ignorará durante la instalación."

# ../iw/partition_gui.py:1533
# ../iw/partition_gui.py:1535
# ../iw/partition_gui.py:1543
#: ../fsset.py:1581
msgid "Reformat"
msgstr "Formatear"

#: ../fsset.py:1585
#, python-format
msgid ""
"The swap device:\n"
"\n"
"     /dev/%s\n"
"\n"
"in your /etc/fstab file is currently in use as a software suspend partition, "
"which means your system is hibernating. To perform an upgrade, please shut "
"down your system rather than hibernating it."
msgstr ""
"El dispositivo swap:\n"
"\n"
"     /dev/%s\n"
"\n"
"en su archivo /etc/fstab está siendo actualmente usado como una partición de "
"suspensión de software, lo cual quiere decir que su sistema está hibernando. "
"Para ejecutar una actualización, por favor apague su sistema en vez de "
"suspenderlo."

#: ../fsset.py:1593
#, python-format
msgid ""
"The swap device:\n"
"\n"
"     /dev/%s\n"
"\n"
"in your /etc/fstab file is currently in use as a software suspend partition, "
"which means your system is hibernating. If you are performing a new install, "
"make sure the installer is set to to format all swap partitions."
msgstr ""
"El dispositivo swap:\n"
"\n"
"     /dev/%s\n"
"\n"
"en su archivo /etc/fstab está siendo actualmente usado como una partición de "
"suspensión de software, lo cual quiere decir que su sistema está hibernando. "
"Si está ejecutando una nueva instalación, asegúrese de establecer el "
"instalador para que formatee todas las particiones swap."

#: ../fsset.py:1603
msgid ""
"\n"
"\n"
"Choose Skip if you want the installer to ignore this partition during the "
"upgrade.  Choose Format to reformat the partition as swap space.  Choose "
"Reboot to restart the system."
msgstr ""
"\n"
"\n"
"Escoja Omitir si desea que el instalador ignore esta partición durante la "
"actualización.  Escoja Formatear para dar formato a la partición como "
"espacio swap.  Escoja reiniciar para reiniciar el sistema."

# ../iw/partition_gui.py:1533
# ../iw/partition_gui.py:1535
# ../iw/partition_gui.py:1543
#: ../fsset.py:1609 ../iw/partition_gui.py:368
msgid "Format"
msgstr "Formato"

# ../fsset.py:734
# ../fsset.py:771
# ../fsset.py:803
#: ../fsset.py:1616
#, python-format
msgid ""
"Error enabling swap device %s: %s\n"
"\n"
"The /etc/fstab on your upgrade partition does not reference a valid swap "
"partition.\n"
"\n"
"Press OK to reboot your system."
msgstr ""
"Error al habilitar el dispositivo swap %s: %s\n"
"\n"
"El /etc/fstab en su partición de actualización no hace referencia a una "
"partición swap válida.\n"
"\n"
"Presione Aceptar para volver a arrancar su sistema"

# ../fsset.py:734
# ../fsset.py:771
# ../fsset.py:803
#: ../fsset.py:1627
#, python-format
msgid ""
"Error enabling swap device %s: %s\n"
"\n"
"This most likely means this swap partition has not been initialized.\n"
"\n"
"Press OK to reboot your system."
msgstr ""
"Error al habilitar el dispositivo swap %s: %s\n"
"\n"
"Es probable que el error se deba a que esta partición swap no ha sido "
"inicializada\n"
"\n"
"Presione Aceptar para volver a arrancar su sistema"

#: ../fsset.py:1681
#, python-format
msgid ""
"Bad blocks have been detected on device /dev/%s. We do not recommend you use "
"this device.\n"
"\n"
"Press <Enter> to reboot your system"
msgstr ""
"Se han detectado bloques dañados en el dispositivo /dev/%s. No le "
"recomendamos que use este dispositivo.\n"
"\n"
"Pulse <Intro> para rearrancar su sistema "

# ../fsset.py:779
# ../fsset.py:816
# ../fsset.py:848
#: ../fsset.py:1692
#, python-format
msgid ""
"An error occurred searching for bad blocks on %s.  This problem is serious, "
"and the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Se ha producido un error grave en la búsqueda de bloques dañados en %s. "
"Constituye un problema serio que impide continuar con la instalación.\n"
"\n"
"Pulse <Intro> para reiniciar su sistema."

# ../fsset.py:799
# ../fsset.py:836
# ../fsset.py:868
#: ../fsset.py:1732
#, python-format
msgid ""
"An error occurred trying to format %s.  This problem is serious, and the "
"install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Se ha producido un error grave al intentar formatear %s. El problema es "
"serio y la instalación no se puede llevar a cabo.\n"
"\n"
"Pulse <Intro> para reiniciar su sistema."

# ../fsset.py:828
# ../fsset.py:870
# ../fsset.py:902
#: ../fsset.py:1790
#, python-format
msgid ""
"An error occurred trying to migrate %s.  This problem is serious, and the "
"install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Se ha producido un error grave al migrar %s. Debido a la gravedad del "
"problema no se puede llevar a cabo la instalación.\n"
"\n"
"Pulse <Intro> para volver a arrancar su sistema."

# ../textw/network_text.py:132
# ../fsset.py:890 ../fsset.py:899
# ../fsset.py:922 ../fsset.py:931
#: ../fsset.py:1816 ../fsset.py:1825
msgid "Invalid mount point"
msgstr "Punto de montaje no válido"

# ../fsset.py:828
# ../fsset.py:891
# ../fsset.py:923
#: ../fsset.py:1817
#, python-format
msgid ""
"An error occurred when trying to create %s.  Some element of this path is "
"not a directory. This is a fatal error and the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Se ha producido un error al intentar crear %s.  Algún elemento de este path "
"no es un directorio.  Este es un error fatal y la instalación no puede "
"continuar.\n"
"\n"
"Pulse <Intro> para volver a arrancar su sistema."

# ../fsset.py:828
# ../fsset.py:900
# ../fsset.py:932
#: ../fsset.py:1826
#, python-format
msgid ""
"An error occurred when trying to create %s: %s.  This is a fatal error and "
"the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Se ha producido un error al intentar crear %s: %s.  Este es un error fatal, "
"y la instalación no puede continuar.\n"
"\n"
"Pulse <Intro> para volver a arrancar su sistema."

# ../gui.py:476
# ../gui.py:476
# ../gui.py:476
#: ../fsset.py:1839
msgid "Unable to mount filesystem"
msgstr "No se pudo montar el sistema de archivo"

#: ../fsset.py:1840
#, python-format
msgid ""
"An error occurred mounting device %s as %s.  You may continue installation, "
"but there may be problems."
msgstr ""
"Ocurrió un error cuando se montaba el dispositivo %s como %s. Puede "
"continuar la instalación, pero pueden haber problemas."

# ../rescue.py:99
# ../rescue.py:99
# ../rescue.py:99
#: ../fsset.py:1848 ../image.py:93 ../image.py:446 ../kickstart.py:933
#: ../kickstart.py:969 ../partedUtils.py:1184 ../yuminstall.py:879
#: ../iw/partition_gui.py:1011
msgid "_Continue"
msgstr "_Continuar"

# ../fsset.py:848
# ../fsset.py:913
# ../fsset.py:945
#: ../fsset.py:1856
#, python-format
msgid ""
"Error mounting device %s as %s: %s\n"
"\n"
"This most likely means this partition has not been formatted.\n"
"\n"
"Press OK to reboot your system."
msgstr ""
"Error al montar el dispositivo %s como %s: %s\n"
"\n"
"Es probable que el error se deba a que esta partición no haya sido "
"formateada\n"
"\n"
"Presione Aceptar para volver a arrancar su sistema"

# ../fsset.py:848
# ../fsset.py:913
# ../fsset.py:945
#: ../fsset.py:1875
msgid ""
"Error finding / entry.\n"
"\n"
"This is most likely means that your fstab is incorrect.\n"
"\n"
"Press OK to reboot your system."
msgstr ""
"Error al buscar entrada /\n"
"\n"
"Es probable que el error se deba a que su fstab es incorrecto\n"
"\n"
"Presione Aceptar para volver a arrancar su sistema"

#: ../fsset.py:2570
msgid "Duplicate Labels"
msgstr "Duplicar Etiquetas"

#: ../fsset.py:2571
#, python-format
msgid ""
"Multiple devices on your system are labelled %s.  Labels across devices must "
"be unique for your system to function properly.\n"
"\n"
"Please fix this problem and restart the installation process."
msgstr ""
"Múltiples dispositivos en su sistema están etiquetados a %s. Las etiquetas "
"entre dispositivos deben ser únicas para que su sistema funcione "
"apropiadamente.\n"
"\n"
"Por favor repare este problema y reinicie el proceso de instalación."

# ../fsset.py:1369
# ../fsset.py:1453
# ../fsset.py:1488
#: ../fsset.py:2831
msgid "Formatting"
msgstr "Formateo"

# ../fsset.py:1370
# ../fsset.py:1454
# ../fsset.py:1489
#: ../fsset.py:2832
#, python-format
msgid "Formatting %s file system..."
msgstr "Formateo del sistema de ficheros %s ..."

#: ../gui.py:105
msgid "An error occurred copying the screenshots over."
msgstr "Se ha producido un error al copiar las pantallas."

#: ../gui.py:116
msgid "Screenshots Copied"
msgstr "Fotos de pantallas copiadas"

#: ../gui.py:117
msgid ""
"The screenshots have been saved into the directory:\n"
"\n"
"\t/root/anaconda-screenshots/\n"
"\n"
"You can access these when you reboot and login as root."
msgstr ""
"Las fotos de pantallas han sido guardadas en el directorio:\n"
"\n"
"\t/root/anaconda-screenshots/\n"
"\n"
"Puede accesarlas cuando reinicie su sistema y se conecte como usuario root."

#: ../gui.py:160
msgid "Saving Screenshot"
msgstr "Guardando foto de pantalla"

#: ../gui.py:161
#, python-format
msgid "A screenshot named '%s' has been saved."
msgstr "Se ha guardado una foto de pantalla llamada '%s'."

#: ../gui.py:164
msgid "Error Saving Screenshot"
msgstr "Error guardando la foto de pantalla"

#: ../gui.py:165
msgid ""
"An error occurred while saving the screenshot.  If this occurred during "
"package installation, you may need to try several times for it to succeed."
msgstr ""
"Se produjo un error mientras se guardaba la foto de pantalla. Si esto ocurre "
"durante la instalación de un paquete, puede necesitar intentarlo varias "
"veces para que se complete con éxito. "

# ../gui.py:108 ../text.py:279
# ../gui.py:108 ../text.py:279
# ../gui.py:108 ../text.py:280
#: ../gui.py:230 ../text.py:435
msgid "Fix"
msgstr "Fijar"

# ../gui.py:109 ../iw/partition_gui.py:498 ../iw/partition_gui.py:655
# ../iw/partition_gui.py:718 ../iw/welcome_gui.py:97 ../loader/devices.c:230
# ../loader/loader.c:816 ../loader/net.c:889 ../text.py:280
# ../textw/bootdisk_text.py:25 ../textw/bootloader_text.py:76
# ../textw/constants_text.py:32 ../textw/upgrade_text.py:251
# ../gui.py:109 ../iw/partition_gui.py:498 ../iw/partition_gui.py:655
# ../iw/partition_gui.py:718 ../iw/welcome_gui.py:97 ../loader/devices.c:230
# ../loader/loader.c:816 ../loader/net.c:889 ../text.py:280
# ../textw/bootdisk_text.py:25 ../textw/bootloader_text.py:76
# ../textw/constants_text.py:32 ../textw/upgrade_text.py:251
# ../gui.py:109 ../iw/partition_gui.py:498 ../iw/partition_gui.py:655
# ../iw/partition_gui.py:718 ../iw/welcome_gui.py:97 ../loader/devices.c:230
# ../loader/loader.c:816 ../loader/net.c:889 ../text.py:281
# ../textw/bootdisk_text.py:26 ../textw/bootloader_text.py:76
# ../textw/constants_text.py:32 ../textw/upgrade_text.py:252
#: ../gui.py:231 ../rescue.py:203 ../text.py:436 ../upgrade.py:99
#: ../textw/bootloader_text.py:69 ../textw/constants_text.py:48
#: ../loader2/driverdisk.c:520 ../loader2/driverdisk.c:531
#: ../loader2/hdinstall.c:265 ../loader2/loader.c:405
msgid "Yes"
msgstr "Si"

# ../gui.py:110 ../iw/partition_gui.py:499 ../iw/partition_gui.py:657
# ../iw/partition_gui.py:720 ../iw/welcome_gui.py:100 ../loader/devices.c:231
# ../loader/net.c:889 ../text.py:281 ../textw/bootdisk_text.py:25
# ../textw/bootdisk_text.py:54 ../textw/bootloader_text.py:76
# ../textw/constants_text.py:36 ../textw/upgrade_text.py:251
# ../textw/upgrade_text.py:258
# ../gui.py:110 ../iw/partition_gui.py:499 ../iw/partition_gui.py:657
# ../iw/partition_gui.py:720 ../iw/welcome_gui.py:100 ../loader/devices.c:231
# ../loader/net.c:889 ../text.py:281 ../textw/bootdisk_text.py:25
# ../textw/bootdisk_text.py:54 ../textw/bootloader_text.py:76
# ../textw/constants_text.py:36 ../textw/upgrade_text.py:251
# ../textw/upgrade_text.py:258
# ../gui.py:110 ../iw/partition_gui.py:499 ../iw/partition_gui.py:657
# ../iw/partition_gui.py:720 ../iw/welcome_gui.py:100 ../loader/devices.c:231
# ../loader/net.c:889 ../text.py:282 ../textw/bootdisk_text.py:26
# ../textw/bootdisk_text.py:55 ../textw/bootloader_text.py:76
# ../textw/constants_text.py:36 ../textw/upgrade_text.py:252
# ../textw/upgrade_text.py:259
#: ../gui.py:232 ../rescue.py:203 ../rescue.py:205 ../text.py:437
#: ../textw/bootloader_text.py:69 ../textw/constants_text.py:52
#: ../loader2/driverdisk.c:520 ../loader2/driverdisk.c:531
#: ../loader2/loader.c:405
msgid "No"
msgstr "No"

# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:283
# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:283
# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:284
#: ../gui.py:234 ../text.py:439 ../loader2/net.c:91 ../loader2/net.c:316
#: ../loader2/net.c:578 ../loader2/net.c:686 ../loader2/net.c:786
#: ../loader2/net.c:794 ../loader2/net.c:1188 ../loader2/net.c:1194
msgid "Retry"
msgstr "Volver a intentar"

# ../gui.py:113 ../text.py:284
# ../gui.py:113 ../text.py:284
# ../gui.py:113 ../text.py:285
#: ../gui.py:235 ../text.py:440
msgid "Ignore"
msgstr "Ignorar"

# ../gui.py:114 ../iw/account_gui.py:151 ../iw/account_gui.py:162
# ../iw/partition_gui.py:846 ../iw/partition_gui.py:1316
# ../loader/devices.c:238 ../loader/devices.c:532 ../loader/loader.c:2300
# ../loader/pcmcia.c:104 ../text.py:114 ../text.py:115 ../text.py:249
# ../text.py:251 ../text.py:285 ../textw/bootloader_text.py:197
# ../textw/constants_text.py:24 ../textw/silo_text.py:147
# ../textw/silo_text.py:165 ../textw/userauth_text.py:75
# ../textw/welcome_text.py:48 ../textw/welcome_text.py:51
# ../gui.py:114 ../iw/account_gui.py:151 ../iw/account_gui.py:162
# ../iw/partition_gui.py:848 ../iw/partition_gui.py:1318
# ../loader/devices.c:238 ../loader/devices.c:532 ../loader/loader.c:2300
# ../loader/pcmcia.c:104 ../text.py:114 ../text.py:115 ../text.py:249
# ../text.py:251 ../text.py:285 ../textw/bootloader_text.py:197
# ../textw/constants_text.py:24 ../textw/silo_text.py:147
# ../textw/silo_text.py:165 ../textw/userauth_text.py:76
# ../textw/welcome_text.py:48 ../textw/welcome_text.py:51
# ../gui.py:114 ../iw/account_gui.py:151 ../iw/account_gui.py:162
# ../iw/partition_gui.py:849 ../iw/partition_gui.py:1324
# ../loader/devices.c:238 ../loader/devices.c:532 ../loader/loader.c:2300
# ../loader/pcmcia.c:104 ../text.py:115 ../text.py:116 ../text.py:250
# ../text.py:252 ../text.py:286 ../textw/bootloader_text.py:197
# ../textw/constants_text.py:24 ../textw/silo_text.py:147
# ../textw/silo_text.py:165 ../textw/userauth_text.py:76
# ../textw/welcome_text.py:48 ../textw/welcome_text.py:51
#: ../gui.py:236 ../gui.py:770 ../partIntfHelpers.py:237
#: ../partIntfHelpers.py:530 ../text.py:102 ../text.py:103 ../text.py:412
#: ../text.py:414 ../text.py:441 ../iw/bootloader_advanced_gui.py:47
#: ../textw/bootloader_text.py:199 ../textw/constants_text.py:40
#: ../loader2/dirbrowser.c:139 ../loader2/driverdisk.c:274
#: ../loader2/kickstart.c:342 ../loader2/loader.c:351
msgid "Cancel"
msgstr "Cancelar"

# ../loader/loader.c:1483
# ../loader/loader.c:1483
# ../loader/loader.c:1483
#: ../gui.py:594 ../text.py:356
msgid "Installation Key"
msgstr "Llave de instalación"

# ../text.py:265 ../text.py:266
# ../text.py:265 ../text.py:266
# ../text.py:266 ../text.py:267
#: ../gui.py:780 tmp/anaconda.glade.h:2
msgid "_Debug"
msgstr "_Depurar"

# ../loader/kickstart.c:59
# ../loader/kickstart.c:59
# ../loader/kickstart.c:59
#: ../gui.py:939 ../text.py:400
msgid "Error Parsing Kickstart Config"
msgstr "Error al analizar la configuración kickstart"

# ../gui.py:317 ../text.py:247
# ../gui.py:317 ../text.py:247
# ../gui.py:317 ../text.py:248
#: ../gui.py:947 ../text.py:410
msgid ""
"Please insert a floppy now. All contents of the disk will be erased, so "
"please choose your diskette carefully."
msgstr ""
"Por favor, introduzca un disco. El contenido de éste será borrado, de modo "
"que, por favor, elija el disco cuidadosamente."

# ../iw/bootloader_gui.py:353 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:259 ../textw/silo_text.py:207
# ../textw/xconfig_text.py:373 ../textw/xconfig_text.py:380
# ../textw/xconfig_text.py:473 ../textw/xconfig_text.py:474
# ../textw/xconfig_text.py:493 ../textw/xconfig_text.py:494
# ../iw/bootloader_gui.py:353 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:259 ../textw/silo_text.py:207
# ../textw/xconfig_text.py:377 ../textw/xconfig_text.py:384
# ../textw/xconfig_text.py:480 ../textw/xconfig_text.py:481
# ../textw/xconfig_text.py:500 ../textw/xconfig_text.py:501
# ../iw/bootloader_gui.py:353 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:262 ../textw/silo_text.py:207
# ../textw/xconfig_text.py:377 ../textw/xconfig_text.py:384
# ../textw/xconfig_text.py:480 ../textw/xconfig_text.py:481
# ../textw/xconfig_text.py:500 ../textw/xconfig_text.py:501
#: ../gui.py:994
msgid "default:LTR"
msgstr "Por defecto:LTR"

# ../floppy.py:62 ../floppy.py:85 ../fsset.py:714 ../fsset.py:733
# ../fsset.py:778 ../fsset.py:798 ../fsset.py:827 ../fsset.py:847
# ../harddrive.py:171 ../image.py:65 ../image.py:142 ../loader/devices.c:259
# ../loader/devices.c:266 ../loader/devices.c:435 ../loader/devices.c:480
# ../loader/devices.c:500 ../loader/lang.c:27 ../loader/lang.c:102
# ../loader/loader.c:478 ../loader/loader.c:535 ../loader/loader.c:912
# ../loader/loader.c:967 ../loader/loader.c:1140 ../loader/loader.c:1145
# ../loader/loader.c:1185 ../loader/loader.c:1244 ../loader/loader.c:2207
# ../loader/loader.c:2237 ../loader/loader.c:2315 ../loader/loader.c:2524
# ../loader/pcmcia.c:114 ../loader/pcmcia.c:131 ../loader/urls.c:79
# ../loader/urls.c:89 ../loader/urls.c:97 ../loader/urls.c:236
# ../loader/urls.c:241 ../packages.py:237 ../partitioning.py:1235
# ../partitioning.py:1266 ../textw/upgrade_text.py:160
# ../textw/upgrade_text.py:167 ../textw/upgrade_text.py:189 ../upgrade.py:279
# ../upgrade.py:291
# ../floppy.py:62 ../floppy.py:85 ../fsset.py:345 ../fsset.py:751
# ../fsset.py:770 ../fsset.py:815 ../fsset.py:835 ../fsset.py:869
# ../fsset.py:912 ../harddrive.py:171 ../image.py:65 ../image.py:142
# ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:435
# ../loader/devices.c:480 ../loader/devices.c:500 ../loader/lang.c:27
# ../loader/lang.c:102 ../loader/loader.c:478 ../loader/loader.c:535
# ../loader/loader.c:912 ../loader/loader.c:967 ../loader/loader.c:1140
# ../loader/loader.c:1145 ../loader/loader.c:1185 ../loader/loader.c:1244
# ../loader/loader.c:2207 ../loader/loader.c:2237 ../loader/loader.c:2315
# ../loader/loader.c:2524 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131
# ../loader/urls.c:79 ../loader/urls.c:89 ../loader/urls.c:97
# ../loader/urls.c:236 ../loader/urls.c:241 ../packages.py:236
# ../partitioning.py:1255 ../partitioning.py:1286
# ../textw/upgrade_text.py:160 ../textw/upgrade_text.py:167
# ../textw/upgrade_text.py:189 ../textw/xconfig_text.py:422 ../upgrade.py:293
# ../upgrade.py:305
# ../floppy.py:62 ../floppy.py:85 ../fsset.py:371 ../fsset.py:783
# ../fsset.py:802 ../fsset.py:847 ../fsset.py:867 ../fsset.py:901
# ../fsset.py:944 ../harddrive.py:171 ../image.py:65 ../image.py:142
# ../loader/devices.c:259 ../loader/devices.c:266 ../loader/devices.c:435
# ../loader/devices.c:480 ../loader/devices.c:500 ../loader/lang.c:27
# ../loader/lang.c:102 ../loader/loader.c:478 ../loader/loader.c:535
# ../loader/loader.c:912 ../loader/loader.c:967 ../loader/loader.c:1140
# ../loader/loader.c:1145 ../loader/loader.c:1185 ../loader/loader.c:1244
# ../loader/loader.c:2207 ../loader/loader.c:2237 ../loader/loader.c:2315
# ../loader/loader.c:2524 ../loader/pcmcia.c:114 ../loader/pcmcia.c:131
# ../loader/urls.c:79 ../loader/urls.c:89 ../loader/urls.c:97
# ../loader/urls.c:236 ../loader/urls.c:241 ../packages.py:237
# ../partitioning.py:1258 ../partitioning.py:1289
# ../textw/upgrade_text.py:160 ../textw/upgrade_text.py:167
# ../textw/upgrade_text.py:190 ../textw/xconfig_text.py:422 ../upgrade.py:293
# ../upgrade.py:305
#: ../gui.py:1078
msgid "Error!"
msgstr "¡Error!"

#: ../gui.py:1079
#, python-format
msgid ""
"An error occurred when attempting to load an installer interface component.\n"
"\n"
"className = %s"
msgstr ""
"Se ha producido un error al intentar cargar un componente de la interfaz "
"de \n"
" instalación. \n"
"className = %s"

# ../iw/congrats_gui.py:27 ../iw/congrats_gui.py:77 ../rescue.py:130
# ../rescue.py:134
# ../iw/congrats_gui.py:28 ../iw/congrats_gui.py:85 ../rescue.py:130
# ../rescue.py:134
# ../iw/congrats_gui.py:28 ../iw/congrats_gui.py:85 ../rescue.py:130
# ../rescue.py:134
#: ../gui.py:1084 ../gui.py:1089 ../packages.py:336 ../packages.py:341
msgid "_Exit"
msgstr "_Salir"

# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:283
# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:283
# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:284
#: ../gui.py:1085 ../yuminstall.py:766
msgid "_Retry"
msgstr "_Volver a intentar"

#: ../gui.py:1088 ../packages.py:340
msgid "The installer will now exit..."
msgstr "Ahora el instalador se cerrará..."

#: ../gui.py:1091 ../packages.py:343
msgid "Your system will now be rebooted..."
msgstr "Se rearrancará su sistema..."

# ../installclasses/upgradeclass.py:8
# ../installclasses/upgradeclass.py:8
# ../installclasses/upgradeclass.py:8
#: ../gui.py:1094 ../packages.py:345
msgid "Rebooting System"
msgstr "Rearranque del sistema"

# ../packages.py:630
# ../packages.py:646
# ../packages.py:647
#: ../gui.py:1158
#, python-format
msgid "%s Installer"
msgstr "Programa de instalación %s"

# ../gui.py:706
# ../gui.py:706
# ../gui.py:706
#: ../gui.py:1165
msgid "Unable to load title bar"
msgstr "¡Ha sido imposible cargar la barra del título!"

# ../gui.py:791
# ../gui.py:791
# ../gui.py:791
#: ../gui.py:1214
msgid "Install Window"
msgstr "Instalar ventana"

#: ../harddrive.py:44 ../image.py:146 ../image.py:476
#, python-format
msgid ""
"The file %s cannot be opened.  This is due to a missing file or perhaps a "
"corrupt package.  Please verify your installation images and that you have "
"all the required media.\n"
"\n"
"If you reboot, your system will be left in an inconsistent state that will "
"likely require reinstallation.\n"
"\n"
msgstr ""
"El archivo %s no se pudo abrir. Esto se puede deber a que falta el archivo o "
"quizás el paquete esté dañado. Por favor, verifique las imágenes de "
"instalación y que tenga todos los medios requeridos.\n"
"\n"
"Si reinicia, su sistema quedará en un estado inconsistente que seguramente "
"necesitará reinstalación.\n"
"\n"

#: ../harddrive.py:71 ../image.py:509
msgid "Missing ISO 9660 Image"
msgstr "No se encuentra la imagen ISO 9660"

#: ../harddrive.py:72
#, python-format
msgid ""
"The installer has tried to mount image #%s, but cannot find it on the hard "
"drive.\n"
"\n"
"Please copy this image to the drive and click Retry. Click Reboot  to abort "
"the installation."
msgstr ""
"El instalador ha intentado montar la imagen #%s, pero no puede ser "
"encontrada en el disco duro.\n"
"\n"
"Por favor copie esta imagen en el disco y haga clic en Reintentar. Haga clic "
"en Reiniciar para salir de la instalación"

# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:283
# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:283
# ../gui.py:112 ../loader/net.c:277 ../loader/net.c:404 ../text.py:284
#: ../harddrive.py:81 ../image.py:520
msgid "Re_try"
msgstr "Rein_tentar"

#: ../image.py:84
msgid "Required Install Media"
msgstr "Medio de instalación requerido"

#: ../image.py:85
#, python-format
msgid ""
"The software you have selected to install will require the following CDs:\n"
"\n"
"%s\n"
"Please have these ready before proceeding with the installation.  If you "
"need to abort the installation and reboot please select \"Reboot\"."
msgstr ""
"Los programas que has seleccionado para instalar requerirán los siguientes "
"CDs:\n"
"\n"
"%s\n"
"Por favor tenlos listos antes de seguir con la instalación. Si necesitas "
"abortar la instalación y reiniciar por favor selecciona: \"Reiniciar\"."

# ../gui.py:603 ../loader/cdrom.c:34 ../loader/devices.c:93
# ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:596
# ../loader/loader.c:323 ../loader/loader.c:816 ../loader/loader.c:853
# ../loader/loader.c:967 ../loader/loader.c:1061 ../loader/loader.c:1490
# ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:359
# ../loader/urls.c:158 ../loader/urls.c:387 ../textw/confirm_text.py:24
# ../textw/confirm_text.py:26 ../textw/confirm_text.py:36
# ../textw/confirm_text.py:38 ../textw/constants_text.py:28
# ../textw/silo_text.py:110 ../textw/userauth_text.py:177
# ../gui.py:603 ../loader/cdrom.c:34 ../loader/devices.c:93
# ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:608
# ../loader/loader.c:323 ../loader/loader.c:816 ../loader/loader.c:853
# ../loader/loader.c:967 ../loader/loader.c:1061 ../loader/loader.c:1490
# ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:359
# ../loader/urls.c:158 ../loader/urls.c:387 ../textw/confirm_text.py:24
# ../textw/confirm_text.py:26 ../textw/confirm_text.py:36
# ../textw/confirm_text.py:38 ../textw/constants_text.py:28
# ../textw/silo_text.py:110 ../textw/userauth_text.py:185
# ../gui.py:603 ../loader/cdrom.c:34 ../loader/devices.c:93
# ../loader/devices.c:238 ../loader/devices.c:335 ../loader/lang.c:608
# ../loader/loader.c:323 ../loader/loader.c:816 ../loader/loader.c:853
# ../loader/loader.c:967 ../loader/loader.c:1061 ../loader/loader.c:1490
# ../loader/net.c:185 ../loader/net.c:272 ../loader/net.c:359
# ../loader/urls.c:158 ../loader/urls.c:387 ../textw/confirm_text.py:24
# ../textw/confirm_text.py:26 ../textw/confirm_text.py:36
# ../textw/confirm_text.py:38 ../textw/constants_text.py:28
# ../textw/silo_text.py:110 ../textw/userauth_text.py:185
#: ../image.py:93 ../packages.py:291 ../packages.py:341 ../packages.py:344
#: ../yuminstall.py:1180 ../iw/confirm_gui.py:32 ../textw/confirm_text.py:38
#: ../textw/confirm_text.py:66
msgid "_Back"
msgstr "_Anterior"

#: ../image.py:136 ../urlinstall.py:209
#, python-format
msgid ""
"An error occurred unmounting the CD.  Please make sure you're not accessing %"
"s from the shell on tty2 and then click OK to retry."
msgstr ""
"Se ha producido un error al desmontar el CD.  Asegúrese de no acceder a %s "
"desde la shell en tty2 y a continuación presione Aceptar para volver a "
"intentar. "

# ../image.py:62
# ../image.py:62
# ../image.py:62
#: ../image.py:166 ../urlinstall.py:100
msgid "Copying File"
msgstr "Copiando Archivo"

# ../image.py:63
# ../image.py:63
# ../image.py:63
#: ../image.py:167 ../urlinstall.py:101
msgid "Transferring install image to hard drive..."
msgstr "Transfiriendo la imagen del programa de instalación al disco duro..."

# ../image.py:66
# ../image.py:66
# ../image.py:66
#: ../image.py:177 ../urlinstall.py:111
msgid ""
"An error occurred transferring the install image to your hard drive. You are "
"probably out of disk space."
msgstr ""
"Se ha producido un error al transferir la imagen de instalación a su disco "
"duro.  Probablemente no tenga espacio en el disco."

# ../image.py:119
# ../image.py:119
# ../image.py:119
#: ../image.py:266
msgid "Change CDROM"
msgstr "Cambie CDROM"

# ../image.py:120
# ../image.py:120
# ../image.py:120
#: ../image.py:267
#, python-format
msgid "Please insert %s disc %d to continue."
msgstr "Por favor, introduzca %s disco %d para continuar."

# ../image.py:137
# ../image.py:137
# ../image.py:137
#: ../image.py:302
msgid "Wrong CDROM"
msgstr "CDROM erróneo"

# ../image.py:138
# ../image.py:138
# ../image.py:138
#: ../image.py:303
#, python-format
msgid "That's not the correct %s CDROM."
msgstr "Éste no es el CDROM %s correcto."

#: ../image.py:309
msgid "Unable to access the CDROM."
msgstr "No se puede acceder al CDROM."

#: ../image.py:362
#, python-format
msgid ""
"The file %s cannot be opened.  This is due to a missing file or perhaps a "
"corrupt package.  Please verify your installation tree contains all required "
"packages.\n"
"\n"
"If you reboot, your system will be left in an inconsistent state that will "
"likely require reinstallation.\n"
"\n"
msgstr ""
"El archivo %s no se pudo abrir. Esto se puede deber a que falta el archivo o "
"quizás el paquete esté dañado. Por favor, verifique que su árbol de "
"instalación contiene todos los paquetes requeridos.\n"
"\n"
"Si reinicia, su sistema quedará en un estado inconsistente que seguramente "
"necesitará reinstalación.\n"
"\n"

#: ../image.py:510
#, python-format
msgid ""
"The installer has tried to mount image #%s, but cannot find it on the "
"server.\n"
"\n"
"Please copy this image to the remote server's share path and click Retry. "
"Click Reboot to abort the installation."
msgstr ""
"El instalador ha intentado montar la imagen #%s, pero no puede ser "
"encontrada en el servidor.\n"
"\n"
"Por favor copie esta imagen a la ruta compartida del servidor remoto y haga "
"clic en Reintentar. Haga clic en Reiniciar para salir de la instalación"

# ../iw/installpath_gui.py:35 ../textw/installpath_text.py:45
# ../iw/installpath_gui.py:35 ../textw/installpath_text.py:45
# ../iw/installpath_gui.py:35 ../textw/installpath_text.py:45
#: ../installclass.py:64
msgid "Install on System"
msgstr "Instalación en el sistema"

# ../loader/cdrom.c:89
# ../loader/cdrom.c:89
# ../loader/cdrom.c:89
#: ../iscsi.py:199 ../iscsi.py:200
msgid "Initializing iSCSI initiator"
msgstr "Inicializando iniciador iSCSI"

#: ../kickstart.py:73
msgid "Scriptlet Failure"
msgstr "Fallo de Scriptlet "

#: ../kickstart.py:74
#, python-format
msgid ""
"There was an error running the scriptlet.  You may examine the output in %"
"s.  This is a fatal error and your install will be aborted.\n"
"\n"
"Press the OK button to reboot your system."
msgstr ""
"Se ha producido un error al ejecutar el scriptlet. Usted puede revisar el "
"flujo de salida en %s.  Esté es un error fatal, por lo cual la instalación "
"será abortada.\n"
"\n"
"Pulse el botón Aceptar para reiniciar su sistema."

#: ../kickstart.py:757 ../kickstart.py:780
msgid "Running..."
msgstr "Ejecutando..."

#: ../kickstart.py:758
msgid "Running pre-install scripts"
msgstr "Ejecutando los scripts de pre-instalación"

#: ../kickstart.py:781
msgid "Running post-install scripts"
msgstr "Ejecutando los scripts de post-instalación"

# ../iw/progress_gui.py:28
# ../iw/progress_gui.py:28
# ../iw/progress_gui.py:28
#: ../kickstart.py:925
msgid "Missing Package"
msgstr "Paquete ausente"

#: ../kickstart.py:926
#, python-format
msgid ""
"You have specified that the package '%s' should be installed.  This package "
"does not exist. Would you like to continue or abort your installation?"
msgstr ""
"Usted ha especificado la instalación del paquete '%s'. Este paquete no "
"existe. ¿Desea continuar o terminar la instalación?"

# ../iw/partition_gui.py:1516
# ../iw/partition_gui.py:1518
# ../iw/partition_gui.py:1526
#: ../kickstart.py:932 ../kickstart.py:968 ../yuminstall.py:879
#: ../yuminstall.py:881
msgid "_Abort"
msgstr "_Abortar"

# ../loader/net.c:404
# ../loader/net.c:404
# ../loader/net.c:404
#: ../kickstart.py:960
msgid "Missing Group"
msgstr "Grupo ausente"

#: ../kickstart.py:961
#, python-format
msgid ""
"You have specified that the group '%s' should be installed. This group does "
"not exist. Would you like to continue or abort your installation?"
msgstr ""
"Ha especificado la instalación del grupo '%s'. Este grupo no existe. ¿Desea "
"continuar o terminar la instalación?"

# ../textw/userauth_text.py:54
# ../textw/userauth_text.py:55
# ../textw/userauth_text.py:55
#: ../network.py:51
msgid "Hostname must be 64 or less characters in length."
msgstr "El nombre de host debe ser de 64 o menos caracteres de largo."

#: ../network.py:54
msgid "Hostname must start with a valid character in the range 'a-z' or 'A-Z'"
msgstr ""
"el nombre del host empieza con un carácter válido en el rango 'a-z' o 'A-Z'"

#: ../network.py:59
msgid "Hostnames can only contain the characters 'a-z', 'A-Z', '-', or '.'"
msgstr ""
"Los nombres del host sólo pueden contener los caracteres 'a-z', 'A-Z', '-', "
"o '.'"

# ../iw/network_gui.py:194
# ../iw/network_gui.py:194
# ../iw/network_gui.py:194
#: ../network.py:89
msgid "IP address is missing."
msgstr "Falta la dirección IP."

#: ../network.py:93
msgid ""
"IPv4 addresses must contain four numbers between 0 and 255, separated by "
"periods."
msgstr ""
"Las direcciones IPv4 deben contener números entre 0 y 255, separados por "
"puntos."

# ../loader/urls.c:248
# ../loader/urls.c:248
# ../loader/urls.c:248
#: ../network.py:96
#, python-format
msgid "'%s' is not a valid IPv6 address."
msgstr "'%s' no es una dirección IPv6 válida."

# ../loader/urls.c:248
# ../loader/urls.c:248
# ../loader/urls.c:248
#: ../network.py:98
#, python-format
msgid "'%s' is an invalid IP address."
msgstr "'%s' no es una dirección IP válida."

# ../loader/net.c:277
# ../loader/net.c:277
# ../loader/net.c:277
#: ../packages.py:262
msgid "Invalid Key"
msgstr "Llave no válida"

# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
#: ../packages.py:263
msgid "The key you entered is invalid."
msgstr "La llave introducida no es válida."

# ../rescue.py:99 ../rescue.py:101 ../textw/bootdisk_text.py:67
# ../textw/bootdisk_text.py:89 ../textw/silo_text.py:36
# ../textw/upgrade_text.py:118
# ../rescue.py:99 ../rescue.py:101 ../textw/bootdisk_text.py:67
# ../textw/bootdisk_text.py:89 ../textw/silo_text.py:36
# ../textw/upgrade_text.py:118
# ../rescue.py:99 ../rescue.py:101 ../textw/bootdisk_text.py:68
# ../textw/bootdisk_text.py:90 ../textw/silo_text.py:36
# ../textw/upgrade_text.py:118
#: ../packages.py:291
msgid "_Skip"
msgstr "Omitir"

#: ../packages.py:322
msgid "Warning! This is pre-release software!"
msgstr "¡Atención! ¡Ésta es una versión beta!"

#: ../packages.py:323
#, python-format
msgid ""
"Thank you for downloading this pre-release of %s.\n"
"\n"
"This is not a final release and is not intended for use on production "
"systems.  The purpose of this release is to collect feedback from testers, "
"and it is not suitable for day to day usage.\n"
"\n"
"To report feedback, please visit:\n"
"\n"
"   %s\n"
"\n"
"and file a report against '%s'.\n"
msgstr ""
"Gracias por haber descargado esta versión beta de %s.\n"
"\n"
"Ésta no es la versión final y no se recomienda para sistemas de producción. "
"El objetivo de esta versión es el de recopilar información de aquellos que "
"la prueben y no es adecuada para el uso diario.\n"
"\n"
"Para enviar retroalimentación, visite:\n"
"\n"
"   %s\n"
"\n"
"y archive un informe en '%s'.\n"

# ../installclass.py:27
# ../installclass.py:27
# ../installclass.py:28
#: ../packages.py:336
msgid "_Install anyway"
msgstr "_Instalar de todos modos"

# ../iw/account_gui.py:192
# ../iw/account_gui.py:192
# ../iw/account_gui.py:192
#: ../partIntfHelpers.py:35
msgid "Please enter a volume group name."
msgstr "Por favor introduzca el nombre del grupo de volumen."

# ../textw/userauth_text.py:54
# ../textw/userauth_text.py:55
# ../textw/userauth_text.py:55
#: ../partIntfHelpers.py:39
msgid "Volume Group Names must be less than 128 characters"
msgstr "Los nombres de grupo de volumen deben tener menos de 128 caracteres"

# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
#: ../partIntfHelpers.py:42
#, python-format
msgid "Error - the volume group name %s is not valid."
msgstr "Error - el nombre de grupo de volumen %s no es válido."

# ../textw/bootloader_text.py:229
# ../textw/bootloader_text.py:229
# ../textw/bootloader_text.py:229
#: ../partIntfHelpers.py:47
msgid ""
"Error - the volume group name contains illegal characters or spaces.  "
"Acceptable characters are letters, digits, '.' or '_'."
msgstr ""
"Error - el nombre de grupo de volumen contiene caracteres ilegales o "
"espacios. Los caracteres aceptados son letras, dígitos, '.' o '_'."

# ../iw/account_gui.py:192
# ../iw/account_gui.py:192
# ../iw/account_gui.py:192
#: ../partIntfHelpers.py:57
msgid "Please enter a logical volume name."
msgstr "Por favor introduzca el nombre de volumen lógico"

#: ../partIntfHelpers.py:61
msgid "Logical Volume Names must be less than 128 characters"
msgstr "Los nombres de volumen lógicos deben de tener menos de 128 caracteres"

#: ../partIntfHelpers.py:65
#, python-format
msgid "Error - the logical volume name %s is not valid."
msgstr "Error - El nombre de volumen lógico  %s no es válido."

# ../textw/bootloader_text.py:229
# ../textw/bootloader_text.py:229
# ../textw/bootloader_text.py:229
#: ../partIntfHelpers.py:71
msgid ""
"Error - the logical volume name contains illegal characters or spaces.  "
"Acceptable characters are letters, digits, '.' or '_'."
msgstr ""
"Error - El nombre de volumen lógico contiene espacios o caracteres no "
"válidos. Se aceptan caracteres como letras, dígitos, '.' o '_'."

# ../partitioning.py:338
# ../partitioning.py:353
# ../partitioning.py:353
#: ../partIntfHelpers.py:95
#, python-format
msgid ""
"The mount point %s is invalid.  Mount points must start with '/' and cannot "
"end with '/', and must contain printable characters and no spaces."
msgstr ""
"El punto de montaje %s no es válido. Los puntos de montaje deben empezar por "
"'/', no pueden acabar en '/', deben contener caracteres imprimibles sin "
"ningún espacio."

# ../partitioning.py:345
# ../partitioning.py:360
# ../partitioning.py:360
#: ../partIntfHelpers.py:102
msgid "Please specify a mount point for this partition."
msgstr "Especifique el punto de montaje para esta partición."

# ../partitioning.py:1699
# ../partitioning.py:1719
# ../partitioning.py:1717
#: ../partIntfHelpers.py:112
#, python-format
msgid "This partition is part of the RAID device /dev/md%s."
msgstr "Esta partición forma parte del dispositivo RAID /dev/md%s."

# ../partitioning.py:1699
# ../partitioning.py:1719
# ../partitioning.py:1717
#: ../partIntfHelpers.py:115
msgid "This partition is part of a RAID device."
msgstr "Esta partición forma parte del dispositivo RAID."

# ../partitioning.py:1631
# ../partitioning.py:1651
# ../partitioning.py:1654
#: ../partIntfHelpers.py:120
#, python-format
msgid "This partition is part of the LVM volume group '%s'."
msgstr "Esta partición forma parte del grupo de volumen LVM '%s'."

# ../partitioning.py:1631
# ../partitioning.py:1651
# ../partitioning.py:1654
#: ../partIntfHelpers.py:123
msgid "This partition is part of a LVM volume group."
msgstr "Esta partición forma parte del grupo de volumen LVM."

# ../partitioning.py:1598 ../partitioning.py:1604 ../partitioning.py:1612
# ../partitioning.py:1623 ../partitioning.py:1630
# ../partitioning.py:1618 ../partitioning.py:1624 ../partitioning.py:1632
# ../partitioning.py:1643 ../partitioning.py:1650
# ../partitioning.py:1621 ../partitioning.py:1627 ../partitioning.py:1635
# ../partitioning.py:1646 ../partitioning.py:1653
#: ../partIntfHelpers.py:138 ../partIntfHelpers.py:146
#: ../partIntfHelpers.py:153 ../partIntfHelpers.py:163
#: ../partIntfHelpers.py:187
msgid "Unable To Delete"
msgstr "Imposible de borrar"

# ../partitioning.py:1599
# ../partitioning.py:1619
# ../partitioning.py:1622
#: ../partIntfHelpers.py:139
msgid "You must first select a partition to delete."
msgstr "En primer lugar debe seleccionar una partición a eliminar."

# ../partitioning.py:1605
# ../partitioning.py:1625
# ../partitioning.py:1628
#: ../partIntfHelpers.py:147
msgid "You cannot delete free space."
msgstr "No puede eliminar espacio libre."

# ../partitioning.py:1551
# ../partitioning.py:1571
# ../partitioning.py:1574
#: ../partIntfHelpers.py:154
msgid "You cannot delete a partition of a LDL formatted DASD."
msgstr "No puede borrar una partición de un DASD formateado a LDL."

# ../partitioning.py:1685
# ../partitioning.py:1705
# ../partitioning.py:1708
#: ../partIntfHelpers.py:164
#, python-format
msgid ""
"You cannot delete this partition, as it is an extended partition which "
"contains %s"
msgstr ""
"No puede eliminar esta partición, ya que es una partición extendida que "
"contiene %s"

# ../partitioning.py:1624
# ../partitioning.py:1644
# ../partitioning.py:1647
#: ../partIntfHelpers.py:182 ../iw/raid_dialog_gui.py:558
msgid "This partition is holding the data for the hard drive install."
msgstr ""
"Esta partición cuenta con los datos para la instalación de la disquetera."

# ../partitioning.py:1551
# ../partitioning.py:1571
# ../partitioning.py:1574
#: ../partIntfHelpers.py:188
msgid ""
"You cannot delete this partition:\n"
"\n"
msgstr ""
"No puede borrar esta partición:\n"
"\n"

# ../partitioning.py:1557
# ../partitioning.py:1577
# ../partitioning.py:1580
#: ../partIntfHelpers.py:233 ../partIntfHelpers.py:529
#: ../iw/lvm_dialog_gui.py:755
msgid "Confirm Delete"
msgstr "Confirmar la eliminización"

# ../partitioning.py:1551
# ../partitioning.py:1571
# ../partitioning.py:1574
#: ../partIntfHelpers.py:234
#, python-format
msgid "You are about to delete all partitions on the device '/dev/%s'."
msgstr ""
"Está a punto de borrar todas las particiones en el dispositivo '/dev/%s."

# ../iw/partition_gui.py:1515
# ../iw/partition_gui.py:1517
# ../iw/partition_gui.py:1525
#: ../partIntfHelpers.py:237 ../partIntfHelpers.py:530
#: ../iw/lvm_dialog_gui.py:758 ../iw/lvm_dialog_gui.py:1107
#: ../iw/osbootwidget.py:104 ../iw/partition_gui.py:1357
msgid "_Delete"
msgstr "_Eliminar"

# ../iw/partition_gui.py:664 ../iw/partition_gui.py:722
# ../textw/partition_text.py:93 ../textw/partition_text.py:145
# ../iw/partition_gui.py:664 ../iw/partition_gui.py:722
# ../textw/partition_text.py:93 ../textw/partition_text.py:145
# ../iw/partition_gui.py:664 ../iw/partition_gui.py:722
# ../textw/partition_text.py:93 ../textw/partition_text.py:145
#: ../partIntfHelpers.py:295
msgid "Notice"
msgstr "Observación"

#: ../partIntfHelpers.py:296
#, python-format
msgid ""
"The following partitions were not deleted because they are in use:\n"
"\n"
"%s"
msgstr ""
"No se han borrado las siguientes particiones porque se están usando:\n"
"\n"
"%s"

# ../partitioning.py:1662 ../partitioning.py:1684
# ../partitioning.py:1682 ../partitioning.py:1704
# ../partitioning.py:1685 ../partitioning.py:1707
#: ../partIntfHelpers.py:312 ../partIntfHelpers.py:325
#: ../partIntfHelpers.py:351 ../partIntfHelpers.py:362
msgid "Unable To Edit"
msgstr "Ha sido imposible modificarla"

# ../partitioning.py:1663
# ../partitioning.py:1683
# ../partitioning.py:1686
#: ../partIntfHelpers.py:313
msgid "You must select a partition to edit"
msgstr "Seleccione una partición a modificar"

# ../partitioning.py:1551
# ../partitioning.py:1571
# ../partitioning.py:1574
#: ../partIntfHelpers.py:325 ../partIntfHelpers.py:363
msgid ""
"You cannot edit this partition:\n"
"\n"
msgstr ""
"No puede modificar esta partición:\n"
"\n"

# ../partitioning.py:1685
# ../partitioning.py:1705
# ../partitioning.py:1708
#: ../partIntfHelpers.py:352
#, python-format
msgid ""
"You cannot edit this partition, as it is an extended partition which "
"contains %s"
msgstr ""
"No puede modificar esta partición, ya que es una partición extendida que "
"contiene %s"

# ../textw/partition_text.py:627 ../textw/partition_text.py:661
# ../textw/partition_text.py:627 ../textw/partition_text.py:661
# ../partitioning.py:1769
#: ../partIntfHelpers.py:384
msgid "Format as Swap?"
msgstr "¿Formatear como swap?"

# ../partitioning.py:1770
#: ../partIntfHelpers.py:385
#, python-format
msgid ""
"/dev/%s has a partition type of 0x82 (Linux swap) but does not appear to be "
"formatted as a Linux swap partition.\n"
"\n"
"Would you like to format this partition as a swap partition?"
msgstr ""
"/dev/%s tiene una partición de tipo 0x82 (Linux Swap) pero no parece estar "
"formateada como tal.\n"
"\n"
"¿Le gustaría formatear esta partición como una partición swap?"

# ../iw/partition_gui.py:1597
# ../iw/partition_gui.py:1599
# ../iw/partition_gui.py:1607
#: ../partIntfHelpers.py:405
#, python-format
msgid "You need to select at least one hard drive to have %s installed onto."
msgstr ""
"Es necesario que seleccione al menos una unidad de disco duro en la que "
"tener instalado %s."

#: ../partIntfHelpers.py:411
msgid ""
"You have chosen to use a pre-existing partition for this installation "
"without formatting it. We recommend that you format this partition to make "
"sure files from a previous operating system installation do not cause "
"problems with this installation of Linux. However, if this partition "
"contains files that you need to keep, such as home directories, then  "
"continue without formatting this partition."
msgstr ""
"Ha escogido usar una partición pre-existente para esta instalación sin "
"formatearla. Le recomendamos  que formatee esta partición para asegurarse de "
"que los archivos provenientes de una instalación previa de un sistema "
"operativo no causen problemas  con esta instalación de Linux. Sin embargo, "
"si esta partición contiene archivos que necesita mantener, tales como "
"directorios principales de usuarios, entonces deberia continuar sin "
"formatear esta partición."

# ../partitioning.py:1745 ../partitioning.py:1763
# ../partitioning.py:1765 ../partitioning.py:1783
# ../partitioning.py:1789 ../partitioning.py:1807
#: ../partIntfHelpers.py:419
msgid "Format?"
msgstr "¿Desea formatear?"

# ../iw/partition_gui.py:1275 ../textw/partition_text.py:168
# ../iw/partition_gui.py:1277 ../textw/partition_text.py:168
# ../iw/partition_gui.py:1282 ../textw/partition_text.py:168
#: ../partIntfHelpers.py:419 ../iw/partition_gui.py:1009
msgid "_Modify Partition"
msgstr "_Modificar la partición"

# ../iw/partition_gui.py:1533
# ../iw/partition_gui.py:1535
# ../iw/partition_gui.py:1543
#: ../partIntfHelpers.py:419
msgid "Do _Not Format"
msgstr "No _formatear"

# ../partitioning.py:1770
# ../partitioning.py:1790
# ../partitioning.py:1814
#: ../partIntfHelpers.py:427
msgid "Error with Partitioning"
msgstr "Error de particionamiento"

# ../partitioning.py:1771
# ../partitioning.py:1791
# ../partitioning.py:1815
#: ../partIntfHelpers.py:428
#, python-format
msgid ""
"The following critical errors exist with your requested partitioning scheme. "
"These errors must be corrected prior to continuing with your install of %s.\n"
"\n"
"%s"
msgstr ""
"Los siguientes errores críticos existen con el esquema de particionamiento. "
"Estos errores deben ser corregidos antes de continuar con su instalación \n"
"de %s\n"
"\n"
"%s"

# ../partitioning.py:1784
# ../partitioning.py:1804
# ../partitioning.py:1828
#: ../partIntfHelpers.py:442
msgid "Partitioning Warning"
msgstr "Aviso de particionamiento"

# ../partitioning.py:1785
# ../partitioning.py:1805
# ../partitioning.py:1829
#: ../partIntfHelpers.py:443
#, python-format
msgid ""
"The following warnings exist with your requested partition scheme.\n"
"\n"
"%s\n"
"\n"
"Would you like to continue with your requested partitioning scheme?"
msgstr ""
"Los siguientes avisos existen con su esquema de particionamiento.\n"
"\n"
"%s\n"
"\n"
"¿Desea continuar con el esquema de particionamiento requerido?"

# ../iw/partition_gui.py:576 ../partitioning.py:1797
# ../iw/partition_gui.py:576 ../partitioning.py:1817
# ../iw/partition_gui.py:576 ../partitioning.py:1841
#: ../partIntfHelpers.py:457 ../iw/partition_gui.py:665
msgid ""
"The following pre-existing partitions have been selected to be formatted, "
"destroying all data."
msgstr ""
"Las siguientes particiones pre-existentes han sido seleccionadas para ser "
"formateadas, destruyendo todos sus datos."

# ../iw/partition_gui.py:579 ../partitioning.py:1800
# ../iw/partition_gui.py:579 ../partitioning.py:1820
# ../iw/partition_gui.py:579 ../partitioning.py:1844
#: ../partIntfHelpers.py:460
msgid ""
"Select 'Yes' to continue and format these partitions, or 'No' to go back and "
"change these settings."
msgstr ""
"Seleccione 'Sí' para continuar y formatear estas particiones, o 'No' para "
"volver atrás y cambiar esta configuración."

# ../partitioning.py:1806
# ../partitioning.py:1826
# ../partitioning.py:1850
#: ../partIntfHelpers.py:466
msgid "Format Warning"
msgstr "Aviso de formateo"

#: ../partIntfHelpers.py:514
#, python-format
msgid ""
"You are about to delete the volume group \"%s\".\n"
"\n"
"ALL logical volumes in this volume group will be lost!"
msgstr ""
"Está a punto de borrar el grupo de volumen \"%s\".\n"
"\n"
"Todos los volúmenes lógicos en este grupo de volumen se perderán."

# ../partitioning.py:1548
# ../partitioning.py:1568
# ../partitioning.py:1571
#: ../partIntfHelpers.py:518
#, python-format
msgid "You are about to delete the logical volume \"%s\"."
msgstr "Está a punto de borrar el volumen lógico \"%s\"."

# ../partitioning.py:1548
# ../partitioning.py:1568
# ../partitioning.py:1571
#: ../partIntfHelpers.py:521
msgid "You are about to delete a RAID device."
msgstr "Está a punto de borrar un dispositivo RAID."

# ../partitioning.py:1551
# ../partitioning.py:1571
# ../partitioning.py:1574
#: ../partIntfHelpers.py:524
#, python-format
msgid "You are about to delete the /dev/%s partition."
msgstr "Está a punto de borrar la partición /dev/%s."

#: ../partIntfHelpers.py:527
msgid "The partition you selected will be deleted."
msgstr "La partición que ha seleccionado será borrada."

# ../partitioning.py:1561
# ../partitioning.py:1581
# ../partitioning.py:1584
#: ../partIntfHelpers.py:537
msgid "Confirm Reset"
msgstr "Confirmar el reinicio"

# ../partitioning.py:1562
# ../partitioning.py:1582
# ../partitioning.py:1585
#: ../partIntfHelpers.py:538
msgid ""
"Are you sure you want to reset the partition table to its original state?"
msgstr ""
"¿Está seguro de querer reiniciar la tabla de partición a su estado original?"

# ../partitioning.py:421
# ../partitioning.py:436
# ../partitioning.py:436
#: ../partRequests.py:255
#, python-format
msgid ""
"This mount point is invalid.  The %s directory must be on the / file system."
msgstr ""
"Este punto de montaje no es válido.  El directorio %s debe estar en el "
"sistema de ficheros /."

# ../partitioning.py:
# ../partitioning.py:364
# ../partitioning.py:379
# ../partitioning.py:379
#: ../partRequests.py:258
#, python-format
msgid ""
"The mount point %s cannot be used.  It must be a symbolic link for proper "
"system operation.  Please select a different mount point."
msgstr ""
"El punto de montaje \"%s\" no puede ser usado.  Tiene que ser un enlace "
"simbólico para que el sistema funcione adecuadamente. Por favor seleccione "
"otro punto de montaje."

# ../partitioning.py:426
# ../partitioning.py:441
# ../partitioning.py:441
#: ../partRequests.py:265
msgid "This mount point must be on a linux file system."
msgstr "Este punto de montaje debe estar en un sistema de ficheros linux."

# ../partitioning.py:
# ../partitioning.py:364
# ../partitioning.py:379
# ../partitioning.py:379
#: ../partRequests.py:286
#, python-format
msgid ""
"The mount point \"%s\" is already in use, please choose a different mount "
"point."
msgstr ""
"El punto de montaje \"%s\" ya se está usando, por favor seleccione otro "
"punto de montaje."

# ../partitioning.py:436
# ../partitioning.py:451
# ../partitioning.py:454
#: ../partRequests.py:300
#, python-format
msgid ""
"The size of the %s partition (%10.2f MB) exceeds the maximum size of %10.2f "
"MB."
msgstr ""
"El tamaño de la partición %s (%10.2f MB) supera el tamaño máximo de %10.2f "
"MB."

# ../partitioning.py:443
# ../partitioning.py:458
# ../partitioning.py:461
#: ../partRequests.py:496
#, python-format
msgid ""
"The size of the requested partition (size = %s MB) exceeds the maximum size "
"of %s MB."
msgstr ""
"El tamaño de la partición requerida (tamaño = %s MB) supera el tamaño máximo "
"de %s MB."

# ../partitioning.py:448
# ../partitioning.py:463
# ../partitioning.py:466
#: ../partRequests.py:501
#, python-format
msgid "The size of the requested partition is negative! (size = %s MB)"
msgstr "¡El tamaño de la partición solicitada es negativo! (tamaño = %s MB)"

# ../partitioning.py:452
# ../partitioning.py:467
# ../partitioning.py:470
#: ../partRequests.py:505
msgid "Partitions can't start below the first cylinder."
msgstr "Las particiones no pueden empezar antes del primer cilindro."

# ../partitioning.py:455
# ../partitioning.py:470
# ../partitioning.py:473
#: ../partRequests.py:508
msgid "Partitions can't end on a negative cylinder."
msgstr "Las particionnes no pueden terminar en un cilindro negativo."

# ../partitioning.py:488
# ../partitioning.py:503
# ../partitioning.py:506
#: ../partRequests.py:675
msgid "No members in RAID request, or not RAID level specified."
msgstr ""
"No existen miembros en la petición del RAID o no se ha especificado el nivel "
"del RAID."

# ../partitioning.py:506 ../partitioning.py:587
# ../partitioning.py:521 ../partitioning.py:602
# ../partitioning.py:524 ../partitioning.py:605
#: ../partRequests.py:683 ../partitions.py:954
msgid "Bootable partitions can only be on RAID1 devices."
msgstr "Las particiones de arranque solo pueden estar en dispositivos RAID1."

# ../partitioning.py:510
# ../partitioning.py:525
# ../partitioning.py:528
#: ../partRequests.py:687
#, python-format
msgid "A RAID device of type %s requires at least %s members."
msgstr "Un dispositivo RAID de tipo %s requiere al menos %s miembros."

# ../partitioning.py:516
# ../partitioning.py:531
# ../partitioning.py:534
#: ../partRequests.py:696
#, python-format
msgid ""
"This RAID device can have a maximum of %s spares. To have more spares you "
"will need to add members to the RAID device."
msgstr ""
"Este dispositivo RAID puede tener un máximo de %s de reserva. Para tener más "
"de reserva necesitará añadir miembros al dispositivo RAID."

#: ../partRequests.py:933
msgid ""
"Logical volume size must be larger than the volume group's physical extent "
"size."
msgstr ""
"El tamaño del volumen lógico debe ser mayor que el tamaño de la extensión "
"física del grupo de volumen."

# ../partitioning.py:171
# ../partitioning.py:171
# ../partitioning.py:171
#: ../partedUtils.py:205 ../textw/partition_text.py:559
msgid "Foreign"
msgstr "Extranjero"

# ../partitioning.py:676
# ../partitioning.py:692
# ../partitioning.py:695
#: ../partedUtils.py:305
#, python-format
msgid ""
"The device %s is LDL formatted instead of CDL formatted.  LDL formatted "
"DASDs are not supported for usage during an install of %s.  If you wish to "
"use this disk for installation, it must be re-initialized causing the loss "
"of ALL DATA on this drive.\n"
"\n"
"Would you like to reformat this DASD using CDL format?"
msgstr ""
"El dispositivo %s está formateado a LDL en vez de a CDL. No se proporciona "
"compatibilidad para DASD formateados a LDL para ser usados durante una "
"instalación de %s. Si quiere usar este disco para la instalación, deberá "
"volver a iniciarlo y como consecuencia perderá TODOS LOS DATOS de la "
"unidad.\n"
"\n"
"¿Desea reformatear este DASD usando el formato CDL?"

# ../partitioning.py:676
# ../partitioning.py:692
# ../partitioning.py:695
#: ../partedUtils.py:335
#, python-format
msgid ""
"/dev/%s currently has a %s partition layout.  To use this disk for the "
"installation of %s, it must be re-initialized, causing the loss of ALL DATA "
"on this drive.\n"
"\n"
"Would you like to format this drive?"
msgstr ""
"Actualmente /dev/%s tiene un formato de partición %s. Para usar este disco "
"para la instalación de %s, deberá reiniciarlo y como consecuencia perderá "
"TODOS LOS DATOS de la unidad.\n"
"\n"
"¿Desea formatear esta unidad?"

# ../gui.py:113 ../text.py:284
# ../gui.py:113 ../text.py:284
# ../gui.py:113 ../text.py:285
#: ../partedUtils.py:344
msgid "_Ignore drive"
msgstr "_Ignorar unidad"

# ../iw/partition_gui.py:1533
# ../iw/partition_gui.py:1535
# ../iw/partition_gui.py:1543
#: ../partedUtils.py:345
msgid "_Format drive"
msgstr "_Formatear unidad"

# ../loader/cdrom.c:89
# ../loader/cdrom.c:89
# ../loader/cdrom.c:89
#: ../partedUtils.py:923
msgid "Initializing"
msgstr "Inicialización en curso"

#: ../partedUtils.py:924
#, python-format
msgid "Please wait while formatting drive %s...\n"
msgstr "Espere mientras formatea la unidad %s...\n"

# ../partitioning.py:1379
# ../partitioning.py:1399
# ../partitioning.py:1402
#: ../partedUtils.py:1009
#, python-format
msgid ""
"The partition table on device %s was unreadable. To create new partitions it "
"must be initialized, causing the loss of ALL DATA on this drive.\n"
"\n"
"This operation will override any previous installation choices about which "
"drives to ignore.\n"
"\n"
"Would you like to initialize this drive, erasing ALL DATA?"
msgstr ""
"La tabla de particiones del dispositivo %s está dañada. Para crear nuevas "
"particiones debe ser inicializado, provocando la pérdida de TODOS LOS DATOS "
"de esta unidad.\n"
"\n"
"Esta operación sobreescribirá cualquier selección previa sobre que unidades "
"se deben ignorar.\n"
"\n"
"¿Desea inicializar esta unidad y eliminar toda los datos?"

# ../partitioning.py:1379
# ../partitioning.py:1399
# ../partitioning.py:1402
#: ../partedUtils.py:1023
#, python-format
msgid ""
"The partition table on device %s (%s) was unreadable. To create new "
"partitions it must be initialized, causing the loss of ALL DATA on this "
"drive.\n"
"\n"
"This operation will override any previous installation choices about which "
"drives to ignore.\n"
"\n"
"Would you like to initialize this drive, erasing ALL DATA?"
msgstr ""
"No se puede leer la tabla de particiones del dispositivo %s (%s). Para crear "
"nuevas particiones debe ser inicializada, provocando la pérdida de TODOS LOS "
"DATOS de esta unidad.\n"
"\n"
"Esta operación ignorará cualquier selección previa de instalación sobre las "
"unidades que se deben ignorar.\n"
"\n"
"¿Desea inicializar esta unidad y eliminar TODOS LOS DATOS?"

#: ../partedUtils.py:1173
#, python-format
msgid ""
"The drive /dev/%s has more than 15 partitions on it.  The SCSI subsystem in "
"the Linux kernel does not allow for more than 15 partitons at this time.  "
"You will not be able to make changes to the partitioning of this disk or use "
"any partitions beyond /dev/%s15 in %s"
msgstr ""

# ../partitioning.py:1465
# ../partitioning.py:1485
# ../partitioning.py:1488
#: ../partedUtils.py:1257
msgid "No Drives Found"
msgstr "No se encuentran las unidades"

# ../partitioning.py:1466
# ../partitioning.py:1486
# ../partitioning.py:1489
#: ../partedUtils.py:1258
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"file systems. Please check your hardware for the cause of this problem."
msgstr ""
"Se ha producido un error - no se han encontrado dispositivos válidos para "
"crear nuevos sistemas de ficheros. Chequee su hardware para averiguar la "
"causa del problema."

# ../partitioning.py:1711
# ../partitioning.py:1731
# ../partitioning.py:1729
#: ../partitioning.py:61
msgid "Installation cannot continue."
msgstr "No se puede continuar con la instalación"

# ../partitioning.py:1712
# ../partitioning.py:1732
# ../partitioning.py:1730
#: ../partitioning.py:62
msgid ""
"The partitioning options you have chosen have already been activated. You "
"can no longer return to the disk editing screen. Would you like to continue "
"with the installation process?"
msgstr ""
"Las opciones de particionamiento que escogió han sido activadas. No puede "
"volver a la pantalla de modificadión del disco. ¿Desea continuar con el "
"proceso de instalación?"

# ../partitioning.py:1732
# ../partitioning.py:1752
# ../partitioning.py:1750
#: ../partitioning.py:92
msgid "Low Memory"
msgstr "Poca Memoria"

# ../partitioning.py:1733
# ../partitioning.py:1753
# ../partitioning.py:1751
#: ../partitioning.py:93
msgid ""
"As you don't have much memory in this machine, we need to turn on swap space "
"immediately. To do this we'll have to write your new partition table to the "
"disk immediately. Is that OK?"
msgstr ""
"Debido a la poca memoria de esta máquina, es necesaria la activación del "
"espacio swap immediatamente. Para ello deberá escribir inmediatamente su "
"nueva tabla de particiones en el disco. ¿Está de acuerdo?"

# ../partitioning.py:548
# ../partitioning.py:563
# ../partitioning.py:566
#: ../partitions.py:816
#, python-format
msgid ""
"You have not defined a root partition (/), which is required for "
"installation of %s to continue."
msgstr ""
"No ha definido una partición root (/), necesaria para que la instalación de %"
"s continue."

# ../partitioning.py:551
# ../partitioning.py:566
# ../partitioning.py:569
#: ../partitions.py:821
#, python-format
msgid ""
"Your root partition is less than 250 megabytes which is usually too small to "
"install %s."
msgstr ""
"Su partición root posee menos de 250 megabytes, tamaño que habitualmente no "
"basta para instalar %s."

#: ../partitions.py:840
msgid ""
"Your boot partition isn't on one of the first four partitions and thus won't "
"be bootable."
msgstr ""
"Su partición de arranque no es una de las primeras cuatro particiones y, por "
"lo tanto, no será de arranque."

# ../partitioning.py:556
# ../partitioning.py:571
# ../partitioning.py:574
#: ../partitions.py:847
msgid ""
"You must create a /boot/efi partition of type FAT and a size of 50 megabytes."
msgstr ""
"Debe crear una partición /boot/efi del tipo FAT y un tamaño de 50 megabytes."

#: ../partitions.py:867
msgid "You must create an Apple Bootstrap partition."
msgstr "Usted debe crear una partición Apple Bootstrap."

#: ../partitions.py:889
msgid "You must create a PPC PReP Boot partition."
msgstr "Debe crear una partición PPC PReP Boot"

# ../partitioning.py:564
# ../partitioning.py:579
# ../partitioning.py:582
#: ../partitions.py:897 ../partitions.py:908
#, python-format
msgid ""
"Your %s partition is less than %s megabytes which is lower than recommended "
"for a normal %s install."
msgstr ""
"Su partición %s es de menos de %s megabytes, que es menos de lo que se "
"recomienda en una instalación %s normal."

#: ../partitions.py:942
msgid ""
"Installing on a USB device.  This may or may not produce a working system."
msgstr ""
"Instalando en un dispositivo USB. Esto puedo o no crear un sistema funcional."

#: ../partitions.py:945
msgid ""
"Installing on a FireWire device.  This may or may not produce a working "
"system."
msgstr ""
"Instalando en un dispositivo FireWire. Esto puedo o no crear un sistema "
"funcional."

# ../partitioning.py:506 ../partitioning.py:587
# ../partitioning.py:521 ../partitioning.py:602
# ../partitioning.py:524 ../partitioning.py:605
#: ../partitions.py:961
msgid "Bootable partitions cannot be on a logical volume."
msgstr "Las particiones de arranque solo pueden estar en un volumen lógico."

# ../partitioning.py:591
# ../partitioning.py:606
# ../partitioning.py:609
#: ../partitions.py:986
msgid ""
"You have not specified a swap partition.  Although not strictly required in "
"all cases, it will significantly improve performance for most installations."
msgstr ""
"No ha especificado una partición swap.  Aunque no es indispensable, mejorará "
"considerablemente el rendimiento en la mayoría de las instalaciones."

# ../partitioning.py:595
# ../partitioning.py:610
# ../partitioning.py:613
#: ../partitions.py:993
#, python-format
msgid ""
"You have specified more than 32 swap devices.  The kernel for %s only "
"supports 32 swap devices."
msgstr ""
"Ha especificado más de 32 dispositivos swap. El kernel para %s tan sólo "
"soporta 32 dispositivos swap."

# ../partitioning.py:604
# ../partitioning.py:619
# ../partitioning.py:622
#: ../partitions.py:1004
#, python-format
msgid ""
"You have allocated less swap space (%dM) than available RAM (%dM) on your "
"system.  This could negatively impact performance."
msgstr ""
"Ha asignado menos espacio swap (%dM) de la RAM  que tiene a su disposición (%"
"dM) en el sistema.  Esto podría afectar negativamente al rendimiento."

# ../partitioning.py:1586
# ../partitioning.py:1606
# ../partitioning.py:1609
#: ../partitions.py:1304
msgid "the partition in use by the installer."
msgstr "la partición en uso por el instalador."

# ../partitioning.py:1589
# ../partitioning.py:1609
# ../partitioning.py:1612
#: ../partitions.py:1307
msgid "a partition which is a member of a RAID array."
msgstr "una partición que es un miembro de un array de RAID."

# ../partitioning.py:1589
# ../partitioning.py:1609
# ../partitioning.py:1612
#: ../partitions.py:1310
msgid "a partition which is a member of a LVM Volume Group."
msgstr "una partición que es un miembro de un grupo de volumen LVM."

#: ../rescue.py:129
msgid "Starting Interface"
msgstr "Iniciar la interfaz"

# ../xserver.py:109
# ../xserver.py:109
# ../xserver.py:109
#: ../rescue.py:130
#, python-format
msgid "Attempting to start %s"
msgstr "Intentando iniciar %s"

# ../rescue.py:68 ../rescue.py:104 ../rescue.py:184
# ../rescue.py:68 ../rescue.py:104 ../rescue.py:184
# ../rescue.py:68 ../rescue.py:104 ../rescue.py:184
#: ../rescue.py:175
msgid "When finished please exit from the shell and your system will reboot."
msgstr "Cuando haya acabado salga de la shell y su sistema rearrancará."

# ../iw/network_gui.py:196 ../loader/loader.c:308
# ../iw/network_gui.py:196 ../loader/loader.c:308
# ../iw/network_gui.py:196 ../loader/loader.c:308
#: ../rescue.py:201
msgid "Setup Networking"
msgstr "Configuración de red"

#: ../rescue.py:202
msgid "Do you want to start the network interfaces on this system?"
msgstr "¿Desea arrancar las tarjetas de red en el sistema?"

# ../text.py:389
# ../text.py:395
# ../text.py:396
#: ../rescue.py:243 ../text.py:581
msgid "Cancelled"
msgstr "Cancelada"

# ../text.py:390
# ../text.py:396
# ../text.py:397
#: ../rescue.py:244 ../text.py:582
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "No puede retroceder desde aquí. Tendrá que intentarlo de nuevo. "

# ../rescue.py:90 ../rescue.py:145 ../rescue.py:163
# ../rescue.py:90 ../rescue.py:145 ../rescue.py:163
# ../rescue.py:90 ../rescue.py:145 ../rescue.py:163
#: ../rescue.py:276 ../rescue.py:343 ../rescue.py:351 ../rescue.py:437
msgid "Rescue"
msgstr "Rescatar"

# ../rescue.py:91
# ../rescue.py:91
# ../rescue.py:91
#: ../rescue.py:277
#, python-format
msgid ""
"The rescue environment will now attempt to find your Linux installation and "
"mount it under the directory %s.  You can then make any changes required to "
"your system.  If you want to proceed with this step choose 'Continue'.  You "
"can also choose to mount your file systems read-only instead of read-write "
"by choosing 'Read-Only'.\n"
"\n"
"If for some reason this process fails you can choose 'Skip' and this step "
"will be skipped and you will go directly to a command shell.\n"
"\n"
msgstr ""
"El entorno de rescate intentará encontrar su instalación de Linux y montarla "
"bajo el directorio %s. Podrá hacer cualquier cambio que requiera a su "
"sistema. Si desea proceder con este paso seleccione 'Continuar'. También "
"puede escoger montar sus sistemas de archivos  en modo de solo-lectura en "
"lugar de en modo lectura-escritura escogiendo 'Solo-lectura'.\n"
"\n"
"Si este proceso falla por cualquier motivo, escoja 'Omitir' y saltará este "
"paso para pasar directamente a la shell de comandos.\n"
"\n"

# ../rescue.py:99
# ../rescue.py:99
# ../rescue.py:99
#: ../rescue.py:287 ../iw/partition_gui.py:567 ../textw/network_text.py:55
#: ../loader2/cdinstall.c:113 ../loader2/cdinstall.c:121
#: ../loader2/driverdisk.c:480
msgid "Continue"
msgstr "Continuar"

# ../packages.py:96
# ../packages.py:96
# ../packages.py:97
#: ../rescue.py:287 ../rescue.py:292
msgid "Read-Only"
msgstr "Modo lectura"

# ../rescue.py:127
# ../rescue.py:127
# ../rescue.py:127
#: ../rescue.py:318
msgid "System to Rescue"
msgstr "Sistema a rescatar"

# ../rescue.py:128 ../textw/upgrade_text.py:208
# ../rescue.py:128 ../textw/upgrade_text.py:208
# ../rescue.py:128 ../textw/upgrade_text.py:209
#: ../rescue.py:319
msgid "What partition holds the root partition of your installation?"
msgstr "¿Qué partición contiene la partición root de su instalación?"

# ../iw/congrats_gui.py:27 ../iw/congrats_gui.py:77 ../rescue.py:130
# ../rescue.py:134
# ../iw/congrats_gui.py:28 ../iw/congrats_gui.py:85 ../rescue.py:130
# ../rescue.py:134
# ../iw/congrats_gui.py:28 ../iw/congrats_gui.py:85 ../rescue.py:130
# ../rescue.py:134
#: ../rescue.py:321 ../rescue.py:325
msgid "Exit"
msgstr "Salir"

# ../rescue.py:171
# ../rescue.py:171
# ../rescue.py:171
#: ../rescue.py:344
msgid ""
"Your system had dirty file systems which you chose not to mount.  Press "
"return to get a shell from which you can fsck and mount your partitions.  "
"The system will reboot automatically when you exit from the shell."
msgstr ""
"Su sistema contiene sistemas de ficheros no válidos que ha escogido no "
"montar. Pulse intro para obtener una shell que pueda hacer fsck y montar sus "
"particiones. El sistema rearrancará automáticamente cuando salga de la shell."

# ../rescue.py:146
# ../rescue.py:146
# ../rescue.py:146
#: ../rescue.py:352
#, python-format
msgid ""
"Your system has been mounted under %s.\n"
"\n"
"Press <return> to get a shell. If you would like to make your system the "
"root environment, run the command:\n"
"\n"
"\tchroot %s\n"
"\n"
"The system will reboot automatically when you exit from the shell."
msgstr ""
"El sistema ha sido montado bajo %s.\n"
"\n"
"Pulse <return> para obtener una shell. Si desea que su sistema sea el "
"entorno de root, ejecute el comando:\n"
"\n"
"\tchroot %s\n"
"\n"
"El sistema reinicializará automáticamente cuando salga de la shell."

# ../rescue.py:164
# ../rescue.py:164
# ../rescue.py:164
#: ../rescue.py:438
#, python-format
msgid ""
"An error occurred trying to mount some or all of your system. Some of it may "
"be mounted under %s.\n"
"\n"
"Press <return> to get a shell. The system will reboot automatically when you "
"exit from the shell."
msgstr ""
"Se ha producido un error al intentar montar algunos o todos los sistemas. "
"Algunos podrían ser montados bajo %s.\n"
"\n"
"Pulse <intro> para obtener una shell. El sistema reinicializará\n"
"automáticamente cuando salga de la shell."

# ../rescue.py:170
# ../rescue.py:170
# ../rescue.py:170
#: ../rescue.py:444
msgid "Rescue Mode"
msgstr "Modo de Rescate"

# ../rescue.py:171
# ../rescue.py:171
# ../rescue.py:171
#: ../rescue.py:445
msgid ""
"You don't have any Linux partitions. Press return to get a shell. The system "
"will reboot automatically when you exit from the shell."
msgstr ""
"No tiene ninguna partición Linux. Pulse Intro para obtener una shell. El "
"sistema se reinicializará cuando salga de la shell."

# ../rescue.py:181
# ../rescue.py:181
# ../rescue.py:181
#: ../rescue.py:458
#, python-format
msgid "Your system is mounted under the %s directory."
msgstr "El sistema está montado bajo el directorio %s."

# ../text.py:265 ../text.py:268
# ../text.py:265 ../text.py:268
# ../text.py:266 ../text.py:269
#: ../text.py:149 ../text.py:164
msgid "Save"
msgstr "Guardar"

#: ../text.py:152 ../text.py:166
msgid "Remote"
msgstr "Remoto"

# ../text.py:265 ../text.py:266
# ../text.py:265 ../text.py:266
# ../text.py:266 ../text.py:267
#: ../text.py:154 ../text.py:162
msgid "Debug"
msgstr "Depurar"

# ../exception.py:83 ../text.py:218
# ../exception.py:83 ../text.py:218
# ../exception.py:83 ../text.py:219
#: ../text.py:158
msgid "Exception Occurred"
msgstr "Ha ocurrido una excepción"

#: ../text.py:187
msgid "Save to Remote Host"
msgstr "Guardar en el host remoto"

# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
#: ../text.py:190
msgid "Host"
msgstr "Host"

#: ../text.py:192
msgid "Remote path"
msgstr "Ruta remota"

# ../textw/userauth_text.py:196
# ../textw/userauth_text.py:204
# ../textw/userauth_text.py:204
#: ../text.py:194
msgid "User name"
msgstr "Nombre de usuario"

# ../textw/userauth_text.py:93
# ../textw/userauth_text.py:101
# ../textw/userauth_text.py:101
#: ../text.py:196
msgid "Password"
msgstr "Contraseña"

# ../text.py:174
# ../text.py:174
# ../text.py:175
#: ../text.py:253
msgid "Help not available"
msgstr "Ayuda no disponible"

# ../text.py:175
# ../text.py:175
# ../text.py:176
#: ../text.py:254
msgid "No help is available for this step of the install."
msgstr "Ayuda no disponible para este paso de la instalación."

# ../iw/account_gui.py:192
# ../iw/account_gui.py:192
# ../iw/account_gui.py:192
#: ../text.py:361
#, python-format
msgid "Please enter your %(instkey)s"
msgstr "Por favor introduzca su %(instkey)s"

#: ../text.py:378 tmp/instkey.glade.h:4
#, no-c-format, python-format
msgid "Skip entering %(instkey)s"
msgstr "Omitir %(instkey)s"

# ../text.py:246
# ../text.py:246
# ../text.py:247
#: ../text.py:409
msgid "Save Crash Dump"
msgstr "Guardar el volcado del fallo"

# ../iw/welcome_gui.py:21 ../iw/welcome_gui.py:48
# ../iw/welcome_gui.py:21 ../iw/welcome_gui.py:48
# ../iw/welcome_gui.py:21 ../iw/welcome_gui.py:48
#: ../text.py:463 ../loader2/lang.c:55 ../loader2/loader.c:155
#, c-format, python-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"

# ../text.py:303
# ../text.py:303
# ../text.py:304
#: ../text.py:470
msgid ""
" <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
"<F1> ayuda|<Tab> cambiar entre elementos|<Espacio> seleccionar|<F12> "
"siguiente"

# ../text.py:305
# ../text.py:305
# ../text.py:306
#: ../text.py:472
msgid ""
"  <Tab>/<Alt-Tab> between elements   |  <Space> selects   |  <F12> next "
"screen"
msgstr ""
" <Tab>/<Alt-Tab> entre elementos | <Espacio> seleccionar | <F12> siguiente "

# ../iw/package_gui.py:30 ../packages.py:37
# ../iw/package_gui.py:30 ../packages.py:37
# ../iw/package_gui.py:30 ../packages.py:38
#: ../upgrade.py:92
msgid "Proceed with upgrade?"
msgstr "¿Desea continuar con la actualización?"

# ../iw/package_gui.py:31 ../packages.py:38
# ../iw/package_gui.py:31 ../packages.py:38
# ../iw/package_gui.py:31 ../packages.py:39
#: ../upgrade.py:93
msgid ""
"The file systems of the Linux installation you have chosen to upgrade have "
"already been mounted. You cannot go back past this point. \n"
"\n"
msgstr ""
"Los sistemas de ficheros de la instalación de Linux que ha escogido para "
"actualizar ya han sido montados. No puede retroceder una vez que haya "
"llegado a este punto.\n"
"\n"

# ../iw/package_gui.py:35 ../packages.py:42
# ../iw/package_gui.py:35 ../packages.py:42
# ../iw/package_gui.py:35 ../packages.py:43
#: ../upgrade.py:97
msgid "Would you like to continue with the upgrade?"
msgstr "¿Le gustaría continuar con la actualización?"

# ../upgrade.py:43
# ../upgrade.py:43
# ../upgrade.py:43
#: ../upgrade.py:133
msgid "Searching"
msgstr "Buscando"

# ../upgrade.py:44
# ../upgrade.py:44
# ../upgrade.py:44
#: ../upgrade.py:134
#, python-format
msgid "Searching for %s installations..."
msgstr "Búsqueda de instalaciones %s..."

# ../upgrade.py:77 ../upgrade.py:209
# ../upgrade.py:77 ../upgrade.py:214
# ../upgrade.py:77
#: ../upgrade.py:189 ../upgrade.py:197
msgid "Dirty File Systems"
msgstr "Sistemas de ficheros incorrectos"

# ../upgrade.py:78
# ../upgrade.py:78
# ../upgrade.py:78
#: ../upgrade.py:190
#, python-format
msgid ""
"The following file systems for your Linux system were not unmounted "
"cleanly.  Please boot your Linux installation, let the file systems be "
"checked and shut down cleanly to upgrade.\n"
"%s"
msgstr ""
"Uno o más de los sistemas de ficheros de su sistema Linux no han sido "
"desmontados correctamente. Le aconsejamos iniciar la instalación de Linux, "
"chequear el sistema de ficheros y cerrar el sistema correctamente para "
"actualizarlo\n"
"%s"

# ../upgrade.py:78
# ../upgrade.py:78
# ../upgrade.py:78
#: ../upgrade.py:198
#, python-format
msgid ""
"The following file systems for your Linux system were not unmounted "
"cleanly.  Would you like to mount them anyway?\n"
"%s"
msgstr ""
"No se han desmontado correctamente uno o más sistemas de ficheros de su\n"
"sistema Linux. ¿Desea montarlos de todas formas?\n"
"%s"

# ../upgrade.py:214
#: ../upgrade.py:337 ../upgrade.py:343
msgid "Mount failed"
msgstr "Montaje fallado"

# ../upgrade.py:210
# ../upgrade.py:215
# ../upgrade.py:215
#: ../upgrade.py:338
msgid ""
"One or more of the file systems listed in the /etc/fstab on your Linux "
"system cannot be mounted. Please fix this problem and try to upgrade again."
msgstr ""
"Uno o más sistemas de ficheros de la lista de /etc/fstab no han podido ser "
"montados. Trate de resolver el problema e intente la actualización de nuevo."

# ../upgrade.py:210
# ../upgrade.py:215
# ../upgrade.py:215
#: ../upgrade.py:344
msgid ""
"One or more of the file systems listed in the /etc/fstab of your Linux "
"system are inconsistent and cannot be mounted.  Please fix this problem and "
"try to upgrade again."
msgstr ""
"Uno o más sistemas de ficheros de la lista de /etc/fstab de su sistema Linux "
"son inconsistentes o no pueden ser montados. Trate de resolver el problema y "
"vuelva a intentar la actualización."

# ../upgrade.py:225
# ../upgrade.py:230
# ../upgrade.py:230
#: ../upgrade.py:361
msgid ""
"The following files are absolute symbolic links, which we do not support "
"during an upgrade. Please change them to relative symbolic links and restart "
"the upgrade.\n"
"\n"
msgstr ""
"Los siguientes archivos son enlaces simbólicos absolutos, no soportados "
"durante la actualización. Por favor, cámbielos a enlaces simbólicos "
"relativos y reinicie la actualización. \n"
"\n"

#: ../upgrade.py:367
msgid "Absolute Symlinks"
msgstr "Symlinks absolutos"

# ../upgrade.py:225
# ../upgrade.py:230
# ../upgrade.py:230
#: ../upgrade.py:378
msgid ""
"The following are directories which should instead be symbolic links, which "
"will cause problems with the upgrade.  Please return them to their original "
"state as symbolic links and restart the upgrade.\n"
"\n"
msgstr ""
"Los siguientes son directorios que deberían ser enlaces simbólicos, lo que "
"causará problemas con la actualización. Por favor, cámbielos a su estado "
"original como enlaces simbólicos y reinicie la actualización. \n"
"\n"

# ../textw/firewall_text.py:135 ../textw/firewall_text.py:199
# ../textw/language_text.py:152
# ../textw/firewall_text.py:135 ../textw/firewall_text.py:199
# ../textw/language_text.py:157
# ../textw/firewall_text.py:135 ../textw/firewall_text.py:199
# ../textw/language_text.py:157
#: ../upgrade.py:384
msgid "Invalid Directories"
msgstr "Directorios inválidos"

# ../upgrade.py:236
# ../upgrade.py:241
# ../upgrade.py:241
#: ../upgrade.py:391
#, python-format
msgid "%s not found"
msgstr "%s no encontrado"

# ../installclasses/upgradeclass.py:8
# ../installclasses/upgradeclass.py:8
# ../installclasses/upgradeclass.py:8
#: ../upgradeclass.py:22
msgid "Upgrade Existing System"
msgstr "Actualización del sistema existente"

# ../installclasses/upgradeclass.py:12
# ../installclasses/upgradeclass.py:12
# ../installclasses/upgradeclass.py:12
#: ../upgradeclass.py:26
msgid "Upgrade"
msgstr "Actualización"

#: ../urlinstall.py:38
msgid "Connecting..."
msgstr "Conectando.."

#: ../urlinstall.py:77
#, python-format
msgid ""
"The file %s cannot be opened.  This is due to a missing file or perhaps a "
"corrupt package.  Please verify your mirror contains all required packages, "
"and try using a different one.\n"
"\n"
"If you reboot, your system will be left in an inconsistent state that will "
"likely require reinstallation.\n"
"\n"
msgstr ""
"El archivo %s no se pudo abrir. Esto se puede deber a que falta el archivo o "
"quizás el paquete esté dañado. Por favor, verifique que su espejo contiene "
"todos los paquetes requeridos, e intente usar un espejo diferente.\n"
"\n"
"Si reinicia, su sistema quedará en un estado inconsistente que seguramente "
"necesitará reinstalación.\n"
"\n"

# ../anaconda:383
# ../anaconda:383
# ../anaconda:383
#: ../vnc.py:47
msgid "Unable to Start X"
msgstr "No se pudo arrancar X"

#: ../vnc.py:48
msgid ""
"X was unable to start on your machine.  Would you like to start VNC to "
"connect to this computer from another computer and perform a graphical "
"install or continue with a text mode install?"
msgstr ""
"X no puede arrancar en su máquina. ¿Le gustaría iniciar VNC para conectarse "
"a este computador desde otra máquina y realizar una instalación gráfica o "
"continuar con una instalación en modo texto?"

# ../mouse.py:280 ../mouse.py:281 ../xserver.py:51 ../xserver.py:52
# ../mouse.py:280 ../mouse.py:281 ../xserver.py:51 ../xserver.py:52
# ../mouse.py:281 ../mouse.py:282 ../xserver.py:51 ../xserver.py:52
#: ../vnc.py:55 ../vnc.py:58
msgid "Use text mode"
msgstr "Utilizar modo texto"

#: ../vnc.py:56
msgid "Start VNC"
msgstr "Iniciar VNC"

# ../iw/silo_gui.py:28
# ../iw/silo_gui.py:28
# ../iw/silo_gui.py:28
#: ../vnc.py:66
msgid "VNC Configuration"
msgstr "Configuración de VNC"

# ../textw/userauth_text.py:21
# ../textw/userauth_text.py:22
# ../textw/userauth_text.py:22
#: ../vnc.py:70
msgid "No password"
msgstr "Sin contraseña"

#: ../vnc.py:73
msgid ""
"A password will prevent unauthorized listeners connecting and monitoring "
"your installation progress.  Please enter a password to be used for the "
"installation"
msgstr ""
"Una contraseña evitará que oyentes no autorizados se conecten y monitoricen  "
"el progreso de su instalación. Por favor introduzca una contraseña a "
"utilizar para la instalación"

# ../iw/account_gui.py:187 ../iw/bootloaderpassword_gui.py:87
# ../loader/urls.c:357 ../textw/userauth_text.py:36
# ../iw/account_gui.py:187 ../iw/bootloaderpassword_gui.py:87
# ../loader/urls.c:357 ../textw/userauth_text.py:37
# ../iw/account_gui.py:187 ../iw/bootloaderpassword_gui.py:87
# ../loader/urls.c:357 ../textw/userauth_text.py:37
#: ../vnc.py:81 ../textw/userauth_text.py:42 ../loader2/urls.c:454
msgid "Password:"
msgstr "Contraseña:"

# ../textw/userauth_text.py:94
# ../textw/userauth_text.py:102
# ../textw/userauth_text.py:102
#: ../vnc.py:82 ../textw/userauth_text.py:43
msgid "Password (confirm):"
msgstr "Contraseña (confirmar):"

# ../textw/userauth_text.py:58 ../textw/userauth_text.py:128
# ../textw/userauth_text.py:59 ../textw/userauth_text.py:136
# ../textw/userauth_text.py:59 ../textw/userauth_text.py:136
#: ../vnc.py:104 ../textw/userauth_text.py:64
msgid "Password Mismatch"
msgstr "Contraseñas distintas"

# ../textw/userauth_text.py:59 ../textw/userauth_text.py:129
# ../textw/userauth_text.py:60 ../textw/userauth_text.py:137
# ../textw/userauth_text.py:60 ../textw/userauth_text.py:137
#: ../vnc.py:105 ../textw/userauth_text.py:65
msgid "The passwords you entered were different. Please try again."
msgstr ""
"Las contraseñas que ha introducido son diferentes. Por favor inténtelo de "
"nuevo."

# ../textw/userauth_text.py:53 ../textw/userauth_text.py:120
# ../textw/userauth_text.py:54 ../textw/userauth_text.py:128
# ../textw/userauth_text.py:54 ../textw/userauth_text.py:128
#: ../vnc.py:110 ../textw/userauth_text.py:59
msgid "Password Length"
msgstr "Longitud de la contraseña"

# ../textw/userauth_text.py:121
# ../textw/userauth_text.py:129
# ../textw/userauth_text.py:129
#: ../vnc.py:111
msgid "The password must be at least six characters long."
msgstr "La contraseña debe tener al menos 6 caracteres de largo."

# ../textw/userauth_text.py:21
# ../textw/userauth_text.py:22
# ../textw/userauth_text.py:22
#: ../vnc.py:141
msgid "VNC Password Error"
msgstr "Contraseña VNC errónea"

#: ../vnc.py:142
msgid ""
"You need to specify a vnc password of at least 6 characters long.\n"
"\n"
"Press <return> to reboot your system.\n"
msgstr ""
"Necesita especificar una contraseña vnc de al menos 6 caracteres.\n"
"\n"
"Presione <return> para reiniciar su sistema.\n"

#: ../vnc.py:187
msgid "Starting VNC..."
msgstr "Iniciando VNC..."

# ../gui.py:668
# ../gui.py:668
# ../gui.py:668
#: ../vnc.py:230
#, python-format
msgid "%s %s installation on host %s"
msgstr "Instalación de %s %s en el host %s"

#: ../vnc.py:232
#, python-format
msgid "%s %s installation"
msgstr "Instalación de %s %s"

#: ../vnc.py:252
msgid "Unable to set vnc password - using no password!"
msgstr "No se puede configurar la contraseña vnc - sin usar una contraseña!"

# ../textw/userauth_text.py:54
# ../textw/userauth_text.py:55
# ../textw/userauth_text.py:55
#: ../vnc.py:253
msgid "Make sure your password is at least 6 characters in length."
msgstr "La contraseña de root debe ser al menos de 6 caracteres de largo. "

#: ../vnc.py:276
msgid ""
"\n"
"\n"
"WARNING!!! VNC server running with NO PASSWORD!\n"
"You can use the vncpassword=<password> boot option\n"
"if you would like to secure the server.\n"
"\n"
msgstr ""
"\n"
"\n"
"¡¡¡ADVERTENCIA!!! ¡El servidor VNC se está ejecutando sin ningún password!\n"
"Puedes usar la opción de arranque vncpassword=<password>\n"
"si quieres hacer seguro el servidor.\n"
"\n"

#: ../vnc.py:280
msgid "The VNC server is now running."
msgstr "El servidor VNC ahora se está ejecutando"

#: ../vnc.py:283
#, python-format
msgid "Attempting to connect to vnc client on host %s..."
msgstr "Intentando conectarse con el cliente vnc en el servidor %s..."

# ../iw/progress_gui.py:256
# ../iw/progress_gui.py:256
# ../iw/progress_gui.py:256
#: ../vnc.py:295
msgid "Connected!"
msgstr "¡Conectado!"

#: ../vnc.py:300
msgid "Giving up attempting to connect after 50 tries!\n"
msgstr "¡Finalizando los intentos de conectarse después de 50 intentos!\n"

#: ../vnc.py:302
#, python-format
msgid "Please manually connect your vnc client to %s to begin the install."
msgstr ""
"Por favor conecte manualmente su cliente vnc a %s para iniciar la instalación"

#: ../vnc.py:304
msgid "Please manually connect your vnc client to begin the install."
msgstr ""
"Por favor conecte manualmente su cliente vnc para iniciar la instalación"

#: ../vnc.py:308
msgid "Will try to connect again in 15 seconds..."
msgstr "Se intentará conectarse después de 15 segundos..."

#: ../vnc.py:316
#, python-format
msgid "Please connect to %s to begin the install..."
msgstr "Por favor, conecte a %s para comenzar la instalación"

#: ../vnc.py:318
msgid "Please connect to begin the install..."
msgstr "Por favor conecte para iniciar la instalacin..."

# ../packages.py:203 ../packages.py:466
# ../packages.py:202 ../packages.py:473
# ../packages.py:203 ../packages.py:474
#: ../yuminstall.py:100
msgid "Processing"
msgstr "Elaboración en curso"

# ../packages.py:204
# ../packages.py:203
# ../packages.py:204
#: ../yuminstall.py:101
msgid "Preparing transaction from installation source..."
msgstr "Preparando la transacción desde la fuente de instalación..."

#: ../yuminstall.py:627 ../yuminstall.py:628
msgid "file conflicts"
msgstr "conflictos de archivo"

#: ../yuminstall.py:629
msgid "older package(s)"
msgstr "Paquete(s) antiguo(s)"

#: ../yuminstall.py:630
msgid "insufficient disk space"
msgstr "espacio de disco insuficiente"

#: ../yuminstall.py:631
msgid "insufficient disk inodes"
msgstr "inodos de disco insuficientes"

#: ../yuminstall.py:632
msgid "package conflicts"
msgstr "conflictos de paquete"

#: ../yuminstall.py:633
msgid "package already installed"
msgstr "paquete ya instalado"

# ../iw/partition_gui.py:642 ../textw/partition_text.py:75
# ../textw/partition_text.py:114
# ../iw/partition_gui.py:642 ../textw/partition_text.py:75
# ../textw/partition_text.py:114
# ../iw/partition_gui.py:642 ../textw/partition_text.py:75
# ../textw/partition_text.py:114
#: ../yuminstall.py:634
msgid "required package"
msgstr "paquete requerido"

#: ../yuminstall.py:635
msgid "package for incorrect arch"
msgstr "paquete para arquitectura incorrecta"

#: ../yuminstall.py:636
msgid "package for incorrect os"
msgstr "paquete para so incorrecto"

#: ../yuminstall.py:650
msgid "You need more space on the following file systems:\n"
msgstr "Necesita más espacio en los siguientes sistemas de archivos:\n"

# ../packages.py:467
# ../packages.py:474
# ../packages.py:475
#: ../yuminstall.py:666
msgid "Error running transaction"
msgstr "Error al ejecutar la transacción"

#: ../yuminstall.py:667
#, python-format
msgid ""
"There was an error running your transaction, for the following reason(s): %s"
msgstr ""
"Ocurrió un error durante su transacción, por la(s) siguiente(s) razon(es): %s"

# ../iw/partition_gui.py:1516
# ../iw/partition_gui.py:1518
# ../iw/partition_gui.py:1526
#: ../yuminstall.py:671 ../yuminstall.py:766 ../yuminstall.py:905
#: ../yuminstall.py:1180
msgid "Re_boot"
msgstr "Reiniciar"

# ../packages.py:96
# ../packages.py:96
# ../packages.py:97
#: ../yuminstall.py:855
msgid "Retrieving installation information..."
msgstr "Obteniendo la información de la instalación..."

# ../packages.py:96
# ../packages.py:96
# ../packages.py:97
#: ../yuminstall.py:857
#, python-format
msgid "Retrieving installation information for %s..."
msgstr "Obteniendo la información de instalación para %s..."

#: ../yuminstall.py:884
#, python-format
msgid ""
"Unable to read package metadata. This may be due to a missing repodata "
"directory.  Please ensure that your install tree has been correctly "
"generated.  %s"
msgstr ""
"No fue posible leer los metadatos del paquete. Puede ser causa de un "
"directorio de datos del repositorio faltante. Por favor asegúrese de que el "
"árbol de instalación ha sido generado correctamente. %s"

#: ../yuminstall.py:900
msgid ""
"Unable to read group information from repositories.  This is a problem with "
"the generation of your install tree."
msgstr ""

#: ../yuminstall.py:932
msgid "Uncategorized"
msgstr "No categorizado"

#: ../yuminstall.py:1174
#, python-format
msgid ""
"Your selected packages require %d MB of free space for installation, but you "
"do not have enough available.  You can change your selections or reboot."
msgstr ""
"Los paquetes seleccionados requieren %d MB de espacio libre para ser "
"instalados, pero usted no tiene suficiente espacio libre disponible. Puede "
"cambiar su selección o reiniciar."

#: ../yuminstall.py:1329
#, python-format
msgid ""
"You appear to be upgrading from a system which is too old to upgrade to this "
"version of %s.  Are you sure you wish to continue the upgrade process?"
msgstr ""
"Pareciera que está actualizando desde un sistema que es demasiado antiguo "
"para ser actualizado a la versión %s. ¿Estas seguro de que deseas continuar "
"con el proceso de actualización?"

# ../gui.py:791
# ../gui.py:791
# ../gui.py:791
#: ../yuminstall.py:1361
msgid "Install Starting"
msgstr "Inicio de la instalación"

#: ../yuminstall.py:1362
msgid "Starting install process.  This may take several minutes..."
msgstr ""
"Iniciando el proceso de instalación. Esto puede tardar varios minutos..."

# ../installclasses/upgradeclass.py:12
# ../installclasses/upgradeclass.py:12
# ../installclasses/upgradeclass.py:12
#: ../yuminstall.py:1378
msgid "Post Upgrade"
msgstr "Post Actualización"

# ../packages.py:631
# ../packages.py:647
# ../packages.py:648
#: ../yuminstall.py:1379
msgid "Performing post upgrade configuration..."
msgstr "Ejecutando configuración post-actualización..."

# ../packages.py:630
# ../packages.py:646
# ../packages.py:647
#: ../yuminstall.py:1381
msgid "Post Install"
msgstr "Post-instalación"

# ../packages.py:631
# ../packages.py:647
# ../packages.py:648
#: ../yuminstall.py:1382
msgid "Performing post install configuration..."
msgstr "Configuración post-instalación..."

# ../iw/installpath_gui.py:35 ../textw/installpath_text.py:45
# ../iw/installpath_gui.py:35 ../textw/installpath_text.py:45
# ../iw/installpath_gui.py:35 ../textw/installpath_text.py:45
#: ../yuminstall.py:1573
msgid "Installation Progress"
msgstr "Progreso de la instalación"

# ../packages.py:153
# ../packages.py:153
# ../packages.py:154
#: ../yuminstall.py:1608
msgid "Dependency Check"
msgstr "Comprobación de las dependencias"

# ../packages.py:154
# ../packages.py:154
# ../packages.py:155
#: ../yuminstall.py:1609
msgid "Checking dependencies in packages selected for installation..."
msgstr "Comprobando dependencias en los paquetes seleccionados..."

#: ../zfcp.py:43
msgid "You have not specified a device number or the number is invalid"
msgstr "No ha especificado un número de dispositivo o el número es inválido"

#: ../zfcp.py:45
msgid "You have not specified a worldwide port name or the name is invalid."
msgstr ""
"No ha especificado un nombre de puerto universal o el nombre es inválido."

#: ../zfcp.py:47
msgid "You have not specified a FCP LUN or the number is invalid."
msgstr "No ha especificado un FCP LUN  o el número es inválido."

# ../textw/userauth_text.py:21
# ../textw/userauth_text.py:22
# ../textw/userauth_text.py:22
#: ../iw/account_gui.py:25
msgid "Set Root Password"
msgstr "Coloque la contraseña de root"

# ../textw/userauth_text.py:21
# ../textw/userauth_text.py:22
# ../textw/userauth_text.py:22
#: ../iw/account_gui.py:40 ../iw/account_gui.py:48 ../iw/account_gui.py:55
#: ../iw/account_gui.py:64 ../textw/userauth_text.py:69
msgid "Error with Password"
msgstr "Error con la contraseña"

#: ../iw/account_gui.py:41
msgid ""
"You must enter your root password and confirm it by typing it a second time "
"to continue."
msgstr ""
"Debe ingresar su contraseña de root y confirmarla escribiéndola una vez más "
"para continuar."

# ../textw/userauth_text.py:59 ../textw/userauth_text.py:129
# ../textw/userauth_text.py:60 ../textw/userauth_text.py:137
# ../textw/userauth_text.py:60 ../textw/userauth_text.py:137
#: ../iw/account_gui.py:49
msgid "The passwords you entered were different.  Please try again."
msgstr ""
"Las contraseñas que ha introducido son diferentes. Por favor inténtelo de "
"nuevo."

# ../textw/userauth_text.py:54
# ../textw/userauth_text.py:55
# ../textw/userauth_text.py:55
#: ../iw/account_gui.py:56
msgid "The root password must be at least six characters long."
msgstr "La contraseña de root debe ser al menos de 6 caracteres de largo."

#: ../iw/account_gui.py:65 ../textw/userauth_text.py:70
msgid ""
"Requested password contains non-ascii characters which are not allowed for "
"use in password."
msgstr ""
"La contraseña solicitada contiene caracteres que no son AS-CII los cuales no "
"son permitidos. "

#: ../iw/account_gui.py:93
msgid ""
"The root account is used for administering the system.  Enter a password for "
"the root user."
msgstr ""
"La cuenta root se utiliza para la administración del sistema. Introduzca una "
"contraseña para el usuario root."

# ../textw/userauth_text.py:21
# ../textw/userauth_text.py:22
# ../textw/userauth_text.py:22
#: ../iw/account_gui.py:110
msgid "Root _Password: "
msgstr "Contraseña de _root:"

# ../iw/account_gui.py:289
# ../iw/account_gui.py:289
# ../iw/account_gui.py:289
#: ../iw/account_gui.py:113
msgid "_Confirm: "
msgstr "_Confirmar: "

#: ../iw/autopart_type.py:139
msgid "Invalid Initiator Name"
msgstr "Nombre del iniciador inválido"

#: ../iw/autopart_type.py:140
msgid "You must provide a non-zero length initiator name."
msgstr "Debe proveer un nombre de iniciación de longitud distinto a cero."

# ../iw/partition_gui.py:1159 ../iw/partition_gui.py:1168
# ../iw/partition_gui.py:1206 ../iw/partition_gui.py:1468
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1161 ../iw/partition_gui.py:1170
# ../iw/partition_gui.py:1208 ../iw/partition_gui.py:1470
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1162 ../iw/partition_gui.py:1171
# ../iw/partition_gui.py:1209 ../iw/partition_gui.py:1477
# ../textw/partition_text.py:750 ../textw/partition_text.py:772
# ../textw/partition_text.py:901
#: ../iw/autopart_type.py:163
msgid "Error with Data"
msgstr "Error con los datos"

# ../autopart.py:965
# ../autopart.py:972
# ../autopart.py:972
#: ../iw/autopart_type.py:249 ../textw/partition_text.py:1537
msgid "Remove all partitions on selected drives and create default layout."
msgstr "Remover particiones en dispositivos seleccionados y crear disposición."

#: ../iw/autopart_type.py:250 ../textw/partition_text.py:1538
msgid "Remove linux partitions on selected drives and create default layout."
msgstr ""
"Remover particiones de linux en dispositivos seleccionados y crear "
"disposición."

#: ../iw/autopart_type.py:251 ../textw/partition_text.py:1539
msgid "Use free space on selected drives and create default layout."
msgstr ""
"Usar espacio disponible en dispositivos seleccionados y crear disposición."

#: ../iw/autopart_type.py:252 ../textw/partition_text.py:1540
msgid "Create custom layout."
msgstr "Crear disposición personalizada."

# ../iw/bootloaderpassword_gui.py:77 ../textw/bootloader_text.py:362
# ../iw/bootloaderpassword_gui.py:77 ../textw/bootloader_text.py:362
# ../iw/bootloaderpassword_gui.py:77 ../textw/bootloader_text.py:367
#: ../iw/blpasswidget.py:37
msgid ""
"A boot loader password prevents users from changing options passed to the "
"kernel.  For greater system security, it is recommended that you set a "
"password."
msgstr ""
"Una contraseña de gestor de arranque evita que los usuarios pasen opciones "
"arbitrarias al kernel.  Para una mayor seguridad, le recomendamos que "
"seleccione una contraseña. "

# ../textw/bootloader_text.py:384
# ../textw/bootloader_text.py:384
# ../textw/bootloader_text.py:389
#: ../iw/blpasswidget.py:42
msgid "_Use a boot loader password"
msgstr "_Usar la contraseña del gestor de arranque"

# ../iw/account_gui.py:77
# ../iw/account_gui.py:77
# ../iw/account_gui.py:77
#: ../iw/blpasswidget.py:73
msgid "Change _password"
msgstr "Cambiar _contraseña"

# ../textw/bootloader_text.py:384
# ../textw/bootloader_text.py:384
# ../textw/bootloader_text.py:389
#: ../iw/blpasswidget.py:96
msgid "Enter Boot Loader Password"
msgstr "Introduzca la contraseña del cargador de arranque"

#: ../iw/blpasswidget.py:102
msgid ""
"Enter a boot loader password and then confirm it.  (Note that your BIOS "
"keymap may be different than the actual keymap you are used to.)"
msgstr ""
"Teclea un password para el gestor de arranque y luego confirmalo. (Ten en "
"cuenta que el mapa de teclado (keymap) del BIOS puede ser distinto al que "
"estás utilizando.)"

# ../iw/account_gui.py:187 ../iw/bootloaderpassword_gui.py:87
# ../loader/urls.c:357 ../textw/userauth_text.py:36
# ../iw/account_gui.py:187 ../iw/bootloaderpassword_gui.py:87
# ../loader/urls.c:357 ../textw/userauth_text.py:37
# ../iw/account_gui.py:187 ../iw/bootloaderpassword_gui.py:87
# ../loader/urls.c:357 ../textw/userauth_text.py:37
#: ../iw/blpasswidget.py:109
msgid "_Password:"
msgstr "_Contraseña:"

# ../iw/account_gui.py:189 ../iw/bootloaderpassword_gui.py:91
# ../textw/bootloader_text.py:385
# ../iw/account_gui.py:189 ../iw/bootloaderpassword_gui.py:91
# ../textw/bootloader_text.py:385
# ../iw/account_gui.py:189 ../iw/bootloaderpassword_gui.py:91
# ../textw/bootloader_text.py:390
#: ../iw/blpasswidget.py:115
msgid "Con_firm:"
msgstr "Con_firmar: "

# ../textw/bootloader_text.py:415
# ../textw/bootloader_text.py:415
# ../textw/bootloader_text.py:420
#: ../iw/blpasswidget.py:136
msgid "Passwords don't match"
msgstr "Las contraseñas no coinciden"

# ../textw/bootloader_text.py:415
# ../textw/bootloader_text.py:415
# ../textw/bootloader_text.py:420
#: ../iw/blpasswidget.py:137 ../textw/bootloader_text.py:440
msgid "Passwords do not match"
msgstr "Las contraseñas no coinciden"

# ../iw/bootloaderpassword_gui.py:30 ../textw/bootloader_text.py:425
# ../iw/bootloaderpassword_gui.py:30 ../textw/bootloader_text.py:425
# ../iw/bootloaderpassword_gui.py:30 ../textw/bootloader_text.py:430
#: ../iw/blpasswidget.py:146 ../textw/bootloader_text.py:450
msgid ""
"Your boot loader password is less than six characters.  We recommend a "
"longer boot loader password.\n"
"\n"
"Would you like to continue with this password?"
msgstr ""
"Su contraseña del gestor de arranque tiene menos de seis caracteres.  Le "
"recomendamos una contraseña más larga.\n"
"\n"
"¿Desea continuar con esta contraseña?"

# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:283 ../textw/bootloader_text.py:367
# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:283 ../textw/bootloader_text.py:367
# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:286 ../textw/bootloader_text.py:372
#: ../iw/bootloader_advanced_gui.py:27
msgid "Advanced Boot Loader Configuration"
msgstr "Configuración avanzada del gestor de arranque"

# ../iw/bootloader_gui.py:59 ../textw/bootloader_text.py:129
# ../iw/bootloader_gui.py:59 ../textw/bootloader_text.py:129
# ../iw/bootloader_gui.py:59 ../textw/bootloader_text.py:129
#: ../iw/bootloader_advanced_gui.py:42 ../textw/bootloader_text.py:125
msgid ""
"Forcing the use of LBA32 for your bootloader when not supported by the BIOS "
"can cause your machine to be unable to boot.\n"
"\n"
"Would you like to continue and force LBA32 mode?"
msgstr ""
"El hecho de forzar el uso de LBA32 para su gestor de arranque cuando no está "
"soportado por la BIOS puede causar que su ordenador sea incapaz de "
"arrancar.\n"
"\n"
"¿Desea continuar y forzar el modo LBA32?"

#: ../iw/bootloader_advanced_gui.py:48
msgid "Force LBA32"
msgstr "Forzar el uso de LBA32"

# ../iw/bootloader_gui.py:337 ../textw/bootloader_text.py:106
# ../iw/bootloader_gui.py:337 ../textw/bootloader_text.py:106
# ../iw/bootloader_gui.py:337 ../textw/bootloader_text.py:106
#: ../iw/bootloader_advanced_gui.py:69
msgid "_Force LBA32 (not normally required)"
msgstr "_Forzar el uso de LBA32 (generalmente no se necesita)"

#: ../iw/bootloader_advanced_gui.py:73
msgid ""
"If you wish to add default options to the boot command, enter them into the "
"'General kernel parameters' field."
msgstr ""
"Si desea añadir opciones preterminadas para arrancar el comando, "
"introdúzcalas en el campo 'Parámetros generales del kernel'"

# ../iw/silo_gui.py:216
# ../iw/silo_gui.py:216
# ../iw/silo_gui.py:216
#: ../iw/bootloader_advanced_gui.py:79
msgid "_General kernel parameters"
msgstr "_Parámetros generales del kernel"

# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:283 ../textw/bootloader_text.py:367
# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:283 ../textw/bootloader_text.py:367
# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:286 ../textw/bootloader_text.py:372
#: ../iw/bootloader_main_gui.py:30 ../textw/bootloader_text.py:42
#: ../textw/bootloader_text.py:108 ../textw/bootloader_text.py:165
#: ../textw/bootloader_text.py:283 ../textw/bootloader_text.py:392
msgid "Boot Loader Configuration"
msgstr "Configuración del gestor de arranque"

#: ../iw/bootloader_main_gui.py:117
#, python-format
msgid "The %s boot loader will be installed on /dev/%s."
msgstr "El gestor de arranque %s está instalado en /dev/%s."

#: ../iw/bootloader_main_gui.py:123
msgid "No boot loader will be installed."
msgstr "No se instalará ningún gestor de arranque."

# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:283 ../textw/bootloader_text.py:367
# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:283 ../textw/bootloader_text.py:367
# ../iw/bootloader_gui.py:29 ../textw/bootloader_text.py:50
# ../textw/bootloader_text.py:112 ../textw/bootloader_text.py:163
# ../textw/bootloader_text.py:286 ../textw/bootloader_text.py:372
#: ../iw/bootloader_main_gui.py:152
msgid "Configure advanced boot loader _options"
msgstr "Configurar las _opciones del gestor de arranque"

# ../iw/bootloader_gui.py:305
# ../iw/bootloader_gui.py:305
# ../iw/bootloader_gui.py:305
#: ../iw/bootlocwidget.py:39
msgid "Install Boot Loader record on:"
msgstr "Instalar el gestor de arranque en:"

#: ../iw/bootlocwidget.py:72
msgid "_Change Drive Order"
msgstr "_Cambiar el orden de la unidad"

#: ../iw/bootlocwidget.py:84
msgid "Edit Drive Order"
msgstr "Modificar el orden de la unidad "

#: ../iw/bootlocwidget.py:89
msgid ""
"Arrange the drives to be in the same order as used by the BIOS. Changing the "
"drive order may be useful if you have multiple SCSI adapters or both SCSI "
"and IDE adapters and want to boot from the SCSI device.\n"
"\n"
"Changing the drive order will change where the installation program locates "
"the Master Boot Record (MBR)."
msgstr ""
"Disponga sus unidades de manera que sean gestionadas por su BIOS. "
"Generalmente esto es sólo útil si tiene adaptadores múltiples SCSI o ambos "
"SCSI e IDE y desea arrancar desde el dispositivo SCSI.\n"
"\n"
"El cambio del orden de la unidad hará que el programa de instalación cambie "
"el lugar en el que el Master Boot Record (MBR) está ubicado."

# ../iw/partition_gui.py:1516
# ../iw/partition_gui.py:1518
# ../iw/partition_gui.py:1526
#: ../iw/confirm_gui.py:29 ../textw/confirm_text.py:35
#: ../textw/confirm_text.py:63
msgid "Reboot?"
msgstr "¿Reiniciar?"

#: ../iw/confirm_gui.py:30 ../textw/confirm_text.py:36
#: ../textw/confirm_text.py:64
msgid "The system will be rebooted now."
msgstr "Su sistema será reiniciado ahora."

# ../iw/confirm_gui.py:54
# ../iw/confirm_gui.py:54
# ../iw/confirm_gui.py:54
#: ../iw/confirm_gui.py:74
msgid "About to Install"
msgstr "Comenzar la instalación"

# ../iw/confirm_gui.py:59
# ../iw/confirm_gui.py:59
# ../iw/confirm_gui.py:59
#: ../iw/confirm_gui.py:80
#, python-format
msgid "Click next to begin installation of %s."
msgstr "Pulse en Siguiente para iniciar la instalación de %s."

#: ../iw/confirm_gui.py:81
#, python-format
msgid ""
"A complete log of the installation can be found in the file '%s' after "
"rebooting your system.\n"
"\n"
"A kickstart file containing the installation options selected can be found "
"in the file '%s' after rebooting the system."
msgstr ""
"El registro completo de la instalación puede encontrarse en el archivo '%s' "
"luego de reiniciar su sistema.\n"
"\n"
"Podrá encontrar un archivo kickstart con las opciones de instalación "
"seleccionadas en el archivo '%s' luego de reiniciar el sistema."

# ../iw/confirm_gui.py:67
# ../iw/confirm_gui.py:67
# ../iw/confirm_gui.py:67
#: ../iw/confirm_gui.py:88
msgid "About to Upgrade"
msgstr "Sobre la actualización"

# ../iw/confirm_gui.py:72
# ../iw/confirm_gui.py:72
# ../iw/confirm_gui.py:72
#: ../iw/confirm_gui.py:94
#, python-format
msgid "Click next to begin upgrade of %s."
msgstr "Pulse en Siguiente para iniciar la actualización de %s."

#: ../iw/confirm_gui.py:95
#, python-format
msgid ""
"A complete log of the upgrade can be found in the file '%s' after rebooting "
"your system."
msgstr ""
"Puede encontrar un registro de la actualización en el fichero '%s' tras "
"haber reiniciado su sistema."

# ../iw/congrats_gui.py:21 ../iw/congrats_gui.py:75
# ../iw/congrats_gui.py:22 ../iw/congrats_gui.py:83
# ../iw/congrats_gui.py:22 ../iw/congrats_gui.py:83
#: ../iw/congrats_gui.py:24
msgid "Congratulations"
msgstr "Enhorabuena"

#: ../iw/congrats_gui.py:60
msgid ""
"Remove any media used during the installation process and press the \"Reboot"
"\" button to reboot your system.\n"
"\n"
msgstr ""
"Remueva cualquier medio de instalación usado durante el proceso y pulse "
"\"Reiniciar\" para reiniciar su sistema.\n"
"\n"

#: ../iw/congrats_gui.py:65
#, python-format
msgid ""
"Congratulations, the installation is complete.\n"
"\n"
"%s%s"
msgstr ""
"Enhorabuena, la instalación ha sido completada.\n"
"\n"
"%s%s"

# ../iw/partition_gui.py:908
# ../iw/partition_gui.py:910
# ../iw/partition_gui.py:911
#: ../iw/driveorderwidget.py:44
msgid "Drive"
msgstr "Unidad"

# ../iw/progress_gui.py:192 ../iw/progress_gui.py:245
# ../iw/progress_gui.py:192 ../iw/progress_gui.py:245
# ../iw/progress_gui.py:192 ../iw/progress_gui.py:245
#: ../iw/driveorderwidget.py:44 ../textw/partition_text.py:1446
msgid "Size"
msgstr "Tamaño"

# ../iw/keyboard_gui.py:111
# ../iw/keyboard_gui.py:111
# ../iw/keyboard_gui.py:111
#: ../iw/driveorderwidget.py:44
msgid "Model"
msgstr "Modelo"

# ../iw/examine_gui.py:23
# ../iw/examine_gui.py:23
# ../iw/examine_gui.py:23
#: ../iw/examine_gui.py:31
msgid "Upgrade Examine"
msgstr "Examinar la actualización"

# ../installclass.py:27
# ../installclass.py:27
# ../installclass.py:28
#: ../iw/examine_gui.py:59
#, python-format
msgid "_Install %s"
msgstr "_Instalar %s"

#: ../iw/examine_gui.py:61
msgid ""
"Choose this option to freshly install your system. Existing software and "
"data may be overwritten depending on your configuration choices."
msgstr ""
"Seleccione esta opción para realizar una instalación fresca. Dependiendo de "
"la configuración que seleccione, el software y los datos existentes podrían "
"ser sobreescritos."

# ../installclasses/upgradeclass.py:8
# ../installclasses/upgradeclass.py:8
# ../installclasses/upgradeclass.py:8
#: ../iw/examine_gui.py:65
msgid "_Upgrade an existing installation"
msgstr "_Actualizar una instalación existente "

#: ../iw/examine_gui.py:67
#, python-format
msgid ""
"Choose this option if you would like to upgrade your existing %s system.  "
"This option will preserve the existing data on your drives."
msgstr ""
"Seleccione esta opción si desea actualizar su sistema %s existente. Esta "
"opción mantendrá los datos existentes en sus unidades. "

#: ../iw/examine_gui.py:114 ../iw/pixmapRadioButtonGroup_gui.py:197
msgid "The following installed system will be upgraded:"
msgstr "Se actualizará el siguiente producto:"

# ../loader/urls.c:247
# ../loader/urls.c:247
# ../loader/urls.c:247
#: ../iw/examine_gui.py:127
msgid "Unknown Linux system"
msgstr "Sistema Linux desconocido"

# ../gui.py:382 ../iw/language_gui.py:20 ../textw/language_text.py:43
# ../gui.py:382 ../iw/language_gui.py:20 ../textw/language_text.py:38
# ../gui.py:382 ../iw/language_gui.py:20 ../textw/language_text.py:38
#: ../iw/language_gui.py:24 ../textw/language_text.py:41
msgid "Language Selection"
msgstr "Selección del idioma"

# ../iw/language_gui.py:49 ../textw/language_text.py:44
# ../iw/language_gui.py:49 ../textw/language_text.py:39
# ../iw/language_gui.py:49 ../textw/language_text.py:39
#: ../iw/language_gui.py:67 ../textw/language_text.py:42 ../loader2/lang.c:367
msgid "What language would you like to use during the installation process?"
msgstr "¿Qué idioma le gustaría usar durante el proceso de instalación?"

#: ../iw/lvm_dialog_gui.py:115 ../iw/lvm_dialog_gui.py:162
#: ../iw/lvm_dialog_gui.py:173 ../iw/lvm_dialog_gui.py:213
#: ../iw/lvm_dialog_gui.py:287 ../iw/lvm_dialog_gui.py:601
#: ../iw/lvm_dialog_gui.py:669 ../iw/lvm_dialog_gui.py:880
#: ../textw/partition_text.py:1300 ../textw/partition_text.py:1319
msgid "Not enough space"
msgstr "No existe demasiado espacio"

#: ../iw/lvm_dialog_gui.py:116
msgid ""
"The physical extent size cannot be changed because otherwise the space "
"required by the currently defined logical volumes will be increased to more "
"than the available space."
msgstr ""
"El tamaño físico extendido no puede ser cambiado porque de lo contrario el "
"espacio necesario por los volúmenes lógicos definidos en al actualidad "
"incrementará para a más del espacio disponible."

#: ../iw/lvm_dialog_gui.py:125
msgid "Confirm Physical Extent Change"
msgstr "Confirme el cambio de extensión física"

#: ../iw/lvm_dialog_gui.py:126
msgid ""
"This change in the value of the physical extent will require the sizes of "
"the current logical volume requests to be rounded up in size to an integer "
"multiple of the physical extent.\n"
"\n"
"This change will take affect immediately."
msgstr ""
"Este cambio es el valor de la extensión física que le pedirá las medidas de "
"las peticiones del volumen lógicas en la actualidad para que sean "
"redondeadas en tamaño para integrar muchas de las extensiones\n"
"\n"
"Este cambio surtirá efecto inmediatamente."

# ../rescue.py:99
# ../rescue.py:99
# ../rescue.py:99
#: ../iw/lvm_dialog_gui.py:135 ../iw/lvm_dialog_gui.py:195
#: ../iw/network_gui.py:143 ../iw/network_gui.py:147 ../iw/network_gui.py:167
msgid "C_ontinue"
msgstr "C_ontinuar"

#: ../iw/lvm_dialog_gui.py:163
#, python-format
msgid ""
"The physical extent size cannot be changed because the value selected (%"
"10.2f MB) is larger than the smallest physical volume (%10.2f MB) in the "
"volume group."
msgstr ""
"No se puede cambiar el tamaño de extensión porque el valor seleccionado (%"
"10.2f MB) es mayor que el volumen físico más pequeño (%10.2f MB) del grupo "
"de volúmenes."

#: ../iw/lvm_dialog_gui.py:174
#, python-format
msgid ""
"The physical extent size cannot be changed because the value selected (%"
"10.2f MB) is too large compared to the size of the smallest physical volume "
"(%10.2f MB) in the volume group."
msgstr ""
"No se puede cambiar el tamaño de extensión porque el valor seleccionado (%"
"10.2f MB) es mayor que el volumen físico más pequeño (%10.2f MB) del grupo "
"de volúmenes."

#: ../iw/lvm_dialog_gui.py:188
msgid "Too small"
msgstr "Demasiado pequeño"

#: ../iw/lvm_dialog_gui.py:189
msgid ""
"This change in the value of the physical extent will waste substantial space "
"on one or more of the physical volumes in the volume group."
msgstr ""
"Este cambio en el valor de la extensión física le supondrá un espacio "
"substancial en uno o más de los volúmenes físicos en el grupo de volumen."

#: ../iw/lvm_dialog_gui.py:214
#, python-format
msgid ""
"The physical extent size cannot be changed because the resulting maximum "
"logical volume size (%10.2f MB) is smaller than one or more of the currently "
"defined logical volumes."
msgstr ""
"El tamaño de extensión física no se puede cambiar porque el tamaño de "
"volumen lógico máximo (%10.2f MB) es menor de uno y mayor de los volúmenes "
"lógicos definidos actualmente."

#: ../iw/lvm_dialog_gui.py:288
msgid ""
"You cannot remove this physical volume because otherwise the volume group "
"will be too small to hold the currently defined logical volumes."
msgstr ""
"No puede borrar el volumen físico porque de lo contrario el grupo de volumen "
"será menor a los volúmenes lógicos definidos en la actualidad."

#: ../iw/lvm_dialog_gui.py:368 ../textw/partition_text.py:1138
msgid "Make Logical Volume"
msgstr "Crear volumen lógico"

#: ../iw/lvm_dialog_gui.py:371
#, python-format
msgid "Edit Logical Volume: %s"
msgstr "Modificar volumen lógico: %s"

#: ../iw/lvm_dialog_gui.py:373 ../textw/partition_text.py:1136
msgid "Edit Logical Volume"
msgstr "Modificar volumen lógico"

# ../iw/partition_gui.py:860 ../iw/partition_gui.py:1338
# ../textw/partition_text.py:205
# ../iw/partition_gui.py:862 ../iw/partition_gui.py:1340
# ../textw/partition_text.py:205
# ../iw/partition_gui.py:863 ../iw/partition_gui.py:1347
# ../textw/partition_text.py:205
#: ../iw/lvm_dialog_gui.py:386 ../iw/partition_dialog_gui.py:293
#: ../iw/raid_dialog_gui.py:284
msgid "_Mount Point:"
msgstr "_Punto de montaje:"

# ../iw/partition_gui.py:868 ../textw/partition_text.py:603
# ../iw/partition_gui.py:870 ../textw/partition_text.py:603
# ../iw/partition_gui.py:871 ../textw/partition_text.py:604
#: ../iw/lvm_dialog_gui.py:394 ../iw/raid_dialog_gui.py:293
msgid "_File System Type:"
msgstr "_Tipo de sistema de archivos:"

# ../iw/partition_gui.py:876
# ../iw/partition_gui.py:878
# ../iw/partition_gui.py:879
#: ../iw/lvm_dialog_gui.py:404 ../iw/partition_dialog_gui.py:312
#: ../iw/raid_dialog_gui.py:303
msgid "Original File System Type:"
msgstr "Tipo de sistema de archivos original:"

# ../iw/partition_gui.py:885
# ../iw/partition_gui.py:887
# ../iw/partition_gui.py:888
#: ../iw/lvm_dialog_gui.py:409 ../iw/partition_dialog_gui.py:323
#: ../iw/raid_dialog_gui.py:308
msgid "Unknown"
msgstr "Desconocido"

# ../iw/partition_gui.py:917
# ../iw/partition_gui.py:919
# ../iw/partition_gui.py:920
#: ../iw/lvm_dialog_gui.py:415 ../iw/partition_dialog_gui.py:357
#: ../iw/raid_dialog_gui.py:314
msgid "Original File System Label:"
msgstr "Etiqueta del sistema de archivos original:"

#: ../iw/lvm_dialog_gui.py:424
msgid "_Logical Volume Name:"
msgstr "_Nombre de volumen lógico:"

#: ../iw/lvm_dialog_gui.py:432 ../textw/partition_text.py:287
msgid "Logical Volume Name:"
msgstr "Nombre de volumen lógico:"

# ../iw/partition_gui.py:928 ../iw/partition_gui.py:943
# ../iw/partition_gui.py:979 ../textw/partition_text.py:282
# ../textw/partition_text.py:365 ../textw/partition_text.py:619
# ../iw/partition_gui.py:930 ../iw/partition_gui.py:945
# ../iw/partition_gui.py:981 ../textw/partition_text.py:282
# ../textw/partition_text.py:365 ../textw/partition_text.py:619
# ../iw/partition_gui.py:931 ../iw/partition_gui.py:946
# ../iw/partition_gui.py:982 ../textw/partition_text.py:282
# ../textw/partition_text.py:365 ../textw/partition_text.py:620
#: ../iw/lvm_dialog_gui.py:440 ../iw/partition_dialog_gui.py:369
msgid "_Size (MB):"
msgstr "_Tamaño (MB)"

# ../iw/partition_gui.py:928 ../iw/partition_gui.py:943
# ../iw/partition_gui.py:979 ../textw/partition_text.py:282
# ../textw/partition_text.py:365 ../textw/partition_text.py:619
# ../iw/partition_gui.py:930 ../iw/partition_gui.py:945
# ../iw/partition_gui.py:981 ../textw/partition_text.py:282
# ../textw/partition_text.py:365 ../textw/partition_text.py:619
# ../iw/partition_gui.py:931 ../iw/partition_gui.py:946
# ../iw/partition_gui.py:982 ../textw/partition_text.py:282
# ../textw/partition_text.py:365 ../textw/partition_text.py:620
#: ../iw/lvm_dialog_gui.py:446 ../iw/partition_dialog_gui.py:386
#: ../iw/partition_dialog_gui.py:429 ../textw/partition_text.py:302
#: ../textw/partition_text.py:379 ../textw/partition_text.py:462
#: ../textw/partition_text.py:570
msgid "Size (MB):"
msgstr "Tamaño (MB)"

#: ../iw/lvm_dialog_gui.py:461
#, python-format
msgid "(Max size is %s MB)"
msgstr "El tamaño máximo es de %s MB)"

# ../textw/packages_text.py:116
# ../textw/packages_text.py:116
# ../textw/packages_text.py:116
#: ../iw/lvm_dialog_gui.py:522 ../textw/partition_text.py:1289
msgid "Illegal size"
msgstr "Tamaño ilegal"

# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
#: ../iw/lvm_dialog_gui.py:523 ../textw/partition_text.py:1290
msgid "The requested size as entered is not a valid number greater than 0."
msgstr ""
"El tamaño necesario como se ha introducido no es un número válido mayor de 0."

# ../iw/partition_gui.py:1533 ../iw/upgrade_swap_gui.py:121
# ../packages.py:565 ../packages.py:585 ../textw/upgrade_text.py:106
# ../iw/partition_gui.py:1535 ../iw/upgrade_swap_gui.py:121
# ../packages.py:581 ../packages.py:601 ../textw/upgrade_text.py:106
# ../iw/partition_gui.py:1543 ../iw/upgrade_swap_gui.py:123
# ../packages.py:582 ../packages.py:602 ../textw/upgrade_text.py:106
#: ../iw/lvm_dialog_gui.py:556
msgid "Mount point in use"
msgstr "Punto de montaje en uso"

# ../partitioning.py:
# ../partitioning.py:364
# ../partitioning.py:379
# ../partitioning.py:379
#: ../iw/lvm_dialog_gui.py:557
#, python-format
msgid "The mount point \"%s\" is in use, please pick another."
msgstr ""
"El punto de montaje %s se está usando en la actualidad. Por favor seleccione "
"otro punto de montaje."

#: ../iw/lvm_dialog_gui.py:568 ../textw/partition_text.py:1260
msgid "Illegal Logical Volume Name"
msgstr "Nombre de volumen lógico ilegal"

#: ../iw/lvm_dialog_gui.py:587 ../textw/partition_text.py:1277
msgid "Illegal logical volume name"
msgstr "Nombre de volumen lógico ilegal"

#: ../iw/lvm_dialog_gui.py:588 ../textw/partition_text.py:1278
#, python-format
msgid "The logical volume name \"%s\" is already in use. Please pick another."
msgstr "El nombre de volumen lógico  \"%s\" ya está en uso. Esoja otro."

#: ../iw/lvm_dialog_gui.py:602
#, python-format
msgid ""
"The current requested size (%10.2f MB) is larger than maximum logical volume "
"size (%10.2f MB). To increase this limit you can create more Physical "
"Volumes from unpartitioned disk space and add them to this Volume Group."
msgstr ""
"El tamaño actual necesario (%10.2f MB) es mayor del tamaño de volumen lógico "
"máximo (%10.2f MB). Para incrementar este límite puede crear más Volúmenes "
"Físicos desde el espacio de disco sin particionar y añadalos al Grupo Lógico."

# ../iw/partition_gui.py:1159 ../iw/partition_gui.py:1168
# ../iw/partition_gui.py:1206 ../iw/partition_gui.py:1468
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1161 ../iw/partition_gui.py:1170
# ../iw/partition_gui.py:1208 ../iw/partition_gui.py:1470
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1162 ../iw/partition_gui.py:1171
# ../iw/partition_gui.py:1209 ../iw/partition_gui.py:1477
# ../textw/partition_text.py:750 ../textw/partition_text.py:772
# ../textw/partition_text.py:901
#: ../iw/lvm_dialog_gui.py:646 ../iw/partition_dialog_gui.py:179
#: ../iw/partition_dialog_gui.py:191 ../iw/partition_dialog_gui.py:239
#: ../iw/raid_dialog_gui.py:211 ../textw/partition_text.py:911
#: ../textw/partition_text.py:933 ../textw/partition_text.py:1106
#: ../textw/partition_text.py:1339
msgid "Error With Request"
msgstr "Error en la petición"

#: ../iw/lvm_dialog_gui.py:670 ../iw/lvm_dialog_gui.py:881
#, python-format
msgid ""
"The logical volumes you have configured require %g MB, but the volume group "
"only has %g MB.  Please either make the volume group larger or make the "
"logical volume(s) smaller."
msgstr ""
"Los volúmenes lógicos que ha configurado necesitan %g MB, pero el grupo de "
"volumen tiene tan sólo %g MB. Introduzca el grupo de volumen mayor o reduzca "
"el volumen lógico."

#: ../iw/lvm_dialog_gui.py:720
msgid "No free slots"
msgstr "Ningún espacio libre"

#: ../iw/lvm_dialog_gui.py:721
#, python-format
msgid "You cannot create more than %s logical volumes per volume group."
msgstr "No puede crear más volúmenes lógicos  %s por grupo de volumen."

# ../iw/partition_gui.py:642 ../textw/partition_text.py:75
# ../textw/partition_text.py:114
# ../iw/partition_gui.py:642 ../textw/partition_text.py:75
# ../textw/partition_text.py:114
# ../iw/partition_gui.py:642 ../textw/partition_text.py:75
# ../textw/partition_text.py:114
#: ../iw/lvm_dialog_gui.py:727
msgid "No free space"
msgstr "No existe espacio libre"

#: ../iw/lvm_dialog_gui.py:728
msgid ""
"There is no room left in the volume group to create new logical volumes. To "
"add a logical volume you will need to reduce the size of one or more of the "
"currently existing logical volumes"
msgstr ""
"No existe espacio libre en el grupo de volumen para crear volúmenes lógicos. "
"Para añadir un volumen lógico necesitará reducir el tamaño de un o más de "
"los volúmenes lógicos existentes."

# ../partitioning.py:1555
# ../partitioning.py:1575
# ../partitioning.py:1578
#: ../iw/lvm_dialog_gui.py:756
#, python-format
msgid "Are you sure you want to Delete the logical volume \"%s\"?"
msgstr "¿Está seguro de querer eliminar el volumen lógico \"%s\"?"

# ../textw/bootloader_text.py:223 ../textw/bootloader_text.py:228
# ../textw/bootloader_text.py:223 ../textw/bootloader_text.py:228
# ../textw/bootloader_text.py:223 ../textw/bootloader_text.py:228
#: ../iw/lvm_dialog_gui.py:892
msgid "Invalid Volume Group Name"
msgstr "Nombre de grupo de volumen no válido"

#: ../iw/lvm_dialog_gui.py:903
msgid "Name in use"
msgstr "Nombre en uso "

# ../partitioning.py:
# ../partitioning.py:364
# ../partitioning.py:379
# ../partitioning.py:379
#: ../iw/lvm_dialog_gui.py:904
#, python-format
msgid "The volume group name \"%s\" is already in use. Please pick another."
msgstr ""
"El nombre de grupo de volumen \"%s\" se está usando en la actualidad. Escoja "
"otro."

#: ../iw/lvm_dialog_gui.py:947
msgid "Not enough physical volumes"
msgstr "No existen suficientes volúmenes físicos"

#: ../iw/lvm_dialog_gui.py:948
msgid ""
"At least one unused physical volume partition is needed to create an LVM "
"Volume Group.\n"
"\n"
"Create a partition or RAID array of type \"physical volume (LVM)\" and then "
"select the \"LVM\" option again."
msgstr ""
"A menos que sea necesaria la partición de volumen física no usada para crear "
"un grupo de volumen LVM.\n"
"\n"
"Cree una partición o un array de RAID del tipo \"physical volume (LVM)\" y "
"seleccione la opción \"LVM\" de nuevo."

#: ../iw/lvm_dialog_gui.py:959
msgid "Make LVM Volume Group"
msgstr "Cree grupos de volumen LVM"

#: ../iw/lvm_dialog_gui.py:962
#, python-format
msgid "Edit LVM Volume Group: %s"
msgstr "Modificar grupos de volumen LVM: %s"

#: ../iw/lvm_dialog_gui.py:964
msgid "Edit LVM Volume Group"
msgstr "Modificar grupos de volumen LVM"

#: ../iw/lvm_dialog_gui.py:980
msgid "_Volume Group Name:"
msgstr "_Nombre de grupo de volumen:"

#: ../iw/lvm_dialog_gui.py:988
msgid "Volume Group Name:"
msgstr "Nombre de grupo de volumen:"

#: ../iw/lvm_dialog_gui.py:996
msgid "_Physical Extent:"
msgstr "_Extensión física:"

#: ../iw/lvm_dialog_gui.py:1011
msgid "Physical Volumes to _Use:"
msgstr "Volúmenes físicos a _usar:"

# ../packages.py:592
# ../packages.py:608
# ../packages.py:609
#: ../iw/lvm_dialog_gui.py:1017
msgid "Used Space:"
msgstr "Espacio usado:"

# ../textw/upgrade_text.py:107
# ../textw/upgrade_text.py:107
# ../textw/upgrade_text.py:107
#: ../iw/lvm_dialog_gui.py:1034
msgid "Free Space:"
msgstr "Espacio libre:"

# ../iw/package_gui.py:455
# ../iw/package_gui.py:456
# ../iw/package_gui.py:456
#: ../iw/lvm_dialog_gui.py:1052
msgid "Total Space:"
msgstr "Espacio total: "

#: ../iw/lvm_dialog_gui.py:1081
msgid "Logical Volume Name"
msgstr "Nombre de volumen lógico"

# ../iw/partition_gui.py:1533 ../iw/upgrade_swap_gui.py:121
# ../packages.py:565 ../packages.py:585 ../textw/upgrade_text.py:106
# ../iw/partition_gui.py:1535 ../iw/upgrade_swap_gui.py:121
# ../packages.py:581 ../packages.py:601 ../textw/upgrade_text.py:106
# ../iw/partition_gui.py:1543 ../iw/upgrade_swap_gui.py:123
# ../packages.py:582 ../packages.py:602 ../textw/upgrade_text.py:106
#: ../iw/lvm_dialog_gui.py:1084 ../iw/partition_gui.py:364
#: ../iw/upgrade_swap_gui.py:136 ../textw/partition_text.py:1446
#: ../textw/upgrade_text.py:115
msgid "Mount Point"
msgstr "Punto de Montaje"

# ../iw/package_gui.py:424 ../iw/partition_gui.py:1533
# ../iw/package_gui.py:425 ../iw/partition_gui.py:1535
# ../iw/package_gui.py:425 ../iw/partition_gui.py:1543
#: ../iw/lvm_dialog_gui.py:1087 ../iw/partition_gui.py:369
msgid "Size (MB)"
msgstr "Tamaño (MB)"

# ../iw/account_gui.py:330 ../textw/userauth_text.py:210
# ../iw/account_gui.py:330 ../textw/userauth_text.py:218
# ../iw/account_gui.py:330 ../textw/userauth_text.py:218
#: ../iw/lvm_dialog_gui.py:1101 ../iw/osbootwidget.py:96
msgid "_Add"
msgstr "_Añadir"

# ../iw/partition_gui.py:1514
# ../iw/partition_gui.py:1516
# ../iw/partition_gui.py:1524
#: ../iw/lvm_dialog_gui.py:1104 ../iw/network_gui.py:448
#: ../iw/osbootwidget.py:100 ../iw/partition_gui.py:1356
msgid "_Edit"
msgstr "_Modificar"

#: ../iw/lvm_dialog_gui.py:1119
msgid "Logical Volumes"
msgstr "Volúmenes lógicos"

# ../iw/mouse_gui.py:24
# ../iw/mouse_gui.py:24
# ../iw/mouse_gui.py:24
#: ../iw/mouse_gui.py:24
msgid "Mouse Configuration"
msgstr "Configuración del ratón"

# ../iw/mouse_gui.py:145 ../textw/mouse_text.py:20
# ../iw/mouse_gui.py:145 ../textw/mouse_text.py:20
# ../iw/mouse_gui.py:145 ../textw/mouse_text.py:20
#: ../iw/mouse_gui.py:77 ../textw/mouse_text.py:20
msgid "/dev/ttyS0 (COM1 under DOS)"
msgstr "/dev/ttyS0 (COM1 bajo DOS)"

# ../iw/mouse_gui.py:146 ../textw/mouse_text.py:21
# ../iw/mouse_gui.py:146 ../textw/mouse_text.py:21
# ../iw/mouse_gui.py:146 ../textw/mouse_text.py:21
#: ../iw/mouse_gui.py:78 ../textw/mouse_text.py:21
msgid "/dev/ttyS1 (COM2 under DOS)"
msgstr "/dev/ttyS1 (COM2 bajo DOS)"

# ../iw/mouse_gui.py:147 ../textw/mouse_text.py:22
# ../iw/mouse_gui.py:147 ../textw/mouse_text.py:22
# ../iw/mouse_gui.py:147 ../textw/mouse_text.py:22
#: ../iw/mouse_gui.py:79 ../textw/mouse_text.py:22
msgid "/dev/ttyS2 (COM3 under DOS)"
msgstr "/dev/ttyS2 (COM3 bajo DOS)"

# ../iw/mouse_gui.py:148 ../textw/mouse_text.py:23
# ../iw/mouse_gui.py:148 ../textw/mouse_text.py:23
# ../iw/mouse_gui.py:148 ../textw/mouse_text.py:23
#: ../iw/mouse_gui.py:80 ../textw/mouse_text.py:23
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 bajo DOS)"

# ../iw/bootloader_gui.py:353 ../iw/mouse_gui.py:156
# ../iw/partition_gui.py:1532 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:191 ../textw/bootloader_text.py:259
# ../textw/mouse_text.py:38 ../textw/silo_text.py:142
# ../textw/silo_text.py:207
# ../iw/bootloader_gui.py:353 ../iw/mouse_gui.py:156
# ../iw/partition_gui.py:1534 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:191 ../textw/bootloader_text.py:259
# ../textw/mouse_text.py:38 ../textw/silo_text.py:142
# ../textw/silo_text.py:207
# ../iw/bootloader_gui.py:353 ../iw/mouse_gui.py:156
# ../iw/partition_gui.py:1542 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:191 ../textw/bootloader_text.py:262
# ../textw/mouse_text.py:38 ../textw/silo_text.py:142
# ../textw/silo_text.py:207
#: ../iw/mouse_gui.py:90 ../iw/osbootwidget.py:157
msgid "_Device"
msgstr "_Dispositivo"

# ../iw/keyboard_gui.py:111
# ../iw/keyboard_gui.py:111
# ../iw/keyboard_gui.py:111
#: ../iw/mouse_gui.py:136
msgid "_Model"
msgstr "_Modelo"

# ../iw/mouse_gui.py:150
# ../iw/mouse_gui.py:150
# ../iw/mouse_gui.py:150
#: ../iw/mouse_gui.py:234
msgid "_Emulate 3 buttons"
msgstr "_Emular 3 botones"

# ../textw/xconfig_text.py:556
# ../textw/xconfig_text.py:568
# ../textw/xconfig_text.py:568
#: ../iw/mouse_gui.py:249
msgid "Select the appropriate mouse for the system."
msgstr "Seleccione el ratón adecuado para el sistema."

# ../iw/partition_gui.py:1159 ../iw/partition_gui.py:1168
# ../iw/partition_gui.py:1206 ../iw/partition_gui.py:1468
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1161 ../iw/partition_gui.py:1170
# ../iw/partition_gui.py:1208 ../iw/partition_gui.py:1470
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1162 ../iw/partition_gui.py:1171
# ../iw/partition_gui.py:1209 ../iw/partition_gui.py:1477
# ../textw/partition_text.py:750 ../textw/partition_text.py:772
# ../textw/partition_text.py:901
#: ../iw/netconfig_dialog.py:135 ../iw/network_gui.py:142
#: ../iw/network_gui.py:146 ../iw/network_gui.py:150 ../iw/network_gui.py:154
#: ../iw/network_gui.py:162 ../iw/network_gui.py:167
#: ../textw/network_text.py:47 ../textw/network_text.py:52
#: ../textw/network_text.py:58
msgid "Error With Data"
msgstr "Error con los datos"

#: ../iw/netconfig_dialog.py:137
#, python-format
msgid ""
"An error occurred converting the value entered for \"%s\":\n"
"%s"
msgstr ""
"Se ha producido un error al convertir el valor introducido para \"%s\":\n"
"%s"

# ../loader/net.c:413 ../loader/net.c:738
# ../loader/net.c:413 ../loader/net.c:738
# ../loader/net.c:413 ../loader/net.c:738
#: ../iw/netconfig_dialog.py:155
msgid "Dynamic IP"
msgstr "IP Dinámico"

# ../loader/net.c:414 ../loader/net.c:739
# ../loader/net.c:414 ../loader/net.c:739
# ../loader/net.c:414 ../loader/net.c:739
#: ../iw/netconfig_dialog.py:156 ../loader2/net.c:400 ../loader2/net.c:825
#, c-format, python-format
msgid "Sending request for IP information for %s..."
msgstr "Enviando petición de información IP para %s..."

# ../iw/network_gui.py:194
# ../iw/network_gui.py:194
# ../iw/network_gui.py:194
#: ../iw/netconfig_dialog.py:176 ../textw/network_text.py:88
#: tmp/netpostconfig.glade.h:12
msgid "IP Address"
msgstr "Dirección IP"

# ../iw/network_gui.py:195 ../loader/net.c:806
# ../iw/network_gui.py:195 ../loader/net.c:806
# ../iw/network_gui.py:195 ../loader/net.c:806
#: ../iw/netconfig_dialog.py:182
msgid "Netmask"
msgstr "Máscara de red"

# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
#: ../iw/netconfig_dialog.py:189 ../iw/network_gui.py:27
#: ../iw/network_gui.py:524
msgid "Gateway"
msgstr "Puerta de enlance"

# ../loader/net.c:266 ../loader/net.c:804
# ../loader/net.c:266 ../loader/net.c:804
# ../loader/net.c:266 ../loader/net.c:804
#: ../iw/netconfig_dialog.py:196
msgid "Nameserver"
msgstr "Servidor de nombres"

#: ../iw/netconfig_dialog.py:214
msgid "Error configuring network device"
msgstr "Hubo un error al configurar su dispositivo de red."

# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
#: ../iw/network_gui.py:27 ../iw/network_gui.py:526
msgid "Primary DNS"
msgstr "DNS Primario"

# ../iw/network_gui.py:252
# ../iw/network_gui.py:252
# ../iw/network_gui.py:252
#: ../iw/network_gui.py:27 ../iw/network_gui.py:528
msgid "Secondary DNS"
msgstr "DNS Secundario"

# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
#: ../iw/network_gui.py:28
msgid "_Gateway"
msgstr "_Puerta de enlance"

# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
# ../iw/network_gui.py:251
#: ../iw/network_gui.py:28
msgid "_Primary DNS"
msgstr "DNS _Primario"

# ../iw/network_gui.py:252
# ../iw/network_gui.py:252
# ../iw/network_gui.py:252
#: ../iw/network_gui.py:28
msgid "_Secondary DNS"
msgstr "DNS _Secundario"

# ../iw/network_gui.py:21 ../textw/network_text.py:115
# ../iw/network_gui.py:21 ../textw/network_text.py:115
# ../iw/network_gui.py:21 ../textw/network_text.py:115
#: ../iw/network_gui.py:31 ../textw/network_text.py:527
msgid "Network Configuration"
msgstr "Configuración de la red"

#: ../iw/network_gui.py:143
msgid ""
"You have not specified a hostname.  Depending on your network environment "
"this may cause problems later."
msgstr ""
"No ha especificado un nombre de host. Dependiendo del entorno de su red esto "
"puede causarle problemas en lo sucesivo."

#: ../iw/network_gui.py:147
#, python-format
msgid ""
"You have not specified the field \"%s\".  Depending on your network "
"environment this may cause problems later."
msgstr ""
"No ha especificado el campo \"%s\". Dependiendo del entorno de su red esto "
"le puede causar problemas a posteriori."

#: ../iw/network_gui.py:151 ../textw/network_text.py:813
#, python-format
msgid ""
"The hostname \"%s\" is not valid for the following reason:\n"
"\n"
"%s"
msgstr ""
"El nombre del host \"%s\" no es válido por el siguiente motivo:\n"
"\n"
"%s"

#: ../iw/network_gui.py:155 ../textw/network_text.py:48
#, python-format
msgid "A value is required for the field %s."
msgstr "Es necesario un valor para el campo %s."

# ../iw/partition_gui.py:1159 ../iw/partition_gui.py:1168
# ../iw/partition_gui.py:1206 ../iw/partition_gui.py:1468
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1161 ../iw/partition_gui.py:1170
# ../iw/partition_gui.py:1208 ../iw/partition_gui.py:1470
# ../textw/partition_text.py:749 ../textw/partition_text.py:766
# ../textw/partition_text.py:891
# ../iw/partition_gui.py:1162 ../iw/partition_gui.py:1171
# ../iw/partition_gui.py:1209 ../iw/partition_gui.py:1477
# ../textw/partition_text.py:750 ../textw/partition_text.py:772
# ../textw/partition_text.py:901
#: ../iw/network_gui.py:158 ../textw/network_text.py:38
#, python-format
msgid "Error With %s Data"
msgstr "Error con los datos %s"

#: ../iw/network_gui.py:159 ../textw/network_text.py:39
#: ../textw/network_text.py:587 ../textw/network_text.py:591
#: ../textw/welcome_text.py:22
#, python-format
msgid "%s"
msgstr "%s"

# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
# ../textw/upgrade_text.py:161
#: ../iw/network_gui.py:163 ../textw/network_text.py:59
msgid "The IPv4 information you have entered is invalid."
msgstr "La información IPv4 que ha introducido no es válida."

#: ../iw/network_gui.py:167
msgid ""
"You have no active network devices.  Your system will not be able to "
"communicate over a network by default without at least one device active."
msgstr ""
"No posee dispositivos de red activos. Su sistema no será capaz de "
"comunicarse a través de una red por defecto sin al menos un dispositivo "
"activo."

#: ../iw/network_gui.py:292 ../iw/network_gui.py:306
msgid "Disabled"
msgstr "Desactivado"

# ../iw/network_gui.py:183
# ../iw/network_gui.py:183
# ../iw/network_gui.py:183
#: ../iw/network_gui.py:389
msgid "Active on Boot"
msgstr "Activar al inicio"

# ../iw/bootloader_gui.py:353 ../iw/mouse_gui.py:156
# ../iw/partition_gui.py:1532 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:191 ../textw/bootloader_text.py:259
# ../textw/mouse_text.py:38 ../textw/silo_text.py:142
# ../textw/silo_text.py:207
# ../iw/bootloader_gui.py:353 ../iw/mouse_gui.py:156
# ../iw/partition_gui.py:1534 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:191 ../textw/bootloader_text.py:259
# ../textw/mouse_text.py:38 ../textw/silo_text.py:142
# ../textw/silo_text.py:207
# ../iw/bootloader_gui.py:353 ../iw/mouse_gui.py:156
# ../iw/partition_gui.py:1542 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:191 ../textw/bootloader_text.py:262
# ../textw/mouse_text.py:38 ../textw/silo_text.py:142
# ../textw/silo_text.py:207
#: ../iw/network_gui.py:391 ../iw/osbootwidget.py:67
#: ../iw/partition_gui.py:363 ../textw/bootloader_text.py:193
#: ../textw/bootloader_text.py:259 ../textw/mouse_text.py:38
#: ../textw/partition_text.py:1446
msgid "Device"
msgstr "Dispositivo"

# ../iw/network_gui.py:195 ../loader/net.c:806
# ../iw/network_gui.py:195 ../loader/net.c:806
# ../iw/network_gui.py:195 ../loader/net.c:806
#: ../iw/network_gui.py:393
msgid "IPv4/Netmask"
msgstr "IPv4/Máscara de red"

#: ../iw/network_gui.py:395
msgid "IPv6/Prefix"
msgstr "IPv6/Prefijo"

# ../loader/net.c:814
# ../loader/net.c:814
# ../loader/net.c:814
#: ../iw/network_gui.py:455
msgid "Network Devices"
msgstr "Dispositivos de red"

# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
#: ../iw/network_gui.py:466
msgid "Set the hostname:"
msgstr "Configurar el nombre del host:"

#: ../iw/network_gui.py:471
msgid "_automatically via DHCP"
msgstr "_de forma automática a través de DHCP"

#: ../iw/network_gui.py:478
msgid "_manually"
msgstr "_manualmente"

#: ../iw/network_gui.py:483
msgid "(e.g., host.domain.com)"
msgstr "(ej. \"mipc.dominio.com.ar\")"

# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
# ../iw/network_gui.py:251 ../loader/net.c:610 ../loader/net.c:808
# ../textw/network_text.py:177
#: ../iw/network_gui.py:489
msgid "Hostname"
msgstr "Nombre del Host"

# ../loader/devices.c:77
# ../loader/devices.c:77
# ../loader/devices.c:77
#: ../iw/network_gui.py:533
msgid "Miscellaneous Settings"
msgstr "Configuración miscelánea"

# ../iw/partition_gui.py:1313 ../textw/partition_text.py:796
# ../iw/partition_gui.py:1315 ../textw/partition_text.py:796
# ../iw/partition_gui.py:1321 ../textw/partition_text.py:806
#: ../iw/network_gui.py:621
#, fuzzy
msgid "Edit Device "
msgstr "Modificar un dispositivo RAID"

#: ../iw/network_gui.py:625
msgid "Unknown Ethernet Device"
msgstr ""

# ../iw/partition_gui.py:885
# ../iw/partition_gui.py:887
# ../iw/partition_gui.py:888
#: ../iw/network_gui.py:631
#, fuzzy
msgid "unknown"
msgstr "Desconocido"

#: ../iw/network_gui.py:633
#, fuzzy
msgid "Hardware address: "
msgstr "Dirección de hardware: %s"

# ../loader/net.c:404
# ../loader/net.c:404
# ../loader/net.c:404
#: ../iw/network_gui.py:769 ../textw/network_text.py:223 ../loader2/net.c:786
msgid "Missing Protocol"
msgstr "Falta Protocolo"

#: ../iw/network_gui.py:770 ../textw/network_text.py:224
msgid "You must select at least IPv4 or IPv6 support."
msgstr "Debe seleccionar el soporte de un protocolo IPv4 o IPv6."

# ../loader/net.c:277
# ../loader/net.c:277
# ../loader/net.c:277
#: ../iw/network_gui.py:793 ../iw/network_gui.py:834 ../iw/network_gui.py:840
#: ../textw/network_text.py:69 ../loader2/net.c:91
msgid "Invalid Prefix"
msgstr "Prefijo Inválido"

# ../iw/upgrade_swap_gui.py:178 ../textw/upgrade_text.py:173
# ../iw/upgrade_swap_gui.py:178 ../textw/upgrade_text.py:173
# ../iw/upgrade_swap_gui.py:180 ../textw/upgrade_text.py:173
#: ../iw/network_gui.py:794
msgid "IPv4 prefix must be between 0 and 32."
msgstr "El prefijo IPv4 debe estar entre 0 y 32."

# ../iw/upgrade_swap_gui.py:178 ../textw/upgrade_text.py:173
# ../iw/upgrade_swap_gui.py:178 ../textw/upgrade_text.py:173
# ../iw/upgrade_swap_gui.py:180 ../textw/upgrade_text.py:173
#: ../iw/network_gui.py:835 ../iw/network_gui.py:841
msgid "IPv6 prefix must be between 0 and 128."
msgstr "El prefijo IPv6 debe estar entre 0 y 128."

#: ../iw/osbootwidget.py:43
msgid ""
"You can configure the boot loader to boot other operating systems. It will "
"allow you to select an operating system to boot from the list. To add "
"additional operating systems, which are not automatically detected, click "
"'Add.' To change the operating system booted by default, select 'Default' by "
"the desired operating system."
msgstr ""
"Puede configurar el gestor de arranque para reiniciar otros sistemas "
"operativos. Ésto le permitirá seleccionar un sistema operativo de la lista a "
"arrancar. Para añadir sistemas operativos adicionales que no han sido "
"detectados automáticamente, pulse 'Añadir'. Para cambiar el sistema "
"operativo que será iniciado de forma predeterminada, seleccione 'Por "
"defecto' en el sistema operativo que desee."

# ../iw/bootloader_gui.py:353 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:259 ../textw/silo_text.py:207
# ../textw/xconfig_text.py:373 ../textw/xconfig_text.py:380
# ../textw/xconfig_text.py:473 ../textw/xconfig_text.py:474
# ../textw/xconfig_text.py:493 ../textw/xconfig_text.py:494
# ../iw/bootloader_gui.py:353 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:259 ../textw/silo_text.py:207
# ../textw/xconfig_text.py:377 ../textw/xconfig_text.py:384
# ../textw/xconfig_text.py:480 ../textw/xconfig_text.py:481
# ../textw/xconfig_text.py:500 ../textw/xconfig_text.py:501
# ../iw/bootloader_gui.py:353 ../iw/silo_gui.py:263
# ../textw/bootloader_text.py:262 ../textw/silo_text.py:207
# ../textw/xconfig_text.py:377 ../textw/xconfig_text.py:384
# ../textw/xconfig_text.py:480 ../textw/xconfig_text.py:481
# ../textw/xconfig_text.py:500 ../textw/xconfig_text.py:501
#: ../iw/osbootwidget.py:67 ../textw/bootloader_text.py:259
msgid "Default"
msgstr "Por defecto"

#: ../iw/osbootwidget.py:67
msgid "Label"
msgstr "Etiqueta"

#: ../iw/osbootwidget.py:130
msgid "Image"
msgstr "Imagen"

#: ../iw/osbootwidget.py:137
msgid ""
"Enter a label to be displayed in the boot loader menu. The device (or hard "
"drive and partition number) is the device from which it boots."
msgstr ""
"Introduzca una etiqueta para visualizar en el menú del gestor de arranque. "
"El dispositivo (o unidad de disco duro y nombre de partición) es el "
"dispositivo desde el que se arranca. "

#: ../iw/osbootwidget.py:149
msgid "_Label"
msgstr "_Etiqueta"

# ../iw/bootloader_gui.py:440 ../iw/silo_gui.py:294
# ../iw/bootloader_gui.py:440 ../iw/silo_gui.py:294
# ../iw/bootloader_gui.py:440 ../iw/silo_gui.py:294
#: ../iw/osbootwidget.py:188
msgid "Default Boot _Target"
msgstr "_Punto de arranque por defecto"

# ../partitioning.py:1663
# ../partitioning.py:1683
# ../partitioning.py:1686
#: ../iw/osbootwidget.py:217
msgid "You must specify a label for the entry"
msgstr "Debe especificar una etiqueta para la entrada"

# ../textw/bootloader_text.py:229
# ../textw/bootloader_text.py:229
# ../textw/bootloader_text.py:229
#: ../iw/osbootwidget.py:226
msgid "Boot label contains illegal characters"
msgstr "La etiqueta de inicio contiene carácteres no válidos"

#: ../iw/osbootwidget.py:250
msgid "Duplicate Label"
msgstr "Duplicar etiqueta"

# ../textw/userauth_text.py:146
# ../textw/userauth_text.py:154
# ../textw/userauth_text.py:154
#: ../iw/osbootwidget.py:251
msgid "This label is already in use for another boot entry."
msgstr "Esta etiqueta está ya está siendo usada por otra entrada de arranque."

# ../textw/firewall_text.py:73
# ../textw/firewall_text.py:73
# ../textw/firewall_text.py:73
#: ../iw/osbootwidget.py:264
msgid "Duplicate Device"
msgstr "Dispositivo doble"

# ../textw/userauth_text.py:146
# ../textw/userauth_text.py:154
# ../textw/userauth_text.py:154
#: ../iw/osbootwidget.py:265
msgid "This device is already being used for another boot entry."
msgstr "Este dispositivo está siendo utilizado por otra entrada de arranque."

# ../partitioning.py:1557
# ../partitioning.py:1577
# ../partitioning.py:1580
#: ../iw/osbootwidget.py:329 ../textw/bootloader_text.py:342
msgid "Cannot Delete"
msgstr "No se puede borrar"

#: ../iw/osbootwidget.py:330 ../textw/bootloader_text.py:343
#, python-format
msgid ""
"This boot target cannot be deleted because it is for the %s system you are "
"about to install."
msgstr ""
"Este punto de arranque no se puede eliminar porque es para el sistema  %s "
"que está a punto de instalar."

# ../iw/partition_gui.py:800
# ../iw/partition_gui.py:802
# ../iw/partition_gui.py:803
#: ../iw/partition_dialog_gui.py:58
msgid "Additional Size Options"
msgstr "Opciones de tamaño adicionales"

# ../iw/partition_gui.py:805
# ../iw/partition_gui.py:807
# ../iw/partition_gui.py:808
#: ../iw/partition_dialog_gui.py:63
msgid "_Fixed size"
msgstr "_Tamaño fijo"

# ../iw/partition_gui.py:806
# ../iw/partition_gui.py:808
# ../iw/partition_gui.py:809
#: ../iw/partition_dialog_gui.py:65
msgid "Fill all space _up to (MB):"
msgstr "Completar todo el espacio _hasta (MB):"

# ../iw/partition_gui.py:814
# ../iw/partition_gui.py:816
# ../iw/partition_gui.py:817
#: ../iw/partition_dialog_gui.py:75
msgid "Fill to maximum _allowable size"
msgstr "Completar hasta el tamaño máximo _permitido"

#: ../iw/partition_dialog_gui.py:180
msgid "The end cylinder must be greater than the start cylinder."
msgstr "El cilindro final debe ser mayor que el cilindro inicial."

# ../iw/partition_gui.py:843 ../textw/partition_text.py:540
# ../iw/partition_gui.py:845 ../textw/partition_text.py:540
# ../iw/partition_gui.py:846 ../textw/partition_text.py:541
#: ../iw/partition_dialog_gui.py:270 ../textw/partition_text.py:712
msgid "Add Partition"
msgstr "Añadir partición"

# ../iw/partition_gui.py:843 ../textw/partition_text.py:540
# ../iw/partition_gui.py:845 ../textw/partition_text.py:540
# ../iw/partition_gui.py:846 ../textw/partition_text.py:541
#: ../iw/partition_dialog_gui.py:273
#, python-format
msgid "Edit Partition: /dev/%s"
msgstr "Modificar particiones: /dev/%s"

# ../iw/partition_gui.py:843 ../textw/partition_text.py:540
# ../iw/partition_gui.py:845 ../textw/partition_text.py:540
# ../iw/partition_gui.py:846 ../textw/partition_text.py:541
#: ../iw/partition_dialog_gui.py:275
msgid "Edit Partition"
msgstr "Modificar una partición"

# ../iw/partition_gui.py:868 ../textw/partition_text.py:603
# ../iw/partition_gui.py:870 ../textw/partition_text.py:603
# ../iw/partition_gui.py:871 ../textw/partition_text.py:604
#: ../iw/partition_dialog_gui.py:302
msgid "File System _Type:"
msgstr "_Tipo de sistema de archivos:"

# ../iw/partition_gui.py:897 ../textw/partition_text.py:260
# ../iw/partition_gui.py:899 ../textw/partition_text.py:260
# ../iw/partition_gui.py:900 ../textw/partition_text.py:260
#: ../iw/partition_dialog_gui.py:334
msgid "Allowable _Drives:"
msgstr "_Unidades admisibles:"

# ../iw/partition_gui.py:908
# ../iw/partition_gui.py:910
# ../iw/partition_gui.py:911
#: ../iw/partition_dialog_gui.py:348
msgid "Drive:"
msgstr "Unidad:"

# ../iw/partition_gui.py:948 ../textw/partition_text.py:345
# ../iw/partition_gui.py:950 ../textw/partition_text.py:345
# ../iw/partition_gui.py:951 ../textw/partition_text.py:345
#: ../iw/partition_dialog_gui.py:392
msgid "_Start Cylinder:"
msgstr "_Iniciar cilindro:"

# ../iw/partition_gui.py:964 ../textw/partition_text.py:358
# ../iw/partition_gui.py:966 ../textw/partition_text.py:358
# ../iw/partition_gui.py:967 ../textw/partition_text.py:358
#: ../iw/partition_dialog_gui.py:410
msgid "_End Cylinder:"
msgstr "_Finalizar cilindro:"

# ../iw/partition_gui.py:1081 ../textw/partition_text.py:582
# ../iw/partition_gui.py:1083 ../textw/partition_text.py:582
# ../iw/partition_gui.py:1084 ../textw/partition_text.py:583
#: ../iw/partition_dialog_gui.py:462
msgid "Force to be a _primary partition"
msgstr "Forzar a partición _primaria"

#: ../iw/partition_gui.py:314
#, python-format
msgid "Drive %s (Geom: %s/%s/%s) (Model: %s)"
msgstr "Disco %s (Geometría: %s/%s/%s) (Modelo: %s)"

#: ../iw/partition_gui.py:321
#, python-format
msgid "Drive %s (%-0.f MB) (Model: %s)"
msgstr "Disco %s (%-0.f MB) (Modelo: %s)"

# ../iw/bootloader_gui.py:245 ../iw/bootloader_gui.py:433
# ../iw/partition_gui.py:1533 ../iw/silo_gui.py:140 ../iw/silo_gui.py:287
# ../iw/bootloader_gui.py:245 ../iw/bootloader_gui.py:433
# ../iw/partition_gui.py:1535 ../iw/silo_gui.py:140 ../iw/silo_gui.py:287
# ../iw/bootloader_gui.py:245 ../iw/bootloader_gui.py:433
# ../iw/partition_gui.py:1543 ../iw/silo_gui.py:140 ../iw/silo_gui.py:287
#: ../iw/partition_gui.py:365 ../textw/partition_text.py:1446
msgid "Type"
msgstr "Tipo"

# ../iw/partition_gui.py:1532
# ../iw/partition_gui.py:1534
# ../iw/partition_gui.py:1542
#: ../iw/partition_gui.py:370 ../textw/partition_text.py:1446
msgid "Start"
msgstr "Inicio"

# ../iw/partition_gui.py:1532
# ../iw/partition_gui.py:1534
# ../iw/partition_gui.py:1542
#: ../iw/partition_gui.py:371 ../textw/partition_text.py:1446
msgid "End"
msgstr "Fin"

# ../iw/partition_gui.py:1533 ../iw/upgrade_swap_gui.py:121
# ../packages.py:565 ../packages.py:585 ../textw/upgrade_text.py:106
# ../iw/partition_gui.py:1535 ../iw/upgrade_swap_gui.py:121
# ../packages.py:581 ../packages.py:601 ../textw/upgrade_text.py:106
# ../iw/partition_gui.py:1543 ../iw/upgrade_swap_gui.py:123
# ../packages.py:582 ../packages.py:602 ../textw/upgrade_text.py:106
#: ../iw/partition_gui.py:408
msgid ""
"Mount Point/\n"
"RAID/Volume"
msgstr ""
"Punto de Montaje/\n"
" RAID/Volumen"

# ../iw/package_gui.py:424 ../iw/partition_gui.py:1533
# ../iw/package_gui.py:425 ../iw/partition_gui.py:1535
# ../iw/package_gui.py:425 ../iw/partition_gui.py:1543
#: ../iw/partition_gui.py:410
msgid ""
"Size\n"
"(MB)"
msgstr ""
"Tamaño\n"
"(MB)"

# ../textw/partition_text.py:966
# ../textw/partition_text.py:966
# ../textw/partition_text.py:977
#: ../iw/partition_gui.py:542 ../textw/partition_text.py:1440
msgid "Partitioning"
msgstr "Particionamiento"

# ../iw/partition_gui.py:543
# ../iw/partition_gui.py:543
# ../iw/partition_gui.py:543
#: ../iw/partition_gui.py:633
msgid ""
"The following critical errors exist with your requested partitioning scheme."
msgstr ""
"Existen los siguientes errores graves con su esquema de particionamiento."

# ../iw/partition_gui.py:546
# ../iw/partition_gui.py:546
# ../iw/partition_gui.py:546
#: ../iw/partition_gui.py:636
#, python-format
msgid ""
"These errors must be corrected prior to continuing with your install of %s."
msgstr ""
"Estos errores deben ser corregidos antes de continuar con la instalación de %"
"s."

# ../iw/partition_gui.py:553
# ../iw/partition_gui.py:553
# ../iw/partition_gui.py:553
#: ../iw/partition_gui.py:642
msgid "Partitioning Errors"
msgstr "Errores de particionamiento"

# ../iw/partition_gui.py:559
# ../iw/partition_gui.py:559
# ../iw/partition_gui.py:559
#: ../iw/partition_gui.py:648