msg.mbr.fr revision 1.6 1 1.6 martin /* $NetBSD: msg.mbr.fr,v 1.6 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 /* MD Message catalog -- french, i386 version */
36 1.1 dholland
37 1.6 martin message mbr_part_header_1 {Type}
38 1.6 martin message mbr_part_header_2 {Mount}
39 1.1 dholland .if BOOTSEL
40 1.6 martin message mbr_part_header_3 {Menu}
41 1.1 dholland .endif
42 1.1 dholland
43 1.1 dholland message noactivepart
44 1.1 dholland {Vous n'avez pas choisi de partition active.
45 1.6 martin Cela peut empcher votre systme de dmarrer correctement.}
46 1.6 martin
47 1.6 martin message fixactivepart
48 1.6 martin {
49 1.1 dholland Dois-je marquer la partition NetBSD comme active ?}
50 1.1 dholland
51 1.1 dholland message setbiosgeom
52 1.1 dholland {
53 1.1 dholland La gomtrie du disque doit tre prcise.
54 1.1 dholland Veuillez entrer le nombre de secteurs par piste (maximum 63) et le nombre de
55 1.1 dholland ttes (maximum 256) que le BIOS utilise pour accder au disque.
56 1.1 dholland Le nombre de cylindres sera dduit de la taille du disque.
57 1.1 dholland
58 1.1 dholland }
59 1.1 dholland
60 1.1 dholland message nobiosgeom
61 1.1 dholland {Sysinst n'a pas pu dterminer automatiquement la gomtrie utilise par le
62 1.1 dholland BIOS pour votre disque.
63 1.1 dholland La gomtrie physique est %d cylindres %d secteurs %d ttes\n}
64 1.1 dholland
65 1.1 dholland message biosguess
66 1.4 maxv {En utilisant les informations dj prsentes sur le disque, il semble que
67 1.1 dholland la gomtrie utilise par le BIOS soit de %d cylindres, %d secteurs et %d ttes\n}
68 1.1 dholland
69 1.1 dholland message realgeom
70 1.1 dholland { gom relle : %d cylindres, %d ttes, %d secteurs (pour information)\n}
71 1.1 dholland
72 1.1 dholland message biosgeom
73 1.1 dholland { gom fdisk : %d cylindres, %d ttes, %d secteurs \n}
74 1.1 dholland
75 1.1 dholland message ptn_active
76 1.6 martin {active}
77 1.1 dholland .if BOOTSEL
78 1.1 dholland message bootmenu
79 1.6 martin {menu de dmarrage}
80 1.1 dholland message boot_dflt
81 1.6 martin {dfaut}
82 1.1 dholland .endif
83 1.1 dholland
84 1.6 martin message mbr_get_ptn_id {Type de partition (0..255)}
85 1.1 dholland message Only_one_extended_ptn {Il ne peut y avoir qu'une seule partition tendue}
86 1.1 dholland
87 1.6 martin message mbr_flags {ad}
88 1.6 martin message mbr_flag_desc
89 1.6 martin .if BOOTSEL
90 1.6 martin {, (Ac)tive partition, bootselect (d)efault}
91 1.6 martin .else
92 1.6 martin {, (A)ctive partition}
93 1.6 martin .endif
94 1.1 dholland
95 1.6 martin /* Called with: Example
96 1.6 martin * $0 = device name wd0
97 1.6 martin * $1 = outer partitioning name Master Boot Record (MBR)
98 1.6 martin * $2 = short version of $1 MBR
99 1.6 martin */
100 1.6 martin message dofdisk
101 1.6 martin {Configuration de la table de partition $2...
102 1.1 dholland }
103 1.1 dholland
104 1.6 martin message wmbrfail
105 1.6 martin {L'criture du MBR a chou. Nous ne pouvons continuer.}
106 1.1 dholland
107 1.6 martin message mbr_inside_ext
108 1.6 martin {The partition needs to start within the Extended Partition}
109 1.1 dholland
110 1.6 martin message mbr_ext_nofit
111 1.6 martin {The Extended Partition must be able to hold all contained partitions}
112 1.1 dholland
113 1.6 martin message mbr_ext_not_empty
114 1.6 martin {Can not delete a non-empty extended partition!}
115 1.1 dholland
116 1.6 martin message mbr_no_free_primary_have_ext
117 1.6 martin {This partition is not inside the extended partition
118 1.6 martin and there is no free slot in the primary boot record}
119 1.6 martin
120 1.6 martin message mbr_no_free_primary_no_ext
121 1.6 martin {No space in the primary boot block.
122 1.6 martin You may consider deleting one partition, creating an extended partition
123 1.6 martin and then re-adding the deleted one}
124 1.1 dholland
125 1.1 dholland .if 0
126 1.1 dholland .if BOOTSEL
127 1.1 dholland message Set_timeout_value
128 1.1 dholland {Modifier le temps d'attente}
129 1.1 dholland
130 1.1 dholland message bootseltimeout
131 1.1 dholland {Temps d'attente : %d\n}
132 1.1 dholland
133 1.1 dholland .endif
134 1.1 dholland .endif
135 1.6 martin
136 1.6 martin message parttype_mbr {Master Boot Record (MBR)}
137 1.6 martin message parttype_mbr_short {MBR}
138 1.6 martin
139 1.6 martin message mbr_type_invalid {Invalid partition type (0 .. 255)}
140