xref: /netbsd-src/usr.sbin/sysinst/msg.pm.en (revision aeba785f6ea9354d9be89ed2fd68e168177f1b7d)
1*aeba785fSmartin/*	$NetBSD: msg.pm.en,v 1.4 2020/11/05 11:10:11 martin Exp $	*/
24103857bSmartin
34103857bSmartin/*
44103857bSmartin * Copyright 1997 Piermont Information Systems Inc.
54103857bSmartin * All rights reserved.
64103857bSmartin *
74103857bSmartin * Written by Philip A. Nelson for Piermont Information Systems Inc.
84103857bSmartin *
94103857bSmartin * Redistribution and use in source and binary forms, with or without
104103857bSmartin * modification, are permitted provided that the following conditions
114103857bSmartin * are met:
124103857bSmartin * 1. Redistributions of source code must retain the above copyright
134103857bSmartin *    notice, this list of conditions and the following disclaimer.
144103857bSmartin * 2. Redistributions in binary form must reproduce the above copyright
154103857bSmartin *    notice, this list of conditions and the following disclaimer in the
164103857bSmartin *    documentation and/or other materials provided with the distribution.
174103857bSmartin * 3. The name of Piermont Information Systems Inc. may not be used to endorse
184103857bSmartin *    or promote products derived from this software without specific prior
194103857bSmartin *    written permission.
204103857bSmartin *
214103857bSmartin * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
224103857bSmartin * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
234103857bSmartin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
244103857bSmartin * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
254103857bSmartin * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
264103857bSmartin * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
274103857bSmartin * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
284103857bSmartin * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
294103857bSmartin * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
304103857bSmartin * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
314103857bSmartin * THE POSSIBILITY OF SUCH DAMAGE.
324103857bSmartin *
334103857bSmartin */
344103857bSmartin
354103857bSmartin/* extended partition manager message catalog -- English, machine independent */
364103857bSmartin
374103857bSmartinmessage fillzeros {Fill with zeros}
384103857bSmartinmessage fillrandom {Fill with random data}
394103857bSmartinmessage raid0 {0 - No parity, simple striping.}
404103857bSmartinmessage raid1 {1 - Mirroring.  The parity is the mirror.}
414103857bSmartinmessage raid4 {4 - Striping with parity stored on the last component.}
424103857bSmartinmessage raid5 {5 - Striping with distributed parity.}
434103857bSmartin
444103857bSmartinmessage wannaunblock {
454103857bSmartinDevice is blocked.  Editing it may cause problems.
464103857bSmartinDo you want to force unblock it and continue?}
474103857bSmartinmessage wannatry {Do you want to try?}
484103857bSmartinmessage create_cgd {Create cryptographic volume (CGD)}
49abce8cb3Smartinmessage create_vnd {Create virtual disk image (VND)}
504103857bSmartinmessage create_vg {Create volume group (LVM VG)}
514103857bSmartinmessage create_lv {Create logical volume}
524103857bSmartinmessage create_raid {Create software RAID}
534103857bSmartinmessage updpmlist {Update device list}
544103857bSmartinmessage savepm {Save changes}
554103857bSmartinmessage pmblocked {BLOCKED}
564103857bSmartinmessage pmunchanged {UNCHANGED}
574103857bSmartinmessage pmused {USED}
584103857bSmartinmessage pmmounted {(mounted)}
594103857bSmartinmessage pmunused {(unused)}
604103857bSmartinmessage pmgptdisk {GPT-labeled disk}
614103857bSmartin
624103857bSmartinmessage finishpm {Finish partitioning}
634103857bSmartinmessage limitcount {Limit for the device count was reached!}
644103857bSmartinmessage invaliddev {Invalid device!}
654103857bSmartinmessage avdisks {Available disks:}
664103857bSmartinmessage nofreedev {Cannot allocate device node!}
674103857bSmartinmessage partman_header
684103857bSmartin{This is the extended partition manager.  All disks, partitions, etc. are
694103857bSmartinlisted below.  To use RAID, LVM, or CGD: 1) Create partitions with the
704103857bSmartinappropriate type; 2) Create RAID/LVM VG/CGD using these partitions; 3) Save
714103857bSmartinchanges; 4) Create partitions for RAID/CGD or Logical Volumes for LVM.}
724103857bSmartin
734103857bSmartin/* used to form strings like: "vnd0 on /var/tmp/disk1.img" */
744103857bSmartinmessage	pm_menu_on {on}
754103857bSmartin/* Called with:                         Example
764103857bSmartin *  $0 = device name                    raid0
774103857bSmartin *  $1 = raid level			1
784103857bSmartin */
794103857bSmartinmessage raid_menufmt {$0 (level $1)}
804103857bSmartinmessage raid_err_menufmt {EMPTY RAID!}
814103857bSmartinmessage raid_disks_fmt {Disks}
824103857bSmartinmessage raid_spares_fmt {Spares}
834103857bSmartinmessage raid_level_fmt {RAID level}
844103857bSmartinmessage raid_numrow_fmt {numRow}
854103857bSmartinmessage raid_numcol_fmt {numCol}
864103857bSmartinmessage raid_numspare_fmt {numSpare}
874103857bSmartinmessage raid_sectpersu_fmt {sectPerSU}
884103857bSmartinmessage raid_superpar_fmt {SUsPerParityUnit}
894103857bSmartinmessage raid_superrec_fmt {SUsPerReconUnit}
904103857bSmartinmessage raid_nomultidim {Multi-dimensional arrays are NOT supported!}
914103857bSmartinmessage raid_numrow_ask {numRow?}
924103857bSmartinmessage raid_numcol_ask {numCol?}
934103857bSmartinmessage raid_numspare_ask {numSpare?}
944103857bSmartinmessage raid_sectpersu_ask {sectPerSU?}
954103857bSmartinmessage raid_superpar_ask {SUsPerParityUnit?}
964103857bSmartinmessage raid_superrec_ask {SUsPerReconUnit?}
974103857bSmartinmessage raid_disks {Disks in RAID:}
984103857bSmartinmessage vnd_err_menufmt {PATH NOT DEFINED!}
994103857bSmartinmessage vnd_assign {ASSIGN}
1004103857bSmartinmessage vnd_path_fmt {File path}
1014103857bSmartinmessage vnd_assign_fmt {Create new image}
1024103857bSmartinmessage vnd_size_fmt {Size}
1034103857bSmartinmessage vnd_ro_fmt {Read-only}
1044103857bSmartinmessage vnd_geom_fmt {Set geometry by hand}
1054103857bSmartinmessage vnd_bps_fmt {Bytes per Sector}
1064103857bSmartinmessage vnd_spt_fmt {Sectors per Track}
1074103857bSmartinmessage vnd_tpc_fmt {Tracks per Cylinder}
1084103857bSmartinmessage vnd_cyl_fmt {Cylinders}
1094103857bSmartinmessage vnd_path_ask {File path?}
1104103857bSmartinmessage vnd_size_ask {Size (MB)?}
1114103857bSmartinmessage vnd_bps_ask {Bytes per Sector?}
1124103857bSmartinmessage vnd_spt_ask {Sectors per Track?}
1134103857bSmartinmessage vnd_tpc_ask {Tracks per Cylinder?}
1144103857bSmartinmessage vnd_cyl_ask {Cylinders?}
1154103857bSmartinmessage cgd_err_menufmt {DISK NOT DEFINED!}
1164103857bSmartinmessage cgd_dev_fmt {Base device}
1174103857bSmartinmessage cgd_enc_fmt {Encryption}
1184103857bSmartinmessage cgd_key_fmt {Key size}
1194103857bSmartinmessage cgd_iv_fmt {IV algorithm}
1204103857bSmartinmessage cgd_keygen_fmt {Key generation}
1214103857bSmartinmessage cgd_verif_fmt {Verification method}
1224103857bSmartinmessage lvm_disks {Disks in VG}
1234103857bSmartinmessage lvm_err_menufmt {EMPTY VG!}
1244103857bSmartinmessage lvm_disks_fmt {PV's}
1254103857bSmartinmessage lvm_name_fmt {Name}
1264103857bSmartinmessage lvm_maxlv_fmt {MaxLogicalVolumes}
1274103857bSmartinmessage lvm_maxpv_fmt {MaxPhysicalVolumes}
1284103857bSmartinmessage lvm_extsiz_fmt {PhysicalExtentSize}
1294103857bSmartinmessage lvm_name_ask {Name?}
1304103857bSmartinmessage lvm_maxlv_ask {MaxLogicalVolumes?}
1314103857bSmartinmessage lvm_maxpv_ask {MaxPhysicalVolumes?}
1324103857bSmartinmessage lvm_extsiz_ask {PhysicalExtentSize?}
1334103857bSmartinmessage lvmlv_menufmt {Logical volume}
1344103857bSmartinmessage lvmlv_name_fmt {Name}
1354103857bSmartinmessage lvmlv_size_fmt {Size}
1364103857bSmartinmessage lvmlv_ro_fmt {Read-only}
1374103857bSmartinmessage lvmlv_cont_fmt {Contiguous}
1384103857bSmartinmessage lvmlv_extnum_fmt {LogicalExtentsNumber}
1394103857bSmartinmessage lvmlv_minor_fmt {Minor number}
1404103857bSmartinmessage lvmlv_mirrors_fmt {Mirrors}
1414103857bSmartinmessage lvmlv_regsiz_fmt {MirrorLogRegionSize}
1424103857bSmartinmessage lvmlv_pers_fmt {Persistent minor number}
1434103857bSmartinmessage lvmlv_readahsect_fmt {ReadAheadSectors}
1444103857bSmartinmessage lvmlv_stripes_fmt {Stripes}
1454103857bSmartinmessage lvmlv_stripesiz_fmt {StripeSize}
1464103857bSmartinmessage lvmlv_zero_fmt {Zeroing of the first KB}
1474103857bSmartinmessage lvmlv_name_ask {Name?}
1484103857bSmartinmessage lvmlv_size_ask {Size (MB)?}
1494103857bSmartinmessage lvmlv_extnum_ask {LogicalExtentsNumber?}
1504103857bSmartinmessage lvmlv_minor_ask {Minor number?}
1514103857bSmartinmessage lvmlv_mirrors_ask {Mirrors?}
1524103857bSmartinmessage lvmlv_regsiz_ask {MirrorLogRegionSize?}
1534103857bSmartinmessage lvmlv_readahsect_ask {ReadAheadSectors?}
1544103857bSmartinmessage lvmlv_stripes_ask {Stripes?}
1554103857bSmartin
156043e812bSmartinmessage notsupported {Operation not supported!}
157043e812bSmartinmessage edit_parts {Edit partitions}
158043e812bSmartinmessage switch_parts {Switch partitioning scheme}
159043e812bSmartinmessage fmtasraid {Format as RAID}
160043e812bSmartinmessage fmtaslvm {Format as LVM PV}
161043e812bSmartinmessage encrypt {Encrypt (CGD)}
162043e812bSmartinmessage erase {Safe erase}
163043e812bSmartinmessage undo {Undo changes}
164043e812bSmartinmessage unconfig {Unconfigure}
165043e812bSmartinmessage edit {Edit}
166043e812bSmartinmessage doumount {Force umount}
167043e812bSmartin
168