Home | History | Annotate | Line # | Download | only in sysinst
msg.pm.es revision 1.3
      1  1.3  martin /*	$NetBSD: msg.pm.es,v 1.3 2020/11/04 14:29:40 martin Exp $	*/
      2  1.1  martin 
      3  1.1  martin /*
      4  1.1  martin  * Copyright 1997 Piermont Information Systems Inc.
      5  1.1  martin  * All rights reserved.
      6  1.1  martin  *
      7  1.1  martin  * Written by Philip A. Nelson for Piermont Information Systems Inc.
      8  1.1  martin  *
      9  1.1  martin  * Redistribution and use in source and binary forms, with or without
     10  1.1  martin  * modification, are permitted provided that the following conditions
     11  1.1  martin  * are met:
     12  1.1  martin  * 1. Redistributions of source code must retain the above copyright
     13  1.1  martin  *    notice, this list of conditions and the following disclaimer.
     14  1.1  martin  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  martin  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  martin  *    documentation and/or other materials provided with the distribution.
     17  1.1  martin  * 3. The name of Piermont Information Systems Inc. may not be used to endorse
     18  1.1  martin  *    or promote products derived from this software without specific prior
     19  1.1  martin  *    written permission.
     20  1.1  martin  *
     21  1.1  martin  * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
     22  1.1  martin  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1  martin  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1  martin  * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
     25  1.1  martin  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26  1.1  martin  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27  1.1  martin  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28  1.1  martin  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29  1.1  martin  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30  1.1  martin  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     31  1.1  martin  * THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1  martin  *
     33  1.1  martin  */
     34  1.1  martin 
     35  1.1  martin /* extended partition manager message catalog -- Spanish, machine independent */
     36  1.1  martin 
     37  1.1  martin message fillzeros {Llenar con ceros}
     38  1.1  martin message fillrandom {Llene los datos al azar}
     39  1.1  martin message raid0 {0 - Sin paridad, creacin de bandas slo es simple.}
     40  1.1  martin message raid1 {1 - Creacin de reflejos. La paridad es el espejo.}
     41  1.1  martin message raid4 {4 - Striping con paridad almacenada en el ltimo componente. component.}
     42  1.1  martin message raid5 {5 - Striping con paridad en los componentes de todos. components.}
     43  1.1  martin 
     44  1.1  martin message wannaunblock {El dispositivo est bloqueado. Quiere forzar a desbloquear y continuar? unblock it and continue?}
     45  1.1  martin message wannatry {Quieres probar?}
     46  1.1  martin message create_cgd {Crear cifrado de volumen (CGD)}
     47  1.2  martin message create_vnd {Crear imagen de disco virtual (VND)}
     48  1.1  martin message create_vg {Crear grupo de volmenes (LVM VG)}
     49  1.1  martin message create_lv {Crear volmenes lgicos}
     50  1.1  martin message create_raid {Crear RAID por software}
     51  1.1  martin message updpmlist {Actualizar lista de dispositivos}
     52  1.1  martin message savepm {Guardar los cambios}
     53  1.1  martin message pmblocked {BLOQUEADO}
     54  1.1  martin message pmunchanged {SIN USO}
     55  1.1  martin message pmused {UTILIZA}
     56  1.1  martin message pmmounted {(montado)}
     57  1.1  martin message pmunused {(sin usar)}
     58  1.1  martin message pmgptdisk {Disco con GPT}
     59  1.1  martin 
     60  1.1  martin message finishpm {Finalizar el particionado}
     61  1.1  martin message limitcount {Lmite para el nmero de dispositivos se lleg!}
     62  1.1  martin message invaliddev {No vlido dispositivo!}
     63  1.1  martin message avdisks {Discos disponibles:}
     64  1.1  martin message nofreedev {No se puede asignar nodo de dispositivo!}
     65  1.1  martin message partman_header
     66  1.1  martin {Partition Manager. Todos los discos, particiones y etc muestra all.
     67  1.1  martin Si desea utilizar RAID, LVM o CGD, siga estos pasos:
     68  1.1  martin 1) Crear particiones con el tipo necesario;
     69  1.1  martin 2) Crear RAID / LVM VG / CGD el uso de estas particiones; 3) Gurdalo;
     70  1.1  martin 4) Crear particiones de volmenes RAID / CGD o lgico de LVM.}
     71  1.1  martin 
     72  1.1  martin /* used to form strings like: "vnd0 on /var/tmp/disk1.img" */
     73  1.1  martin message        pm_menu_on {on}
     74  1.1  martin /* Called with: 			Example
     75  1.1  martin  *  $0 = device name			raid0
     76  1.1  martin  *  $1 = raid level		       1
     77  1.1  martin  */
     78  1.1  martin message raid_menufmt {$0 (nivel $1)}
     79  1.1  martin message raid_err_menufmt {RAID VACIO!}
     80  1.1  martin message raid_disks_fmt {Discos}
     81  1.1  martin message raid_spares_fmt {Piezas de recambio}
     82  1.1  martin message raid_level_fmt {RAID de nivel}
     83  1.1  martin message raid_numrow_fmt {numRow}
     84  1.1  martin message raid_numcol_fmt {numCol}
     85  1.1  martin message raid_numspare_fmt {numSpare}
     86  1.1  martin message raid_sectpersu_fmt {sectPerSU}
     87  1.1  martin message raid_superpar_fmt {SUsPerParityUnit}
     88  1.1  martin message raid_superrec_fmt {SUsPerReconUnit}
     89  1.1  martin message raid_nomultidim {Matrices multidimensionales no son compatibles!}
     90  1.1  martin message raid_numrow_ask {numRow?}
     91  1.1  martin message raid_numcol_ask {numCol?}
     92  1.1  martin message raid_numspare_ask {numSpare?}
     93  1.1  martin message raid_sectpersu_ask {sectPerSU?}
     94  1.1  martin message raid_superpar_ask {SUsPerParityUnit?}
     95  1.1  martin message raid_superrec_ask {SUsPerReconUnit?}
     96  1.1  martin message raid_disks {Los discos en RAID}
     97  1.1  martin message vnd_err_menufmt {CAMINO NO DEFINIDO!}
     98  1.1  martin message vnd_assign {ASSIGN}
     99  1.1  martin message vnd_path_fmt {Ruta del archivo}
    100  1.1  martin message vnd_assign_fmt {Create new image}
    101  1.1  martin message vnd_size_fmt {Tamao}
    102  1.1  martin message vnd_ro_fmt {Slo lectura}
    103  1.1  martin message vnd_geom_fmt {Establecer la geometra de la mano}
    104  1.1  martin message vnd_bps_fmt {Bytes por sector}
    105  1.1  martin message vnd_spt_fmt {Sectores por pista}
    106  1.1  martin message vnd_tpc_fmt {Pistas por cilindro}
    107  1.1  martin message vnd_cyl_fmt {Cilindros}
    108  1.1  martin message vnd_path_ask {Ruta de acceso?}
    109  1.1  martin message vnd_size_ask {Tamao (MB)?}
    110  1.1  martin message vnd_bps_ask {Bytes por sector?}
    111  1.1  martin message vnd_spt_ask {Sectores por pista?}
    112  1.1  martin message vnd_tpc_ask {Pistas por cilindro?}
    113  1.1  martin message vnd_cyl_ask {Cilindros}
    114  1.1  martin message cgd_err_menufmt {DISCO NO SE DEFINE!}
    115  1.1  martin message cgd_dev_fmt {Dispositivo de base}
    116  1.1  martin message cgd_enc_fmt {Encriptacin}
    117  1.1  martin message cgd_key_fmt {Tamao de la clave}
    118  1.1  martin message cgd_iv_fmt {Algoritmo IV}
    119  1.1  martin message cgd_keygen_fmt {La generacin de claves}
    120  1.1  martin message cgd_verif_fmt {Mtodo de verificacin}
    121  1.1  martin message lvm_disks {Discos en VG}
    122  1.1  martin message lvm_err_menufmt {VACIAR VG!}
    123  1.1  martin message lvm_disks_fmt {PV's}
    124  1.1  martin message lvm_name_fmt {Nombre}
    125  1.1  martin message lvm_maxlv_fmt {MaxLogicalVolumes}
    126  1.1  martin message lvm_maxpv_fmt {MaxPhysicalVolumes}
    127  1.1  martin message lvm_extsiz_fmt {PhysicalExtentSize}
    128  1.1  martin message lvm_name_ask {Nombre?}
    129  1.1  martin message lvm_maxlv_ask {MaxLogicalVolumes?}
    130  1.1  martin message lvm_maxpv_ask {MaxPhysicalVolumes?}
    131  1.1  martin message lvm_extsiz_ask {PhysicalExtentSize (MB)?}
    132  1.1  martin message lvmlv_menufmt {El volumen lgico}
    133  1.1  martin message lvmlv_name_fmt {Nombre}
    134  1.1  martin message lvmlv_size_fmt {Tamao}
    135  1.1  martin message lvmlv_ro_fmt {Slo lectura}
    136  1.1  martin message lvmlv_cont_fmt {Contigua}
    137  1.1  martin message lvmlv_extnum_fmt {LogicalExtentsNumber}
    138  1.1  martin message lvmlv_minor_fmt {Menor nmero}
    139  1.1  martin message lvmlv_mirrors_fmt {Espejos}
    140  1.1  martin message lvmlv_regsiz_fmt {MirrorLogRegionSize}
    141  1.1  martin message lvmlv_pers_fmt {Nmero de persistente menor}
    142  1.1  martin message lvmlv_readahsect_fmt {ReadAheadSectors}
    143  1.1  martin message lvmlv_stripes_fmt {Rayas}
    144  1.1  martin message lvmlv_stripesiz_fmt {Stripesize}
    145  1.1  martin message lvmlv_zero_fmt {Puesta a cero de la primera KB}
    146  1.1  martin message lvmlv_name_ask {Nombre?}
    147  1.1  martin message lvmlv_size_ask {Tamao (MB)?}
    148  1.1  martin message lvmlv_extnum_ask {LogicalExtentsNumber?}
    149  1.1  martin message lvmlv_minor_ask {Nmero menor de edad?}
    150  1.1  martin message lvmlv_mirrors_ask {Espejos?}
    151  1.1  martin message lvmlv_regsiz_ask {MirrorLogRegionSize?}
    152  1.1  martin message lvmlv_readahsect_ask {ReadAheadSectors?}
    153  1.1  martin message lvmlv_stripes_ask {Rayas?}
    154  1.1  martin 
    155  1.3  martin message notsupported {Operacin no admitida!}
    156  1.3  martin message edit_parts {Editar particiones}
    157  1.3  martin message switch_parts {Switch partitioning scheme}
    158  1.3  martin message fmtasraid {Formato como RAID}
    159  1.3  martin message fmtaslvm {Formato como LVM PV}
    160  1.3  martin message encrypt {Cifrar (CGD)}
    161  1.3  martin message setbootable {La bandera de arranque}
    162  1.3  martin message erase {Borrado seguro}
    163  1.3  martin message undo {Deshacer los cambios}
    164  1.3  martin message unconfig {Desconfigurar}
    165  1.3  martin message edit {Editar}
    166  1.3  martin message doumount {Fuerza umount}
    167  1.3  martin 
    168