1 1.4 martin /* $NetBSD: msg.mbr.en,v 1.4 2019/06/12 06:20:17 martin Exp $ */ 2 1.1 dholland 3 1.1 dholland /* 4 1.1 dholland * Copyright 1997 Piermont Information Systems Inc. 5 1.1 dholland * All rights reserved. 6 1.1 dholland * 7 1.1 dholland * Written by Philip A. Nelson for Piermont Information Systems Inc. 8 1.1 dholland * 9 1.1 dholland * Redistribution and use in source and binary forms, with or without 10 1.1 dholland * modification, are permitted provided that the following conditions 11 1.1 dholland * are met: 12 1.1 dholland * 1. Redistributions of source code must retain the above copyright 13 1.1 dholland * notice, this list of conditions and the following disclaimer. 14 1.1 dholland * 2. Redistributions in binary form must reproduce the above copyright 15 1.1 dholland * notice, this list of conditions and the following disclaimer in the 16 1.1 dholland * documentation and/or other materials provided with the distribution. 17 1.1 dholland * 3. The name of Piermont Information Systems Inc. may not be used to endorse 18 1.1 dholland * or promote products derived from this software without specific prior 19 1.1 dholland * written permission. 20 1.1 dholland * 21 1.1 dholland * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS'' 22 1.1 dholland * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 1.1 dholland * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 1.1 dholland * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE 25 1.1 dholland * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 26 1.1 dholland * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 27 1.1 dholland * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 1.1 dholland * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 1.1 dholland * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 30 1.1 dholland * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 31 1.1 dholland * THE POSSIBILITY OF SUCH DAMAGE. 32 1.1 dholland * 33 1.1 dholland */ 34 1.1 dholland 35 1.1 dholland /* MBR Message catalog -- English, i386 version */ 36 1.1 dholland 37 1.1 dholland /* NB: Lines ending in spaces force line breaks */ 38 1.1 dholland 39 1.4 martin message mbr_part_header_1 {Kind} 40 1.4 martin message mbr_part_header_2 {Mount} 41 1.1 dholland .if BOOTSEL 42 1.4 martin message mbr_part_header_3 {Bootmenu} 43 1.1 dholland .endif 44 1.1 dholland 45 1.1 dholland message noactivepart 46 1.1 dholland {You have not marked a partition active. This may cause your system to not 47 1.4 martin start up properly.} 48 1.4 martin 49 1.4 martin message fixactivepart 50 1.4 martin { 51 1.4 martin Should the NetBSD partition of the disk be marked active?} 52 1.1 dholland 53 1.1 dholland message setbiosgeom 54 1.1 dholland { 55 1.1 dholland You will be prompted for the geometry. 56 1.1 dholland Please enter the number of sectors per track (maximum 63) 57 1.1 dholland and number of heads (maximum 256) that the BIOS uses to access the disk. 58 1.1 dholland The number of cylinders will be calculated from the disk size. 59 1.1 dholland 60 1.1 dholland } 61 1.1 dholland 62 1.1 dholland message nobiosgeom 63 1.1 dholland {Sysinst could not automatically determine the BIOS geometry of the disk. 64 1.1 dholland The physical geometry is %d cylinders %d sectors %d heads\n} 65 1.1 dholland 66 1.1 dholland message biosguess 67 1.1 dholland {Using the information already on the disk, my best guess for the BIOS 68 1.1 dholland geometry is %d cylinders %d sectors %d heads\n} 69 1.1 dholland 70 1.1 dholland message realgeom 71 1.1 dholland {real geom: %d cyl, %d heads, %d sec (NB: for comparison only)\n} 72 1.1 dholland 73 1.1 dholland message biosgeom 74 1.1 dholland {BIOS geom: %d cyl, %d heads, %d sec\n} 75 1.1 dholland 76 1.1 dholland message ptn_active 77 1.4 martin {active} 78 1.1 dholland .if BOOTSEL 79 1.1 dholland message bootmenu 80 1.4 martin {bootmenu} 81 1.1 dholland message boot_dflt 82 1.4 martin {default} 83 1.1 dholland .endif 84 1.1 dholland 85 1.4 martin message mbr_get_ptn_id {Partition kind (0..255)} 86 1.1 dholland message Only_one_extended_ptn {There can only be one extended partition} 87 1.1 dholland 88 1.4 martin message mbr_flags {ad} 89 1.4 martin message mbr_flag_desc 90 1.1 dholland .if BOOTSEL 91 1.4 martin {, (a)ctive, (d)efault boot} 92 1.4 martin .else 93 1.4 martin {, (a)ctive} 94 1.1 dholland .endif 95 1.1 dholland 96 1.4 martin /* Called with: Example 97 1.4 martin * $0 = device name wd0 98 1.4 martin * $1 = outer partitioning name Master Boot Record (MBR) 99 1.4 martin * $2 = short version of $1 MBR 100 1.4 martin */ 101 1.4 martin message dofdisk 102 1.4 martin {Writing the $2 partition table to $0... 103 1.1 dholland } 104 1.1 dholland 105 1.4 martin message wmbrfail 106 1.4 martin {Rewrite of MBR failed. I can't continue.} 107 1.1 dholland 108 1.4 martin message mbr_inside_ext 109 1.4 martin {The partition needs to start within the Extended Partition} 110 1.1 dholland 111 1.4 martin message mbr_ext_nofit 112 1.4 martin {The Extended Partition must be able to hold all contained partitions} 113 1.1 dholland 114 1.4 martin message mbr_ext_not_empty 115 1.4 martin {Can not delete a non-empty extended partition!} 116 1.1 dholland 117 1.4 martin message mbr_no_free_primary_have_ext 118 1.4 martin {This partition is not inside the extended partition 119 1.4 martin and there is no free slot in the primary boot record} 120 1.4 martin 121 1.4 martin message mbr_no_free_primary_no_ext 122 1.4 martin {No space in the primary boot block. 123 1.4 martin You may consider deleting one partition, creating an extended partition 124 1.4 martin and then re-adding the deleted one} 125 1.1 dholland 126 1.1 dholland .if 0 127 1.1 dholland .if BOOTSEL 128 1.1 dholland message Set_timeout_value 129 1.1 dholland {Set timeout value} 130 1.1 dholland 131 1.1 dholland message bootseltimeout 132 1.1 dholland {Boot menu timeout: %d\n} 133 1.1 dholland 134 1.1 dholland .endif 135 1.1 dholland .endif 136 1.1 dholland 137 1.4 martin message parttype_mbr {Master Boot Record (MBR)} 138 1.4 martin message parttype_mbr_short {MBR} 139 1.4 martin 140 1.4 martin message mbr_type_invalid {Invalid partition type (0 .. 255)} 141