xref: /aosp_15_r20/external/e2fsprogs/po/e2fsprogs.pot (revision 6a54128f25917bfc36a8a6e9d722c04a0b4641b6)
1*6a54128fSAndroid Build Coastguard Worker# E2fsprogs translation template file
2*6a54128fSAndroid Build Coastguard Worker# Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3*6a54128fSAndroid Build Coastguard Worker#     2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
4*6a54128fSAndroid Build Coastguard Worker#     2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022,
5*6a54128fSAndroid Build Coastguard Worker#     2023 by Theodore Ts'o
6*6a54128fSAndroid Build Coastguard Worker# This file is distributed under the same license as the e2fsprogs package.
7*6a54128fSAndroid Build Coastguard Worker# Theodore Ts'o <[email protected]>, 2023.
8*6a54128fSAndroid Build Coastguard Worker#
9*6a54128fSAndroid Build Coastguard Worker#. The strings in e2fsck's problem.c can be very hard to translate,
10*6a54128fSAndroid Build Coastguard Worker#. since the strings are expanded in two different ways.  First of all,
11*6a54128fSAndroid Build Coastguard Worker#. there is an @-expansion, where strings like "@i" are expanded to
12*6a54128fSAndroid Build Coastguard Worker#. "inode", and so on.  In order to make it easier for translators, the
13*6a54128fSAndroid Build Coastguard Worker#. e2fsprogs po template file has been enhanced with comments that show
14*6a54128fSAndroid Build Coastguard Worker#. the @-expansion, for the strings in the problem.c file.
15*6a54128fSAndroid Build Coastguard Worker#.
16*6a54128fSAndroid Build Coastguard Worker#. Translators are free to use the @-expansion facility if they so
17*6a54128fSAndroid Build Coastguard Worker#. choose, by providing translations for strings in e2fsck/message.c.
18*6a54128fSAndroid Build Coastguard Worker#. These translation can completely replace an expansion; for example,
19*6a54128fSAndroid Build Coastguard Worker#. if "bblock" (which indicated that "@b" would be expanded to "block")
20*6a54128fSAndroid Build Coastguard Worker#. is translated as "ddatenverlust", then "@d" will be expanded to
21*6a54128fSAndroid Build Coastguard Worker#. "datenverlust".  Alternatively, translators can simply not use the
22*6a54128fSAndroid Build Coastguard Worker#. @-expansion facility at all.
23*6a54128fSAndroid Build Coastguard Worker#.
24*6a54128fSAndroid Build Coastguard Worker#. The second expansion which is done for e2fsck's problem.c messages is
25*6a54128fSAndroid Build Coastguard Worker#. a dynamic %-expansion, which expands %i as an inode number, and so
26*6a54128fSAndroid Build Coastguard Worker#. on.  A table of these expansions can be found below.  Note that
27*6a54128fSAndroid Build Coastguard Worker#. %-expressions that begin with "%D" and "%I" are two-character
28*6a54128fSAndroid Build Coastguard Worker#. expansions; so for example, "%Iu" expands to the inode's user id
29*6a54128fSAndroid Build Coastguard Worker#. ownership field (inode->i_uid).  Also the "%B" expansion is special:
30*6a54128fSAndroid Build Coastguard Worker#. it can expand to either the string "indirect block" (possibly preceded
31*6a54128fSAndroid Build Coastguard Worker#. by the word "double" or "triple"), or the string "block #" immediately
32*6a54128fSAndroid Build Coastguard Worker#. followed by an integer indicating a block sequence number.
33*6a54128fSAndroid Build Coastguard Worker#.
34*6a54128fSAndroid Build Coastguard Worker#. Please note that the %-expansion for most e2fsck's problem.c should not
35*6a54128fSAndroid Build Coastguard Worker#. use positional indicators such as %1, since although they look like c-style
36*6a54128fSAndroid Build Coastguard Worker#. format strings, they are NOT c-style format strings, and the positional
37*6a54128fSAndroid Build Coastguard Worker#. indicators (which BTW are GNU extensions and so won't work on other Unix
38*6a54128fSAndroid Build Coastguard Worker#. gettext implementations) won't work with e2fsck's print_e2fsck_message()
39*6a54128fSAndroid Build Coastguard Worker#. function found in e2fsck/message.c
40*6a54128fSAndroid Build Coastguard Worker#.
41*6a54128fSAndroid Build Coastguard Worker#.	%b	<blk>			block number
42*6a54128fSAndroid Build Coastguard Worker#.	%B	"indirect block" | "block #"<blkcount>	string | string+integer
43*6a54128fSAndroid Build Coastguard Worker#.	%c	<blk2>			block number
44*6a54128fSAndroid Build Coastguard Worker#.	%Di	<dirent> -> ino		inode number
45*6a54128fSAndroid Build Coastguard Worker#.	%Dn	<dirent> -> name	string
46*6a54128fSAndroid Build Coastguard Worker#.	%Dr	<dirent> -> rec_len
47*6a54128fSAndroid Build Coastguard Worker#.	%Dl	<dirent> -> name_len
48*6a54128fSAndroid Build Coastguard Worker#.	%Dt	<dirent> -> filetype
49*6a54128fSAndroid Build Coastguard Worker#.	%d	<dir> 			inode number
50*6a54128fSAndroid Build Coastguard Worker#.	%g	<group>			integer
51*6a54128fSAndroid Build Coastguard Worker#.	%i	<ino>			inode number
52*6a54128fSAndroid Build Coastguard Worker#.	%Is	<inode> -> i_size
53*6a54128fSAndroid Build Coastguard Worker#.	%IS	<inode> -> i_extra_isize
54*6a54128fSAndroid Build Coastguard Worker#.	%Ib	<inode> -> i_blocks
55*6a54128fSAndroid Build Coastguard Worker#.	%Il	<inode> -> i_links_count
56*6a54128fSAndroid Build Coastguard Worker#.	%Im	<inode> -> i_mode
57*6a54128fSAndroid Build Coastguard Worker#.	%IM	<inode> -> i_mtime
58*6a54128fSAndroid Build Coastguard Worker#.	%IF	<inode> -> i_faddr
59*6a54128fSAndroid Build Coastguard Worker#.	%If	<inode> -> i_file_acl
60*6a54128fSAndroid Build Coastguard Worker#.	%Id	<inode> -> i_size_high
61*6a54128fSAndroid Build Coastguard Worker#.	%Iu	<inode> -> i_uid
62*6a54128fSAndroid Build Coastguard Worker#.	%Ig	<inode> -> i_gid
63*6a54128fSAndroid Build Coastguard Worker#.	%It	<str>			file type
64*6a54128fSAndroid Build Coastguard Worker#.	%j	<ino2>			inode number
65*6a54128fSAndroid Build Coastguard Worker#.	%m	<com_err error message>
66*6a54128fSAndroid Build Coastguard Worker#.	%N	<num>
67*6a54128fSAndroid Build Coastguard Worker#.	%p		ext2fs_get_pathname of directory <ino>
68*6a54128fSAndroid Build Coastguard Worker#.	%P		ext2fs_get_pathname of <dirent>->ino with <ino2> as
69*6a54128fSAndroid Build Coastguard Worker#.				the containing directory.  (If dirent is NULL
70*6a54128fSAndroid Build Coastguard Worker#.				then return the pathname of directory <ino2>)
71*6a54128fSAndroid Build Coastguard Worker#.	%q		ext2fs_get_pathname of directory <dir>
72*6a54128fSAndroid Build Coastguard Worker#.	%Q		ext2fs_get_pathname of directory <ino> with <dir> as
73*6a54128fSAndroid Build Coastguard Worker#.				the containing directory.
74*6a54128fSAndroid Build Coastguard Worker#.	%s	<str>			miscellaneous string
75*6a54128fSAndroid Build Coastguard Worker#.	%S		backup superblock
76*6a54128fSAndroid Build Coastguard Worker#.	%X	<num>	hexadecimal format
77*6a54128fSAndroid Build Coastguard Worker#.
78*6a54128fSAndroid Build Coastguard Worker#, fuzzy
79*6a54128fSAndroid Build Coastguard Workermsgid ""
80*6a54128fSAndroid Build Coastguard Workermsgstr ""
81*6a54128fSAndroid Build Coastguard Worker"Project-Id-Version: e2fsprogs 1.46.6\n"
82*6a54128fSAndroid Build Coastguard Worker"Report-Msgid-Bugs-To: [email protected]\n"
83*6a54128fSAndroid Build Coastguard Worker"POT-Creation-Date: 2023-02-01 15:29-0500\n"
84*6a54128fSAndroid Build Coastguard Worker"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
85*6a54128fSAndroid Build Coastguard Worker"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
86*6a54128fSAndroid Build Coastguard Worker"Language-Team: LANGUAGE <[email protected]>\n"
87*6a54128fSAndroid Build Coastguard Worker"Language: \n"
88*6a54128fSAndroid Build Coastguard Worker"MIME-Version: 1.0\n"
89*6a54128fSAndroid Build Coastguard Worker"Content-Type: text/plain; charset=CHARSET\n"
90*6a54128fSAndroid Build Coastguard Worker"Content-Transfer-Encoding: 8bit\n"
91*6a54128fSAndroid Build Coastguard Worker"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
92*6a54128fSAndroid Build Coastguard Worker
93*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:23 misc/mke2fs.c:221
94*6a54128fSAndroid Build Coastguard Worker#, c-format
95*6a54128fSAndroid Build Coastguard Workermsgid "Bad block %u out of range; ignored.\n"
96*6a54128fSAndroid Build Coastguard Workermsgstr ""
97*6a54128fSAndroid Build Coastguard Worker
98*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:46
99*6a54128fSAndroid Build Coastguard Workermsgid "while sanity checking the bad blocks inode"
100*6a54128fSAndroid Build Coastguard Workermsgstr ""
101*6a54128fSAndroid Build Coastguard Worker
102*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:58
103*6a54128fSAndroid Build Coastguard Workermsgid "while reading the bad blocks inode"
104*6a54128fSAndroid Build Coastguard Workermsgstr ""
105*6a54128fSAndroid Build Coastguard Worker
106*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:72 e2fsck/scantest.c:107 e2fsck/unix.c:1592
107*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1707 misc/badblocks.c:1273 misc/badblocks.c:1281
108*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1295 misc/badblocks.c:1307 misc/dumpe2fs.c:438
109*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:704 misc/dumpe2fs.c:708 misc/e2image.c:1440
110*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1640 misc/e2image.c:1661 misc/mke2fs.c:237
111*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2891 misc/tune2fs.c:2993 resize/main.c:422
112*6a54128fSAndroid Build Coastguard Worker#, c-format
113*6a54128fSAndroid Build Coastguard Workermsgid "while trying to open %s"
114*6a54128fSAndroid Build Coastguard Workermsgstr ""
115*6a54128fSAndroid Build Coastguard Worker
116*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:84
117*6a54128fSAndroid Build Coastguard Worker#, c-format
118*6a54128fSAndroid Build Coastguard Workermsgid "while trying popen '%s'"
119*6a54128fSAndroid Build Coastguard Workermsgstr ""
120*6a54128fSAndroid Build Coastguard Worker
121*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:95 misc/mke2fs.c:244
122*6a54128fSAndroid Build Coastguard Workermsgid "while reading in list of bad blocks from file"
123*6a54128fSAndroid Build Coastguard Workermsgstr ""
124*6a54128fSAndroid Build Coastguard Worker
125*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:106
126*6a54128fSAndroid Build Coastguard Workermsgid "while updating bad block inode"
127*6a54128fSAndroid Build Coastguard Workermsgstr ""
128*6a54128fSAndroid Build Coastguard Worker
129*6a54128fSAndroid Build Coastguard Worker#: e2fsck/badblocks.c:134
130*6a54128fSAndroid Build Coastguard Worker#, c-format
131*6a54128fSAndroid Build Coastguard Workermsgid "Warning: illegal block %u found in bad block inode.  Cleared.\n"
132*6a54128fSAndroid Build Coastguard Workermsgstr ""
133*6a54128fSAndroid Build Coastguard Worker
134*6a54128fSAndroid Build Coastguard Worker#: e2fsck/dirinfo.c:332
135*6a54128fSAndroid Build Coastguard Workermsgid "while freeing dir_info tdb file"
136*6a54128fSAndroid Build Coastguard Workermsgstr ""
137*6a54128fSAndroid Build Coastguard Worker
138*6a54128fSAndroid Build Coastguard Worker#: e2fsck/ehandler.c:55
139*6a54128fSAndroid Build Coastguard Worker#, c-format
140*6a54128fSAndroid Build Coastguard Workermsgid "Error reading block %lu (%s) while %s.  "
141*6a54128fSAndroid Build Coastguard Workermsgstr ""
142*6a54128fSAndroid Build Coastguard Worker
143*6a54128fSAndroid Build Coastguard Worker#: e2fsck/ehandler.c:58
144*6a54128fSAndroid Build Coastguard Worker#, c-format
145*6a54128fSAndroid Build Coastguard Workermsgid "Error reading block %lu (%s).  "
146*6a54128fSAndroid Build Coastguard Workermsgstr ""
147*6a54128fSAndroid Build Coastguard Worker
148*6a54128fSAndroid Build Coastguard Worker#: e2fsck/ehandler.c:66 e2fsck/ehandler.c:115
149*6a54128fSAndroid Build Coastguard Workermsgid "Ignore error"
150*6a54128fSAndroid Build Coastguard Workermsgstr ""
151*6a54128fSAndroid Build Coastguard Worker
152*6a54128fSAndroid Build Coastguard Worker#: e2fsck/ehandler.c:67
153*6a54128fSAndroid Build Coastguard Workermsgid "Force rewrite"
154*6a54128fSAndroid Build Coastguard Workermsgstr ""
155*6a54128fSAndroid Build Coastguard Worker
156*6a54128fSAndroid Build Coastguard Worker#: e2fsck/ehandler.c:109
157*6a54128fSAndroid Build Coastguard Worker#, c-format
158*6a54128fSAndroid Build Coastguard Workermsgid "Error writing block %lu (%s) while %s.  "
159*6a54128fSAndroid Build Coastguard Workermsgstr ""
160*6a54128fSAndroid Build Coastguard Worker
161*6a54128fSAndroid Build Coastguard Worker#: e2fsck/ehandler.c:112
162*6a54128fSAndroid Build Coastguard Worker#, c-format
163*6a54128fSAndroid Build Coastguard Workermsgid "Error writing block %lu (%s).  "
164*6a54128fSAndroid Build Coastguard Workermsgstr ""
165*6a54128fSAndroid Build Coastguard Worker
166*6a54128fSAndroid Build Coastguard Worker#: e2fsck/emptydir.c:56
167*6a54128fSAndroid Build Coastguard Workermsgid "empty dirblocks"
168*6a54128fSAndroid Build Coastguard Workermsgstr ""
169*6a54128fSAndroid Build Coastguard Worker
170*6a54128fSAndroid Build Coastguard Worker#: e2fsck/emptydir.c:61
171*6a54128fSAndroid Build Coastguard Workermsgid "empty dir map"
172*6a54128fSAndroid Build Coastguard Workermsgstr ""
173*6a54128fSAndroid Build Coastguard Worker
174*6a54128fSAndroid Build Coastguard Worker#: e2fsck/emptydir.c:97
175*6a54128fSAndroid Build Coastguard Worker#, c-format
176*6a54128fSAndroid Build Coastguard Workermsgid "Empty directory block %u (#%d) in inode %u\n"
177*6a54128fSAndroid Build Coastguard Workermsgstr ""
178*6a54128fSAndroid Build Coastguard Worker
179*6a54128fSAndroid Build Coastguard Worker#: e2fsck/extend.c:22
180*6a54128fSAndroid Build Coastguard Worker#, c-format
181*6a54128fSAndroid Build Coastguard Workermsgid "%s: %s filename nblocks blocksize\n"
182*6a54128fSAndroid Build Coastguard Workermsgstr ""
183*6a54128fSAndroid Build Coastguard Worker
184*6a54128fSAndroid Build Coastguard Worker#: e2fsck/extend.c:45
185*6a54128fSAndroid Build Coastguard Worker#, c-format
186*6a54128fSAndroid Build Coastguard Workermsgid "Illegal number of blocks!\n"
187*6a54128fSAndroid Build Coastguard Workermsgstr ""
188*6a54128fSAndroid Build Coastguard Worker
189*6a54128fSAndroid Build Coastguard Worker#: e2fsck/extend.c:51
190*6a54128fSAndroid Build Coastguard Worker#, c-format
191*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate block buffer (size=%d)\n"
192*6a54128fSAndroid Build Coastguard Workermsgstr ""
193*6a54128fSAndroid Build Coastguard Worker
194*6a54128fSAndroid Build Coastguard Worker#: e2fsck/extents.c:42
195*6a54128fSAndroid Build Coastguard Workermsgid "extent rebuild inode map"
196*6a54128fSAndroid Build Coastguard Workermsgstr ""
197*6a54128fSAndroid Build Coastguard Worker
198*6a54128fSAndroid Build Coastguard Worker#: e2fsck/flushb.c:35
199*6a54128fSAndroid Build Coastguard Worker#, c-format
200*6a54128fSAndroid Build Coastguard Workermsgid "Usage: %s disk\n"
201*6a54128fSAndroid Build Coastguard Workermsgstr ""
202*6a54128fSAndroid Build Coastguard Worker
203*6a54128fSAndroid Build Coastguard Worker#: e2fsck/flushb.c:64
204*6a54128fSAndroid Build Coastguard Worker#, c-format
205*6a54128fSAndroid Build Coastguard Workermsgid "BLKFLSBUF ioctl not supported!  Can't flush buffers.\n"
206*6a54128fSAndroid Build Coastguard Workermsgstr ""
207*6a54128fSAndroid Build Coastguard Worker
208*6a54128fSAndroid Build Coastguard Worker#: e2fsck/journal.c:1290
209*6a54128fSAndroid Build Coastguard Workermsgid "reading journal superblock\n"
210*6a54128fSAndroid Build Coastguard Workermsgstr ""
211*6a54128fSAndroid Build Coastguard Worker
212*6a54128fSAndroid Build Coastguard Worker#: e2fsck/journal.c:1363
213*6a54128fSAndroid Build Coastguard Worker#, c-format
214*6a54128fSAndroid Build Coastguard Workermsgid "%s: no valid journal superblock found\n"
215*6a54128fSAndroid Build Coastguard Workermsgstr ""
216*6a54128fSAndroid Build Coastguard Worker
217*6a54128fSAndroid Build Coastguard Worker#: e2fsck/journal.c:1372
218*6a54128fSAndroid Build Coastguard Worker#, c-format
219*6a54128fSAndroid Build Coastguard Workermsgid "%s: journal too short\n"
220*6a54128fSAndroid Build Coastguard Workermsgstr ""
221*6a54128fSAndroid Build Coastguard Worker
222*6a54128fSAndroid Build Coastguard Worker#: e2fsck/journal.c:1385
223*6a54128fSAndroid Build Coastguard Worker#, c-format
224*6a54128fSAndroid Build Coastguard Workermsgid "%s: incorrect fast commit blocks\n"
225*6a54128fSAndroid Build Coastguard Workermsgstr ""
226*6a54128fSAndroid Build Coastguard Worker
227*6a54128fSAndroid Build Coastguard Worker#: e2fsck/journal.c:1687 misc/fuse2fs.c:3803
228*6a54128fSAndroid Build Coastguard Worker#, c-format
229*6a54128fSAndroid Build Coastguard Workermsgid "%s: recovering journal\n"
230*6a54128fSAndroid Build Coastguard Workermsgstr ""
231*6a54128fSAndroid Build Coastguard Worker
232*6a54128fSAndroid Build Coastguard Worker#: e2fsck/journal.c:1689
233*6a54128fSAndroid Build Coastguard Worker#, c-format
234*6a54128fSAndroid Build Coastguard Workermsgid "%s: won't do journal recovery while read-only\n"
235*6a54128fSAndroid Build Coastguard Workermsgstr ""
236*6a54128fSAndroid Build Coastguard Worker
237*6a54128fSAndroid Build Coastguard Worker#: e2fsck/journal.c:1716
238*6a54128fSAndroid Build Coastguard Worker#, c-format
239*6a54128fSAndroid Build Coastguard Workermsgid "while trying to re-open %s"
240*6a54128fSAndroid Build Coastguard Workermsgstr ""
241*6a54128fSAndroid Build Coastguard Worker
242*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:116
243*6a54128fSAndroid Build Coastguard Workermsgid "aextended attribute"
244*6a54128fSAndroid Build Coastguard Workermsgstr ""
245*6a54128fSAndroid Build Coastguard Worker
246*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:117
247*6a54128fSAndroid Build Coastguard Workermsgid "Aerror allocating"
248*6a54128fSAndroid Build Coastguard Workermsgstr ""
249*6a54128fSAndroid Build Coastguard Worker
250*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:118
251*6a54128fSAndroid Build Coastguard Workermsgid "bblock"
252*6a54128fSAndroid Build Coastguard Workermsgstr ""
253*6a54128fSAndroid Build Coastguard Worker
254*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:119
255*6a54128fSAndroid Build Coastguard Workermsgid "Bbitmap"
256*6a54128fSAndroid Build Coastguard Workermsgstr ""
257*6a54128fSAndroid Build Coastguard Worker
258*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:120
259*6a54128fSAndroid Build Coastguard Workermsgid "ccompress"
260*6a54128fSAndroid Build Coastguard Workermsgstr ""
261*6a54128fSAndroid Build Coastguard Worker
262*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:121
263*6a54128fSAndroid Build Coastguard Workermsgid "Cconflicts with some other fs @b"
264*6a54128fSAndroid Build Coastguard Workermsgstr ""
265*6a54128fSAndroid Build Coastguard Worker
266*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:122
267*6a54128fSAndroid Build Coastguard Workermsgid "ddirectory"
268*6a54128fSAndroid Build Coastguard Workermsgstr ""
269*6a54128fSAndroid Build Coastguard Worker
270*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:123
271*6a54128fSAndroid Build Coastguard Workermsgid "Ddeleted"
272*6a54128fSAndroid Build Coastguard Workermsgstr ""
273*6a54128fSAndroid Build Coastguard Worker
274*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:124
275*6a54128fSAndroid Build Coastguard Workermsgid "eentry"
276*6a54128fSAndroid Build Coastguard Workermsgstr ""
277*6a54128fSAndroid Build Coastguard Worker
278*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:125
279*6a54128fSAndroid Build Coastguard Workermsgid "E@e '%Dn' in %p (%i)"
280*6a54128fSAndroid Build Coastguard Workermsgstr ""
281*6a54128fSAndroid Build Coastguard Worker
282*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:126
283*6a54128fSAndroid Build Coastguard Workermsgid "ffilesystem"
284*6a54128fSAndroid Build Coastguard Workermsgstr ""
285*6a54128fSAndroid Build Coastguard Worker
286*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:127
287*6a54128fSAndroid Build Coastguard Workermsgid "Ffor @i %i (%Q) is"
288*6a54128fSAndroid Build Coastguard Workermsgstr ""
289*6a54128fSAndroid Build Coastguard Worker
290*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:128
291*6a54128fSAndroid Build Coastguard Workermsgid "ggroup"
292*6a54128fSAndroid Build Coastguard Workermsgstr ""
293*6a54128fSAndroid Build Coastguard Worker
294*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:129
295*6a54128fSAndroid Build Coastguard Workermsgid "hHTREE @d @i"
296*6a54128fSAndroid Build Coastguard Workermsgstr ""
297*6a54128fSAndroid Build Coastguard Worker
298*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:130
299*6a54128fSAndroid Build Coastguard Workermsgid "iinode"
300*6a54128fSAndroid Build Coastguard Workermsgstr ""
301*6a54128fSAndroid Build Coastguard Worker
302*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:131
303*6a54128fSAndroid Build Coastguard Workermsgid "Iillegal"
304*6a54128fSAndroid Build Coastguard Workermsgstr ""
305*6a54128fSAndroid Build Coastguard Worker
306*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:132
307*6a54128fSAndroid Build Coastguard Workermsgid "jjournal"
308*6a54128fSAndroid Build Coastguard Workermsgstr ""
309*6a54128fSAndroid Build Coastguard Worker
310*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:133
311*6a54128fSAndroid Build Coastguard Workermsgid "llost+found"
312*6a54128fSAndroid Build Coastguard Workermsgstr ""
313*6a54128fSAndroid Build Coastguard Worker
314*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:134
315*6a54128fSAndroid Build Coastguard Workermsgid "Lis a link"
316*6a54128fSAndroid Build Coastguard Workermsgstr ""
317*6a54128fSAndroid Build Coastguard Worker
318*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:135
319*6a54128fSAndroid Build Coastguard Workermsgid "mmultiply-claimed"
320*6a54128fSAndroid Build Coastguard Workermsgstr ""
321*6a54128fSAndroid Build Coastguard Worker
322*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:136
323*6a54128fSAndroid Build Coastguard Workermsgid "ninvalid"
324*6a54128fSAndroid Build Coastguard Workermsgstr ""
325*6a54128fSAndroid Build Coastguard Worker
326*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:137
327*6a54128fSAndroid Build Coastguard Workermsgid "oorphaned"
328*6a54128fSAndroid Build Coastguard Workermsgstr ""
329*6a54128fSAndroid Build Coastguard Worker
330*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:138
331*6a54128fSAndroid Build Coastguard Workermsgid "pproblem in"
332*6a54128fSAndroid Build Coastguard Workermsgstr ""
333*6a54128fSAndroid Build Coastguard Worker
334*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:139
335*6a54128fSAndroid Build Coastguard Workermsgid "qquota"
336*6a54128fSAndroid Build Coastguard Workermsgstr ""
337*6a54128fSAndroid Build Coastguard Worker
338*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:140
339*6a54128fSAndroid Build Coastguard Workermsgid "rroot @i"
340*6a54128fSAndroid Build Coastguard Workermsgstr ""
341*6a54128fSAndroid Build Coastguard Worker
342*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:141
343*6a54128fSAndroid Build Coastguard Workermsgid "sshould be"
344*6a54128fSAndroid Build Coastguard Workermsgstr ""
345*6a54128fSAndroid Build Coastguard Worker
346*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:142
347*6a54128fSAndroid Build Coastguard Workermsgid "Ssuper@b"
348*6a54128fSAndroid Build Coastguard Workermsgstr ""
349*6a54128fSAndroid Build Coastguard Worker
350*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:143
351*6a54128fSAndroid Build Coastguard Workermsgid "uunattached"
352*6a54128fSAndroid Build Coastguard Workermsgstr ""
353*6a54128fSAndroid Build Coastguard Worker
354*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:144
355*6a54128fSAndroid Build Coastguard Workermsgid "vdevice"
356*6a54128fSAndroid Build Coastguard Workermsgstr ""
357*6a54128fSAndroid Build Coastguard Worker
358*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:145
359*6a54128fSAndroid Build Coastguard Workermsgid "xextent"
360*6a54128fSAndroid Build Coastguard Workermsgstr ""
361*6a54128fSAndroid Build Coastguard Worker
362*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:146
363*6a54128fSAndroid Build Coastguard Workermsgid "zzero-length"
364*6a54128fSAndroid Build Coastguard Workermsgstr ""
365*6a54128fSAndroid Build Coastguard Worker
366*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:157
367*6a54128fSAndroid Build Coastguard Workermsgid "<The NULL inode>"
368*6a54128fSAndroid Build Coastguard Workermsgstr ""
369*6a54128fSAndroid Build Coastguard Worker
370*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:158
371*6a54128fSAndroid Build Coastguard Workermsgid "<The bad blocks inode>"
372*6a54128fSAndroid Build Coastguard Workermsgstr ""
373*6a54128fSAndroid Build Coastguard Worker
374*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:160
375*6a54128fSAndroid Build Coastguard Workermsgid "<The user quota inode>"
376*6a54128fSAndroid Build Coastguard Workermsgstr ""
377*6a54128fSAndroid Build Coastguard Worker
378*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:161
379*6a54128fSAndroid Build Coastguard Workermsgid "<The group quota inode>"
380*6a54128fSAndroid Build Coastguard Workermsgstr ""
381*6a54128fSAndroid Build Coastguard Worker
382*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:162
383*6a54128fSAndroid Build Coastguard Workermsgid "<The boot loader inode>"
384*6a54128fSAndroid Build Coastguard Workermsgstr ""
385*6a54128fSAndroid Build Coastguard Worker
386*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:163
387*6a54128fSAndroid Build Coastguard Workermsgid "<The undelete directory inode>"
388*6a54128fSAndroid Build Coastguard Workermsgstr ""
389*6a54128fSAndroid Build Coastguard Worker
390*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:164
391*6a54128fSAndroid Build Coastguard Workermsgid "<The group descriptor inode>"
392*6a54128fSAndroid Build Coastguard Workermsgstr ""
393*6a54128fSAndroid Build Coastguard Worker
394*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:165
395*6a54128fSAndroid Build Coastguard Workermsgid "<The journal inode>"
396*6a54128fSAndroid Build Coastguard Workermsgstr ""
397*6a54128fSAndroid Build Coastguard Worker
398*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:166
399*6a54128fSAndroid Build Coastguard Workermsgid "<Reserved inode 9>"
400*6a54128fSAndroid Build Coastguard Workermsgstr ""
401*6a54128fSAndroid Build Coastguard Worker
402*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:167
403*6a54128fSAndroid Build Coastguard Workermsgid "<Reserved inode 10>"
404*6a54128fSAndroid Build Coastguard Workermsgstr ""
405*6a54128fSAndroid Build Coastguard Worker
406*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:325
407*6a54128fSAndroid Build Coastguard Workermsgid "regular file"
408*6a54128fSAndroid Build Coastguard Workermsgstr ""
409*6a54128fSAndroid Build Coastguard Worker
410*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:327
411*6a54128fSAndroid Build Coastguard Workermsgid "directory"
412*6a54128fSAndroid Build Coastguard Workermsgstr ""
413*6a54128fSAndroid Build Coastguard Worker
414*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:329
415*6a54128fSAndroid Build Coastguard Workermsgid "character device"
416*6a54128fSAndroid Build Coastguard Workermsgstr ""
417*6a54128fSAndroid Build Coastguard Worker
418*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:331
419*6a54128fSAndroid Build Coastguard Workermsgid "block device"
420*6a54128fSAndroid Build Coastguard Workermsgstr ""
421*6a54128fSAndroid Build Coastguard Worker
422*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:333
423*6a54128fSAndroid Build Coastguard Workermsgid "named pipe"
424*6a54128fSAndroid Build Coastguard Workermsgstr ""
425*6a54128fSAndroid Build Coastguard Worker
426*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:335
427*6a54128fSAndroid Build Coastguard Workermsgid "symbolic link"
428*6a54128fSAndroid Build Coastguard Workermsgstr ""
429*6a54128fSAndroid Build Coastguard Worker
430*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:337 misc/uuidd.c:162
431*6a54128fSAndroid Build Coastguard Workermsgid "socket"
432*6a54128fSAndroid Build Coastguard Workermsgstr ""
433*6a54128fSAndroid Build Coastguard Worker
434*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:339
435*6a54128fSAndroid Build Coastguard Worker#, c-format
436*6a54128fSAndroid Build Coastguard Workermsgid "unknown file type with mode 0%o"
437*6a54128fSAndroid Build Coastguard Workermsgstr ""
438*6a54128fSAndroid Build Coastguard Worker
439*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:410
440*6a54128fSAndroid Build Coastguard Workermsgid "indirect block"
441*6a54128fSAndroid Build Coastguard Workermsgstr ""
442*6a54128fSAndroid Build Coastguard Worker
443*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:412
444*6a54128fSAndroid Build Coastguard Workermsgid "double indirect block"
445*6a54128fSAndroid Build Coastguard Workermsgstr ""
446*6a54128fSAndroid Build Coastguard Worker
447*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:414
448*6a54128fSAndroid Build Coastguard Workermsgid "triple indirect block"
449*6a54128fSAndroid Build Coastguard Workermsgstr ""
450*6a54128fSAndroid Build Coastguard Worker
451*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:416
452*6a54128fSAndroid Build Coastguard Workermsgid "translator block"
453*6a54128fSAndroid Build Coastguard Workermsgstr ""
454*6a54128fSAndroid Build Coastguard Worker
455*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:418
456*6a54128fSAndroid Build Coastguard Workermsgid "block #"
457*6a54128fSAndroid Build Coastguard Workermsgstr ""
458*6a54128fSAndroid Build Coastguard Worker
459*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:482
460*6a54128fSAndroid Build Coastguard Workermsgid "user"
461*6a54128fSAndroid Build Coastguard Workermsgstr ""
462*6a54128fSAndroid Build Coastguard Worker
463*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:485
464*6a54128fSAndroid Build Coastguard Workermsgid "group"
465*6a54128fSAndroid Build Coastguard Workermsgstr ""
466*6a54128fSAndroid Build Coastguard Worker
467*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:488
468*6a54128fSAndroid Build Coastguard Workermsgid "project"
469*6a54128fSAndroid Build Coastguard Workermsgstr ""
470*6a54128fSAndroid Build Coastguard Worker
471*6a54128fSAndroid Build Coastguard Worker#: e2fsck/message.c:491
472*6a54128fSAndroid Build Coastguard Workermsgid "unknown quota type"
473*6a54128fSAndroid Build Coastguard Workermsgstr ""
474*6a54128fSAndroid Build Coastguard Worker
475*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1b.c:223
476*6a54128fSAndroid Build Coastguard Workermsgid "multiply claimed inode map"
477*6a54128fSAndroid Build Coastguard Workermsgstr ""
478*6a54128fSAndroid Build Coastguard Worker
479*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1b.c:673 e2fsck/pass1b.c:829
480*6a54128fSAndroid Build Coastguard Worker#, c-format
481*6a54128fSAndroid Build Coastguard Workermsgid "internal error: can't find dup_blk for %llu\n"
482*6a54128fSAndroid Build Coastguard Workermsgstr ""
483*6a54128fSAndroid Build Coastguard Worker
484*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1b.c:958
485*6a54128fSAndroid Build Coastguard Workermsgid "returned from clone_file_block"
486*6a54128fSAndroid Build Coastguard Workermsgstr ""
487*6a54128fSAndroid Build Coastguard Worker
488*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1b.c:982
489*6a54128fSAndroid Build Coastguard Worker#, c-format
490*6a54128fSAndroid Build Coastguard Workermsgid "internal error: couldn't lookup EA block record for %llu"
491*6a54128fSAndroid Build Coastguard Workermsgstr ""
492*6a54128fSAndroid Build Coastguard Worker
493*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1b.c:995
494*6a54128fSAndroid Build Coastguard Worker#, c-format
495*6a54128fSAndroid Build Coastguard Workermsgid "internal error: couldn't lookup EA inode record for %u"
496*6a54128fSAndroid Build Coastguard Workermsgstr ""
497*6a54128fSAndroid Build Coastguard Worker
498*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:350
499*6a54128fSAndroid Build Coastguard Worker#, c-format
500*6a54128fSAndroid Build Coastguard Workermsgid "while hashing entry with e_value_inum = %u"
501*6a54128fSAndroid Build Coastguard Workermsgstr ""
502*6a54128fSAndroid Build Coastguard Worker
503*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:774 e2fsck/pass2.c:1155
504*6a54128fSAndroid Build Coastguard Workermsgid "reading directory block"
505*6a54128fSAndroid Build Coastguard Workermsgstr ""
506*6a54128fSAndroid Build Coastguard Worker
507*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1173
508*6a54128fSAndroid Build Coastguard Workermsgid "getting next inode from scan"
509*6a54128fSAndroid Build Coastguard Workermsgstr ""
510*6a54128fSAndroid Build Coastguard Worker
511*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1225
512*6a54128fSAndroid Build Coastguard Workermsgid "in-use inode map"
513*6a54128fSAndroid Build Coastguard Workermsgstr ""
514*6a54128fSAndroid Build Coastguard Worker
515*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1236
516*6a54128fSAndroid Build Coastguard Workermsgid "directory inode map"
517*6a54128fSAndroid Build Coastguard Workermsgstr ""
518*6a54128fSAndroid Build Coastguard Worker
519*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1246
520*6a54128fSAndroid Build Coastguard Workermsgid "regular file inode map"
521*6a54128fSAndroid Build Coastguard Workermsgstr ""
522*6a54128fSAndroid Build Coastguard Worker
523*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1255 misc/e2image.c:1290
524*6a54128fSAndroid Build Coastguard Workermsgid "in-use block map"
525*6a54128fSAndroid Build Coastguard Workermsgstr ""
526*6a54128fSAndroid Build Coastguard Worker
527*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1264
528*6a54128fSAndroid Build Coastguard Workermsgid "metadata block map"
529*6a54128fSAndroid Build Coastguard Workermsgstr ""
530*6a54128fSAndroid Build Coastguard Worker
531*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1275
532*6a54128fSAndroid Build Coastguard Workermsgid "inode casefold map"
533*6a54128fSAndroid Build Coastguard Workermsgstr ""
534*6a54128fSAndroid Build Coastguard Worker
535*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:1340
536*6a54128fSAndroid Build Coastguard Workermsgid "opening inode scan"
537*6a54128fSAndroid Build Coastguard Workermsgstr ""
538*6a54128fSAndroid Build Coastguard Worker
539*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:2108
540*6a54128fSAndroid Build Coastguard Workermsgid "Pass 1"
541*6a54128fSAndroid Build Coastguard Workermsgstr ""
542*6a54128fSAndroid Build Coastguard Worker
543*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:2169
544*6a54128fSAndroid Build Coastguard Worker#, c-format
545*6a54128fSAndroid Build Coastguard Workermsgid "reading indirect blocks of inode %u"
546*6a54128fSAndroid Build Coastguard Workermsgstr ""
547*6a54128fSAndroid Build Coastguard Worker
548*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:2220
549*6a54128fSAndroid Build Coastguard Workermsgid "bad inode map"
550*6a54128fSAndroid Build Coastguard Workermsgstr ""
551*6a54128fSAndroid Build Coastguard Worker
552*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:2260
553*6a54128fSAndroid Build Coastguard Workermsgid "inode in bad block map"
554*6a54128fSAndroid Build Coastguard Workermsgstr ""
555*6a54128fSAndroid Build Coastguard Worker
556*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:2280
557*6a54128fSAndroid Build Coastguard Workermsgid "imagic inode map"
558*6a54128fSAndroid Build Coastguard Workermsgstr ""
559*6a54128fSAndroid Build Coastguard Worker
560*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:2311
561*6a54128fSAndroid Build Coastguard Workermsgid "multiply claimed block map"
562*6a54128fSAndroid Build Coastguard Workermsgstr ""
563*6a54128fSAndroid Build Coastguard Worker
564*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:2436
565*6a54128fSAndroid Build Coastguard Workermsgid "ext attr block map"
566*6a54128fSAndroid Build Coastguard Workermsgstr ""
567*6a54128fSAndroid Build Coastguard Worker
568*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:3736
569*6a54128fSAndroid Build Coastguard Worker#, c-format
570*6a54128fSAndroid Build Coastguard Workermsgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
571*6a54128fSAndroid Build Coastguard Workermsgstr ""
572*6a54128fSAndroid Build Coastguard Worker
573*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:4157
574*6a54128fSAndroid Build Coastguard Workermsgid "block bitmap"
575*6a54128fSAndroid Build Coastguard Workermsgstr ""
576*6a54128fSAndroid Build Coastguard Worker
577*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:4163
578*6a54128fSAndroid Build Coastguard Workermsgid "inode bitmap"
579*6a54128fSAndroid Build Coastguard Workermsgstr ""
580*6a54128fSAndroid Build Coastguard Worker
581*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass1.c:4169
582*6a54128fSAndroid Build Coastguard Workermsgid "inode table"
583*6a54128fSAndroid Build Coastguard Workermsgstr ""
584*6a54128fSAndroid Build Coastguard Worker
585*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass2.c:318
586*6a54128fSAndroid Build Coastguard Workermsgid "Pass 2"
587*6a54128fSAndroid Build Coastguard Workermsgstr ""
588*6a54128fSAndroid Build Coastguard Worker
589*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass2.c:576
590*6a54128fSAndroid Build Coastguard Workermsgid "NLS is broken."
591*6a54128fSAndroid Build Coastguard Workermsgstr ""
592*6a54128fSAndroid Build Coastguard Worker
593*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass2.c:1228 e2fsck/pass2.c:1414
594*6a54128fSAndroid Build Coastguard Workermsgid "Can not continue."
595*6a54128fSAndroid Build Coastguard Workermsgstr ""
596*6a54128fSAndroid Build Coastguard Worker
597*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass3.c:77
598*6a54128fSAndroid Build Coastguard Workermsgid "inode done bitmap"
599*6a54128fSAndroid Build Coastguard Workermsgstr ""
600*6a54128fSAndroid Build Coastguard Worker
601*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass3.c:86
602*6a54128fSAndroid Build Coastguard Workermsgid "Peak memory"
603*6a54128fSAndroid Build Coastguard Workermsgstr ""
604*6a54128fSAndroid Build Coastguard Worker
605*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass3.c:149
606*6a54128fSAndroid Build Coastguard Workermsgid "Pass 3"
607*6a54128fSAndroid Build Coastguard Workermsgstr ""
608*6a54128fSAndroid Build Coastguard Worker
609*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass3.c:355
610*6a54128fSAndroid Build Coastguard Workermsgid "inode loop detection bitmap"
611*6a54128fSAndroid Build Coastguard Workermsgstr ""
612*6a54128fSAndroid Build Coastguard Worker
613*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass4.c:289
614*6a54128fSAndroid Build Coastguard Workermsgid "Pass 4"
615*6a54128fSAndroid Build Coastguard Workermsgstr ""
616*6a54128fSAndroid Build Coastguard Worker
617*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass5.c:79
618*6a54128fSAndroid Build Coastguard Workermsgid "Pass 5"
619*6a54128fSAndroid Build Coastguard Workermsgstr ""
620*6a54128fSAndroid Build Coastguard Worker
621*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass5.c:102
622*6a54128fSAndroid Build Coastguard Workermsgid "check_inode_bitmap_checksum: Memory allocation error"
623*6a54128fSAndroid Build Coastguard Workermsgstr ""
624*6a54128fSAndroid Build Coastguard Worker
625*6a54128fSAndroid Build Coastguard Worker#: e2fsck/pass5.c:156
626*6a54128fSAndroid Build Coastguard Workermsgid "check_block_bitmap_checksum: Memory allocation error"
627*6a54128fSAndroid Build Coastguard Workermsgstr ""
628*6a54128fSAndroid Build Coastguard Worker
629*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:53
630*6a54128fSAndroid Build Coastguard Workermsgid "(no prompt)"
631*6a54128fSAndroid Build Coastguard Workermsgstr ""
632*6a54128fSAndroid Build Coastguard Worker
633*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:54
634*6a54128fSAndroid Build Coastguard Workermsgid "Fix"
635*6a54128fSAndroid Build Coastguard Workermsgstr ""
636*6a54128fSAndroid Build Coastguard Worker
637*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:55
638*6a54128fSAndroid Build Coastguard Workermsgid "Clear"
639*6a54128fSAndroid Build Coastguard Workermsgstr ""
640*6a54128fSAndroid Build Coastguard Worker
641*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:56
642*6a54128fSAndroid Build Coastguard Workermsgid "Relocate"
643*6a54128fSAndroid Build Coastguard Workermsgstr ""
644*6a54128fSAndroid Build Coastguard Worker
645*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:57
646*6a54128fSAndroid Build Coastguard Workermsgid "Allocate"
647*6a54128fSAndroid Build Coastguard Workermsgstr ""
648*6a54128fSAndroid Build Coastguard Worker
649*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:58
650*6a54128fSAndroid Build Coastguard Workermsgid "Expand"
651*6a54128fSAndroid Build Coastguard Workermsgstr ""
652*6a54128fSAndroid Build Coastguard Worker
653*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:59
654*6a54128fSAndroid Build Coastguard Workermsgid "Connect to /lost+found"
655*6a54128fSAndroid Build Coastguard Workermsgstr ""
656*6a54128fSAndroid Build Coastguard Worker
657*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:60
658*6a54128fSAndroid Build Coastguard Workermsgid "Create"
659*6a54128fSAndroid Build Coastguard Workermsgstr ""
660*6a54128fSAndroid Build Coastguard Worker
661*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:61
662*6a54128fSAndroid Build Coastguard Workermsgid "Salvage"
663*6a54128fSAndroid Build Coastguard Workermsgstr ""
664*6a54128fSAndroid Build Coastguard Worker
665*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:62
666*6a54128fSAndroid Build Coastguard Workermsgid "Truncate"
667*6a54128fSAndroid Build Coastguard Workermsgstr ""
668*6a54128fSAndroid Build Coastguard Worker
669*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:63
670*6a54128fSAndroid Build Coastguard Workermsgid "Clear inode"
671*6a54128fSAndroid Build Coastguard Workermsgstr ""
672*6a54128fSAndroid Build Coastguard Worker
673*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:64
674*6a54128fSAndroid Build Coastguard Workermsgid "Abort"
675*6a54128fSAndroid Build Coastguard Workermsgstr ""
676*6a54128fSAndroid Build Coastguard Worker
677*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:65
678*6a54128fSAndroid Build Coastguard Workermsgid "Split"
679*6a54128fSAndroid Build Coastguard Workermsgstr ""
680*6a54128fSAndroid Build Coastguard Worker
681*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:66
682*6a54128fSAndroid Build Coastguard Workermsgid "Continue"
683*6a54128fSAndroid Build Coastguard Workermsgstr ""
684*6a54128fSAndroid Build Coastguard Worker
685*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:67
686*6a54128fSAndroid Build Coastguard Workermsgid "Clone multiply-claimed blocks"
687*6a54128fSAndroid Build Coastguard Workermsgstr ""
688*6a54128fSAndroid Build Coastguard Worker
689*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:68
690*6a54128fSAndroid Build Coastguard Workermsgid "Delete file"
691*6a54128fSAndroid Build Coastguard Workermsgstr ""
692*6a54128fSAndroid Build Coastguard Worker
693*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:69
694*6a54128fSAndroid Build Coastguard Workermsgid "Suppress messages"
695*6a54128fSAndroid Build Coastguard Workermsgstr ""
696*6a54128fSAndroid Build Coastguard Worker
697*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:70
698*6a54128fSAndroid Build Coastguard Workermsgid "Unlink"
699*6a54128fSAndroid Build Coastguard Workermsgstr ""
700*6a54128fSAndroid Build Coastguard Worker
701*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:71
702*6a54128fSAndroid Build Coastguard Workermsgid "Clear HTree index"
703*6a54128fSAndroid Build Coastguard Workermsgstr ""
704*6a54128fSAndroid Build Coastguard Worker
705*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:72
706*6a54128fSAndroid Build Coastguard Workermsgid "Recreate"
707*6a54128fSAndroid Build Coastguard Workermsgstr ""
708*6a54128fSAndroid Build Coastguard Worker
709*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:73
710*6a54128fSAndroid Build Coastguard Workermsgid "Optimize"
711*6a54128fSAndroid Build Coastguard Workermsgstr ""
712*6a54128fSAndroid Build Coastguard Worker
713*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:74
714*6a54128fSAndroid Build Coastguard Workermsgid "Clear flag"
715*6a54128fSAndroid Build Coastguard Workermsgstr ""
716*6a54128fSAndroid Build Coastguard Worker
717*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:83
718*6a54128fSAndroid Build Coastguard Workermsgid "(NONE)"
719*6a54128fSAndroid Build Coastguard Workermsgstr ""
720*6a54128fSAndroid Build Coastguard Worker
721*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:84
722*6a54128fSAndroid Build Coastguard Workermsgid "FIXED"
723*6a54128fSAndroid Build Coastguard Workermsgstr ""
724*6a54128fSAndroid Build Coastguard Worker
725*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:85
726*6a54128fSAndroid Build Coastguard Workermsgid "CLEARED"
727*6a54128fSAndroid Build Coastguard Workermsgstr ""
728*6a54128fSAndroid Build Coastguard Worker
729*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:86
730*6a54128fSAndroid Build Coastguard Workermsgid "RELOCATED"
731*6a54128fSAndroid Build Coastguard Workermsgstr ""
732*6a54128fSAndroid Build Coastguard Worker
733*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:87
734*6a54128fSAndroid Build Coastguard Workermsgid "ALLOCATED"
735*6a54128fSAndroid Build Coastguard Workermsgstr ""
736*6a54128fSAndroid Build Coastguard Worker
737*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:88
738*6a54128fSAndroid Build Coastguard Workermsgid "EXPANDED"
739*6a54128fSAndroid Build Coastguard Workermsgstr ""
740*6a54128fSAndroid Build Coastguard Worker
741*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:89
742*6a54128fSAndroid Build Coastguard Workermsgid "RECONNECTED"
743*6a54128fSAndroid Build Coastguard Workermsgstr ""
744*6a54128fSAndroid Build Coastguard Worker
745*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:90
746*6a54128fSAndroid Build Coastguard Workermsgid "CREATED"
747*6a54128fSAndroid Build Coastguard Workermsgstr ""
748*6a54128fSAndroid Build Coastguard Worker
749*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:91
750*6a54128fSAndroid Build Coastguard Workermsgid "SALVAGED"
751*6a54128fSAndroid Build Coastguard Workermsgstr ""
752*6a54128fSAndroid Build Coastguard Worker
753*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:92
754*6a54128fSAndroid Build Coastguard Workermsgid "TRUNCATED"
755*6a54128fSAndroid Build Coastguard Workermsgstr ""
756*6a54128fSAndroid Build Coastguard Worker
757*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:93
758*6a54128fSAndroid Build Coastguard Workermsgid "INODE CLEARED"
759*6a54128fSAndroid Build Coastguard Workermsgstr ""
760*6a54128fSAndroid Build Coastguard Worker
761*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:94
762*6a54128fSAndroid Build Coastguard Workermsgid "ABORTED"
763*6a54128fSAndroid Build Coastguard Workermsgstr ""
764*6a54128fSAndroid Build Coastguard Worker
765*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:95
766*6a54128fSAndroid Build Coastguard Workermsgid "SPLIT"
767*6a54128fSAndroid Build Coastguard Workermsgstr ""
768*6a54128fSAndroid Build Coastguard Worker
769*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:96
770*6a54128fSAndroid Build Coastguard Workermsgid "CONTINUING"
771*6a54128fSAndroid Build Coastguard Workermsgstr ""
772*6a54128fSAndroid Build Coastguard Worker
773*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:97
774*6a54128fSAndroid Build Coastguard Workermsgid "MULTIPLY-CLAIMED BLOCKS CLONED"
775*6a54128fSAndroid Build Coastguard Workermsgstr ""
776*6a54128fSAndroid Build Coastguard Worker
777*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:98
778*6a54128fSAndroid Build Coastguard Workermsgid "FILE DELETED"
779*6a54128fSAndroid Build Coastguard Workermsgstr ""
780*6a54128fSAndroid Build Coastguard Worker
781*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:99
782*6a54128fSAndroid Build Coastguard Workermsgid "SUPPRESSED"
783*6a54128fSAndroid Build Coastguard Workermsgstr ""
784*6a54128fSAndroid Build Coastguard Worker
785*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:100
786*6a54128fSAndroid Build Coastguard Workermsgid "UNLINKED"
787*6a54128fSAndroid Build Coastguard Workermsgstr ""
788*6a54128fSAndroid Build Coastguard Worker
789*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:101
790*6a54128fSAndroid Build Coastguard Workermsgid "HTREE INDEX CLEARED"
791*6a54128fSAndroid Build Coastguard Workermsgstr ""
792*6a54128fSAndroid Build Coastguard Worker
793*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:102
794*6a54128fSAndroid Build Coastguard Workermsgid "WILL RECREATE"
795*6a54128fSAndroid Build Coastguard Workermsgstr ""
796*6a54128fSAndroid Build Coastguard Worker
797*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:103
798*6a54128fSAndroid Build Coastguard Workermsgid "WILL OPTIMIZE"
799*6a54128fSAndroid Build Coastguard Workermsgstr ""
800*6a54128fSAndroid Build Coastguard Worker
801*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:104
802*6a54128fSAndroid Build Coastguard Workermsgid "FLAG CLEARED"
803*6a54128fSAndroid Build Coastguard Workermsgstr ""
804*6a54128fSAndroid Build Coastguard Worker
805*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:118
806*6a54128fSAndroid Build Coastguard Worker#. @-expanded: block bitmap for group %g is not in group.  (block %b)\n
807*6a54128fSAndroid Build Coastguard Workermsgid "@b @B for @g %g is not in @g.  (@b %b)\n"
808*6a54128fSAndroid Build Coastguard Workermsgstr ""
809*6a54128fSAndroid Build Coastguard Worker
810*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:122
811*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode bitmap for group %g is not in group.  (block %b)\n
812*6a54128fSAndroid Build Coastguard Workermsgid "@i @B for @g %g is not in @g.  (@b %b)\n"
813*6a54128fSAndroid Build Coastguard Workermsgstr ""
814*6a54128fSAndroid Build Coastguard Worker
815*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:127
816*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode table for group %g is not in group.  (block %b)\n
817*6a54128fSAndroid Build Coastguard Worker#. @-expanded: WARNING: SEVERE DATA LOSS POSSIBLE.\n
818*6a54128fSAndroid Build Coastguard Workermsgid ""
819*6a54128fSAndroid Build Coastguard Worker"@i table for @g %g is not in @g.  (@b %b)\n"
820*6a54128fSAndroid Build Coastguard Worker"WARNING: SEVERE DATA LOSS POSSIBLE.\n"
821*6a54128fSAndroid Build Coastguard Workermsgstr ""
822*6a54128fSAndroid Build Coastguard Worker
823*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:133
824*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
825*6a54128fSAndroid Build Coastguard Worker#. @-expanded: The superblock could not be read or does not describe a valid ext2/ext3/ext4\n
826*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem.  If the device is valid and it really contains an ext2/ext3/ext4\n
827*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem (and not swap or ufs or something else), then the superblock\n
828*6a54128fSAndroid Build Coastguard Worker#. @-expanded: is corrupt, and you might try running e2fsck with an alternate superblock:\n
829*6a54128fSAndroid Build Coastguard Worker#. @-expanded:     e2fsck -b 8193 <device>\n
830*6a54128fSAndroid Build Coastguard Worker#. @-expanded:  or\n
831*6a54128fSAndroid Build Coastguard Worker#. @-expanded:     e2fsck -b 32768 <device>\n
832*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
833*6a54128fSAndroid Build Coastguard Workermsgid ""
834*6a54128fSAndroid Build Coastguard Worker"\n"
835*6a54128fSAndroid Build Coastguard Worker"The @S could not be read or does not describe a valid ext2/ext3/ext4\n"
836*6a54128fSAndroid Build Coastguard Worker"@f.  If the @v is valid and it really contains an ext2/ext3/ext4\n"
837*6a54128fSAndroid Build Coastguard Worker"@f (and not swap or ufs or something else), then the @S\n"
838*6a54128fSAndroid Build Coastguard Worker"is corrupt, and you might try running e2fsck with an alternate @S:\n"
839*6a54128fSAndroid Build Coastguard Worker"    e2fsck -b 8193 <@v>\n"
840*6a54128fSAndroid Build Coastguard Worker" or\n"
841*6a54128fSAndroid Build Coastguard Worker"    e2fsck -b 32768 <@v>\n"
842*6a54128fSAndroid Build Coastguard Worker"\n"
843*6a54128fSAndroid Build Coastguard Workermsgstr ""
844*6a54128fSAndroid Build Coastguard Worker
845*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:144
846*6a54128fSAndroid Build Coastguard Worker#. @-expanded: The filesystem size (according to the superblock) is %b blocks\n
847*6a54128fSAndroid Build Coastguard Worker#. @-expanded: The physical size of the device is %c blocks\n
848*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Either the superblock or the partition table is likely to be corrupt!\n
849*6a54128fSAndroid Build Coastguard Workermsgid ""
850*6a54128fSAndroid Build Coastguard Worker"The @f size (according to the @S) is %b @bs\n"
851*6a54128fSAndroid Build Coastguard Worker"The physical size of the @v is %c @bs\n"
852*6a54128fSAndroid Build Coastguard Worker"Either the @S or the partition table is likely to be corrupt!\n"
853*6a54128fSAndroid Build Coastguard Workermsgstr ""
854*6a54128fSAndroid Build Coastguard Worker
855*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:151
856*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock block_size = %b, fragsize = %c.\n
857*6a54128fSAndroid Build Coastguard Worker#. @-expanded: This version of e2fsck does not support fragment sizes different\n
858*6a54128fSAndroid Build Coastguard Worker#. @-expanded: from the block size.\n
859*6a54128fSAndroid Build Coastguard Workermsgid ""
860*6a54128fSAndroid Build Coastguard Worker"@S @b_size = %b, fragsize = %c.\n"
861*6a54128fSAndroid Build Coastguard Worker"This version of e2fsck does not support fragment sizes different\n"
862*6a54128fSAndroid Build Coastguard Worker"from the @b size.\n"
863*6a54128fSAndroid Build Coastguard Workermsgstr ""
864*6a54128fSAndroid Build Coastguard Worker
865*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:158
866*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock blocks_per_group = %b, should have been %c\n
867*6a54128fSAndroid Build Coastguard Workermsgid "@S @bs_per_group = %b, should have been %c\n"
868*6a54128fSAndroid Build Coastguard Workermsgstr ""
869*6a54128fSAndroid Build Coastguard Worker
870*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:163
871*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock first_data_block = %b, should have been %c\n
872*6a54128fSAndroid Build Coastguard Workermsgid "@S first_data_@b = %b, should have been %c\n"
873*6a54128fSAndroid Build Coastguard Workermsgstr ""
874*6a54128fSAndroid Build Coastguard Worker
875*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:168
876*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem did not have a UUID; generating one.\n
877*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
878*6a54128fSAndroid Build Coastguard Workermsgid ""
879*6a54128fSAndroid Build Coastguard Worker"@f did not have a UUID; generating one.\n"
880*6a54128fSAndroid Build Coastguard Worker"\n"
881*6a54128fSAndroid Build Coastguard Workermsgstr ""
882*6a54128fSAndroid Build Coastguard Worker
883*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:174
884*6a54128fSAndroid Build Coastguard Worker#, no-c-format
885*6a54128fSAndroid Build Coastguard Workermsgid ""
886*6a54128fSAndroid Build Coastguard Worker"Note: if several inode or block bitmap blocks or part\n"
887*6a54128fSAndroid Build Coastguard Worker"of the inode table require relocation, you may wish to try\n"
888*6a54128fSAndroid Build Coastguard Worker"running e2fsck with the '-b %S' option first.  The problem\n"
889*6a54128fSAndroid Build Coastguard Worker"may lie only with the primary block group descriptors, and\n"
890*6a54128fSAndroid Build Coastguard Worker"the backup block group descriptors may be OK.\n"
891*6a54128fSAndroid Build Coastguard Worker"\n"
892*6a54128fSAndroid Build Coastguard Workermsgstr ""
893*6a54128fSAndroid Build Coastguard Worker
894*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:183
895*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Corruption found in superblock.  (%s = %N).\n
896*6a54128fSAndroid Build Coastguard Workermsgid "Corruption found in @S.  (%s = %N).\n"
897*6a54128fSAndroid Build Coastguard Workermsgstr ""
898*6a54128fSAndroid Build Coastguard Worker
899*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:189
900*6a54128fSAndroid Build Coastguard Worker#, no-c-format
901*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error determining size of the physical device: %m\n
902*6a54128fSAndroid Build Coastguard Workermsgid "Error determining size of the physical @v: %m\n"
903*6a54128fSAndroid Build Coastguard Workermsgstr ""
904*6a54128fSAndroid Build Coastguard Worker
905*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:194
906*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode count in superblock is %i, should be %j.\n
907*6a54128fSAndroid Build Coastguard Workermsgid "@i count in @S is %i, @s %j.\n"
908*6a54128fSAndroid Build Coastguard Workermsgstr ""
909*6a54128fSAndroid Build Coastguard Worker
910*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:198
911*6a54128fSAndroid Build Coastguard Workermsgid "The Hurd does not support the filetype feature.\n"
912*6a54128fSAndroid Build Coastguard Workermsgstr ""
913*6a54128fSAndroid Build Coastguard Worker
914*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:204
915*6a54128fSAndroid Build Coastguard Worker#, no-c-format
916*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock has an invalid journal (inode %i).\n
917*6a54128fSAndroid Build Coastguard Workermsgid "@S has an @n @j (@i %i).\n"
918*6a54128fSAndroid Build Coastguard Workermsgstr ""
919*6a54128fSAndroid Build Coastguard Worker
920*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:209
921*6a54128fSAndroid Build Coastguard Worker#. @-expanded: External journal has multiple filesystem users (unsupported).\n
922*6a54128fSAndroid Build Coastguard Workermsgid "External @j has multiple @f users (unsupported).\n"
923*6a54128fSAndroid Build Coastguard Workermsgstr ""
924*6a54128fSAndroid Build Coastguard Worker
925*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:214
926*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Can't find external journal\n
927*6a54128fSAndroid Build Coastguard Workermsgid "Can't find external @j\n"
928*6a54128fSAndroid Build Coastguard Workermsgstr ""
929*6a54128fSAndroid Build Coastguard Worker
930*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:219
931*6a54128fSAndroid Build Coastguard Worker#. @-expanded: External journal has bad superblock\n
932*6a54128fSAndroid Build Coastguard Workermsgid "External @j has bad @S\n"
933*6a54128fSAndroid Build Coastguard Workermsgstr ""
934*6a54128fSAndroid Build Coastguard Worker
935*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:224
936*6a54128fSAndroid Build Coastguard Worker#. @-expanded: External journal does not support this filesystem\n
937*6a54128fSAndroid Build Coastguard Workermsgid "External @j does not support this @f\n"
938*6a54128fSAndroid Build Coastguard Workermsgstr ""
939*6a54128fSAndroid Build Coastguard Worker
940*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:229
941*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem journal superblock is unknown type %N (unsupported).\n
942*6a54128fSAndroid Build Coastguard Worker#. @-expanded: It is likely that your copy of e2fsck is old and/or doesn't support this journal
943*6a54128fSAndroid Build Coastguard Worker#. @-expanded: format.\n
944*6a54128fSAndroid Build Coastguard Worker#. @-expanded: It is also possible the journal superblock is corrupt.\n
945*6a54128fSAndroid Build Coastguard Workermsgid ""
946*6a54128fSAndroid Build Coastguard Worker"@f @j @S is unknown type %N (unsupported).\n"
947*6a54128fSAndroid Build Coastguard Worker"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
948*6a54128fSAndroid Build Coastguard Worker"format.\n"
949*6a54128fSAndroid Build Coastguard Worker"It is also possible the @j @S is corrupt.\n"
950*6a54128fSAndroid Build Coastguard Workermsgstr ""
951*6a54128fSAndroid Build Coastguard Worker
952*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:238
953*6a54128fSAndroid Build Coastguard Worker#. @-expanded: journal superblock is corrupt.\n
954*6a54128fSAndroid Build Coastguard Workermsgid "@j @S is corrupt.\n"
955*6a54128fSAndroid Build Coastguard Workermsgstr ""
956*6a54128fSAndroid Build Coastguard Worker
957*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:243
958*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock has_journal flag is clear, but a journal is present.\n
959*6a54128fSAndroid Build Coastguard Workermsgid "@S has_@j flag is clear, but a @j is present.\n"
960*6a54128fSAndroid Build Coastguard Workermsgstr ""
961*6a54128fSAndroid Build Coastguard Worker
962*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:248
963*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock needs_recovery flag is set, but no journal is present.\n
964*6a54128fSAndroid Build Coastguard Workermsgid "@S needs_recovery flag is set, but no @j is present.\n"
965*6a54128fSAndroid Build Coastguard Workermsgstr ""
966*6a54128fSAndroid Build Coastguard Worker
967*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:253
968*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock needs_recovery flag is clear, but journal has data.\n
969*6a54128fSAndroid Build Coastguard Workermsgid "@S needs_recovery flag is clear, but @j has data.\n"
970*6a54128fSAndroid Build Coastguard Workermsgstr ""
971*6a54128fSAndroid Build Coastguard Worker
972*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:258
973*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Clear journal
974*6a54128fSAndroid Build Coastguard Workermsgid "Clear @j"
975*6a54128fSAndroid Build Coastguard Workermsgstr ""
976*6a54128fSAndroid Build Coastguard Worker
977*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:263 e2fsck/problem.c:799
978*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
979*6a54128fSAndroid Build Coastguard Workermsgid "@f has feature flag(s) set, but is a revision 0 @f.  "
980*6a54128fSAndroid Build Coastguard Workermsgstr ""
981*6a54128fSAndroid Build Coastguard Worker
982*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:268
983*6a54128fSAndroid Build Coastguard Worker#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
984*6a54128fSAndroid Build Coastguard Workermsgid "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
985*6a54128fSAndroid Build Coastguard Workermsgstr ""
986*6a54128fSAndroid Build Coastguard Worker
987*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:273
988*6a54128fSAndroid Build Coastguard Worker#. @-expanded: illegal %B (%b) found in orphaned inode %i.\n
989*6a54128fSAndroid Build Coastguard Workermsgid "@I %B (%b) found in @o @i %i.\n"
990*6a54128fSAndroid Build Coastguard Workermsgstr ""
991*6a54128fSAndroid Build Coastguard Worker
992*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:278
993*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Already cleared %B (%b) found in orphaned inode %i.\n
994*6a54128fSAndroid Build Coastguard Workermsgid "Already cleared %B (%b) found in @o @i %i.\n"
995*6a54128fSAndroid Build Coastguard Workermsgstr ""
996*6a54128fSAndroid Build Coastguard Worker
997*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:284
998*6a54128fSAndroid Build Coastguard Worker#, no-c-format
999*6a54128fSAndroid Build Coastguard Worker#. @-expanded: illegal orphaned inode %i in superblock.\n
1000*6a54128fSAndroid Build Coastguard Workermsgid "@I @o @i %i in @S.\n"
1001*6a54128fSAndroid Build Coastguard Workermsgstr ""
1002*6a54128fSAndroid Build Coastguard Worker
1003*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:290
1004*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1005*6a54128fSAndroid Build Coastguard Worker#. @-expanded: illegal inode %i in orphaned inode list.\n
1006*6a54128fSAndroid Build Coastguard Workermsgid "@I @i %i in @o @i list.\n"
1007*6a54128fSAndroid Build Coastguard Workermsgstr ""
1008*6a54128fSAndroid Build Coastguard Worker
1009*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:295
1010*6a54128fSAndroid Build Coastguard Worker#. @-expanded: journal superblock has an unknown read-only feature flag set.\n
1011*6a54128fSAndroid Build Coastguard Workermsgid "@j @S has an unknown read-only feature flag set.\n"
1012*6a54128fSAndroid Build Coastguard Workermsgstr ""
1013*6a54128fSAndroid Build Coastguard Worker
1014*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:300
1015*6a54128fSAndroid Build Coastguard Worker#. @-expanded: journal superblock has an unknown incompatible feature flag set.\n
1016*6a54128fSAndroid Build Coastguard Workermsgid "@j @S has an unknown incompatible feature flag set.\n"
1017*6a54128fSAndroid Build Coastguard Workermsgstr ""
1018*6a54128fSAndroid Build Coastguard Worker
1019*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:305
1020*6a54128fSAndroid Build Coastguard Worker#. @-expanded: journal version not supported by this e2fsck.\n
1021*6a54128fSAndroid Build Coastguard Workermsgid "@j version not supported by this e2fsck.\n"
1022*6a54128fSAndroid Build Coastguard Workermsgstr ""
1023*6a54128fSAndroid Build Coastguard Worker
1024*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:311
1025*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1026*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Moving journal from /%s to hidden inode.\n
1027*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1028*6a54128fSAndroid Build Coastguard Workermsgid ""
1029*6a54128fSAndroid Build Coastguard Worker"Moving @j from /%s to hidden @i.\n"
1030*6a54128fSAndroid Build Coastguard Worker"\n"
1031*6a54128fSAndroid Build Coastguard Workermsgstr ""
1032*6a54128fSAndroid Build Coastguard Worker
1033*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:317
1034*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1035*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error moving journal: %m\n
1036*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1037*6a54128fSAndroid Build Coastguard Workermsgid ""
1038*6a54128fSAndroid Build Coastguard Worker"Error moving @j: %m\n"
1039*6a54128fSAndroid Build Coastguard Worker"\n"
1040*6a54128fSAndroid Build Coastguard Workermsgstr ""
1041*6a54128fSAndroid Build Coastguard Worker
1042*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:322
1043*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Found invalid V2 journal superblock fields (from V1 journal).\n
1044*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Clearing fields beyond the V1 journal superblock...\n
1045*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1046*6a54128fSAndroid Build Coastguard Workermsgid ""
1047*6a54128fSAndroid Build Coastguard Worker"Found @n V2 @j @S fields (from V1 @j).\n"
1048*6a54128fSAndroid Build Coastguard Worker"Clearing fields beyond the V1 @j @S...\n"
1049*6a54128fSAndroid Build Coastguard Worker"\n"
1050*6a54128fSAndroid Build Coastguard Workermsgstr ""
1051*6a54128fSAndroid Build Coastguard Worker
1052*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:328
1053*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Run journal anyway
1054*6a54128fSAndroid Build Coastguard Workermsgid "Run @j anyway"
1055*6a54128fSAndroid Build Coastguard Workermsgstr ""
1056*6a54128fSAndroid Build Coastguard Worker
1057*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:333
1058*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Recovery flag not set in backup superblock, so running journal anyway.\n
1059*6a54128fSAndroid Build Coastguard Workermsgid "Recovery flag not set in backup @S, so running @j anyway.\n"
1060*6a54128fSAndroid Build Coastguard Workermsgstr ""
1061*6a54128fSAndroid Build Coastguard Worker
1062*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:338
1063*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Backing up journal inode block information.\n
1064*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1065*6a54128fSAndroid Build Coastguard Workermsgid ""
1066*6a54128fSAndroid Build Coastguard Worker"Backing up @j @i @b information.\n"
1067*6a54128fSAndroid Build Coastguard Worker"\n"
1068*6a54128fSAndroid Build Coastguard Workermsgstr ""
1069*6a54128fSAndroid Build Coastguard Worker
1070*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:344
1071*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem does not have resize_inode enabled, but s_reserved_gdt_blocks\n
1072*6a54128fSAndroid Build Coastguard Worker#. @-expanded: is %N; should be zero.
1073*6a54128fSAndroid Build Coastguard Workermsgid ""
1074*6a54128fSAndroid Build Coastguard Worker"@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
1075*6a54128fSAndroid Build Coastguard Worker"is %N; @s zero.  "
1076*6a54128fSAndroid Build Coastguard Workermsgstr ""
1077*6a54128fSAndroid Build Coastguard Worker
1078*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:350
1079*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
1080*6a54128fSAndroid Build Coastguard Workermsgid "Resize_@i not enabled, but the resize @i is non-zero.  "
1081*6a54128fSAndroid Build Coastguard Workermsgstr ""
1082*6a54128fSAndroid Build Coastguard Worker
1083*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:355
1084*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Resize inode not valid.
1085*6a54128fSAndroid Build Coastguard Workermsgid "Resize @i not valid.  "
1086*6a54128fSAndroid Build Coastguard Workermsgstr ""
1087*6a54128fSAndroid Build Coastguard Worker
1088*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:360
1089*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock last mount time (%t,\n
1090*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \tnow = %T) is in the future.\n
1091*6a54128fSAndroid Build Coastguard Workermsgid ""
1092*6a54128fSAndroid Build Coastguard Worker"@S last mount time (%t,\n"
1093*6a54128fSAndroid Build Coastguard Worker"\tnow = %T) is in the future.\n"
1094*6a54128fSAndroid Build Coastguard Workermsgstr ""
1095*6a54128fSAndroid Build Coastguard Worker
1096*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:365
1097*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock last write time (%t,\n
1098*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \tnow = %T) is in the future.\n
1099*6a54128fSAndroid Build Coastguard Workermsgid ""
1100*6a54128fSAndroid Build Coastguard Worker"@S last write time (%t,\n"
1101*6a54128fSAndroid Build Coastguard Worker"\tnow = %T) is in the future.\n"
1102*6a54128fSAndroid Build Coastguard Workermsgstr ""
1103*6a54128fSAndroid Build Coastguard Worker
1104*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:371
1105*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1106*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock hint for external superblock should be %X.
1107*6a54128fSAndroid Build Coastguard Workermsgid "@S hint for external superblock @s %X.  "
1108*6a54128fSAndroid Build Coastguard Workermsgstr ""
1109*6a54128fSAndroid Build Coastguard Worker
1110*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:376
1111*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Adding dirhash hint to filesystem.\n
1112*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1113*6a54128fSAndroid Build Coastguard Workermsgid ""
1114*6a54128fSAndroid Build Coastguard Worker"Adding dirhash hint to @f.\n"
1115*6a54128fSAndroid Build Coastguard Worker"\n"
1116*6a54128fSAndroid Build Coastguard Workermsgstr ""
1117*6a54128fSAndroid Build Coastguard Worker
1118*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:381
1119*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group descriptor %g checksum is %04x, should be %04y.
1120*6a54128fSAndroid Build Coastguard Workermsgid "@g descriptor %g checksum is %04x, should be %04y.  "
1121*6a54128fSAndroid Build Coastguard Workermsgstr ""
1122*6a54128fSAndroid Build Coastguard Worker
1123*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:387
1124*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1125*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group descriptor %g marked uninitialized without feature set.\n
1126*6a54128fSAndroid Build Coastguard Workermsgid "@g descriptor %g marked uninitialized without feature set.\n"
1127*6a54128fSAndroid Build Coastguard Workermsgstr ""
1128*6a54128fSAndroid Build Coastguard Worker
1129*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:392
1130*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group descriptor %g has invalid unused inodes count %b.
1131*6a54128fSAndroid Build Coastguard Workermsgid "@g descriptor %g has invalid unused inodes count %b.  "
1132*6a54128fSAndroid Build Coastguard Workermsgstr ""
1133*6a54128fSAndroid Build Coastguard Worker
1134*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:397
1135*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Last group block bitmap uninitialized.
1136*6a54128fSAndroid Build Coastguard Workermsgid "Last @g @b @B uninitialized.  "
1137*6a54128fSAndroid Build Coastguard Workermsgstr ""
1138*6a54128fSAndroid Build Coastguard Worker
1139*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:403
1140*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1141*6a54128fSAndroid Build Coastguard Workermsgid "Journal transaction %i was corrupt, replay was aborted.\n"
1142*6a54128fSAndroid Build Coastguard Workermsgstr ""
1143*6a54128fSAndroid Build Coastguard Worker
1144*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:408
1145*6a54128fSAndroid Build Coastguard Workermsgid "The test_fs flag is set (and ext4 is available).  "
1146*6a54128fSAndroid Build Coastguard Workermsgstr ""
1147*6a54128fSAndroid Build Coastguard Worker
1148*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:413
1149*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock last mount time is in the future.\n
1150*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1151*6a54128fSAndroid Build Coastguard Worker#. @-expanded: set)\n
1152*6a54128fSAndroid Build Coastguard Workermsgid ""
1153*6a54128fSAndroid Build Coastguard Worker"@S last mount time is in the future.\n"
1154*6a54128fSAndroid Build Coastguard Worker"\t(by less than a day, probably due to the hardware clock being incorrectly "
1155*6a54128fSAndroid Build Coastguard Worker"set)\n"
1156*6a54128fSAndroid Build Coastguard Workermsgstr ""
1157*6a54128fSAndroid Build Coastguard Worker
1158*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:419
1159*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock last write time is in the future.\n
1160*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1161*6a54128fSAndroid Build Coastguard Worker#. @-expanded: set)\n
1162*6a54128fSAndroid Build Coastguard Workermsgid ""
1163*6a54128fSAndroid Build Coastguard Worker"@S last write time is in the future.\n"
1164*6a54128fSAndroid Build Coastguard Worker"\t(by less than a day, probably due to the hardware clock being incorrectly "
1165*6a54128fSAndroid Build Coastguard Worker"set)\n"
1166*6a54128fSAndroid Build Coastguard Workermsgstr ""
1167*6a54128fSAndroid Build Coastguard Worker
1168*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:425
1169*6a54128fSAndroid Build Coastguard Worker#. @-expanded: One or more block group descriptor checksums are invalid.
1170*6a54128fSAndroid Build Coastguard Workermsgid "One or more @b @g descriptor checksums are invalid.  "
1171*6a54128fSAndroid Build Coastguard Workermsgstr ""
1172*6a54128fSAndroid Build Coastguard Worker
1173*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:430
1174*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Setting free inodes count to %j (was %i)\n
1175*6a54128fSAndroid Build Coastguard Workermsgid "Setting free @is count to %j (was %i)\n"
1176*6a54128fSAndroid Build Coastguard Workermsgstr ""
1177*6a54128fSAndroid Build Coastguard Worker
1178*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:435
1179*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Setting free blocks count to %c (was %b)\n
1180*6a54128fSAndroid Build Coastguard Workermsgid "Setting free @bs count to %c (was %b)\n"
1181*6a54128fSAndroid Build Coastguard Workermsgstr ""
1182*6a54128fSAndroid Build Coastguard Worker
1183*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:440
1184*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Hiding %U quota inode %i (%Q).\n
1185*6a54128fSAndroid Build Coastguard Workermsgid "Hiding %U @q @i %i (%Q).\n"
1186*6a54128fSAndroid Build Coastguard Workermsgstr ""
1187*6a54128fSAndroid Build Coastguard Worker
1188*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:445
1189*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock has invalid MMP block.
1190*6a54128fSAndroid Build Coastguard Workermsgid "@S has invalid MMP block.  "
1191*6a54128fSAndroid Build Coastguard Workermsgstr ""
1192*6a54128fSAndroid Build Coastguard Worker
1193*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:450
1194*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock has invalid MMP magic.
1195*6a54128fSAndroid Build Coastguard Workermsgid "@S has invalid MMP magic.  "
1196*6a54128fSAndroid Build Coastguard Workermsgstr ""
1197*6a54128fSAndroid Build Coastguard Worker
1198*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:456
1199*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1200*6a54128fSAndroid Build Coastguard Workermsgid "ext2fs_open2: %m\n"
1201*6a54128fSAndroid Build Coastguard Workermsgstr ""
1202*6a54128fSAndroid Build Coastguard Worker
1203*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:462
1204*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1205*6a54128fSAndroid Build Coastguard Workermsgid "ext2fs_check_desc: %m\n"
1206*6a54128fSAndroid Build Coastguard Workermsgstr ""
1207*6a54128fSAndroid Build Coastguard Worker
1208*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:468
1209*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock metadata_csum supersedes uninit_bg; both feature bits cannot be set
1210*6a54128fSAndroid Build Coastguard Worker#. @-expanded: simultaneously.
1211*6a54128fSAndroid Build Coastguard Workermsgid ""
1212*6a54128fSAndroid Build Coastguard Worker"@S metadata_csum supersedes uninit_bg; both feature bits cannot be set "
1213*6a54128fSAndroid Build Coastguard Worker"simultaneously."
1214*6a54128fSAndroid Build Coastguard Workermsgstr ""
1215*6a54128fSAndroid Build Coastguard Worker
1216*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:474
1217*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock MMP block checksum does not match.
1218*6a54128fSAndroid Build Coastguard Workermsgid "@S MMP @b checksum does not match.  "
1219*6a54128fSAndroid Build Coastguard Workermsgstr ""
1220*6a54128fSAndroid Build Coastguard Worker
1221*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:479
1222*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock 64bit filesystem needs extents to access the whole disk.
1223*6a54128fSAndroid Build Coastguard Workermsgid "@S 64bit @f needs extents to access the whole disk.  "
1224*6a54128fSAndroid Build Coastguard Workermsgstr ""
1225*6a54128fSAndroid Build Coastguard Worker
1226*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:484
1227*6a54128fSAndroid Build Coastguard Workermsgid "First_meta_bg is too big.  (%N, max value %g).  "
1228*6a54128fSAndroid Build Coastguard Workermsgstr ""
1229*6a54128fSAndroid Build Coastguard Worker
1230*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:489
1231*6a54128fSAndroid Build Coastguard Worker#. @-expanded: External journal superblock checksum does not match superblock.
1232*6a54128fSAndroid Build Coastguard Workermsgid "External @j @S checksum does not match @S.  "
1233*6a54128fSAndroid Build Coastguard Workermsgstr ""
1234*6a54128fSAndroid Build Coastguard Worker
1235*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:494
1236*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock metadata_csum_seed is not necessary without metadata_csum.
1237*6a54128fSAndroid Build Coastguard Workermsgid "@S metadata_csum_seed is not necessary without metadata_csum."
1238*6a54128fSAndroid Build Coastguard Workermsgstr ""
1239*6a54128fSAndroid Build Coastguard Worker
1240*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:500
1241*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1242*6a54128fSAndroid Build Coastguard Workermsgid "Error initializing quota context in support library: %m\n"
1243*6a54128fSAndroid Build Coastguard Workermsgstr ""
1244*6a54128fSAndroid Build Coastguard Worker
1245*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:505
1246*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Bad required extra isize in superblock (%N).
1247*6a54128fSAndroid Build Coastguard Workermsgid "Bad required extra isize in @S (%N).  "
1248*6a54128fSAndroid Build Coastguard Workermsgstr ""
1249*6a54128fSAndroid Build Coastguard Worker
1250*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:510
1251*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Bad desired extra isize in superblock (%N).
1252*6a54128fSAndroid Build Coastguard Workermsgid "Bad desired extra isize in @S (%N).  "
1253*6a54128fSAndroid Build Coastguard Workermsgstr ""
1254*6a54128fSAndroid Build Coastguard Worker
1255*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:515
1256*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Invalid %U quota inode %i.
1257*6a54128fSAndroid Build Coastguard Workermsgid "Invalid %U @q @i %i.  "
1258*6a54128fSAndroid Build Coastguard Workermsgstr ""
1259*6a54128fSAndroid Build Coastguard Worker
1260*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:520
1261*6a54128fSAndroid Build Coastguard Worker#. @-expanded: superblock would have too many inodes (%N).\n
1262*6a54128fSAndroid Build Coastguard Workermsgid "@S would have too many inodes (%N).\n"
1263*6a54128fSAndroid Build Coastguard Workermsgstr ""
1264*6a54128fSAndroid Build Coastguard Worker
1265*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:525
1266*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Resize_inode and meta_bg features are enabled. Those features are\n
1267*6a54128fSAndroid Build Coastguard Worker#. @-expanded: not compatible. Resize inode should be disabled.
1268*6a54128fSAndroid Build Coastguard Workermsgid ""
1269*6a54128fSAndroid Build Coastguard Worker"Resize_@i and meta_bg features are enabled. Those features are\n"
1270*6a54128fSAndroid Build Coastguard Worker"not compatible. Resize @i should be disabled.  "
1271*6a54128fSAndroid Build Coastguard Workermsgstr ""
1272*6a54128fSAndroid Build Coastguard Worker
1273*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:533
1274*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 1: Checking inodes, blocks, and sizes\n
1275*6a54128fSAndroid Build Coastguard Workermsgid "Pass 1: Checking @is, @bs, and sizes\n"
1276*6a54128fSAndroid Build Coastguard Workermsgstr ""
1277*6a54128fSAndroid Build Coastguard Worker
1278*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:537
1279*6a54128fSAndroid Build Coastguard Worker#. @-expanded: root inode is not a directory.
1280*6a54128fSAndroid Build Coastguard Workermsgid "@r is not a @d.  "
1281*6a54128fSAndroid Build Coastguard Workermsgstr ""
1282*6a54128fSAndroid Build Coastguard Worker
1283*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:542
1284*6a54128fSAndroid Build Coastguard Worker#. @-expanded: root inode has dtime set (probably due to old mke2fs).
1285*6a54128fSAndroid Build Coastguard Workermsgid "@r has dtime set (probably due to old mke2fs).  "
1286*6a54128fSAndroid Build Coastguard Workermsgstr ""
1287*6a54128fSAndroid Build Coastguard Worker
1288*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:547
1289*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Reserved inode %i (%Q) has invalid mode.
1290*6a54128fSAndroid Build Coastguard Workermsgid "Reserved @i %i (%Q) has @n mode.  "
1291*6a54128fSAndroid Build Coastguard Workermsgstr ""
1292*6a54128fSAndroid Build Coastguard Worker
1293*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:553
1294*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1295*6a54128fSAndroid Build Coastguard Worker#. @-expanded: deleted inode %i has zero dtime.
1296*6a54128fSAndroid Build Coastguard Workermsgid "@D @i %i has zero dtime.  "
1297*6a54128fSAndroid Build Coastguard Workermsgstr ""
1298*6a54128fSAndroid Build Coastguard Worker
1299*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:559
1300*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1301*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i is in use, but has dtime set.
1302*6a54128fSAndroid Build Coastguard Workermsgid "@i %i is in use, but has dtime set.  "
1303*6a54128fSAndroid Build Coastguard Workermsgstr ""
1304*6a54128fSAndroid Build Coastguard Worker
1305*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:565
1306*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1307*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i is a zero-length directory.
1308*6a54128fSAndroid Build Coastguard Workermsgid "@i %i is a @z @d.  "
1309*6a54128fSAndroid Build Coastguard Workermsgstr ""
1310*6a54128fSAndroid Build Coastguard Worker
1311*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:570
1312*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
1313*6a54128fSAndroid Build Coastguard Workermsgid "@g %g's @b @B at %b @C.\n"
1314*6a54128fSAndroid Build Coastguard Workermsgstr ""
1315*6a54128fSAndroid Build Coastguard Worker
1316*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:575
1317*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
1318*6a54128fSAndroid Build Coastguard Workermsgid "@g %g's @i @B at %b @C.\n"
1319*6a54128fSAndroid Build Coastguard Workermsgstr ""
1320*6a54128fSAndroid Build Coastguard Worker
1321*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:580
1322*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
1323*6a54128fSAndroid Build Coastguard Workermsgid "@g %g's @i table at %b @C.\n"
1324*6a54128fSAndroid Build Coastguard Workermsgstr ""
1325*6a54128fSAndroid Build Coastguard Worker
1326*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:585
1327*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g's block bitmap (%b) is bad.
1328*6a54128fSAndroid Build Coastguard Workermsgid "@g %g's @b @B (%b) is bad.  "
1329*6a54128fSAndroid Build Coastguard Workermsgstr ""
1330*6a54128fSAndroid Build Coastguard Worker
1331*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:590
1332*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g's inode bitmap (%b) is bad.
1333*6a54128fSAndroid Build Coastguard Workermsgid "@g %g's @i @B (%b) is bad.  "
1334*6a54128fSAndroid Build Coastguard Workermsgstr ""
1335*6a54128fSAndroid Build Coastguard Worker
1336*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:595
1337*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i, i_size is %Is, should be %N.
1338*6a54128fSAndroid Build Coastguard Workermsgid "@i %i, i_size is %Is, @s %N.  "
1339*6a54128fSAndroid Build Coastguard Workermsgstr ""
1340*6a54128fSAndroid Build Coastguard Worker
1341*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:600
1342*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i, i_blocks is %Ib, should be %N.
1343*6a54128fSAndroid Build Coastguard Workermsgid "@i %i, i_@bs is %Ib, @s %N.  "
1344*6a54128fSAndroid Build Coastguard Workermsgstr ""
1345*6a54128fSAndroid Build Coastguard Worker
1346*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:605
1347*6a54128fSAndroid Build Coastguard Worker#. @-expanded: illegal %B (%b) in inode %i.
1348*6a54128fSAndroid Build Coastguard Workermsgid "@I %B (%b) in @i %i.  "
1349*6a54128fSAndroid Build Coastguard Workermsgstr ""
1350*6a54128fSAndroid Build Coastguard Worker
1351*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:610
1352*6a54128fSAndroid Build Coastguard Worker#. @-expanded: %B (%b) overlaps filesystem metadata in inode %i.
1353*6a54128fSAndroid Build Coastguard Workermsgid "%B (%b) overlaps @f metadata in @i %i.  "
1354*6a54128fSAndroid Build Coastguard Workermsgstr ""
1355*6a54128fSAndroid Build Coastguard Worker
1356*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:616
1357*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1358*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has illegal block(s).
1359*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has illegal @b(s).  "
1360*6a54128fSAndroid Build Coastguard Workermsgstr ""
1361*6a54128fSAndroid Build Coastguard Worker
1362*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:622
1363*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1364*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Too many illegal blocks in inode %i.\n
1365*6a54128fSAndroid Build Coastguard Workermsgid "Too many illegal @bs in @i %i.\n"
1366*6a54128fSAndroid Build Coastguard Workermsgstr ""
1367*6a54128fSAndroid Build Coastguard Worker
1368*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:627
1369*6a54128fSAndroid Build Coastguard Worker#. @-expanded: illegal %B (%b) in bad block inode.
1370*6a54128fSAndroid Build Coastguard Workermsgid "@I %B (%b) in bad @b @i.  "
1371*6a54128fSAndroid Build Coastguard Workermsgstr ""
1372*6a54128fSAndroid Build Coastguard Worker
1373*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:632
1374*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Bad block inode has illegal block(s).
1375*6a54128fSAndroid Build Coastguard Workermsgid "Bad @b @i has illegal @b(s).  "
1376*6a54128fSAndroid Build Coastguard Workermsgstr ""
1377*6a54128fSAndroid Build Coastguard Worker
1378*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:637
1379*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Duplicate or bad block in use!\n
1380*6a54128fSAndroid Build Coastguard Workermsgid "Duplicate or bad @b in use!\n"
1381*6a54128fSAndroid Build Coastguard Workermsgstr ""
1382*6a54128fSAndroid Build Coastguard Worker
1383*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:642
1384*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Bad block %b used as bad block inode indirect block.
1385*6a54128fSAndroid Build Coastguard Workermsgid "Bad @b %b used as bad @b @i indirect @b.  "
1386*6a54128fSAndroid Build Coastguard Workermsgstr ""
1387*6a54128fSAndroid Build Coastguard Worker
1388*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:647
1389*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1390*6a54128fSAndroid Build Coastguard Worker#. @-expanded: The bad block inode has probably been corrupted.  You probably\n
1391*6a54128fSAndroid Build Coastguard Worker#. @-expanded: should stop now and run e2fsck -c to scan for bad blocks\n
1392*6a54128fSAndroid Build Coastguard Worker#. @-expanded: in the filesystem.\n
1393*6a54128fSAndroid Build Coastguard Workermsgid ""
1394*6a54128fSAndroid Build Coastguard Worker"\n"
1395*6a54128fSAndroid Build Coastguard Worker"The bad @b @i has probably been corrupted.  You probably\n"
1396*6a54128fSAndroid Build Coastguard Worker"should stop now and run e2fsck -c to scan for bad blocks\n"
1397*6a54128fSAndroid Build Coastguard Worker"in the @f.\n"
1398*6a54128fSAndroid Build Coastguard Workermsgstr ""
1399*6a54128fSAndroid Build Coastguard Worker
1400*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:654
1401*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1402*6a54128fSAndroid Build Coastguard Worker#. @-expanded: If the block is really bad, the filesystem can not be fixed.\n
1403*6a54128fSAndroid Build Coastguard Workermsgid ""
1404*6a54128fSAndroid Build Coastguard Worker"\n"
1405*6a54128fSAndroid Build Coastguard Worker"If the @b is really bad, the @f can not be fixed.\n"
1406*6a54128fSAndroid Build Coastguard Workermsgstr ""
1407*6a54128fSAndroid Build Coastguard Worker
1408*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:659
1409*6a54128fSAndroid Build Coastguard Worker#. @-expanded: You can remove this block from the bad block list and hope\n
1410*6a54128fSAndroid Build Coastguard Worker#. @-expanded: that the block is really OK.  But there are no guarantees.\n
1411*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
1412*6a54128fSAndroid Build Coastguard Workermsgid ""
1413*6a54128fSAndroid Build Coastguard Worker"You can remove this @b from the bad @b list and hope\n"
1414*6a54128fSAndroid Build Coastguard Worker"that the @b is really OK.  But there are no guarantees.\n"
1415*6a54128fSAndroid Build Coastguard Worker"\n"
1416*6a54128fSAndroid Build Coastguard Workermsgstr ""
1417*6a54128fSAndroid Build Coastguard Worker
1418*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:665
1419*6a54128fSAndroid Build Coastguard Worker#. @-expanded: The primary superblock (%b) is on the bad block list.\n
1420*6a54128fSAndroid Build Coastguard Workermsgid "The primary @S (%b) is on the bad @b list.\n"
1421*6a54128fSAndroid Build Coastguard Workermsgstr ""
1422*6a54128fSAndroid Build Coastguard Worker
1423*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:670
1424*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
1425*6a54128fSAndroid Build Coastguard Workermsgid "Block %b in the primary @g descriptors is on the bad @b list\n"
1426*6a54128fSAndroid Build Coastguard Workermsgstr ""
1427*6a54128fSAndroid Build Coastguard Worker
1428*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:676
1429*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
1430*6a54128fSAndroid Build Coastguard Workermsgid "Warning: Group %g's @S (%b) is bad.\n"
1431*6a54128fSAndroid Build Coastguard Workermsgstr ""
1432*6a54128fSAndroid Build Coastguard Worker
1433*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:682
1434*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
1435*6a54128fSAndroid Build Coastguard Workermsgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
1436*6a54128fSAndroid Build Coastguard Workermsgstr ""
1437*6a54128fSAndroid Build Coastguard Worker
1438*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:688
1439*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Programming error?  block #%b claimed for no reason in process_bad_block.\n
1440*6a54128fSAndroid Build Coastguard Workermsgid "Programming error?  @b #%b claimed for no reason in process_bad_@b.\n"
1441*6a54128fSAndroid Build Coastguard Workermsgstr ""
1442*6a54128fSAndroid Build Coastguard Worker
1443*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:694
1444*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
1445*6a54128fSAndroid Build Coastguard Workermsgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
1446*6a54128fSAndroid Build Coastguard Workermsgstr ""
1447*6a54128fSAndroid Build Coastguard Worker
1448*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:700
1449*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1450*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating block buffer for relocating %s\n
1451*6a54128fSAndroid Build Coastguard Workermsgid "@A @b buffer for relocating %s\n"
1452*6a54128fSAndroid Build Coastguard Workermsgstr ""
1453*6a54128fSAndroid Build Coastguard Worker
1454*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:705
1455*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Relocating group %g's %s from %b to %c...\n
1456*6a54128fSAndroid Build Coastguard Workermsgid "Relocating @g %g's %s from %b to %c...\n"
1457*6a54128fSAndroid Build Coastguard Workermsgstr ""
1458*6a54128fSAndroid Build Coastguard Worker
1459*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:711
1460*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1461*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Relocating group %g's %s to %c...\n
1462*6a54128fSAndroid Build Coastguard Workermsgid "Relocating @g %g's %s to %c...\n"
1463*6a54128fSAndroid Build Coastguard Workermsgstr ""
1464*6a54128fSAndroid Build Coastguard Worker
1465*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:716
1466*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Warning: could not read block %b of %s: %m\n
1467*6a54128fSAndroid Build Coastguard Workermsgid "Warning: could not read @b %b of %s: %m\n"
1468*6a54128fSAndroid Build Coastguard Workermsgstr ""
1469*6a54128fSAndroid Build Coastguard Worker
1470*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:721
1471*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Warning: could not write block %b for %s: %m\n
1472*6a54128fSAndroid Build Coastguard Workermsgid "Warning: could not write @b %b for %s: %m\n"
1473*6a54128fSAndroid Build Coastguard Workermsgstr ""
1474*6a54128fSAndroid Build Coastguard Worker
1475*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:726 e2fsck/problem.c:1936
1476*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating inode bitmap (%N): %m\n
1477*6a54128fSAndroid Build Coastguard Workermsgid "@A @i @B (%N): %m\n"
1478*6a54128fSAndroid Build Coastguard Workermsgstr ""
1479*6a54128fSAndroid Build Coastguard Worker
1480*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:731
1481*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating block bitmap (%N): %m\n
1482*6a54128fSAndroid Build Coastguard Workermsgid "@A @b @B (%N): %m\n"
1483*6a54128fSAndroid Build Coastguard Workermsgstr ""
1484*6a54128fSAndroid Build Coastguard Worker
1485*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:737
1486*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1487*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating icount link information: %m\n
1488*6a54128fSAndroid Build Coastguard Workermsgid "@A icount link information: %m\n"
1489*6a54128fSAndroid Build Coastguard Workermsgstr ""
1490*6a54128fSAndroid Build Coastguard Worker
1491*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:743
1492*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1493*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating directory block array: %m\n
1494*6a54128fSAndroid Build Coastguard Workermsgid "@A @d @b array: %m\n"
1495*6a54128fSAndroid Build Coastguard Workermsgstr ""
1496*6a54128fSAndroid Build Coastguard Worker
1497*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:749
1498*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1499*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error while scanning inodes (%i): %m\n
1500*6a54128fSAndroid Build Coastguard Workermsgid "Error while scanning @is (%i): %m\n"
1501*6a54128fSAndroid Build Coastguard Workermsgstr ""
1502*6a54128fSAndroid Build Coastguard Worker
1503*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:755
1504*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1505*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error while iterating over blocks in inode %i: %m\n
1506*6a54128fSAndroid Build Coastguard Workermsgid "Error while iterating over @bs in @i %i: %m\n"
1507*6a54128fSAndroid Build Coastguard Workermsgstr ""
1508*6a54128fSAndroid Build Coastguard Worker
1509*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:760
1510*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
1511*6a54128fSAndroid Build Coastguard Workermsgid "Error storing @i count information (@i=%i, count=%N): %m\n"
1512*6a54128fSAndroid Build Coastguard Workermsgstr ""
1513*6a54128fSAndroid Build Coastguard Worker
1514*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:765
1515*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
1516*6a54128fSAndroid Build Coastguard Workermsgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
1517*6a54128fSAndroid Build Coastguard Workermsgstr ""
1518*6a54128fSAndroid Build Coastguard Worker
1519*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:772
1520*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1521*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error reading inode %i: %m\n
1522*6a54128fSAndroid Build Coastguard Workermsgid "Error reading @i %i: %m\n"
1523*6a54128fSAndroid Build Coastguard Workermsgstr ""
1524*6a54128fSAndroid Build Coastguard Worker
1525*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:781
1526*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1527*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has imagic flag set.
1528*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has imagic flag set.  "
1529*6a54128fSAndroid Build Coastguard Workermsgstr ""
1530*6a54128fSAndroid Build Coastguard Worker
1531*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:787
1532*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1533*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Special (device/socket/fifo/symlink) file (inode %i) has immutable\n
1534*6a54128fSAndroid Build Coastguard Worker#. @-expanded: or append-only flag set.
1535*6a54128fSAndroid Build Coastguard Workermsgid ""
1536*6a54128fSAndroid Build Coastguard Worker"Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
1537*6a54128fSAndroid Build Coastguard Worker"or append-only flag set.  "
1538*6a54128fSAndroid Build Coastguard Workermsgstr ""
1539*6a54128fSAndroid Build Coastguard Worker
1540*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:794
1541*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1542*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
1543*6a54128fSAndroid Build Coastguard Workermsgid "Special (@v/socket/fifo) @i %i has non-zero size.  "
1544*6a54128fSAndroid Build Coastguard Workermsgstr ""
1545*6a54128fSAndroid Build Coastguard Worker
1546*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:804
1547*6a54128fSAndroid Build Coastguard Worker#. @-expanded: journal inode is not in use, but contains data.
1548*6a54128fSAndroid Build Coastguard Workermsgid "@j @i is not in use, but contains data.  "
1549*6a54128fSAndroid Build Coastguard Workermsgstr ""
1550*6a54128fSAndroid Build Coastguard Worker
1551*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:809
1552*6a54128fSAndroid Build Coastguard Worker#. @-expanded: journal is not regular file.
1553*6a54128fSAndroid Build Coastguard Workermsgid "@j is not regular file.  "
1554*6a54128fSAndroid Build Coastguard Workermsgstr ""
1555*6a54128fSAndroid Build Coastguard Worker
1556*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:815
1557*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1558*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i was part of the orphaned inode list.
1559*6a54128fSAndroid Build Coastguard Workermsgid "@i %i was part of the @o @i list.  "
1560*6a54128fSAndroid Build Coastguard Workermsgstr ""
1561*6a54128fSAndroid Build Coastguard Worker
1562*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:821
1563*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inodes that were part of a corrupted orphan linked list found.
1564*6a54128fSAndroid Build Coastguard Workermsgid "@is that were part of a corrupted orphan linked list found.  "
1565*6a54128fSAndroid Build Coastguard Workermsgstr ""
1566*6a54128fSAndroid Build Coastguard Worker
1567*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:826
1568*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating refcount structure (%N): %m\n
1569*6a54128fSAndroid Build Coastguard Workermsgid "@A refcount structure (%N): %m\n"
1570*6a54128fSAndroid Build Coastguard Workermsgstr ""
1571*6a54128fSAndroid Build Coastguard Worker
1572*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:831
1573*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error reading extended attribute block %b for inode %i.
1574*6a54128fSAndroid Build Coastguard Workermsgid "Error reading @a @b %b for @i %i.  "
1575*6a54128fSAndroid Build Coastguard Workermsgstr ""
1576*6a54128fSAndroid Build Coastguard Worker
1577*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:836
1578*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has a bad extended attribute block %b.
1579*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has a bad @a @b %b.  "
1580*6a54128fSAndroid Build Coastguard Workermsgstr ""
1581*6a54128fSAndroid Build Coastguard Worker
1582*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:841
1583*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error reading extended attribute block %b (%m).
1584*6a54128fSAndroid Build Coastguard Workermsgid "Error reading @a @b %b (%m).  "
1585*6a54128fSAndroid Build Coastguard Workermsgstr ""
1586*6a54128fSAndroid Build Coastguard Worker
1587*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:846
1588*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute block %b has reference count %r, should be %N.
1589*6a54128fSAndroid Build Coastguard Workermsgid "@a @b %b has reference count %r, @s %N.  "
1590*6a54128fSAndroid Build Coastguard Workermsgstr ""
1591*6a54128fSAndroid Build Coastguard Worker
1592*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:851
1593*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error writing extended attribute block %b (%m).
1594*6a54128fSAndroid Build Coastguard Workermsgid "Error writing @a @b %b (%m).  "
1595*6a54128fSAndroid Build Coastguard Workermsgstr ""
1596*6a54128fSAndroid Build Coastguard Worker
1597*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:856
1598*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute block %b has h_blocks > 1.
1599*6a54128fSAndroid Build Coastguard Workermsgid "@a @b %b has h_@bs > 1.  "
1600*6a54128fSAndroid Build Coastguard Workermsgstr ""
1601*6a54128fSAndroid Build Coastguard Worker
1602*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:861
1603*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating extended attribute region allocation structure.
1604*6a54128fSAndroid Build Coastguard Workermsgid "@A @a region allocation structure.  "
1605*6a54128fSAndroid Build Coastguard Workermsgstr ""
1606*6a54128fSAndroid Build Coastguard Worker
1607*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:866
1608*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute block %b is corrupt (allocation collision).
1609*6a54128fSAndroid Build Coastguard Workermsgid "@a @b %b is corrupt (allocation collision).  "
1610*6a54128fSAndroid Build Coastguard Workermsgstr ""
1611*6a54128fSAndroid Build Coastguard Worker
1612*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:871
1613*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute block %b is corrupt (invalid name).
1614*6a54128fSAndroid Build Coastguard Workermsgid "@a @b %b is corrupt (@n name).  "
1615*6a54128fSAndroid Build Coastguard Workermsgstr ""
1616*6a54128fSAndroid Build Coastguard Worker
1617*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:876
1618*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute block %b is corrupt (invalid value).
1619*6a54128fSAndroid Build Coastguard Workermsgid "@a @b %b is corrupt (@n value).  "
1620*6a54128fSAndroid Build Coastguard Workermsgstr ""
1621*6a54128fSAndroid Build Coastguard Worker
1622*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:882
1623*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1624*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i is too big.
1625*6a54128fSAndroid Build Coastguard Workermsgid "@i %i is too big.  "
1626*6a54128fSAndroid Build Coastguard Workermsgstr ""
1627*6a54128fSAndroid Build Coastguard Worker
1628*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:886
1629*6a54128fSAndroid Build Coastguard Worker#. @-expanded: %B (%b) causes directory to be too big.
1630*6a54128fSAndroid Build Coastguard Workermsgid "%B (%b) causes @d to be too big.  "
1631*6a54128fSAndroid Build Coastguard Workermsgstr ""
1632*6a54128fSAndroid Build Coastguard Worker
1633*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:891
1634*6a54128fSAndroid Build Coastguard Workermsgid "%B (%b) causes file to be too big.  "
1635*6a54128fSAndroid Build Coastguard Workermsgstr ""
1636*6a54128fSAndroid Build Coastguard Worker
1637*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:896
1638*6a54128fSAndroid Build Coastguard Workermsgid "%B (%b) causes symlink to be too big.  "
1639*6a54128fSAndroid Build Coastguard Workermsgstr ""
1640*6a54128fSAndroid Build Coastguard Worker
1641*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:902
1642*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1643*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has INDEX_FL flag set on filesystem without htree support.\n
1644*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
1645*6a54128fSAndroid Build Coastguard Workermsgstr ""
1646*6a54128fSAndroid Build Coastguard Worker
1647*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:908
1648*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1649*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
1650*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has INDEX_FL flag set but is not a @d.\n"
1651*6a54128fSAndroid Build Coastguard Workermsgstr ""
1652*6a54128fSAndroid Build Coastguard Worker
1653*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:914
1654*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1655*6a54128fSAndroid Build Coastguard Worker#. @-expanded: HTREE directory inode %i has an invalid root node.\n
1656*6a54128fSAndroid Build Coastguard Workermsgid "@h %i has an @n root node.\n"
1657*6a54128fSAndroid Build Coastguard Workermsgstr ""
1658*6a54128fSAndroid Build Coastguard Worker
1659*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:919
1660*6a54128fSAndroid Build Coastguard Worker#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
1661*6a54128fSAndroid Build Coastguard Workermsgid "@h %i has an unsupported hash version (%N)\n"
1662*6a54128fSAndroid Build Coastguard Workermsgstr ""
1663*6a54128fSAndroid Build Coastguard Worker
1664*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:925
1665*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1666*6a54128fSAndroid Build Coastguard Worker#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
1667*6a54128fSAndroid Build Coastguard Workermsgid "@h %i uses an incompatible htree root node flag.\n"
1668*6a54128fSAndroid Build Coastguard Workermsgstr ""
1669*6a54128fSAndroid Build Coastguard Worker
1670*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:930
1671*6a54128fSAndroid Build Coastguard Worker#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
1672*6a54128fSAndroid Build Coastguard Workermsgid "@h %i has a tree depth (%N) which is too big\n"
1673*6a54128fSAndroid Build Coastguard Workermsgstr ""
1674*6a54128fSAndroid Build Coastguard Worker
1675*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:936
1676*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
1677*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem metadata.
1678*6a54128fSAndroid Build Coastguard Workermsgid ""
1679*6a54128fSAndroid Build Coastguard Worker"Bad @b @i has an indirect @b (%b) that conflicts with\n"
1680*6a54128fSAndroid Build Coastguard Worker"@f metadata.  "
1681*6a54128fSAndroid Build Coastguard Workermsgstr ""
1682*6a54128fSAndroid Build Coastguard Worker
1683*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:943
1684*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1685*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Resize inode (re)creation failed: %m.
1686*6a54128fSAndroid Build Coastguard Workermsgid "Resize @i (re)creation failed: %m."
1687*6a54128fSAndroid Build Coastguard Workermsgstr ""
1688*6a54128fSAndroid Build Coastguard Worker
1689*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:948
1690*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has a extra size (%IS) which is invalid\n
1691*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has a extra size (%IS) which is @n\n"
1692*6a54128fSAndroid Build Coastguard Workermsgstr ""
1693*6a54128fSAndroid Build Coastguard Worker
1694*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:953
1695*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
1696*6a54128fSAndroid Build Coastguard Workermsgid "@a in @i %i has a namelen (%N) which is @n\n"
1697*6a54128fSAndroid Build Coastguard Workermsgstr ""
1698*6a54128fSAndroid Build Coastguard Worker
1699*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:958
1700*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
1701*6a54128fSAndroid Build Coastguard Workermsgid "@a in @i %i has a value offset (%N) which is @n\n"
1702*6a54128fSAndroid Build Coastguard Workermsgstr ""
1703*6a54128fSAndroid Build Coastguard Worker
1704*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:963
1705*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
1706*6a54128fSAndroid Build Coastguard Workermsgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
1707*6a54128fSAndroid Build Coastguard Workermsgstr ""
1708*6a54128fSAndroid Build Coastguard Worker
1709*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:968
1710*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
1711*6a54128fSAndroid Build Coastguard Workermsgid "@a in @i %i has a value size (%N) which is @n\n"
1712*6a54128fSAndroid Build Coastguard Workermsgstr ""
1713*6a54128fSAndroid Build Coastguard Worker
1714*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:973
1715*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid\n
1716*6a54128fSAndroid Build Coastguard Workermsgid "@a in @i %i has a hash (%N) which is @n\n"
1717*6a54128fSAndroid Build Coastguard Workermsgstr ""
1718*6a54128fSAndroid Build Coastguard Worker
1719*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:978
1720*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
1721*6a54128fSAndroid Build Coastguard Workermsgid "@i %i is a %It but it looks like it is really a directory.\n"
1722*6a54128fSAndroid Build Coastguard Workermsgstr ""
1723*6a54128fSAndroid Build Coastguard Worker
1724*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:984
1725*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1726*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error while reading over extent tree in inode %i: %m\n
1727*6a54128fSAndroid Build Coastguard Workermsgid "Error while reading over @x tree in @i %i: %m\n"
1728*6a54128fSAndroid Build Coastguard Workermsgstr ""
1729*6a54128fSAndroid Build Coastguard Worker
1730*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:989
1731*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Failed to iterate extents in inode %i\n
1732*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(op %s, blk %b, lblk %c): %m\n
1733*6a54128fSAndroid Build Coastguard Workermsgid ""
1734*6a54128fSAndroid Build Coastguard Worker"Failed to iterate extents in @i %i\n"
1735*6a54128fSAndroid Build Coastguard Worker"\t(op %s, blk %b, lblk %c): %m\n"
1736*6a54128fSAndroid Build Coastguard Workermsgstr ""
1737*6a54128fSAndroid Build Coastguard Worker
1738*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:995
1739*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has an invalid extent\n
1740*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
1741*6a54128fSAndroid Build Coastguard Workermsgid ""
1742*6a54128fSAndroid Build Coastguard Worker"@i %i has an @n extent\n"
1743*6a54128fSAndroid Build Coastguard Worker"\t(logical @b %c, @n physical @b %b, len %N)\n"
1744*6a54128fSAndroid Build Coastguard Workermsgstr ""
1745*6a54128fSAndroid Build Coastguard Worker
1746*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1000
1747*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has an invalid extent\n
1748*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(logical block %c, physical block %b, invalid len %N)\n
1749*6a54128fSAndroid Build Coastguard Workermsgid ""
1750*6a54128fSAndroid Build Coastguard Worker"@i %i has an @n extent\n"
1751*6a54128fSAndroid Build Coastguard Worker"\t(logical @b %c, physical @b %b, @n len %N)\n"
1752*6a54128fSAndroid Build Coastguard Workermsgstr ""
1753*6a54128fSAndroid Build Coastguard Worker
1754*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1006
1755*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1756*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has EXTENTS_FL flag set on filesystem without extents support.\n
1757*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has EXTENTS_FL flag set on @f without extents support.\n"
1758*6a54128fSAndroid Build Coastguard Workermsgstr ""
1759*6a54128fSAndroid Build Coastguard Worker
1760*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1012
1761*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1762*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i is in extent format, but superblock is missing EXTENTS feature\n
1763*6a54128fSAndroid Build Coastguard Workermsgid "@i %i is in extent format, but @S is missing EXTENTS feature\n"
1764*6a54128fSAndroid Build Coastguard Workermsgstr ""
1765*6a54128fSAndroid Build Coastguard Worker
1766*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1018
1767*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1768*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i missing EXTENT_FL, but is in extents format\n
1769*6a54128fSAndroid Build Coastguard Workermsgid "@i %i missing EXTENT_FL, but is in extents format\n"
1770*6a54128fSAndroid Build Coastguard Workermsgstr ""
1771*6a54128fSAndroid Build Coastguard Worker
1772*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1024
1773*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1774*6a54128fSAndroid Build Coastguard Workermsgid "Fast symlink %i has EXTENT_FL set.  "
1775*6a54128fSAndroid Build Coastguard Workermsgstr ""
1776*6a54128fSAndroid Build Coastguard Worker
1777*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1029
1778*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has out of order extents\n
1779*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(invalid logical block %c, physical block %b, len %N)\n
1780*6a54128fSAndroid Build Coastguard Workermsgid ""
1781*6a54128fSAndroid Build Coastguard Worker"@i %i has out of order extents\n"
1782*6a54128fSAndroid Build Coastguard Worker"\t(@n logical @b %c, physical @b %b, len %N)\n"
1783*6a54128fSAndroid Build Coastguard Workermsgstr ""
1784*6a54128fSAndroid Build Coastguard Worker
1785*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1033
1786*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has an invalid extent node (blk %b, lblk %c)\n
1787*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has an invalid extent node (blk %b, lblk %c)\n"
1788*6a54128fSAndroid Build Coastguard Workermsgstr ""
1789*6a54128fSAndroid Build Coastguard Worker
1790*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1039
1791*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1792*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error converting subcluster block bitmap: %m\n
1793*6a54128fSAndroid Build Coastguard Workermsgid "Error converting subcluster @b @B: %m\n"
1794*6a54128fSAndroid Build Coastguard Workermsgstr ""
1795*6a54128fSAndroid Build Coastguard Worker
1796*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1044
1797*6a54128fSAndroid Build Coastguard Worker#. @-expanded: quota inode is not a regular file.
1798*6a54128fSAndroid Build Coastguard Workermsgid "@q @i is not a regular file.  "
1799*6a54128fSAndroid Build Coastguard Workermsgstr ""
1800*6a54128fSAndroid Build Coastguard Worker
1801*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1049
1802*6a54128fSAndroid Build Coastguard Worker#. @-expanded: quota inode is not in use, but contains data.
1803*6a54128fSAndroid Build Coastguard Workermsgid "@q @i is not in use, but contains data.  "
1804*6a54128fSAndroid Build Coastguard Workermsgstr ""
1805*6a54128fSAndroid Build Coastguard Worker
1806*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1054
1807*6a54128fSAndroid Build Coastguard Worker#. @-expanded: quota inode is visible to the user.
1808*6a54128fSAndroid Build Coastguard Workermsgid "@q @i is visible to the user.  "
1809*6a54128fSAndroid Build Coastguard Workermsgstr ""
1810*6a54128fSAndroid Build Coastguard Worker
1811*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1059
1812*6a54128fSAndroid Build Coastguard Worker#. @-expanded: The bad block inode looks invalid.
1813*6a54128fSAndroid Build Coastguard Workermsgid "The bad @b @i looks @n.  "
1814*6a54128fSAndroid Build Coastguard Workermsgstr ""
1815*6a54128fSAndroid Build Coastguard Worker
1816*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1064
1817*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has zero length extent\n
1818*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(invalid logical block %c, physical block %b)\n
1819*6a54128fSAndroid Build Coastguard Workermsgid ""
1820*6a54128fSAndroid Build Coastguard Worker"@i %i has zero length extent\n"
1821*6a54128fSAndroid Build Coastguard Worker"\t(@n logical @b %c, physical @b %b)\n"
1822*6a54128fSAndroid Build Coastguard Workermsgstr ""
1823*6a54128fSAndroid Build Coastguard Worker
1824*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1070
1825*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1826*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i seems to contain garbage.
1827*6a54128fSAndroid Build Coastguard Workermsgid "@i %i seems to contain garbage.  "
1828*6a54128fSAndroid Build Coastguard Workermsgstr ""
1829*6a54128fSAndroid Build Coastguard Worker
1830*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1076
1831*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1832*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i passes checks, but checksum does not match inode.
1833*6a54128fSAndroid Build Coastguard Workermsgid "@i %i passes checks, but checksum does not match @i.  "
1834*6a54128fSAndroid Build Coastguard Workermsgstr ""
1835*6a54128fSAndroid Build Coastguard Worker
1836*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1082
1837*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1838*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i extended attribute is corrupt (allocation collision).
1839*6a54128fSAndroid Build Coastguard Workermsgid "@i %i @a is corrupt (allocation collision).  "
1840*6a54128fSAndroid Build Coastguard Workermsgstr ""
1841*6a54128fSAndroid Build Coastguard Worker
1842*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1090
1843*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i extent block passes checks, but checksum does not match extent\n
1844*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
1845*6a54128fSAndroid Build Coastguard Workermsgid ""
1846*6a54128fSAndroid Build Coastguard Worker"@i %i extent block passes checks, but checksum does not match extent\n"
1847*6a54128fSAndroid Build Coastguard Worker"\t(logical @b %c, physical @b %b, len %N)\n"
1848*6a54128fSAndroid Build Coastguard Workermsgstr ""
1849*6a54128fSAndroid Build Coastguard Worker
1850*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1099
1851*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i extended attribute block %b passes checks, but checksum does not match block.
1852*6a54128fSAndroid Build Coastguard Workermsgid "@i %i @a @b %b passes checks, but checksum does not match @b.  "
1853*6a54128fSAndroid Build Coastguard Workermsgstr ""
1854*6a54128fSAndroid Build Coastguard Worker
1855*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1104
1856*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Interior extent node level %N of inode %i:\n
1857*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Logical start %b does not match logical start %c at next level.
1858*6a54128fSAndroid Build Coastguard Workermsgid ""
1859*6a54128fSAndroid Build Coastguard Worker"Interior @x node level %N of @i %i:\n"
1860*6a54128fSAndroid Build Coastguard Worker"Logical start %b does not match logical start %c at next level.  "
1861*6a54128fSAndroid Build Coastguard Workermsgstr ""
1862*6a54128fSAndroid Build Coastguard Worker
1863*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1110
1864*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i, end of extent exceeds allowed value\n
1865*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
1866*6a54128fSAndroid Build Coastguard Workermsgid ""
1867*6a54128fSAndroid Build Coastguard Worker"@i %i, end of extent exceeds allowed value\n"
1868*6a54128fSAndroid Build Coastguard Worker"\t(logical @b %c, physical @b %b, len %N)\n"
1869*6a54128fSAndroid Build Coastguard Workermsgstr ""
1870*6a54128fSAndroid Build Coastguard Worker
1871*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1116
1872*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1873*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has inline data, but superblock is missing INLINE_DATA feature\n
1874*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has inline data, but @S is missing INLINE_DATA feature\n"
1875*6a54128fSAndroid Build Coastguard Workermsgstr ""
1876*6a54128fSAndroid Build Coastguard Worker
1877*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1122
1878*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1879*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has INLINE_DATA_FL flag on filesystem without inline data support.\n
1880*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has INLINE_DATA_FL flag on @f without inline data support.\n"
1881*6a54128fSAndroid Build Coastguard Workermsgstr ""
1882*6a54128fSAndroid Build Coastguard Worker
1883*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1130
1884*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1885*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i block %b conflicts with critical metadata, skipping block checks.\n
1886*6a54128fSAndroid Build Coastguard Workermsgid ""
1887*6a54128fSAndroid Build Coastguard Worker"@i %i block %b conflicts with critical metadata, skipping block checks.\n"
1888*6a54128fSAndroid Build Coastguard Workermsgstr ""
1889*6a54128fSAndroid Build Coastguard Worker
1890*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1135
1891*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i block %b should be at block %c.
1892*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i @b %b should be at @b %c.  "
1893*6a54128fSAndroid Build Coastguard Workermsgstr ""
1894*6a54128fSAndroid Build Coastguard Worker
1895*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1141
1896*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1897*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i has extent marked uninitialized at block %c.
1898*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i has @x marked uninitialized at @b %c.  "
1899*6a54128fSAndroid Build Coastguard Workermsgstr ""
1900*6a54128fSAndroid Build Coastguard Worker
1901*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1146
1902*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i logical block %b (physical block %c) violates cluster allocation rules.\n
1903*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Will fix in pass 1B.\n
1904*6a54128fSAndroid Build Coastguard Workermsgid ""
1905*6a54128fSAndroid Build Coastguard Worker"@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\n"
1906*6a54128fSAndroid Build Coastguard Worker"Will fix in pass 1B.\n"
1907*6a54128fSAndroid Build Coastguard Workermsgstr ""
1908*6a54128fSAndroid Build Coastguard Worker
1909*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1152
1910*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1911*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has INLINE_DATA_FL flag but extended attribute not found.
1912*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has INLINE_DATA_FL flag but @a not found.  "
1913*6a54128fSAndroid Build Coastguard Workermsgstr ""
1914*6a54128fSAndroid Build Coastguard Worker
1915*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1159
1916*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1917*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Special (device/socket/fifo) file (inode %i) has extents\n
1918*6a54128fSAndroid Build Coastguard Worker#. @-expanded: or inline-data flag set.
1919*6a54128fSAndroid Build Coastguard Workermsgid ""
1920*6a54128fSAndroid Build Coastguard Worker"Special (@v/socket/fifo) file (@i %i) has extents\n"
1921*6a54128fSAndroid Build Coastguard Worker"or inline-data flag set.  "
1922*6a54128fSAndroid Build Coastguard Workermsgstr ""
1923*6a54128fSAndroid Build Coastguard Worker
1924*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1166
1925*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1926*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has extent header but inline data flag is set.\n
1927*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has @x header but inline data flag is set.\n"
1928*6a54128fSAndroid Build Coastguard Workermsgstr ""
1929*6a54128fSAndroid Build Coastguard Worker
1930*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1172
1931*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1932*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i seems to have inline data but extent flag is set.\n
1933*6a54128fSAndroid Build Coastguard Workermsgid "@i %i seems to have inline data but @x flag is set.\n"
1934*6a54128fSAndroid Build Coastguard Workermsgstr ""
1935*6a54128fSAndroid Build Coastguard Worker
1936*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1178
1937*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1938*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i seems to have block map but inline data and extent flags set.\n
1939*6a54128fSAndroid Build Coastguard Workermsgid "@i %i seems to have @b map but inline data and @x flags set.\n"
1940*6a54128fSAndroid Build Coastguard Workermsgstr ""
1941*6a54128fSAndroid Build Coastguard Worker
1942*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1184
1943*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1944*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has inline data and extent flags set but i_block contains junk.\n
1945*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has inline data and @x flags set but i_block contains junk.\n"
1946*6a54128fSAndroid Build Coastguard Workermsgstr ""
1947*6a54128fSAndroid Build Coastguard Worker
1948*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1189
1949*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Bad block list says the bad block list inode is bad.
1950*6a54128fSAndroid Build Coastguard Workermsgid "Bad block list says the bad block list @i is bad.  "
1951*6a54128fSAndroid Build Coastguard Workermsgstr ""
1952*6a54128fSAndroid Build Coastguard Worker
1953*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1194
1954*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating extent region allocation structure.
1955*6a54128fSAndroid Build Coastguard Workermsgid "@A @x region allocation structure.  "
1956*6a54128fSAndroid Build Coastguard Workermsgstr ""
1957*6a54128fSAndroid Build Coastguard Worker
1958*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1199
1959*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has a duplicate extent mapping\n
1960*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
1961*6a54128fSAndroid Build Coastguard Workermsgid ""
1962*6a54128fSAndroid Build Coastguard Worker"@i %i has a duplicate @x mapping\n"
1963*6a54128fSAndroid Build Coastguard Worker"\t(logical @b %c, @n physical @b %b, len %N)\n"
1964*6a54128fSAndroid Build Coastguard Workermsgstr ""
1965*6a54128fSAndroid Build Coastguard Worker
1966*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1204
1967*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating %N bytes of memory for encrypted inode list\n
1968*6a54128fSAndroid Build Coastguard Workermsgid "@A %N bytes of memory for encrypted @i list\n"
1969*6a54128fSAndroid Build Coastguard Workermsgstr ""
1970*6a54128fSAndroid Build Coastguard Worker
1971*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1209
1972*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i extent tree could be more shallow (%b; could be <= %c)\n
1973*6a54128fSAndroid Build Coastguard Workermsgid "@i %i @x tree could be more shallow (%b; could be <= %c)\n"
1974*6a54128fSAndroid Build Coastguard Workermsgstr ""
1975*6a54128fSAndroid Build Coastguard Worker
1976*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1215
1977*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1978*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i on bigalloc filesystem cannot be block mapped.
1979*6a54128fSAndroid Build Coastguard Workermsgid "@i %i on bigalloc @f cannot be @b mapped.  "
1980*6a54128fSAndroid Build Coastguard Workermsgstr ""
1981*6a54128fSAndroid Build Coastguard Worker
1982*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1221
1983*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1984*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has corrupt extent header.
1985*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has corrupt @x header.  "
1986*6a54128fSAndroid Build Coastguard Workermsgstr ""
1987*6a54128fSAndroid Build Coastguard Worker
1988*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1227
1989*6a54128fSAndroid Build Coastguard Worker#, no-c-format
1990*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Timestamp(s) on inode %i beyond 2310-04-04 are likely pre-1970.\n
1991*6a54128fSAndroid Build Coastguard Workermsgid "Timestamp(s) on @i %i beyond 2310-04-04 are likely pre-1970.\n"
1992*6a54128fSAndroid Build Coastguard Workermsgstr ""
1993*6a54128fSAndroid Build Coastguard Worker
1994*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1232
1995*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has illegal extended attribute value inode %N.\n
1996*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has @I @a value @i %N.\n"
1997*6a54128fSAndroid Build Coastguard Workermsgstr ""
1998*6a54128fSAndroid Build Coastguard Worker
1999*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1238
2000*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has invalid extended attribute. EA inode %N missing EA_INODE flag.\n
2001*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has @n @a. EA @i %N missing EA_INODE flag.\n"
2002*6a54128fSAndroid Build Coastguard Workermsgstr ""
2003*6a54128fSAndroid Build Coastguard Worker
2004*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1243
2005*6a54128fSAndroid Build Coastguard Worker#. @-expanded: EA inode %N for parent inode %i missing EA_INODE flag.\n
2006*6a54128fSAndroid Build Coastguard Worker#. @-expanded:
2007*6a54128fSAndroid Build Coastguard Workermsgid ""
2008*6a54128fSAndroid Build Coastguard Worker"EA @i %N for parent @i %i missing EA_INODE flag.\n"
2009*6a54128fSAndroid Build Coastguard Worker" "
2010*6a54128fSAndroid Build Coastguard Workermsgstr ""
2011*6a54128fSAndroid Build Coastguard Worker
2012*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1249
2013*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2014*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has extent marked uninitialized at block %c (len %N).
2015*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has @x marked uninitialized at @b %c (len %N).  "
2016*6a54128fSAndroid Build Coastguard Workermsgstr ""
2017*6a54128fSAndroid Build Coastguard Worker
2018*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1254
2019*6a54128fSAndroid Build Coastguard Worker#, c-format
2020*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has the casefold flag set but is not a directory.
2021*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has the casefold flag set but is not a directory.  "
2022*6a54128fSAndroid Build Coastguard Workermsgstr ""
2023*6a54128fSAndroid Build Coastguard Worker
2024*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1259
2025*6a54128fSAndroid Build Coastguard Worker#, c-format
2026*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory %p has the casefold flag, but the\n
2027*6a54128fSAndroid Build Coastguard Worker#. @-expanded: casefold feature is not enabled.
2028*6a54128fSAndroid Build Coastguard Workermsgid ""
2029*6a54128fSAndroid Build Coastguard Worker"@d %p has the casefold flag, but the\n"
2030*6a54128fSAndroid Build Coastguard Worker"casefold feature is not enabled.  "
2031*6a54128fSAndroid Build Coastguard Workermsgstr ""
2032*6a54128fSAndroid Build Coastguard Worker
2033*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1264
2034*6a54128fSAndroid Build Coastguard Worker#, c-format
2035*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i has encrypt flag but no encryption extended attribute.\n
2036*6a54128fSAndroid Build Coastguard Workermsgid "@i %i has encrypt flag but no encryption @a.\n"
2037*6a54128fSAndroid Build Coastguard Workermsgstr ""
2038*6a54128fSAndroid Build Coastguard Worker
2039*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1269
2040*6a54128fSAndroid Build Coastguard Worker#, c-format
2041*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Encrypted inode %i has corrupt encryption extended attribute.\n
2042*6a54128fSAndroid Build Coastguard Workermsgid "Encrypted @i %i has corrupt encryption @a.\n"
2043*6a54128fSAndroid Build Coastguard Workermsgstr ""
2044*6a54128fSAndroid Build Coastguard Worker
2045*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1274
2046*6a54128fSAndroid Build Coastguard Worker#. @-expanded: HTREE directory inode %i uses hash version (%N), but should use SipHash (6) \n
2047*6a54128fSAndroid Build Coastguard Workermsgid "@h %i uses hash version (%N), but should use SipHash (6) \n"
2048*6a54128fSAndroid Build Coastguard Workermsgstr ""
2049*6a54128fSAndroid Build Coastguard Worker
2050*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1279
2051*6a54128fSAndroid Build Coastguard Worker#, c-format
2052*6a54128fSAndroid Build Coastguard Worker#. @-expanded: HTREE directory inode %i uses SipHash, but should not.
2053*6a54128fSAndroid Build Coastguard Workermsgid "@h %i uses SipHash, but should not.  "
2054*6a54128fSAndroid Build Coastguard Workermsgstr ""
2055*6a54128fSAndroid Build Coastguard Worker
2056*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1287
2057*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
2058*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
2059*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 1B: Rescanning for multiply-claimed blocks\n
2060*6a54128fSAndroid Build Coastguard Workermsgid ""
2061*6a54128fSAndroid Build Coastguard Worker"\n"
2062*6a54128fSAndroid Build Coastguard Worker"Running additional passes to resolve @bs claimed by more than one @i...\n"
2063*6a54128fSAndroid Build Coastguard Worker"Pass 1B: Rescanning for @m @bs\n"
2064*6a54128fSAndroid Build Coastguard Workermsgstr ""
2065*6a54128fSAndroid Build Coastguard Worker
2066*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1294
2067*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2068*6a54128fSAndroid Build Coastguard Worker#. @-expanded: multiply-claimed block(s) in inode %i:
2069*6a54128fSAndroid Build Coastguard Workermsgid "@m @b(s) in @i %i:"
2070*6a54128fSAndroid Build Coastguard Workermsgstr ""
2071*6a54128fSAndroid Build Coastguard Worker
2072*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1310
2073*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2074*6a54128fSAndroid Build Coastguard Workermsgid "Error while scanning inodes (%i): %m\n"
2075*6a54128fSAndroid Build Coastguard Workermsgstr ""
2076*6a54128fSAndroid Build Coastguard Worker
2077*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1316
2078*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2079*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating inode bitmap (inode_dup_map): %m\n
2080*6a54128fSAndroid Build Coastguard Workermsgid "@A @i @B (@i_dup_map): %m\n"
2081*6a54128fSAndroid Build Coastguard Workermsgstr ""
2082*6a54128fSAndroid Build Coastguard Worker
2083*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1322
2084*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2085*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error while iterating over blocks in inode %i (%s): %m\n
2086*6a54128fSAndroid Build Coastguard Workermsgid "Error while iterating over @bs in @i %i (%s): %m\n"
2087*6a54128fSAndroid Build Coastguard Workermsgstr ""
2088*6a54128fSAndroid Build Coastguard Worker
2089*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1327 e2fsck/problem.c:1707
2090*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
2091*6a54128fSAndroid Build Coastguard Workermsgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
2092*6a54128fSAndroid Build Coastguard Workermsgstr ""
2093*6a54128fSAndroid Build Coastguard Worker
2094*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1337
2095*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
2096*6a54128fSAndroid Build Coastguard Workermsgid "Pass 1C: Scanning directories for @is with @m @bs\n"
2097*6a54128fSAndroid Build Coastguard Workermsgstr ""
2098*6a54128fSAndroid Build Coastguard Worker
2099*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1343
2100*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
2101*6a54128fSAndroid Build Coastguard Workermsgid "Pass 1D: Reconciling @m @bs\n"
2102*6a54128fSAndroid Build Coastguard Workermsgstr ""
2103*6a54128fSAndroid Build Coastguard Worker
2104*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1348
2105*6a54128fSAndroid Build Coastguard Worker#. @-expanded: File %Q (inode #%i, mod time %IM) \n
2106*6a54128fSAndroid Build Coastguard Worker#. @-expanded:   has %r multiply-claimed block(s), shared with %N file(s):\n
2107*6a54128fSAndroid Build Coastguard Workermsgid ""
2108*6a54128fSAndroid Build Coastguard Worker"File %Q (@i #%i, mod time %IM) \n"
2109*6a54128fSAndroid Build Coastguard Worker"  has %r @m @b(s), shared with %N file(s):\n"
2110*6a54128fSAndroid Build Coastguard Workermsgstr ""
2111*6a54128fSAndroid Build Coastguard Worker
2112*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1354
2113*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t%Q (inode #%i, mod time %IM)\n
2114*6a54128fSAndroid Build Coastguard Workermsgid "\t%Q (@i #%i, mod time %IM)\n"
2115*6a54128fSAndroid Build Coastguard Workermsgstr ""
2116*6a54128fSAndroid Build Coastguard Worker
2117*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1359
2118*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \t<filesystem metadata>\n
2119*6a54128fSAndroid Build Coastguard Workermsgid "\t<@f metadata>\n"
2120*6a54128fSAndroid Build Coastguard Workermsgstr ""
2121*6a54128fSAndroid Build Coastguard Worker
2122*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1364
2123*6a54128fSAndroid Build Coastguard Worker#. @-expanded: (There are %N inodes containing multiply-claimed blocks.)\n
2124*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
2125*6a54128fSAndroid Build Coastguard Workermsgid ""
2126*6a54128fSAndroid Build Coastguard Worker"(There are %N @is containing @m @bs.)\n"
2127*6a54128fSAndroid Build Coastguard Worker"\n"
2128*6a54128fSAndroid Build Coastguard Workermsgstr ""
2129*6a54128fSAndroid Build Coastguard Worker
2130*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1369
2131*6a54128fSAndroid Build Coastguard Worker#. @-expanded: multiply-claimed blocks already reassigned or cloned.\n
2132*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
2133*6a54128fSAndroid Build Coastguard Workermsgid ""
2134*6a54128fSAndroid Build Coastguard Worker"@m @bs already reassigned or cloned.\n"
2135*6a54128fSAndroid Build Coastguard Worker"\n"
2136*6a54128fSAndroid Build Coastguard Workermsgstr ""
2137*6a54128fSAndroid Build Coastguard Worker
2138*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1383
2139*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2140*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't clone file: %m\n"
2141*6a54128fSAndroid Build Coastguard Workermsgstr ""
2142*6a54128fSAndroid Build Coastguard Worker
2143*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1389
2144*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 1E: Optimizing extent trees\n
2145*6a54128fSAndroid Build Coastguard Workermsgid "Pass 1E: Optimizing @x trees\n"
2146*6a54128fSAndroid Build Coastguard Workermsgstr ""
2147*6a54128fSAndroid Build Coastguard Worker
2148*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1395
2149*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2150*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Failed to optimize extent tree %p (%i): %m\n
2151*6a54128fSAndroid Build Coastguard Workermsgid "Failed to optimize @x tree %p (%i): %m\n"
2152*6a54128fSAndroid Build Coastguard Workermsgstr ""
2153*6a54128fSAndroid Build Coastguard Worker
2154*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1400
2155*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Optimizing extent trees:
2156*6a54128fSAndroid Build Coastguard Workermsgid "Optimizing @x trees: "
2157*6a54128fSAndroid Build Coastguard Workermsgstr ""
2158*6a54128fSAndroid Build Coastguard Worker
2159*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1415
2160*6a54128fSAndroid Build Coastguard Workermsgid "Internal error: max extent tree depth too large (%b; expected=%c).\n"
2161*6a54128fSAndroid Build Coastguard Workermsgstr ""
2162*6a54128fSAndroid Build Coastguard Worker
2163*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1420
2164*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i extent tree (at level %b) could be shorter.
2165*6a54128fSAndroid Build Coastguard Workermsgid "@i %i @x tree (at level %b) could be shorter.  "
2166*6a54128fSAndroid Build Coastguard Workermsgstr ""
2167*6a54128fSAndroid Build Coastguard Worker
2168*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1425
2169*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i extent tree (at level %b) could be narrower.
2170*6a54128fSAndroid Build Coastguard Workermsgid "@i %i @x tree (at level %b) could be narrower.  "
2171*6a54128fSAndroid Build Coastguard Workermsgstr ""
2172*6a54128fSAndroid Build Coastguard Worker
2173*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1432
2174*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 2: Checking directory structure\n
2175*6a54128fSAndroid Build Coastguard Workermsgid "Pass 2: Checking @d structure\n"
2176*6a54128fSAndroid Build Coastguard Workermsgstr ""
2177*6a54128fSAndroid Build Coastguard Worker
2178*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1438
2179*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2180*6a54128fSAndroid Build Coastguard Worker#. @-expanded: invalid inode number for '.' in directory inode %i.\n
2181*6a54128fSAndroid Build Coastguard Workermsgid "@n @i number for '.' in @d @i %i.\n"
2182*6a54128fSAndroid Build Coastguard Workermsgstr ""
2183*6a54128fSAndroid Build Coastguard Worker
2184*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1443
2185*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has invalid inode #: %Di.\n
2186*6a54128fSAndroid Build Coastguard Workermsgid "@E has @n @i #: %Di.\n"
2187*6a54128fSAndroid Build Coastguard Workermsgstr ""
2188*6a54128fSAndroid Build Coastguard Worker
2189*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1448
2190*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has deleted/unused inode %Di.
2191*6a54128fSAndroid Build Coastguard Workermsgid "@E has @D/unused @i %Di.  "
2192*6a54128fSAndroid Build Coastguard Workermsgstr ""
2193*6a54128fSAndroid Build Coastguard Worker
2194*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1453
2195*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) is a link to '.'
2196*6a54128fSAndroid Build Coastguard Workermsgid "@E @L to '.'  "
2197*6a54128fSAndroid Build Coastguard Workermsgstr ""
2198*6a54128fSAndroid Build Coastguard Worker
2199*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1458
2200*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
2201*6a54128fSAndroid Build Coastguard Workermsgid "@E points to @i (%Di) located in a bad @b.\n"
2202*6a54128fSAndroid Build Coastguard Workermsgstr ""
2203*6a54128fSAndroid Build Coastguard Worker
2204*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1463
2205*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
2206*6a54128fSAndroid Build Coastguard Workermsgid "@E @L to @d %P (%Di).\n"
2207*6a54128fSAndroid Build Coastguard Workermsgstr ""
2208*6a54128fSAndroid Build Coastguard Worker
2209*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1468
2210*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) is a link to the root inode.\n
2211*6a54128fSAndroid Build Coastguard Workermsgid "@E @L to the @r.\n"
2212*6a54128fSAndroid Build Coastguard Workermsgstr ""
2213*6a54128fSAndroid Build Coastguard Worker
2214*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1473
2215*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has illegal characters in its name.\n
2216*6a54128fSAndroid Build Coastguard Workermsgid "@E has illegal characters in its name.\n"
2217*6a54128fSAndroid Build Coastguard Workermsgstr ""
2218*6a54128fSAndroid Build Coastguard Worker
2219*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1479
2220*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2221*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Missing '.' in directory inode %i.\n
2222*6a54128fSAndroid Build Coastguard Workermsgid "Missing '.' in @d @i %i.\n"
2223*6a54128fSAndroid Build Coastguard Workermsgstr ""
2224*6a54128fSAndroid Build Coastguard Worker
2225*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1485
2226*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2227*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Missing '..' in directory inode %i.\n
2228*6a54128fSAndroid Build Coastguard Workermsgid "Missing '..' in @d @i %i.\n"
2229*6a54128fSAndroid Build Coastguard Workermsgstr ""
2230*6a54128fSAndroid Build Coastguard Worker
2231*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1490
2232*6a54128fSAndroid Build Coastguard Worker#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
2233*6a54128fSAndroid Build Coastguard Workermsgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
2234*6a54128fSAndroid Build Coastguard Workermsgstr ""
2235*6a54128fSAndroid Build Coastguard Worker
2236*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1495
2237*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
2238*6a54128fSAndroid Build Coastguard Workermsgid "Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"
2239*6a54128fSAndroid Build Coastguard Workermsgstr ""
2240*6a54128fSAndroid Build Coastguard Worker
2241*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1500
2242*6a54128fSAndroid Build Coastguard Worker#. @-expanded: i_faddr for inode %i (%Q) is %IF, should be zero.\n
2243*6a54128fSAndroid Build Coastguard Workermsgid "i_faddr @F %IF, @s zero.\n"
2244*6a54128fSAndroid Build Coastguard Workermsgstr ""
2245*6a54128fSAndroid Build Coastguard Worker
2246*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1505
2247*6a54128fSAndroid Build Coastguard Worker#. @-expanded: i_file_acl for inode %i (%Q) is %If, should be zero.\n
2248*6a54128fSAndroid Build Coastguard Workermsgid "i_file_acl @F %If, @s zero.\n"
2249*6a54128fSAndroid Build Coastguard Workermsgstr ""
2250*6a54128fSAndroid Build Coastguard Worker
2251*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1510
2252*6a54128fSAndroid Build Coastguard Worker#. @-expanded: i_size_high for inode %i (%Q) is %Id, should be zero.\n
2253*6a54128fSAndroid Build Coastguard Workermsgid "i_size_high @F %Id, @s zero.\n"
2254*6a54128fSAndroid Build Coastguard Workermsgstr ""
2255*6a54128fSAndroid Build Coastguard Worker
2256*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1515
2257*6a54128fSAndroid Build Coastguard Worker#. @-expanded: i_frag for inode %i (%Q) is %N, should be zero.\n
2258*6a54128fSAndroid Build Coastguard Workermsgid "i_frag @F %N, @s zero.\n"
2259*6a54128fSAndroid Build Coastguard Workermsgstr ""
2260*6a54128fSAndroid Build Coastguard Worker
2261*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1520
2262*6a54128fSAndroid Build Coastguard Worker#. @-expanded: i_fsize for inode %i (%Q) is %N, should be zero.\n
2263*6a54128fSAndroid Build Coastguard Workermsgid "i_fsize @F %N, @s zero.\n"
2264*6a54128fSAndroid Build Coastguard Workermsgstr ""
2265*6a54128fSAndroid Build Coastguard Worker
2266*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1525
2267*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i (%Q) has invalid mode (%Im).\n
2268*6a54128fSAndroid Build Coastguard Workermsgid "@i %i (%Q) has @n mode (%Im).\n"
2269*6a54128fSAndroid Build Coastguard Workermsgstr ""
2270*6a54128fSAndroid Build Coastguard Worker
2271*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1530
2272*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i, %B, offset %N: directory corrupted\n
2273*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i, %B, offset %N: @d corrupted\n"
2274*6a54128fSAndroid Build Coastguard Workermsgstr ""
2275*6a54128fSAndroid Build Coastguard Worker
2276*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1535
2277*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i, %B, offset %N: filename too long\n
2278*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i, %B, offset %N: filename too long\n"
2279*6a54128fSAndroid Build Coastguard Workermsgstr ""
2280*6a54128fSAndroid Build Coastguard Worker
2281*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1540
2282*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i has an unallocated %B.
2283*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i has an unallocated %B.  "
2284*6a54128fSAndroid Build Coastguard Workermsgstr ""
2285*6a54128fSAndroid Build Coastguard Worker
2286*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1546
2287*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2288*6a54128fSAndroid Build Coastguard Worker#. @-expanded: '.' directory entry in directory inode %i is not NULL terminated\n
2289*6a54128fSAndroid Build Coastguard Workermsgid "'.' @d @e in @d @i %i is not NULL terminated\n"
2290*6a54128fSAndroid Build Coastguard Workermsgstr ""
2291*6a54128fSAndroid Build Coastguard Worker
2292*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1552
2293*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2294*6a54128fSAndroid Build Coastguard Worker#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
2295*6a54128fSAndroid Build Coastguard Workermsgid "'..' @d @e in @d @i %i is not NULL terminated\n"
2296*6a54128fSAndroid Build Coastguard Workermsgstr ""
2297*6a54128fSAndroid Build Coastguard Worker
2298*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1557
2299*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i (%Q) is an illegal character device.\n
2300*6a54128fSAndroid Build Coastguard Workermsgid "@i %i (%Q) is an @I character @v.\n"
2301*6a54128fSAndroid Build Coastguard Workermsgstr ""
2302*6a54128fSAndroid Build Coastguard Worker
2303*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1562
2304*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i (%Q) is an illegal block device.\n
2305*6a54128fSAndroid Build Coastguard Workermsgid "@i %i (%Q) is an @I @b @v.\n"
2306*6a54128fSAndroid Build Coastguard Workermsgstr ""
2307*6a54128fSAndroid Build Coastguard Worker
2308*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1567
2309*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) is duplicate '.' entry.\n
2310*6a54128fSAndroid Build Coastguard Workermsgid "@E is duplicate '.' @e.\n"
2311*6a54128fSAndroid Build Coastguard Workermsgstr ""
2312*6a54128fSAndroid Build Coastguard Worker
2313*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1572
2314*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) is duplicate '..' entry.\n
2315*6a54128fSAndroid Build Coastguard Workermsgid "@E is duplicate '..' @e.\n"
2316*6a54128fSAndroid Build Coastguard Workermsgstr ""
2317*6a54128fSAndroid Build Coastguard Worker
2318*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1578 e2fsck/problem.c:1963
2319*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2320*6a54128fSAndroid Build Coastguard Workermsgid "Internal error: couldn't find dir_info for %i.\n"
2321*6a54128fSAndroid Build Coastguard Workermsgstr ""
2322*6a54128fSAndroid Build Coastguard Worker
2323*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1583
2324*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has rec_len of %Dr, should be %N.\n
2325*6a54128fSAndroid Build Coastguard Workermsgid "@E has rec_len of %Dr, @s %N.\n"
2326*6a54128fSAndroid Build Coastguard Workermsgstr ""
2327*6a54128fSAndroid Build Coastguard Worker
2328*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1589
2329*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2330*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating icount structure: %m\n
2331*6a54128fSAndroid Build Coastguard Workermsgid "@A icount structure: %m\n"
2332*6a54128fSAndroid Build Coastguard Workermsgstr ""
2333*6a54128fSAndroid Build Coastguard Worker
2334*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1595
2335*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2336*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error iterating over directory blocks: %m\n
2337*6a54128fSAndroid Build Coastguard Workermsgid "Error iterating over @d @bs: %m\n"
2338*6a54128fSAndroid Build Coastguard Workermsgstr ""
2339*6a54128fSAndroid Build Coastguard Worker
2340*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1600
2341*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error reading directory block %b (inode %i): %m\n
2342*6a54128fSAndroid Build Coastguard Workermsgid "Error reading @d @b %b (@i %i): %m\n"
2343*6a54128fSAndroid Build Coastguard Workermsgstr ""
2344*6a54128fSAndroid Build Coastguard Worker
2345*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1605
2346*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error writing directory block %b (inode %i): %m\n
2347*6a54128fSAndroid Build Coastguard Workermsgid "Error writing @d @b %b (@i %i): %m\n"
2348*6a54128fSAndroid Build Coastguard Workermsgstr ""
2349*6a54128fSAndroid Build Coastguard Worker
2350*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1611
2351*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2352*6a54128fSAndroid Build Coastguard Worker#. @-expanded: error allocating new directory block for inode %i (%s): %m\n
2353*6a54128fSAndroid Build Coastguard Workermsgid "@A new @d @b for @i %i (%s): %m\n"
2354*6a54128fSAndroid Build Coastguard Workermsgstr ""
2355*6a54128fSAndroid Build Coastguard Worker
2356*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1617
2357*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2358*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error deallocating inode %i: %m\n
2359*6a54128fSAndroid Build Coastguard Workermsgid "Error deallocating @i %i: %m\n"
2360*6a54128fSAndroid Build Coastguard Workermsgstr ""
2361*6a54128fSAndroid Build Coastguard Worker
2362*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1623
2363*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2364*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory entry for '.' in %p (%i) is big.\n
2365*6a54128fSAndroid Build Coastguard Workermsgid "@d @e for '.' in %p (%i) is big.\n"
2366*6a54128fSAndroid Build Coastguard Workermsgstr ""
2367*6a54128fSAndroid Build Coastguard Worker
2368*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1628
2369*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i (%Q) is an illegal FIFO.\n
2370*6a54128fSAndroid Build Coastguard Workermsgid "@i %i (%Q) is an @I FIFO.\n"
2371*6a54128fSAndroid Build Coastguard Workermsgstr ""
2372*6a54128fSAndroid Build Coastguard Worker
2373*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1633
2374*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i (%Q) is an illegal socket.\n
2375*6a54128fSAndroid Build Coastguard Workermsgid "@i %i (%Q) is an @I socket.\n"
2376*6a54128fSAndroid Build Coastguard Workermsgstr ""
2377*6a54128fSAndroid Build Coastguard Worker
2378*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1638
2379*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Setting filetype for entry '%Dn' in %p (%i) to %N.\n
2380*6a54128fSAndroid Build Coastguard Workermsgid "Setting filetype for @E to %N.\n"
2381*6a54128fSAndroid Build Coastguard Workermsgstr ""
2382*6a54128fSAndroid Build Coastguard Worker
2383*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1643
2384*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
2385*6a54128fSAndroid Build Coastguard Workermsgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
2386*6a54128fSAndroid Build Coastguard Workermsgstr ""
2387*6a54128fSAndroid Build Coastguard Worker
2388*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1648
2389*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
2390*6a54128fSAndroid Build Coastguard Workermsgid "@E has filetype set.\n"
2391*6a54128fSAndroid Build Coastguard Workermsgstr ""
2392*6a54128fSAndroid Build Coastguard Worker
2393*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1653
2394*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has a zero-length name.\n
2395*6a54128fSAndroid Build Coastguard Workermsgid "@E has a @z name.\n"
2396*6a54128fSAndroid Build Coastguard Workermsgstr ""
2397*6a54128fSAndroid Build Coastguard Worker
2398*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1658
2399*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Symlink %Q (inode #%i) is invalid.\n
2400*6a54128fSAndroid Build Coastguard Workermsgid "Symlink %Q (@i #%i) is @n.\n"
2401*6a54128fSAndroid Build Coastguard Workermsgstr ""
2402*6a54128fSAndroid Build Coastguard Worker
2403*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1663
2404*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute block for inode %i (%Q) is invalid (%If).\n
2405*6a54128fSAndroid Build Coastguard Workermsgid "@a @b @F @n (%If).\n"
2406*6a54128fSAndroid Build Coastguard Workermsgstr ""
2407*6a54128fSAndroid Build Coastguard Worker
2408*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1668
2409*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
2410*6a54128fSAndroid Build Coastguard Workermsgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
2411*6a54128fSAndroid Build Coastguard Workermsgstr ""
2412*6a54128fSAndroid Build Coastguard Worker
2413*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1673
2414*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B not referenced\n
2415*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B not referenced\n"
2416*6a54128fSAndroid Build Coastguard Workermsgstr ""
2417*6a54128fSAndroid Build Coastguard Worker
2418*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1678
2419*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B referenced twice\n
2420*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B referenced twice\n"
2421*6a54128fSAndroid Build Coastguard Workermsgstr ""
2422*6a54128fSAndroid Build Coastguard Worker
2423*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1683
2424*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B has bad min hash\n
2425*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B has bad min hash\n"
2426*6a54128fSAndroid Build Coastguard Workermsgstr ""
2427*6a54128fSAndroid Build Coastguard Worker
2428*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1688
2429*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B has bad max hash\n
2430*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B has bad max hash\n"
2431*6a54128fSAndroid Build Coastguard Workermsgstr ""
2432*6a54128fSAndroid Build Coastguard Worker
2433*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1693
2434*6a54128fSAndroid Build Coastguard Worker#. @-expanded: invalid HTREE directory inode %d (%q).
2435*6a54128fSAndroid Build Coastguard Workermsgid "@n @h %d (%q).  "
2436*6a54128fSAndroid Build Coastguard Workermsgstr ""
2437*6a54128fSAndroid Build Coastguard Worker
2438*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1697
2439*6a54128fSAndroid Build Coastguard Worker#. @-expanded: filesystem has large directories, but lacks LARGE_DIR flag in superblock.\n
2440*6a54128fSAndroid Build Coastguard Workermsgid "@f has large directories, but lacks LARGE_DIR flag in @S.\n"
2441*6a54128fSAndroid Build Coastguard Workermsgstr ""
2442*6a54128fSAndroid Build Coastguard Worker
2443*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1702
2444*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d (%q): bad block number %b.\n
2445*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d (%q): bad @b number %b.\n"
2446*6a54128fSAndroid Build Coastguard Workermsgstr ""
2447*6a54128fSAndroid Build Coastguard Worker
2448*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1713
2449*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2450*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: root node is invalid\n
2451*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: root node is @n\n"
2452*6a54128fSAndroid Build Coastguard Workermsgstr ""
2453*6a54128fSAndroid Build Coastguard Worker
2454*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1718
2455*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B has invalid limit (%N)\n
2456*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B has @n limit (%N)\n"
2457*6a54128fSAndroid Build Coastguard Workermsgstr ""
2458*6a54128fSAndroid Build Coastguard Worker
2459*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1723
2460*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B has invalid count (%N)\n
2461*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B has @n count (%N)\n"
2462*6a54128fSAndroid Build Coastguard Workermsgstr ""
2463*6a54128fSAndroid Build Coastguard Worker
2464*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1728
2465*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B has an unordered hash table\n
2466*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B has an unordered hash table\n"
2467*6a54128fSAndroid Build Coastguard Workermsgstr ""
2468*6a54128fSAndroid Build Coastguard Worker
2469*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1733
2470*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: %B has invalid depth (%N)\n
2471*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: %B has @n depth (%N)\n"
2472*6a54128fSAndroid Build Coastguard Workermsgstr ""
2473*6a54128fSAndroid Build Coastguard Worker
2474*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1738
2475*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Duplicate entry '%Dn' in %p (%i) found.
2476*6a54128fSAndroid Build Coastguard Workermsgid "Duplicate @E found.  "
2477*6a54128fSAndroid Build Coastguard Workermsgstr ""
2478*6a54128fSAndroid Build Coastguard Worker
2479*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1743
2480*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2481*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has a non-unique filename.\n
2482*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Rename to %s
2483*6a54128fSAndroid Build Coastguard Workermsgid ""
2484*6a54128fSAndroid Build Coastguard Worker"@E has a non-unique filename.\n"
2485*6a54128fSAndroid Build Coastguard Worker"Rename to %s"
2486*6a54128fSAndroid Build Coastguard Workermsgstr ""
2487*6a54128fSAndroid Build Coastguard Worker
2488*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1748
2489*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Duplicate entry '%Dn' found.\n
2490*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \tMarking %p (%i) to be rebuilt.\n
2491*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
2492*6a54128fSAndroid Build Coastguard Workermsgid ""
2493*6a54128fSAndroid Build Coastguard Worker"Duplicate @e '%Dn' found.\n"
2494*6a54128fSAndroid Build Coastguard Worker"\tMarking %p (%i) to be rebuilt.\n"
2495*6a54128fSAndroid Build Coastguard Worker"\n"
2496*6a54128fSAndroid Build Coastguard Workermsgstr ""
2497*6a54128fSAndroid Build Coastguard Worker
2498*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1753
2499*6a54128fSAndroid Build Coastguard Worker#. @-expanded: i_blocks_hi for inode %i (%Q) is %N, should be zero.\n
2500*6a54128fSAndroid Build Coastguard Workermsgid "i_blocks_hi @F %N, @s zero.\n"
2501*6a54128fSAndroid Build Coastguard Workermsgstr ""
2502*6a54128fSAndroid Build Coastguard Worker
2503*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1758
2504*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Unexpected block in HTREE directory inode %d (%q).\n
2505*6a54128fSAndroid Build Coastguard Workermsgid "Unexpected @b in @h %d (%q).\n"
2506*6a54128fSAndroid Build Coastguard Workermsgstr ""
2507*6a54128fSAndroid Build Coastguard Worker
2508*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1763
2509*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) references inode %Di in group %g where _INODE_UNINIT is set.\n
2510*6a54128fSAndroid Build Coastguard Workermsgid "@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"
2511*6a54128fSAndroid Build Coastguard Workermsgstr ""
2512*6a54128fSAndroid Build Coastguard Worker
2513*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1768
2514*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) references inode %Di found in group %g's unused inodes area.\n
2515*6a54128fSAndroid Build Coastguard Workermsgid "@E references @i %Di found in @g %g's unused inodes area.\n"
2516*6a54128fSAndroid Build Coastguard Workermsgstr ""
2517*6a54128fSAndroid Build Coastguard Worker
2518*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1773
2519*6a54128fSAndroid Build Coastguard Worker#. @-expanded: i_file_acl_hi for inode %i (%Q) is %N, should be zero.\n
2520*6a54128fSAndroid Build Coastguard Workermsgid "i_file_acl_hi @F %N, @s zero.\n"
2521*6a54128fSAndroid Build Coastguard Workermsgstr ""
2522*6a54128fSAndroid Build Coastguard Worker
2523*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1779
2524*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2525*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: root node fails checksum.\n
2526*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: root node fails checksum.\n"
2527*6a54128fSAndroid Build Coastguard Workermsgstr ""
2528*6a54128fSAndroid Build Coastguard Worker
2529*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1785
2530*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2531*6a54128fSAndroid Build Coastguard Worker#. @-expanded: problem in HTREE directory inode %d: internal node fails checksum.\n
2532*6a54128fSAndroid Build Coastguard Workermsgid "@p @h %d: internal node fails checksum.\n"
2533*6a54128fSAndroid Build Coastguard Workermsgstr ""
2534*6a54128fSAndroid Build Coastguard Worker
2535*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1790
2536*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i, %B, offset %N: directory has no checksum.\n
2537*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i, %B, offset %N: @d has no checksum.\n"
2538*6a54128fSAndroid Build Coastguard Workermsgstr ""
2539*6a54128fSAndroid Build Coastguard Worker
2540*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1795
2541*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i, %B: directory passes checks but fails checksum.\n
2542*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i, %B: @d passes checks but fails checksum.\n"
2543*6a54128fSAndroid Build Coastguard Workermsgstr ""
2544*6a54128fSAndroid Build Coastguard Worker
2545*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1800
2546*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Inline directory inode %i size (%N) must be a multiple of 4.\n
2547*6a54128fSAndroid Build Coastguard Workermsgid "Inline @d @i %i size (%N) must be a multiple of 4.\n"
2548*6a54128fSAndroid Build Coastguard Workermsgstr ""
2549*6a54128fSAndroid Build Coastguard Worker
2550*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1806
2551*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2552*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Fixing size of inline directory inode %i failed.\n
2553*6a54128fSAndroid Build Coastguard Workermsgid "Fixing size of inline @d @i %i failed.\n"
2554*6a54128fSAndroid Build Coastguard Workermsgstr ""
2555*6a54128fSAndroid Build Coastguard Worker
2556*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1811
2557*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Encrypted entry '%Dn' in %p (%i) is too short.\n
2558*6a54128fSAndroid Build Coastguard Workermsgid "Encrypted @E is too short.\n"
2559*6a54128fSAndroid Build Coastguard Workermsgstr ""
2560*6a54128fSAndroid Build Coastguard Worker
2561*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1816
2562*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Encrypted entry '%Dn' in %p (%i) references unencrypted inode %Di.\n
2563*6a54128fSAndroid Build Coastguard Workermsgid "Encrypted @E references unencrypted @i %Di.\n"
2564*6a54128fSAndroid Build Coastguard Workermsgstr ""
2565*6a54128fSAndroid Build Coastguard Worker
2566*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1821
2567*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Encrypted entry '%Dn' in %p (%i) references inode %Di, which has a different encryption policy.\n
2568*6a54128fSAndroid Build Coastguard Workermsgid ""
2569*6a54128fSAndroid Build Coastguard Worker"Encrypted @E references @i %Di, which has a different encryption policy.\n"
2570*6a54128fSAndroid Build Coastguard Workermsgstr ""
2571*6a54128fSAndroid Build Coastguard Worker
2572*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1826
2573*6a54128fSAndroid Build Coastguard Worker#. @-expanded: entry '%Dn' in %p (%i) has illegal UTF-8 characters in its name.\n
2574*6a54128fSAndroid Build Coastguard Workermsgid "@E has illegal UTF-8 characters in its name.\n"
2575*6a54128fSAndroid Build Coastguard Workermsgstr ""
2576*6a54128fSAndroid Build Coastguard Worker
2577*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1831
2578*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Duplicate filename entry '%Dn' in %p (%i) found.
2579*6a54128fSAndroid Build Coastguard Workermsgid "Duplicate filename @E found.  "
2580*6a54128fSAndroid Build Coastguard Workermsgstr ""
2581*6a54128fSAndroid Build Coastguard Worker
2582*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1839
2583*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 3: Checking directory connectivity\n
2584*6a54128fSAndroid Build Coastguard Workermsgid "Pass 3: Checking @d connectivity\n"
2585*6a54128fSAndroid Build Coastguard Workermsgstr ""
2586*6a54128fSAndroid Build Coastguard Worker
2587*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1844
2588*6a54128fSAndroid Build Coastguard Worker#. @-expanded: root inode not allocated.
2589*6a54128fSAndroid Build Coastguard Workermsgid "@r not allocated.  "
2590*6a54128fSAndroid Build Coastguard Workermsgstr ""
2591*6a54128fSAndroid Build Coastguard Worker
2592*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1849
2593*6a54128fSAndroid Build Coastguard Worker#. @-expanded: No room in lost+found directory.
2594*6a54128fSAndroid Build Coastguard Workermsgid "No room in @l @d.  "
2595*6a54128fSAndroid Build Coastguard Workermsgstr ""
2596*6a54128fSAndroid Build Coastguard Worker
2597*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1855
2598*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2599*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Unconnected directory inode %i (was in %q)\n
2600*6a54128fSAndroid Build Coastguard Workermsgid "Unconnected @d @i %i (was in %q)\n"
2601*6a54128fSAndroid Build Coastguard Workermsgstr ""
2602*6a54128fSAndroid Build Coastguard Worker
2603*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1860
2604*6a54128fSAndroid Build Coastguard Worker#. @-expanded: /lost+found not found.
2605*6a54128fSAndroid Build Coastguard Workermsgid "/@l not found.  "
2606*6a54128fSAndroid Build Coastguard Workermsgstr ""
2607*6a54128fSAndroid Build Coastguard Worker
2608*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1865
2609*6a54128fSAndroid Build Coastguard Worker#. @-expanded: '..' in %Q (%i) is %P (%j), should be %q (%d).\n
2610*6a54128fSAndroid Build Coastguard Workermsgid "'..' in %Q (%i) is %P (%j), @s %q (%d).\n"
2611*6a54128fSAndroid Build Coastguard Workermsgstr ""
2612*6a54128fSAndroid Build Coastguard Worker
2613*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1871
2614*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2615*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Bad or non-existent /lost+found.  Cannot reconnect.\n
2616*6a54128fSAndroid Build Coastguard Workermsgid "Bad or non-existent /@l.  Cannot reconnect.\n"
2617*6a54128fSAndroid Build Coastguard Workermsgstr ""
2618*6a54128fSAndroid Build Coastguard Worker
2619*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1877
2620*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2621*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Could not expand /lost+found: %m\n
2622*6a54128fSAndroid Build Coastguard Workermsgid "Could not expand /@l: %m\n"
2623*6a54128fSAndroid Build Coastguard Workermsgstr ""
2624*6a54128fSAndroid Build Coastguard Worker
2625*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1883
2626*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2627*6a54128fSAndroid Build Coastguard Workermsgid "Could not reconnect %i: %m\n"
2628*6a54128fSAndroid Build Coastguard Workermsgstr ""
2629*6a54128fSAndroid Build Coastguard Worker
2630*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1889
2631*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2632*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error while trying to find /lost+found: %m\n
2633*6a54128fSAndroid Build Coastguard Workermsgid "Error while trying to find /@l: %m\n"
2634*6a54128fSAndroid Build Coastguard Workermsgstr ""
2635*6a54128fSAndroid Build Coastguard Worker
2636*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1895
2637*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2638*6a54128fSAndroid Build Coastguard Worker#. @-expanded: ext2fs_new_block: %m while trying to create /lost+found directory\n
2639*6a54128fSAndroid Build Coastguard Workermsgid "ext2fs_new_@b: %m while trying to create /@l @d\n"
2640*6a54128fSAndroid Build Coastguard Workermsgstr ""
2641*6a54128fSAndroid Build Coastguard Worker
2642*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1901
2643*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2644*6a54128fSAndroid Build Coastguard Worker#. @-expanded: ext2fs_new_inode: %m while trying to create /lost+found directory\n
2645*6a54128fSAndroid Build Coastguard Workermsgid "ext2fs_new_@i: %m while trying to create /@l @d\n"
2646*6a54128fSAndroid Build Coastguard Workermsgstr ""
2647*6a54128fSAndroid Build Coastguard Worker
2648*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1907
2649*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2650*6a54128fSAndroid Build Coastguard Worker#. @-expanded: ext2fs_new_dir_block: %m while creating new directory block\n
2651*6a54128fSAndroid Build Coastguard Workermsgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
2652*6a54128fSAndroid Build Coastguard Workermsgstr ""
2653*6a54128fSAndroid Build Coastguard Worker
2654*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1913
2655*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2656*6a54128fSAndroid Build Coastguard Worker#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
2657*6a54128fSAndroid Build Coastguard Workermsgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
2658*6a54128fSAndroid Build Coastguard Workermsgstr ""
2659*6a54128fSAndroid Build Coastguard Worker
2660*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1919
2661*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2662*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error while adjusting inode count on inode %i\n
2663*6a54128fSAndroid Build Coastguard Workermsgid "Error while adjusting @i count on @i %i\n"
2664*6a54128fSAndroid Build Coastguard Workermsgstr ""
2665*6a54128fSAndroid Build Coastguard Worker
2666*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1925
2667*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2668*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Couldn't fix parent of inode %i: %m\n
2669*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
2670*6a54128fSAndroid Build Coastguard Workermsgid ""
2671*6a54128fSAndroid Build Coastguard Worker"Couldn't fix parent of @i %i: %m\n"
2672*6a54128fSAndroid Build Coastguard Worker"\n"
2673*6a54128fSAndroid Build Coastguard Workermsgstr ""
2674*6a54128fSAndroid Build Coastguard Worker
2675*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1931
2676*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2677*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Couldn't fix parent of inode %i: Couldn't find parent directory entry\n
2678*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
2679*6a54128fSAndroid Build Coastguard Workermsgid ""
2680*6a54128fSAndroid Build Coastguard Worker"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
2681*6a54128fSAndroid Build Coastguard Worker"\n"
2682*6a54128fSAndroid Build Coastguard Workermsgstr ""
2683*6a54128fSAndroid Build Coastguard Worker
2684*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1942
2685*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2686*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error creating root directory (%s): %m\n
2687*6a54128fSAndroid Build Coastguard Workermsgid "Error creating root @d (%s): %m\n"
2688*6a54128fSAndroid Build Coastguard Workermsgstr ""
2689*6a54128fSAndroid Build Coastguard Worker
2690*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1948
2691*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2692*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error creating /lost+found directory (%s): %m\n
2693*6a54128fSAndroid Build Coastguard Workermsgid "Error creating /@l @d (%s): %m\n"
2694*6a54128fSAndroid Build Coastguard Workermsgstr ""
2695*6a54128fSAndroid Build Coastguard Worker
2696*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1953
2697*6a54128fSAndroid Build Coastguard Worker#. @-expanded: root inode is not a directory; aborting.\n
2698*6a54128fSAndroid Build Coastguard Workermsgid "@r is not a @d; aborting.\n"
2699*6a54128fSAndroid Build Coastguard Workermsgstr ""
2700*6a54128fSAndroid Build Coastguard Worker
2701*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1958
2702*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Cannot proceed without a root inode.\n
2703*6a54128fSAndroid Build Coastguard Workermsgid "Cannot proceed without a @r.\n"
2704*6a54128fSAndroid Build Coastguard Workermsgstr ""
2705*6a54128fSAndroid Build Coastguard Worker
2706*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1969
2707*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2708*6a54128fSAndroid Build Coastguard Worker#. @-expanded: /lost+found is not a directory (ino=%i)\n
2709*6a54128fSAndroid Build Coastguard Workermsgid "/@l is not a @d (ino=%i)\n"
2710*6a54128fSAndroid Build Coastguard Workermsgstr ""
2711*6a54128fSAndroid Build Coastguard Worker
2712*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1974
2713*6a54128fSAndroid Build Coastguard Worker#. @-expanded: /lost+found has inline data\n
2714*6a54128fSAndroid Build Coastguard Workermsgid "/@l has inline data\n"
2715*6a54128fSAndroid Build Coastguard Workermsgstr ""
2716*6a54128fSAndroid Build Coastguard Worker
2717*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1979
2718*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Cannot allocate space for /lost+found.\n
2719*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Place lost files in root directory instead
2720*6a54128fSAndroid Build Coastguard Workermsgid ""
2721*6a54128fSAndroid Build Coastguard Worker"Cannot allocate space for /@l.\n"
2722*6a54128fSAndroid Build Coastguard Worker"Place lost files in root directory instead"
2723*6a54128fSAndroid Build Coastguard Workermsgstr ""
2724*6a54128fSAndroid Build Coastguard Worker
2725*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1984
2726*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Insufficient space to recover lost files!\n
2727*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Move data off the filesystem and re-run e2fsck.\n
2728*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \n
2729*6a54128fSAndroid Build Coastguard Workermsgid ""
2730*6a54128fSAndroid Build Coastguard Worker"Insufficient space to recover lost files!\n"
2731*6a54128fSAndroid Build Coastguard Worker"Move data off the @f and re-run e2fsck.\n"
2732*6a54128fSAndroid Build Coastguard Worker"\n"
2733*6a54128fSAndroid Build Coastguard Workermsgstr ""
2734*6a54128fSAndroid Build Coastguard Worker
2735*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1989
2736*6a54128fSAndroid Build Coastguard Worker#. @-expanded: /lost+found is encrypted\n
2737*6a54128fSAndroid Build Coastguard Workermsgid "/@l is encrypted\n"
2738*6a54128fSAndroid Build Coastguard Workermsgstr ""
2739*6a54128fSAndroid Build Coastguard Worker
2740*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:1995
2741*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2742*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Recursively looped directory inode %i (%p)\n
2743*6a54128fSAndroid Build Coastguard Workermsgid "Recursively looped @d @i %i (%p)\n"
2744*6a54128fSAndroid Build Coastguard Workermsgstr ""
2745*6a54128fSAndroid Build Coastguard Worker
2746*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2002
2747*6a54128fSAndroid Build Coastguard Workermsgid "Pass 3A: Optimizing directories\n"
2748*6a54128fSAndroid Build Coastguard Workermsgstr ""
2749*6a54128fSAndroid Build Coastguard Worker
2750*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2008
2751*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2752*6a54128fSAndroid Build Coastguard Workermsgid "Failed to create dirs_to_hash iterator: %m\n"
2753*6a54128fSAndroid Build Coastguard Workermsgstr ""
2754*6a54128fSAndroid Build Coastguard Worker
2755*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2013
2756*6a54128fSAndroid Build Coastguard Workermsgid "Failed to optimize directory %q (%d): %m\n"
2757*6a54128fSAndroid Build Coastguard Workermsgstr ""
2758*6a54128fSAndroid Build Coastguard Worker
2759*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2018
2760*6a54128fSAndroid Build Coastguard Workermsgid "Optimizing directories: "
2761*6a54128fSAndroid Build Coastguard Workermsgstr ""
2762*6a54128fSAndroid Build Coastguard Worker
2763*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2035
2764*6a54128fSAndroid Build Coastguard Workermsgid "Pass 4: Checking reference counts\n"
2765*6a54128fSAndroid Build Coastguard Workermsgstr ""
2766*6a54128fSAndroid Build Coastguard Worker
2767*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2041
2768*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2769*6a54128fSAndroid Build Coastguard Worker#. @-expanded: unattached zero-length inode %i.
2770*6a54128fSAndroid Build Coastguard Workermsgid "@u @z @i %i.  "
2771*6a54128fSAndroid Build Coastguard Workermsgstr ""
2772*6a54128fSAndroid Build Coastguard Worker
2773*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2047
2774*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2775*6a54128fSAndroid Build Coastguard Worker#. @-expanded: unattached inode %i\n
2776*6a54128fSAndroid Build Coastguard Workermsgid "@u @i %i\n"
2777*6a54128fSAndroid Build Coastguard Workermsgstr ""
2778*6a54128fSAndroid Build Coastguard Worker
2779*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2052
2780*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode %i ref count is %Il, should be %N.
2781*6a54128fSAndroid Build Coastguard Workermsgid "@i %i ref count is %Il, @s %N.  "
2782*6a54128fSAndroid Build Coastguard Workermsgstr ""
2783*6a54128fSAndroid Build Coastguard Worker
2784*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2056
2785*6a54128fSAndroid Build Coastguard Worker#. @-expanded: WARNING: PROGRAMMING BUG IN E2FSCK!\n
2786*6a54128fSAndroid Build Coastguard Worker#. @-expanded: \tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n
2787*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode_link_info[%i] is %N, inode.i_links_count is %Il.  They should be the same!\n
2788*6a54128fSAndroid Build Coastguard Workermsgid ""
2789*6a54128fSAndroid Build Coastguard Worker"WARNING: PROGRAMMING BUG IN E2FSCK!\n"
2790*6a54128fSAndroid Build Coastguard Worker"\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
2791*6a54128fSAndroid Build Coastguard Worker"@i_link_info[%i] is %N, @i.i_links_count is %Il.  They @s the same!\n"
2792*6a54128fSAndroid Build Coastguard Workermsgstr ""
2793*6a54128fSAndroid Build Coastguard Worker
2794*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2063
2795*6a54128fSAndroid Build Coastguard Worker#. @-expanded: extended attribute inode %i ref count is %N, should be %n.
2796*6a54128fSAndroid Build Coastguard Workermsgid "@a @i %i ref count is %N, @s %n. "
2797*6a54128fSAndroid Build Coastguard Workermsgstr ""
2798*6a54128fSAndroid Build Coastguard Worker
2799*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2068
2800*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory exceeds max links, but no DIR_NLINK feature in superblock.\n
2801*6a54128fSAndroid Build Coastguard Workermsgid "@d exceeds max links, but no DIR_NLINK feature in @S.\n"
2802*6a54128fSAndroid Build Coastguard Workermsgstr ""
2803*6a54128fSAndroid Build Coastguard Worker
2804*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2073
2805*6a54128fSAndroid Build Coastguard Worker#. @-expanded: directory inode %i ref count set to overflow but could be exact value %N.
2806*6a54128fSAndroid Build Coastguard Workermsgid "@d @i %i ref count set to overflow but could be exact value %N.  "
2807*6a54128fSAndroid Build Coastguard Workermsgstr ""
2808*6a54128fSAndroid Build Coastguard Worker
2809*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2080
2810*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Pass 5: Checking group summary information\n
2811*6a54128fSAndroid Build Coastguard Workermsgid "Pass 5: Checking @g summary information\n"
2812*6a54128fSAndroid Build Coastguard Workermsgstr ""
2813*6a54128fSAndroid Build Coastguard Worker
2814*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2085
2815*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Padding at end of inode bitmap is not set.
2816*6a54128fSAndroid Build Coastguard Workermsgid "Padding at end of @i @B is not set. "
2817*6a54128fSAndroid Build Coastguard Workermsgstr ""
2818*6a54128fSAndroid Build Coastguard Worker
2819*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2090
2820*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Padding at end of block bitmap is not set.
2821*6a54128fSAndroid Build Coastguard Workermsgid "Padding at end of @b @B is not set. "
2822*6a54128fSAndroid Build Coastguard Workermsgstr ""
2823*6a54128fSAndroid Build Coastguard Worker
2824*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2095
2825*6a54128fSAndroid Build Coastguard Worker#. @-expanded: block bitmap differences:
2826*6a54128fSAndroid Build Coastguard Workermsgid "@b @B differences: "
2827*6a54128fSAndroid Build Coastguard Workermsgstr ""
2828*6a54128fSAndroid Build Coastguard Worker
2829*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2117
2830*6a54128fSAndroid Build Coastguard Worker#. @-expanded: inode bitmap differences:
2831*6a54128fSAndroid Build Coastguard Workermsgid "@i @B differences: "
2832*6a54128fSAndroid Build Coastguard Workermsgstr ""
2833*6a54128fSAndroid Build Coastguard Worker
2834*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2139
2835*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Free inodes count wrong for group #%g (%i, counted=%j).\n
2836*6a54128fSAndroid Build Coastguard Workermsgid "Free @is count wrong for @g #%g (%i, counted=%j).\n"
2837*6a54128fSAndroid Build Coastguard Workermsgstr ""
2838*6a54128fSAndroid Build Coastguard Worker
2839*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2144
2840*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Directories count wrong for group #%g (%i, counted=%j).\n
2841*6a54128fSAndroid Build Coastguard Workermsgid "Directories count wrong for @g #%g (%i, counted=%j).\n"
2842*6a54128fSAndroid Build Coastguard Workermsgstr ""
2843*6a54128fSAndroid Build Coastguard Worker
2844*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2149
2845*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Free inodes count wrong (%i, counted=%j).\n
2846*6a54128fSAndroid Build Coastguard Workermsgid "Free @is count wrong (%i, counted=%j).\n"
2847*6a54128fSAndroid Build Coastguard Workermsgstr ""
2848*6a54128fSAndroid Build Coastguard Worker
2849*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2154
2850*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Free blocks count wrong for group #%g (%b, counted=%c).\n
2851*6a54128fSAndroid Build Coastguard Workermsgid "Free @bs count wrong for @g #%g (%b, counted=%c).\n"
2852*6a54128fSAndroid Build Coastguard Workermsgstr ""
2853*6a54128fSAndroid Build Coastguard Worker
2854*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2159
2855*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Free blocks count wrong (%b, counted=%c).\n
2856*6a54128fSAndroid Build Coastguard Workermsgid "Free @bs count wrong (%b, counted=%c).\n"
2857*6a54128fSAndroid Build Coastguard Workermsgstr ""
2858*6a54128fSAndroid Build Coastguard Worker
2859*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2164
2860*6a54128fSAndroid Build Coastguard Worker#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
2861*6a54128fSAndroid Build Coastguard Worker#. @-expanded: endpoints (%i, %j)\n
2862*6a54128fSAndroid Build Coastguard Workermsgid ""
2863*6a54128fSAndroid Build Coastguard Worker"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
2864*6a54128fSAndroid Build Coastguard Worker"endpoints (%i, %j)\n"
2865*6a54128fSAndroid Build Coastguard Workermsgstr ""
2866*6a54128fSAndroid Build Coastguard Worker
2867*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2170
2868*6a54128fSAndroid Build Coastguard Workermsgid "Internal error: fudging end of bitmap (%N)\n"
2869*6a54128fSAndroid Build Coastguard Workermsgstr ""
2870*6a54128fSAndroid Build Coastguard Worker
2871*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2176
2872*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2873*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error copying in replacement inode bitmap: %m\n
2874*6a54128fSAndroid Build Coastguard Workermsgid "Error copying in replacement @i @B: %m\n"
2875*6a54128fSAndroid Build Coastguard Workermsgstr ""
2876*6a54128fSAndroid Build Coastguard Worker
2877*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2182
2878*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2879*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error copying in replacement block bitmap: %m\n
2880*6a54128fSAndroid Build Coastguard Workermsgid "Error copying in replacement @b @B: %m\n"
2881*6a54128fSAndroid Build Coastguard Workermsgstr ""
2882*6a54128fSAndroid Build Coastguard Worker
2883*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2212
2884*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2885*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g block(s) in use but group is marked BLOCK_UNINIT\n
2886*6a54128fSAndroid Build Coastguard Workermsgid "@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"
2887*6a54128fSAndroid Build Coastguard Workermsgstr ""
2888*6a54128fSAndroid Build Coastguard Worker
2889*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2218
2890*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2891*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g inode(s) in use but group is marked INODE_UNINIT\n
2892*6a54128fSAndroid Build Coastguard Workermsgid "@g %g @i(s) in use but @g is marked INODE_UNINIT\n"
2893*6a54128fSAndroid Build Coastguard Workermsgstr ""
2894*6a54128fSAndroid Build Coastguard Worker
2895*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2224
2896*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2897*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g inode bitmap does not match checksum.\n
2898*6a54128fSAndroid Build Coastguard Workermsgid "@g %g @i @B does not match checksum.\n"
2899*6a54128fSAndroid Build Coastguard Workermsgstr ""
2900*6a54128fSAndroid Build Coastguard Worker
2901*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2230
2902*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2903*6a54128fSAndroid Build Coastguard Worker#. @-expanded: group %g block bitmap does not match checksum.\n
2904*6a54128fSAndroid Build Coastguard Workermsgid "@g %g @b @B does not match checksum.\n"
2905*6a54128fSAndroid Build Coastguard Workermsgstr ""
2906*6a54128fSAndroid Build Coastguard Worker
2907*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2237
2908*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Recreate journal
2909*6a54128fSAndroid Build Coastguard Workermsgid "Recreate @j"
2910*6a54128fSAndroid Build Coastguard Workermsgstr ""
2911*6a54128fSAndroid Build Coastguard Worker
2912*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2242
2913*6a54128fSAndroid Build Coastguard Workermsgid "Update quota info for quota type %N"
2914*6a54128fSAndroid Build Coastguard Workermsgstr ""
2915*6a54128fSAndroid Build Coastguard Worker
2916*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2248
2917*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2918*6a54128fSAndroid Build Coastguard Worker#. @-expanded: Error setting block group checksum info: %m\n
2919*6a54128fSAndroid Build Coastguard Workermsgid "Error setting @b @g checksum info: %m\n"
2920*6a54128fSAndroid Build Coastguard Workermsgstr ""
2921*6a54128fSAndroid Build Coastguard Worker
2922*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2254
2923*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2924*6a54128fSAndroid Build Coastguard Workermsgid "Error writing file system info: %m\n"
2925*6a54128fSAndroid Build Coastguard Workermsgstr ""
2926*6a54128fSAndroid Build Coastguard Worker
2927*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2260
2928*6a54128fSAndroid Build Coastguard Worker#, no-c-format
2929*6a54128fSAndroid Build Coastguard Workermsgid "Error flushing writes to storage device: %m\n"
2930*6a54128fSAndroid Build Coastguard Workermsgstr ""
2931*6a54128fSAndroid Build Coastguard Worker
2932*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2265
2933*6a54128fSAndroid Build Coastguard Workermsgid "Error writing quota info for quota type %N: %m\n"
2934*6a54128fSAndroid Build Coastguard Workermsgstr ""
2935*6a54128fSAndroid Build Coastguard Worker
2936*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2430
2937*6a54128fSAndroid Build Coastguard Worker#, c-format
2938*6a54128fSAndroid Build Coastguard Workermsgid "Unhandled error code (0x%x)!\n"
2939*6a54128fSAndroid Build Coastguard Workermsgstr ""
2940*6a54128fSAndroid Build Coastguard Worker
2941*6a54128fSAndroid Build Coastguard Worker#: e2fsck/problem.c:2558 e2fsck/problem.c:2562
2942*6a54128fSAndroid Build Coastguard Workermsgid "IGNORED"
2943*6a54128fSAndroid Build Coastguard Workermsgstr ""
2944*6a54128fSAndroid Build Coastguard Worker
2945*6a54128fSAndroid Build Coastguard Worker#: e2fsck/quota.c:30 e2fsck/quota.c:37 e2fsck/quota.c:50 e2fsck/quota.c:59
2946*6a54128fSAndroid Build Coastguard Workermsgid "in move_quota_inode"
2947*6a54128fSAndroid Build Coastguard Workermsgstr ""
2948*6a54128fSAndroid Build Coastguard Worker
2949*6a54128fSAndroid Build Coastguard Worker#: e2fsck/scantest.c:79
2950*6a54128fSAndroid Build Coastguard Worker#, c-format
2951*6a54128fSAndroid Build Coastguard Workermsgid "Memory used: %lu, elapsed time: %6.3f/%6.3f/%6.3f\n"
2952*6a54128fSAndroid Build Coastguard Workermsgstr ""
2953*6a54128fSAndroid Build Coastguard Worker
2954*6a54128fSAndroid Build Coastguard Worker#: e2fsck/scantest.c:98
2955*6a54128fSAndroid Build Coastguard Worker#, c-format
2956*6a54128fSAndroid Build Coastguard Workermsgid "size of inode=%d\n"
2957*6a54128fSAndroid Build Coastguard Workermsgstr ""
2958*6a54128fSAndroid Build Coastguard Worker
2959*6a54128fSAndroid Build Coastguard Worker#: e2fsck/scantest.c:114 misc/e2image.c:1331
2960*6a54128fSAndroid Build Coastguard Workermsgid "while opening inode scan"
2961*6a54128fSAndroid Build Coastguard Workermsgstr ""
2962*6a54128fSAndroid Build Coastguard Worker
2963*6a54128fSAndroid Build Coastguard Worker#: e2fsck/scantest.c:119
2964*6a54128fSAndroid Build Coastguard Workermsgid "while starting inode scan"
2965*6a54128fSAndroid Build Coastguard Workermsgstr ""
2966*6a54128fSAndroid Build Coastguard Worker
2967*6a54128fSAndroid Build Coastguard Worker#: e2fsck/scantest.c:130
2968*6a54128fSAndroid Build Coastguard Workermsgid "while doing inode scan"
2969*6a54128fSAndroid Build Coastguard Workermsgstr ""
2970*6a54128fSAndroid Build Coastguard Worker
2971*6a54128fSAndroid Build Coastguard Worker#: e2fsck/super.c:224
2972*6a54128fSAndroid Build Coastguard Worker#, c-format
2973*6a54128fSAndroid Build Coastguard Workermsgid "while calling ext2fs_block_iterate for inode %u"
2974*6a54128fSAndroid Build Coastguard Workermsgstr ""
2975*6a54128fSAndroid Build Coastguard Worker
2976*6a54128fSAndroid Build Coastguard Worker#: e2fsck/super.c:249
2977*6a54128fSAndroid Build Coastguard Worker#, c-format
2978*6a54128fSAndroid Build Coastguard Workermsgid "while calling ext2fs_adjust_ea_refcount2 for inode %u"
2979*6a54128fSAndroid Build Coastguard Workermsgstr ""
2980*6a54128fSAndroid Build Coastguard Worker
2981*6a54128fSAndroid Build Coastguard Worker#: e2fsck/super.c:375
2982*6a54128fSAndroid Build Coastguard Workermsgid "Truncating"
2983*6a54128fSAndroid Build Coastguard Workermsgstr ""
2984*6a54128fSAndroid Build Coastguard Worker
2985*6a54128fSAndroid Build Coastguard Worker#: e2fsck/super.c:376
2986*6a54128fSAndroid Build Coastguard Workermsgid "Clearing"
2987*6a54128fSAndroid Build Coastguard Workermsgstr ""
2988*6a54128fSAndroid Build Coastguard Worker
2989*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:79
2990*6a54128fSAndroid Build Coastguard Worker#, c-format
2991*6a54128fSAndroid Build Coastguard Workermsgid ""
2992*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-panyrcdfktvDFV] [-b superblock] [-B blocksize]\n"
2993*6a54128fSAndroid Build Coastguard Worker"\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
2994*6a54128fSAndroid Build Coastguard Worker"\t\t[-E extended-options] [-z undo_file] device\n"
2995*6a54128fSAndroid Build Coastguard Workermsgstr ""
2996*6a54128fSAndroid Build Coastguard Worker
2997*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:84
2998*6a54128fSAndroid Build Coastguard Workermsgid ""
2999*6a54128fSAndroid Build Coastguard Worker"\n"
3000*6a54128fSAndroid Build Coastguard Worker"Emergency help:\n"
3001*6a54128fSAndroid Build Coastguard Worker" -p                   Automatic repair (no questions)\n"
3002*6a54128fSAndroid Build Coastguard Worker" -n                   Make no changes to the filesystem\n"
3003*6a54128fSAndroid Build Coastguard Worker" -y                   Assume \"yes\" to all questions\n"
3004*6a54128fSAndroid Build Coastguard Worker" -c                   Check for bad blocks and add them to the badblock "
3005*6a54128fSAndroid Build Coastguard Worker"list\n"
3006*6a54128fSAndroid Build Coastguard Worker" -f                   Force checking even if filesystem is marked clean\n"
3007*6a54128fSAndroid Build Coastguard Workermsgstr ""
3008*6a54128fSAndroid Build Coastguard Worker
3009*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:90
3010*6a54128fSAndroid Build Coastguard Workermsgid ""
3011*6a54128fSAndroid Build Coastguard Worker" -v                   Be verbose\n"
3012*6a54128fSAndroid Build Coastguard Worker" -b superblock        Use alternative superblock\n"
3013*6a54128fSAndroid Build Coastguard Worker" -B blocksize         Force blocksize when looking for superblock\n"
3014*6a54128fSAndroid Build Coastguard Worker" -j external_journal  Set location of the external journal\n"
3015*6a54128fSAndroid Build Coastguard Worker" -l bad_blocks_file   Add to badblocks list\n"
3016*6a54128fSAndroid Build Coastguard Worker" -L bad_blocks_file   Set badblocks list\n"
3017*6a54128fSAndroid Build Coastguard Worker" -z undo_file         Create an undo file\n"
3018*6a54128fSAndroid Build Coastguard Workermsgstr ""
3019*6a54128fSAndroid Build Coastguard Worker
3020*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:138
3021*6a54128fSAndroid Build Coastguard Worker#, c-format
3022*6a54128fSAndroid Build Coastguard Workermsgid "%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks\n"
3023*6a54128fSAndroid Build Coastguard Workermsgstr ""
3024*6a54128fSAndroid Build Coastguard Worker
3025*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:165
3026*6a54128fSAndroid Build Coastguard Worker#, c-format
3027*6a54128fSAndroid Build Coastguard Workermsgid ""
3028*6a54128fSAndroid Build Coastguard Worker"\n"
3029*6a54128fSAndroid Build Coastguard Worker"%12u inode used (%2.2f%%, out of %u)\n"
3030*6a54128fSAndroid Build Coastguard Workermsgid_plural ""
3031*6a54128fSAndroid Build Coastguard Worker"\n"
3032*6a54128fSAndroid Build Coastguard Worker"%12u inodes used (%2.2f%%, out of %u)\n"
3033*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3034*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3035*6a54128fSAndroid Build Coastguard Worker
3036*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:169
3037*6a54128fSAndroid Build Coastguard Worker#, c-format
3038*6a54128fSAndroid Build Coastguard Workermsgid "%12u non-contiguous file (%0d.%d%%)\n"
3039*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u non-contiguous files (%0d.%d%%)\n"
3040*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3041*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3042*6a54128fSAndroid Build Coastguard Worker
3043*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:174
3044*6a54128fSAndroid Build Coastguard Worker#, c-format
3045*6a54128fSAndroid Build Coastguard Workermsgid "%12u non-contiguous directory (%0d.%d%%)\n"
3046*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u non-contiguous directories (%0d.%d%%)\n"
3047*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3048*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3049*6a54128fSAndroid Build Coastguard Worker
3050*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:179
3051*6a54128fSAndroid Build Coastguard Worker#, c-format
3052*6a54128fSAndroid Build Coastguard Workermsgid "             # of inodes with ind/dind/tind blocks: %u/%u/%u\n"
3053*6a54128fSAndroid Build Coastguard Workermsgstr ""
3054*6a54128fSAndroid Build Coastguard Worker
3055*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:187
3056*6a54128fSAndroid Build Coastguard Workermsgid "             Extent depth histogram: "
3057*6a54128fSAndroid Build Coastguard Workermsgstr ""
3058*6a54128fSAndroid Build Coastguard Worker
3059*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:196
3060*6a54128fSAndroid Build Coastguard Worker#, c-format
3061*6a54128fSAndroid Build Coastguard Workermsgid "%12llu block used (%2.2f%%, out of %llu)\n"
3062*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12llu blocks used (%2.2f%%, out of %llu)\n"
3063*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3064*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3065*6a54128fSAndroid Build Coastguard Worker
3066*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:201
3067*6a54128fSAndroid Build Coastguard Worker#, c-format
3068*6a54128fSAndroid Build Coastguard Workermsgid "%12u bad block\n"
3069*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u bad blocks\n"
3070*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3071*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3072*6a54128fSAndroid Build Coastguard Worker
3073*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:203
3074*6a54128fSAndroid Build Coastguard Worker#, c-format
3075*6a54128fSAndroid Build Coastguard Workermsgid "%12u large file\n"
3076*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u large files\n"
3077*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3078*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3079*6a54128fSAndroid Build Coastguard Worker
3080*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:205
3081*6a54128fSAndroid Build Coastguard Worker#, c-format
3082*6a54128fSAndroid Build Coastguard Workermsgid ""
3083*6a54128fSAndroid Build Coastguard Worker"\n"
3084*6a54128fSAndroid Build Coastguard Worker"%12u regular file\n"
3085*6a54128fSAndroid Build Coastguard Workermsgid_plural ""
3086*6a54128fSAndroid Build Coastguard Worker"\n"
3087*6a54128fSAndroid Build Coastguard Worker"%12u regular files\n"
3088*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3089*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3090*6a54128fSAndroid Build Coastguard Worker
3091*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:207
3092*6a54128fSAndroid Build Coastguard Worker#, c-format
3093*6a54128fSAndroid Build Coastguard Workermsgid "%12u directory\n"
3094*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u directories\n"
3095*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3096*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3097*6a54128fSAndroid Build Coastguard Worker
3098*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:209
3099*6a54128fSAndroid Build Coastguard Worker#, c-format
3100*6a54128fSAndroid Build Coastguard Workermsgid "%12u character device file\n"
3101*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u character device files\n"
3102*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3103*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3104*6a54128fSAndroid Build Coastguard Worker
3105*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:212
3106*6a54128fSAndroid Build Coastguard Worker#, c-format
3107*6a54128fSAndroid Build Coastguard Workermsgid "%12u block device file\n"
3108*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u block device files\n"
3109*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3110*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3111*6a54128fSAndroid Build Coastguard Worker
3112*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:214
3113*6a54128fSAndroid Build Coastguard Worker#, c-format
3114*6a54128fSAndroid Build Coastguard Workermsgid "%12u fifo\n"
3115*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u fifos\n"
3116*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3117*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3118*6a54128fSAndroid Build Coastguard Worker
3119*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:216
3120*6a54128fSAndroid Build Coastguard Worker#, c-format
3121*6a54128fSAndroid Build Coastguard Workermsgid "%12u link\n"
3122*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u links\n"
3123*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3124*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3125*6a54128fSAndroid Build Coastguard Worker
3126*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:218
3127*6a54128fSAndroid Build Coastguard Worker#, c-format
3128*6a54128fSAndroid Build Coastguard Workermsgid "%12u symbolic link"
3129*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u symbolic links"
3130*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3131*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3132*6a54128fSAndroid Build Coastguard Worker
3133*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:220
3134*6a54128fSAndroid Build Coastguard Worker#, c-format
3135*6a54128fSAndroid Build Coastguard Workermsgid " (%u fast symbolic link)\n"
3136*6a54128fSAndroid Build Coastguard Workermsgid_plural " (%u fast symbolic links)\n"
3137*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3138*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3139*6a54128fSAndroid Build Coastguard Worker
3140*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:224
3141*6a54128fSAndroid Build Coastguard Worker#, c-format
3142*6a54128fSAndroid Build Coastguard Workermsgid "%12u socket\n"
3143*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u sockets\n"
3144*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3145*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3146*6a54128fSAndroid Build Coastguard Worker
3147*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:228
3148*6a54128fSAndroid Build Coastguard Worker#, c-format
3149*6a54128fSAndroid Build Coastguard Workermsgid "%12u file\n"
3150*6a54128fSAndroid Build Coastguard Workermsgid_plural "%12u files\n"
3151*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
3152*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
3153*6a54128fSAndroid Build Coastguard Worker
3154*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:241 misc/badblocks.c:1001 misc/tune2fs.c:3085 misc/util.c:135
3155*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:359
3156*6a54128fSAndroid Build Coastguard Worker#, c-format
3157*6a54128fSAndroid Build Coastguard Workermsgid "while determining whether %s is mounted."
3158*6a54128fSAndroid Build Coastguard Workermsgstr ""
3159*6a54128fSAndroid Build Coastguard Worker
3160*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:262
3161*6a54128fSAndroid Build Coastguard Worker#, c-format
3162*6a54128fSAndroid Build Coastguard Workermsgid "Warning!  %s is mounted.\n"
3163*6a54128fSAndroid Build Coastguard Workermsgstr ""
3164*6a54128fSAndroid Build Coastguard Worker
3165*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:265
3166*6a54128fSAndroid Build Coastguard Worker#, c-format
3167*6a54128fSAndroid Build Coastguard Workermsgid "Warning!  %s is in use.\n"
3168*6a54128fSAndroid Build Coastguard Workermsgstr ""
3169*6a54128fSAndroid Build Coastguard Worker
3170*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:271
3171*6a54128fSAndroid Build Coastguard Worker#, c-format
3172*6a54128fSAndroid Build Coastguard Workermsgid "%s is mounted.\n"
3173*6a54128fSAndroid Build Coastguard Workermsgstr ""
3174*6a54128fSAndroid Build Coastguard Worker
3175*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:273
3176*6a54128fSAndroid Build Coastguard Worker#, c-format
3177*6a54128fSAndroid Build Coastguard Workermsgid "%s is in use.\n"
3178*6a54128fSAndroid Build Coastguard Workermsgstr ""
3179*6a54128fSAndroid Build Coastguard Worker
3180*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:275
3181*6a54128fSAndroid Build Coastguard Workermsgid ""
3182*6a54128fSAndroid Build Coastguard Worker"Cannot continue, aborting.\n"
3183*6a54128fSAndroid Build Coastguard Worker"\n"
3184*6a54128fSAndroid Build Coastguard Workermsgstr ""
3185*6a54128fSAndroid Build Coastguard Worker
3186*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:277
3187*6a54128fSAndroid Build Coastguard Workermsgid ""
3188*6a54128fSAndroid Build Coastguard Worker"\n"
3189*6a54128fSAndroid Build Coastguard Worker"\n"
3190*6a54128fSAndroid Build Coastguard Worker"WARNING!!!  The filesystem is mounted.   If you continue you ***WILL***\n"
3191*6a54128fSAndroid Build Coastguard Worker"cause ***SEVERE*** filesystem damage.\n"
3192*6a54128fSAndroid Build Coastguard Worker"\n"
3193*6a54128fSAndroid Build Coastguard Workermsgstr ""
3194*6a54128fSAndroid Build Coastguard Worker
3195*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:282
3196*6a54128fSAndroid Build Coastguard Workermsgid "Do you really want to continue"
3197*6a54128fSAndroid Build Coastguard Workermsgstr ""
3198*6a54128fSAndroid Build Coastguard Worker
3199*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:284
3200*6a54128fSAndroid Build Coastguard Workermsgid "check aborted.\n"
3201*6a54128fSAndroid Build Coastguard Workermsgstr ""
3202*6a54128fSAndroid Build Coastguard Worker
3203*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:378
3204*6a54128fSAndroid Build Coastguard Workermsgid " contains a file system with errors"
3205*6a54128fSAndroid Build Coastguard Workermsgstr ""
3206*6a54128fSAndroid Build Coastguard Worker
3207*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:380
3208*6a54128fSAndroid Build Coastguard Workermsgid " was not cleanly unmounted"
3209*6a54128fSAndroid Build Coastguard Workermsgstr ""
3210*6a54128fSAndroid Build Coastguard Worker
3211*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:382
3212*6a54128fSAndroid Build Coastguard Workermsgid " primary superblock features different from backup"
3213*6a54128fSAndroid Build Coastguard Workermsgstr ""
3214*6a54128fSAndroid Build Coastguard Worker
3215*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:386
3216*6a54128fSAndroid Build Coastguard Worker#, c-format
3217*6a54128fSAndroid Build Coastguard Workermsgid " has been mounted %u times without being checked"
3218*6a54128fSAndroid Build Coastguard Workermsgstr ""
3219*6a54128fSAndroid Build Coastguard Worker
3220*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:393
3221*6a54128fSAndroid Build Coastguard Workermsgid " has filesystem last checked time in the future"
3222*6a54128fSAndroid Build Coastguard Workermsgstr ""
3223*6a54128fSAndroid Build Coastguard Worker
3224*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:399
3225*6a54128fSAndroid Build Coastguard Worker#, c-format
3226*6a54128fSAndroid Build Coastguard Workermsgid " has gone %u days without being checked"
3227*6a54128fSAndroid Build Coastguard Workermsgstr ""
3228*6a54128fSAndroid Build Coastguard Worker
3229*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:407
3230*6a54128fSAndroid Build Coastguard Workermsgid "ignoring check interval, broken_system_clock set\n"
3231*6a54128fSAndroid Build Coastguard Workermsgstr ""
3232*6a54128fSAndroid Build Coastguard Worker
3233*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:413
3234*6a54128fSAndroid Build Coastguard Workermsgid ", check forced.\n"
3235*6a54128fSAndroid Build Coastguard Workermsgstr ""
3236*6a54128fSAndroid Build Coastguard Worker
3237*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:446
3238*6a54128fSAndroid Build Coastguard Worker#, c-format
3239*6a54128fSAndroid Build Coastguard Workermsgid "%s: clean, %u/%u files, %llu/%llu blocks"
3240*6a54128fSAndroid Build Coastguard Workermsgstr ""
3241*6a54128fSAndroid Build Coastguard Worker
3242*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:466
3243*6a54128fSAndroid Build Coastguard Workermsgid " (check deferred; on battery)"
3244*6a54128fSAndroid Build Coastguard Workermsgstr ""
3245*6a54128fSAndroid Build Coastguard Worker
3246*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:469
3247*6a54128fSAndroid Build Coastguard Workermsgid " (check after next mount)"
3248*6a54128fSAndroid Build Coastguard Workermsgstr ""
3249*6a54128fSAndroid Build Coastguard Worker
3250*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:471
3251*6a54128fSAndroid Build Coastguard Worker#, c-format
3252*6a54128fSAndroid Build Coastguard Workermsgid " (check in %ld mounts)"
3253*6a54128fSAndroid Build Coastguard Workermsgstr ""
3254*6a54128fSAndroid Build Coastguard Worker
3255*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:621
3256*6a54128fSAndroid Build Coastguard Worker#, c-format
3257*6a54128fSAndroid Build Coastguard Workermsgid "ERROR: Couldn't open /dev/null (%s)\n"
3258*6a54128fSAndroid Build Coastguard Workermsgstr ""
3259*6a54128fSAndroid Build Coastguard Worker
3260*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:692
3261*6a54128fSAndroid Build Coastguard Workermsgid "Invalid EA version.\n"
3262*6a54128fSAndroid Build Coastguard Workermsgstr ""
3263*6a54128fSAndroid Build Coastguard Worker
3264*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:705
3265*6a54128fSAndroid Build Coastguard Workermsgid "Invalid readahead buffer size.\n"
3266*6a54128fSAndroid Build Coastguard Workermsgstr ""
3267*6a54128fSAndroid Build Coastguard Worker
3268*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:768
3269*6a54128fSAndroid Build Coastguard Worker#, c-format
3270*6a54128fSAndroid Build Coastguard Workermsgid "Unknown extended option: %s\n"
3271*6a54128fSAndroid Build Coastguard Workermsgstr ""
3272*6a54128fSAndroid Build Coastguard Worker
3273*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:776
3274*6a54128fSAndroid Build Coastguard Workermsgid ""
3275*6a54128fSAndroid Build Coastguard Worker"\n"
3276*6a54128fSAndroid Build Coastguard Worker"Extended options are separated by commas, and may take an argument which\n"
3277*6a54128fSAndroid Build Coastguard Worker"is set off by an equals ('=') sign.  Valid extended options are:\n"
3278*6a54128fSAndroid Build Coastguard Worker"\n"
3279*6a54128fSAndroid Build Coastguard Workermsgstr ""
3280*6a54128fSAndroid Build Coastguard Worker
3281*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:780
3282*6a54128fSAndroid Build Coastguard Workermsgid "\tea_ver=<ea_version (1 or 2)>\n"
3283*6a54128fSAndroid Build Coastguard Workermsgstr ""
3284*6a54128fSAndroid Build Coastguard Worker
3285*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:789
3286*6a54128fSAndroid Build Coastguard Workermsgid "\treadahead_kb=<buffer size>\n"
3287*6a54128fSAndroid Build Coastguard Workermsgstr ""
3288*6a54128fSAndroid Build Coastguard Worker
3289*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:802
3290*6a54128fSAndroid Build Coastguard Worker#, c-format
3291*6a54128fSAndroid Build Coastguard Workermsgid ""
3292*6a54128fSAndroid Build Coastguard Worker"Syntax error in e2fsck config file (%s, line #%d)\n"
3293*6a54128fSAndroid Build Coastguard Worker"\t%s\n"
3294*6a54128fSAndroid Build Coastguard Workermsgstr ""
3295*6a54128fSAndroid Build Coastguard Worker
3296*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:875
3297*6a54128fSAndroid Build Coastguard Worker#, c-format
3298*6a54128fSAndroid Build Coastguard Workermsgid "Error validating file descriptor %d: %s\n"
3299*6a54128fSAndroid Build Coastguard Workermsgstr ""
3300*6a54128fSAndroid Build Coastguard Worker
3301*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:879
3302*6a54128fSAndroid Build Coastguard Workermsgid "Invalid completion information file descriptor"
3303*6a54128fSAndroid Build Coastguard Workermsgstr ""
3304*6a54128fSAndroid Build Coastguard Worker
3305*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:894
3306*6a54128fSAndroid Build Coastguard Workermsgid "Only one of the options -p/-a, -n or -y may be specified."
3307*6a54128fSAndroid Build Coastguard Workermsgstr ""
3308*6a54128fSAndroid Build Coastguard Worker
3309*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:915
3310*6a54128fSAndroid Build Coastguard Worker#, c-format
3311*6a54128fSAndroid Build Coastguard Workermsgid "The -t option is not supported on this version of e2fsck.\n"
3312*6a54128fSAndroid Build Coastguard Workermsgstr ""
3313*6a54128fSAndroid Build Coastguard Worker
3314*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:947 e2fsck/unix.c:1025 misc/e2initrd_helper.c:331
3315*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1783 misc/tune2fs.c:2083 misc/tune2fs.c:2101
3316*6a54128fSAndroid Build Coastguard Worker#, c-format
3317*6a54128fSAndroid Build Coastguard Workermsgid "Unable to resolve '%s'"
3318*6a54128fSAndroid Build Coastguard Workermsgstr ""
3319*6a54128fSAndroid Build Coastguard Worker
3320*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1004
3321*6a54128fSAndroid Build Coastguard Workermsgid "The -n and -D options are incompatible."
3322*6a54128fSAndroid Build Coastguard Workermsgstr ""
3323*6a54128fSAndroid Build Coastguard Worker
3324*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1009
3325*6a54128fSAndroid Build Coastguard Workermsgid "The -n and -c options are incompatible."
3326*6a54128fSAndroid Build Coastguard Workermsgstr ""
3327*6a54128fSAndroid Build Coastguard Worker
3328*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1014
3329*6a54128fSAndroid Build Coastguard Workermsgid "The -n and -l/-L options are incompatible."
3330*6a54128fSAndroid Build Coastguard Workermsgstr ""
3331*6a54128fSAndroid Build Coastguard Worker
3332*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1038
3333*6a54128fSAndroid Build Coastguard Workermsgid "The -D and -E fixes_only options are incompatible."
3334*6a54128fSAndroid Build Coastguard Workermsgstr ""
3335*6a54128fSAndroid Build Coastguard Worker
3336*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1044
3337*6a54128fSAndroid Build Coastguard Workermsgid "The -E bmap2extent and fixes_only options are incompatible."
3338*6a54128fSAndroid Build Coastguard Workermsgstr ""
3339*6a54128fSAndroid Build Coastguard Worker
3340*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1095
3341*6a54128fSAndroid Build Coastguard Worker#, c-format
3342*6a54128fSAndroid Build Coastguard Workermsgid "while opening %s for flushing"
3343*6a54128fSAndroid Build Coastguard Workermsgstr ""
3344*6a54128fSAndroid Build Coastguard Worker
3345*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1101 resize/main.c:391
3346*6a54128fSAndroid Build Coastguard Worker#, c-format
3347*6a54128fSAndroid Build Coastguard Workermsgid "while trying to flush %s"
3348*6a54128fSAndroid Build Coastguard Workermsgstr ""
3349*6a54128fSAndroid Build Coastguard Worker
3350*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1108
3351*6a54128fSAndroid Build Coastguard Workermsgid "The -c and the -l/-L options may not be both used at the same time.\n"
3352*6a54128fSAndroid Build Coastguard Workermsgstr ""
3353*6a54128fSAndroid Build Coastguard Worker
3354*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1155
3355*6a54128fSAndroid Build Coastguard Worker#, c-format
3356*6a54128fSAndroid Build Coastguard Workermsgid ""
3357*6a54128fSAndroid Build Coastguard Worker"E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
3358*6a54128fSAndroid Build Coastguard Worker"\n"
3359*6a54128fSAndroid Build Coastguard Workermsgstr ""
3360*6a54128fSAndroid Build Coastguard Worker
3361*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1164
3362*6a54128fSAndroid Build Coastguard Worker#, c-format
3363*6a54128fSAndroid Build Coastguard Workermsgid ""
3364*6a54128fSAndroid Build Coastguard Worker"\n"
3365*6a54128fSAndroid Build Coastguard Worker"Invalid non-numeric argument to -%c (\"%s\")\n"
3366*6a54128fSAndroid Build Coastguard Worker"\n"
3367*6a54128fSAndroid Build Coastguard Workermsgstr ""
3368*6a54128fSAndroid Build Coastguard Worker
3369*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1262
3370*6a54128fSAndroid Build Coastguard Worker#, c-format
3371*6a54128fSAndroid Build Coastguard Workermsgid ""
3372*6a54128fSAndroid Build Coastguard Worker"MMP interval is %u seconds and total wait time is %u seconds. Please "
3373*6a54128fSAndroid Build Coastguard Worker"wait...\n"
3374*6a54128fSAndroid Build Coastguard Workermsgstr ""
3375*6a54128fSAndroid Build Coastguard Worker
3376*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1279 e2fsck/unix.c:1284
3377*6a54128fSAndroid Build Coastguard Workermsgid "while checking MMP block"
3378*6a54128fSAndroid Build Coastguard Workermsgstr ""
3379*6a54128fSAndroid Build Coastguard Worker
3380*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1286
3381*6a54128fSAndroid Build Coastguard Worker#, c-format
3382*6a54128fSAndroid Build Coastguard Workermsgid ""
3383*6a54128fSAndroid Build Coastguard Worker"If you are sure the filesystem is not in use on any node, run:\n"
3384*6a54128fSAndroid Build Coastguard Worker"'tune2fs -f -E clear_mmp %s'\n"
3385*6a54128fSAndroid Build Coastguard Workermsgstr ""
3386*6a54128fSAndroid Build Coastguard Worker
3387*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1302
3388*6a54128fSAndroid Build Coastguard Workermsgid "while reading MMP block"
3389*6a54128fSAndroid Build Coastguard Workermsgstr ""
3390*6a54128fSAndroid Build Coastguard Worker
3391*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1322 e2fsck/unix.c:1374 misc/e2undo.c:240 misc/e2undo.c:285
3392*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2760 misc/mke2fs.c:2811 misc/tune2fs.c:2808
3393*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2853 resize/main.c:188 resize/main.c:233
3394*6a54128fSAndroid Build Coastguard Worker#, c-format
3395*6a54128fSAndroid Build Coastguard Workermsgid ""
3396*6a54128fSAndroid Build Coastguard Worker"Overwriting existing filesystem; this can be undone using the command:\n"
3397*6a54128fSAndroid Build Coastguard Worker"    e2undo %s %s\n"
3398*6a54128fSAndroid Build Coastguard Worker"\n"
3399*6a54128fSAndroid Build Coastguard Workermsgstr ""
3400*6a54128fSAndroid Build Coastguard Worker
3401*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1363 misc/e2undo.c:274 misc/mke2fs.c:2800 misc/tune2fs.c:2842
3402*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:222
3403*6a54128fSAndroid Build Coastguard Worker#, c-format
3404*6a54128fSAndroid Build Coastguard Workermsgid "while trying to delete %s"
3405*6a54128fSAndroid Build Coastguard Workermsgstr ""
3406*6a54128fSAndroid Build Coastguard Worker
3407*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1389 misc/mke2fs.c:2826 resize/main.c:243
3408*6a54128fSAndroid Build Coastguard Workermsgid "while trying to setup undo file\n"
3409*6a54128fSAndroid Build Coastguard Workermsgstr ""
3410*6a54128fSAndroid Build Coastguard Worker
3411*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1433
3412*6a54128fSAndroid Build Coastguard Workermsgid "Error: ext2fs library version out of date!\n"
3413*6a54128fSAndroid Build Coastguard Workermsgstr ""
3414*6a54128fSAndroid Build Coastguard Worker
3415*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1440
3416*6a54128fSAndroid Build Coastguard Workermsgid "while trying to initialize program"
3417*6a54128fSAndroid Build Coastguard Workermsgstr ""
3418*6a54128fSAndroid Build Coastguard Worker
3419*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1477
3420*6a54128fSAndroid Build Coastguard Worker#, c-format
3421*6a54128fSAndroid Build Coastguard Workermsgid "\tUsing %s, %s\n"
3422*6a54128fSAndroid Build Coastguard Workermsgstr ""
3423*6a54128fSAndroid Build Coastguard Worker
3424*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1489
3425*6a54128fSAndroid Build Coastguard Workermsgid "need terminal for interactive repairs"
3426*6a54128fSAndroid Build Coastguard Workermsgstr ""
3427*6a54128fSAndroid Build Coastguard Worker
3428*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1550
3429*6a54128fSAndroid Build Coastguard Worker#, c-format
3430*6a54128fSAndroid Build Coastguard Workermsgid "%s: %s trying backup blocks...\n"
3431*6a54128fSAndroid Build Coastguard Workermsgstr ""
3432*6a54128fSAndroid Build Coastguard Worker
3433*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1552
3434*6a54128fSAndroid Build Coastguard Workermsgid "Superblock invalid,"
3435*6a54128fSAndroid Build Coastguard Workermsgstr ""
3436*6a54128fSAndroid Build Coastguard Worker
3437*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1553
3438*6a54128fSAndroid Build Coastguard Workermsgid "Group descriptors look bad..."
3439*6a54128fSAndroid Build Coastguard Workermsgstr ""
3440*6a54128fSAndroid Build Coastguard Worker
3441*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1563
3442*6a54128fSAndroid Build Coastguard Worker#, c-format
3443*6a54128fSAndroid Build Coastguard Workermsgid "%s: %s while using the backup blocks"
3444*6a54128fSAndroid Build Coastguard Workermsgstr ""
3445*6a54128fSAndroid Build Coastguard Worker
3446*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1567
3447*6a54128fSAndroid Build Coastguard Worker#, c-format
3448*6a54128fSAndroid Build Coastguard Workermsgid "%s: going back to original superblock\n"
3449*6a54128fSAndroid Build Coastguard Workermsgstr ""
3450*6a54128fSAndroid Build Coastguard Worker
3451*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1596
3452*6a54128fSAndroid Build Coastguard Workermsgid ""
3453*6a54128fSAndroid Build Coastguard Worker"The filesystem revision is apparently too high for this version of e2fsck.\n"
3454*6a54128fSAndroid Build Coastguard Worker"(Or the filesystem superblock is corrupt)\n"
3455*6a54128fSAndroid Build Coastguard Worker"\n"
3456*6a54128fSAndroid Build Coastguard Workermsgstr ""
3457*6a54128fSAndroid Build Coastguard Worker
3458*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1603
3459*6a54128fSAndroid Build Coastguard Workermsgid "Could this be a zero-length partition?\n"
3460*6a54128fSAndroid Build Coastguard Workermsgstr ""
3461*6a54128fSAndroid Build Coastguard Worker
3462*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1605
3463*6a54128fSAndroid Build Coastguard Worker#, c-format
3464*6a54128fSAndroid Build Coastguard Workermsgid "You must have %s access to the filesystem or be root\n"
3465*6a54128fSAndroid Build Coastguard Workermsgstr ""
3466*6a54128fSAndroid Build Coastguard Worker
3467*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1611
3468*6a54128fSAndroid Build Coastguard Workermsgid "Possibly non-existent or swap device?\n"
3469*6a54128fSAndroid Build Coastguard Workermsgstr ""
3470*6a54128fSAndroid Build Coastguard Worker
3471*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1613
3472*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem mounted or opened exclusively by another program?\n"
3473*6a54128fSAndroid Build Coastguard Workermsgstr ""
3474*6a54128fSAndroid Build Coastguard Worker
3475*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1617
3476*6a54128fSAndroid Build Coastguard Workermsgid "Possibly non-existent device?\n"
3477*6a54128fSAndroid Build Coastguard Workermsgstr ""
3478*6a54128fSAndroid Build Coastguard Worker
3479*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1620
3480*6a54128fSAndroid Build Coastguard Workermsgid ""
3481*6a54128fSAndroid Build Coastguard Worker"Disk write-protected; use the -n option to do a read-only\n"
3482*6a54128fSAndroid Build Coastguard Worker"check of the device.\n"
3483*6a54128fSAndroid Build Coastguard Workermsgstr ""
3484*6a54128fSAndroid Build Coastguard Worker
3485*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1635
3486*6a54128fSAndroid Build Coastguard Worker#, c-format
3487*6a54128fSAndroid Build Coastguard Workermsgid "%s: Trying to load superblock despite errors...\n"
3488*6a54128fSAndroid Build Coastguard Workermsgstr ""
3489*6a54128fSAndroid Build Coastguard Worker
3490*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1710
3491*6a54128fSAndroid Build Coastguard Workermsgid "Get a newer version of e2fsck!"
3492*6a54128fSAndroid Build Coastguard Workermsgstr ""
3493*6a54128fSAndroid Build Coastguard Worker
3494*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1770
3495*6a54128fSAndroid Build Coastguard Worker#, c-format
3496*6a54128fSAndroid Build Coastguard Workermsgid "while checking journal for %s"
3497*6a54128fSAndroid Build Coastguard Workermsgstr ""
3498*6a54128fSAndroid Build Coastguard Worker
3499*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1773
3500*6a54128fSAndroid Build Coastguard Workermsgid "Cannot proceed with file system check"
3501*6a54128fSAndroid Build Coastguard Workermsgstr ""
3502*6a54128fSAndroid Build Coastguard Worker
3503*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1784
3504*6a54128fSAndroid Build Coastguard Workermsgid ""
3505*6a54128fSAndroid Build Coastguard Worker"Warning: skipping journal recovery because doing a read-only filesystem "
3506*6a54128fSAndroid Build Coastguard Worker"check.\n"
3507*6a54128fSAndroid Build Coastguard Workermsgstr ""
3508*6a54128fSAndroid Build Coastguard Worker
3509*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1796
3510*6a54128fSAndroid Build Coastguard Worker#, c-format
3511*6a54128fSAndroid Build Coastguard Workermsgid "unable to set superblock flags on %s\n"
3512*6a54128fSAndroid Build Coastguard Workermsgstr ""
3513*6a54128fSAndroid Build Coastguard Worker
3514*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1802
3515*6a54128fSAndroid Build Coastguard Worker#, c-format
3516*6a54128fSAndroid Build Coastguard Workermsgid "Journal checksum error found in %s\n"
3517*6a54128fSAndroid Build Coastguard Workermsgstr ""
3518*6a54128fSAndroid Build Coastguard Worker
3519*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1806
3520*6a54128fSAndroid Build Coastguard Worker#, c-format
3521*6a54128fSAndroid Build Coastguard Workermsgid "Journal corrupted in %s\n"
3522*6a54128fSAndroid Build Coastguard Workermsgstr ""
3523*6a54128fSAndroid Build Coastguard Worker
3524*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1810
3525*6a54128fSAndroid Build Coastguard Worker#, c-format
3526*6a54128fSAndroid Build Coastguard Workermsgid "while recovering journal of %s"
3527*6a54128fSAndroid Build Coastguard Workermsgstr ""
3528*6a54128fSAndroid Build Coastguard Worker
3529*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1832
3530*6a54128fSAndroid Build Coastguard Worker#, c-format
3531*6a54128fSAndroid Build Coastguard Workermsgid "%s has unsupported feature(s):"
3532*6a54128fSAndroid Build Coastguard Workermsgstr ""
3533*6a54128fSAndroid Build Coastguard Worker
3534*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1847
3535*6a54128fSAndroid Build Coastguard Worker#, c-format
3536*6a54128fSAndroid Build Coastguard Workermsgid "%s has unsupported encoding: %0x\n"
3537*6a54128fSAndroid Build Coastguard Workermsgstr ""
3538*6a54128fSAndroid Build Coastguard Worker
3539*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1897
3540*6a54128fSAndroid Build Coastguard Worker#, c-format
3541*6a54128fSAndroid Build Coastguard Workermsgid "%s: %s while reading bad blocks inode\n"
3542*6a54128fSAndroid Build Coastguard Workermsgstr ""
3543*6a54128fSAndroid Build Coastguard Worker
3544*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1900
3545*6a54128fSAndroid Build Coastguard Workermsgid "This doesn't bode well, but we'll try to go on...\n"
3546*6a54128fSAndroid Build Coastguard Workermsgstr ""
3547*6a54128fSAndroid Build Coastguard Worker
3548*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1943
3549*6a54128fSAndroid Build Coastguard Worker#, c-format
3550*6a54128fSAndroid Build Coastguard Workermsgid "Creating journal (%d blocks): "
3551*6a54128fSAndroid Build Coastguard Workermsgstr ""
3552*6a54128fSAndroid Build Coastguard Worker
3553*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1952
3554*6a54128fSAndroid Build Coastguard Workermsgid " Done.\n"
3555*6a54128fSAndroid Build Coastguard Workermsgstr ""
3556*6a54128fSAndroid Build Coastguard Worker
3557*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1954
3558*6a54128fSAndroid Build Coastguard Workermsgid ""
3559*6a54128fSAndroid Build Coastguard Worker"\n"
3560*6a54128fSAndroid Build Coastguard Worker"*** journal has been regenerated ***\n"
3561*6a54128fSAndroid Build Coastguard Workermsgstr ""
3562*6a54128fSAndroid Build Coastguard Worker
3563*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1960
3564*6a54128fSAndroid Build Coastguard Workermsgid "aborted"
3565*6a54128fSAndroid Build Coastguard Workermsgstr ""
3566*6a54128fSAndroid Build Coastguard Worker
3567*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1962
3568*6a54128fSAndroid Build Coastguard Worker#, c-format
3569*6a54128fSAndroid Build Coastguard Workermsgid "%s: e2fsck canceled.\n"
3570*6a54128fSAndroid Build Coastguard Workermsgstr ""
3571*6a54128fSAndroid Build Coastguard Worker
3572*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1989
3573*6a54128fSAndroid Build Coastguard Workermsgid "Restarting e2fsck from the beginning...\n"
3574*6a54128fSAndroid Build Coastguard Workermsgstr ""
3575*6a54128fSAndroid Build Coastguard Worker
3576*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:1993
3577*6a54128fSAndroid Build Coastguard Workermsgid "while resetting context"
3578*6a54128fSAndroid Build Coastguard Workermsgstr ""
3579*6a54128fSAndroid Build Coastguard Worker
3580*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:2052
3581*6a54128fSAndroid Build Coastguard Worker#, c-format
3582*6a54128fSAndroid Build Coastguard Workermsgid ""
3583*6a54128fSAndroid Build Coastguard Worker"\n"
3584*6a54128fSAndroid Build Coastguard Worker"%s: ***** FILE SYSTEM ERRORS CORRECTED *****\n"
3585*6a54128fSAndroid Build Coastguard Workermsgstr ""
3586*6a54128fSAndroid Build Coastguard Worker
3587*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:2054
3588*6a54128fSAndroid Build Coastguard Worker#, c-format
3589*6a54128fSAndroid Build Coastguard Workermsgid "%s: File system was modified.\n"
3590*6a54128fSAndroid Build Coastguard Workermsgstr ""
3591*6a54128fSAndroid Build Coastguard Worker
3592*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:2058 e2fsck/util.c:67
3593*6a54128fSAndroid Build Coastguard Worker#, c-format
3594*6a54128fSAndroid Build Coastguard Workermsgid ""
3595*6a54128fSAndroid Build Coastguard Worker"\n"
3596*6a54128fSAndroid Build Coastguard Worker"%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
3597*6a54128fSAndroid Build Coastguard Workermsgstr ""
3598*6a54128fSAndroid Build Coastguard Worker
3599*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:2063
3600*6a54128fSAndroid Build Coastguard Worker#, c-format
3601*6a54128fSAndroid Build Coastguard Workermsgid "%s: ***** REBOOT SYSTEM *****\n"
3602*6a54128fSAndroid Build Coastguard Workermsgstr ""
3603*6a54128fSAndroid Build Coastguard Worker
3604*6a54128fSAndroid Build Coastguard Worker#: e2fsck/unix.c:2073 e2fsck/util.c:73
3605*6a54128fSAndroid Build Coastguard Worker#, c-format
3606*6a54128fSAndroid Build Coastguard Workermsgid ""
3607*6a54128fSAndroid Build Coastguard Worker"\n"
3608*6a54128fSAndroid Build Coastguard Worker"%s: ********** WARNING: Filesystem still has errors **********\n"
3609*6a54128fSAndroid Build Coastguard Worker"\n"
3610*6a54128fSAndroid Build Coastguard Workermsgstr ""
3611*6a54128fSAndroid Build Coastguard Worker
3612*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:191 misc/util.c:99
3613*6a54128fSAndroid Build Coastguard Workermsgid "yY"
3614*6a54128fSAndroid Build Coastguard Workermsgstr ""
3615*6a54128fSAndroid Build Coastguard Worker
3616*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:192 misc/util.c:118
3617*6a54128fSAndroid Build Coastguard Workermsgid "nN"
3618*6a54128fSAndroid Build Coastguard Workermsgstr ""
3619*6a54128fSAndroid Build Coastguard Worker
3620*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:193
3621*6a54128fSAndroid Build Coastguard Workermsgid "aA"
3622*6a54128fSAndroid Build Coastguard Workermsgstr ""
3623*6a54128fSAndroid Build Coastguard Worker
3624*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:197
3625*6a54128fSAndroid Build Coastguard Workermsgid " ('a' enables 'yes' to all) "
3626*6a54128fSAndroid Build Coastguard Workermsgstr ""
3627*6a54128fSAndroid Build Coastguard Worker
3628*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:214
3629*6a54128fSAndroid Build Coastguard Workermsgid "<y>"
3630*6a54128fSAndroid Build Coastguard Workermsgstr ""
3631*6a54128fSAndroid Build Coastguard Worker
3632*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:216
3633*6a54128fSAndroid Build Coastguard Workermsgid "<n>"
3634*6a54128fSAndroid Build Coastguard Workermsgstr ""
3635*6a54128fSAndroid Build Coastguard Worker
3636*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:218
3637*6a54128fSAndroid Build Coastguard Workermsgid " (y/n)"
3638*6a54128fSAndroid Build Coastguard Workermsgstr ""
3639*6a54128fSAndroid Build Coastguard Worker
3640*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:241
3641*6a54128fSAndroid Build Coastguard Workermsgid "cancelled!\n"
3642*6a54128fSAndroid Build Coastguard Workermsgstr ""
3643*6a54128fSAndroid Build Coastguard Worker
3644*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:274
3645*6a54128fSAndroid Build Coastguard Workermsgid "yes to all\n"
3646*6a54128fSAndroid Build Coastguard Workermsgstr ""
3647*6a54128fSAndroid Build Coastguard Worker
3648*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:276
3649*6a54128fSAndroid Build Coastguard Workermsgid "yes\n"
3650*6a54128fSAndroid Build Coastguard Workermsgstr ""
3651*6a54128fSAndroid Build Coastguard Worker
3652*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:278
3653*6a54128fSAndroid Build Coastguard Workermsgid "no\n"
3654*6a54128fSAndroid Build Coastguard Workermsgstr ""
3655*6a54128fSAndroid Build Coastguard Worker
3656*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:288
3657*6a54128fSAndroid Build Coastguard Worker#, c-format
3658*6a54128fSAndroid Build Coastguard Workermsgid ""
3659*6a54128fSAndroid Build Coastguard Worker"%s? no\n"
3660*6a54128fSAndroid Build Coastguard Worker"\n"
3661*6a54128fSAndroid Build Coastguard Workermsgstr ""
3662*6a54128fSAndroid Build Coastguard Worker
3663*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:292
3664*6a54128fSAndroid Build Coastguard Worker#, c-format
3665*6a54128fSAndroid Build Coastguard Workermsgid ""
3666*6a54128fSAndroid Build Coastguard Worker"%s? yes\n"
3667*6a54128fSAndroid Build Coastguard Worker"\n"
3668*6a54128fSAndroid Build Coastguard Workermsgstr ""
3669*6a54128fSAndroid Build Coastguard Worker
3670*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:296
3671*6a54128fSAndroid Build Coastguard Workermsgid "yes"
3672*6a54128fSAndroid Build Coastguard Workermsgstr ""
3673*6a54128fSAndroid Build Coastguard Worker
3674*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:296
3675*6a54128fSAndroid Build Coastguard Workermsgid "no"
3676*6a54128fSAndroid Build Coastguard Workermsgstr ""
3677*6a54128fSAndroid Build Coastguard Worker
3678*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:312
3679*6a54128fSAndroid Build Coastguard Worker#, c-format
3680*6a54128fSAndroid Build Coastguard Workermsgid "e2fsck_read_bitmaps: illegal bitmap block(s) for %s"
3681*6a54128fSAndroid Build Coastguard Workermsgstr ""
3682*6a54128fSAndroid Build Coastguard Worker
3683*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:317
3684*6a54128fSAndroid Build Coastguard Workermsgid "reading inode and block bitmaps"
3685*6a54128fSAndroid Build Coastguard Workermsgstr ""
3686*6a54128fSAndroid Build Coastguard Worker
3687*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:329
3688*6a54128fSAndroid Build Coastguard Worker#, c-format
3689*6a54128fSAndroid Build Coastguard Workermsgid "while retrying to read bitmaps for %s"
3690*6a54128fSAndroid Build Coastguard Workermsgstr ""
3691*6a54128fSAndroid Build Coastguard Worker
3692*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:341
3693*6a54128fSAndroid Build Coastguard Workermsgid "writing block and inode bitmaps"
3694*6a54128fSAndroid Build Coastguard Workermsgstr ""
3695*6a54128fSAndroid Build Coastguard Worker
3696*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:346
3697*6a54128fSAndroid Build Coastguard Worker#, c-format
3698*6a54128fSAndroid Build Coastguard Workermsgid "while rewriting block and inode bitmaps for %s"
3699*6a54128fSAndroid Build Coastguard Workermsgstr ""
3700*6a54128fSAndroid Build Coastguard Worker
3701*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:358
3702*6a54128fSAndroid Build Coastguard Worker#, c-format
3703*6a54128fSAndroid Build Coastguard Workermsgid ""
3704*6a54128fSAndroid Build Coastguard Worker"\n"
3705*6a54128fSAndroid Build Coastguard Worker"\n"
3706*6a54128fSAndroid Build Coastguard Worker"%s: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.\n"
3707*6a54128fSAndroid Build Coastguard Worker"\t(i.e., without -a or -p options)\n"
3708*6a54128fSAndroid Build Coastguard Workermsgstr ""
3709*6a54128fSAndroid Build Coastguard Worker
3710*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:437 e2fsck/util.c:447
3711*6a54128fSAndroid Build Coastguard Worker#, c-format
3712*6a54128fSAndroid Build Coastguard Workermsgid "Memory used: %lluk/%lluk (%lluk/%lluk), "
3713*6a54128fSAndroid Build Coastguard Workermsgstr ""
3714*6a54128fSAndroid Build Coastguard Worker
3715*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:453
3716*6a54128fSAndroid Build Coastguard Worker#, c-format
3717*6a54128fSAndroid Build Coastguard Workermsgid "Memory used: %lluk, "
3718*6a54128fSAndroid Build Coastguard Workermsgstr ""
3719*6a54128fSAndroid Build Coastguard Worker
3720*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:459
3721*6a54128fSAndroid Build Coastguard Worker#, c-format
3722*6a54128fSAndroid Build Coastguard Workermsgid "time: %5.2f/%5.2f/%5.2f\n"
3723*6a54128fSAndroid Build Coastguard Workermsgstr ""
3724*6a54128fSAndroid Build Coastguard Worker
3725*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:464
3726*6a54128fSAndroid Build Coastguard Worker#, c-format
3727*6a54128fSAndroid Build Coastguard Workermsgid "elapsed time: %6.3f\n"
3728*6a54128fSAndroid Build Coastguard Workermsgstr ""
3729*6a54128fSAndroid Build Coastguard Worker
3730*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:499 e2fsck/util.c:513
3731*6a54128fSAndroid Build Coastguard Worker#, c-format
3732*6a54128fSAndroid Build Coastguard Workermsgid "while reading inode %lu in %s"
3733*6a54128fSAndroid Build Coastguard Workermsgstr ""
3734*6a54128fSAndroid Build Coastguard Worker
3735*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:527 e2fsck/util.c:540
3736*6a54128fSAndroid Build Coastguard Worker#, c-format
3737*6a54128fSAndroid Build Coastguard Workermsgid "while writing inode %lu in %s"
3738*6a54128fSAndroid Build Coastguard Workermsgstr ""
3739*6a54128fSAndroid Build Coastguard Worker
3740*6a54128fSAndroid Build Coastguard Worker#: e2fsck/util.c:799
3741*6a54128fSAndroid Build Coastguard Workermsgid ""
3742*6a54128fSAndroid Build Coastguard Worker"UNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is "
3743*6a54128fSAndroid Build Coastguard Worker"running.\n"
3744*6a54128fSAndroid Build Coastguard Workermsgstr ""
3745*6a54128fSAndroid Build Coastguard Worker
3746*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:75
3747*6a54128fSAndroid Build Coastguard Workermsgid "done                                                 \n"
3748*6a54128fSAndroid Build Coastguard Workermsgstr ""
3749*6a54128fSAndroid Build Coastguard Worker
3750*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:100
3751*6a54128fSAndroid Build Coastguard Worker#, c-format
3752*6a54128fSAndroid Build Coastguard Workermsgid ""
3753*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnfBX]\n"
3754*6a54128fSAndroid Build Coastguard Worker"       [-c blocks_at_once] [-d delay_factor_between_reads] [-e "
3755*6a54128fSAndroid Build Coastguard Worker"max_bad_blocks]\n"
3756*6a54128fSAndroid Build Coastguard Worker"       [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
3757*6a54128fSAndroid Build Coastguard Worker"       device [last_block [first_block]]\n"
3758*6a54128fSAndroid Build Coastguard Workermsgstr ""
3759*6a54128fSAndroid Build Coastguard Worker
3760*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:111
3761*6a54128fSAndroid Build Coastguard Worker#, c-format
3762*6a54128fSAndroid Build Coastguard Workermsgid ""
3763*6a54128fSAndroid Build Coastguard Worker"%s: The -n and -w options are mutually exclusive.\n"
3764*6a54128fSAndroid Build Coastguard Worker"\n"
3765*6a54128fSAndroid Build Coastguard Workermsgstr ""
3766*6a54128fSAndroid Build Coastguard Worker
3767*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:229
3768*6a54128fSAndroid Build Coastguard Worker#, c-format
3769*6a54128fSAndroid Build Coastguard Workermsgid "%6.2f%% done, %s elapsed. (%d/%d/%d errors)"
3770*6a54128fSAndroid Build Coastguard Workermsgstr ""
3771*6a54128fSAndroid Build Coastguard Worker
3772*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:337
3773*6a54128fSAndroid Build Coastguard Workermsgid "Testing with random pattern: "
3774*6a54128fSAndroid Build Coastguard Workermsgstr ""
3775*6a54128fSAndroid Build Coastguard Worker
3776*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:355
3777*6a54128fSAndroid Build Coastguard Workermsgid "Testing with pattern 0x"
3778*6a54128fSAndroid Build Coastguard Workermsgstr ""
3779*6a54128fSAndroid Build Coastguard Worker
3780*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:387 misc/badblocks.c:460
3781*6a54128fSAndroid Build Coastguard Workermsgid "during seek"
3782*6a54128fSAndroid Build Coastguard Workermsgstr ""
3783*6a54128fSAndroid Build Coastguard Worker
3784*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:398
3785*6a54128fSAndroid Build Coastguard Worker#, c-format
3786*6a54128fSAndroid Build Coastguard Workermsgid "Weird value (%ld) in do_read\n"
3787*6a54128fSAndroid Build Coastguard Workermsgstr ""
3788*6a54128fSAndroid Build Coastguard Worker
3789*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:485
3790*6a54128fSAndroid Build Coastguard Workermsgid "during ext2fs_sync_device"
3791*6a54128fSAndroid Build Coastguard Workermsgstr ""
3792*6a54128fSAndroid Build Coastguard Worker
3793*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:505 misc/badblocks.c:767
3794*6a54128fSAndroid Build Coastguard Workermsgid "while beginning bad block list iteration"
3795*6a54128fSAndroid Build Coastguard Workermsgstr ""
3796*6a54128fSAndroid Build Coastguard Worker
3797*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:520 misc/badblocks.c:620 misc/badblocks.c:778
3798*6a54128fSAndroid Build Coastguard Workermsgid "while allocating buffers"
3799*6a54128fSAndroid Build Coastguard Workermsgstr ""
3800*6a54128fSAndroid Build Coastguard Worker
3801*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:524
3802*6a54128fSAndroid Build Coastguard Worker#, c-format
3803*6a54128fSAndroid Build Coastguard Workermsgid "Checking blocks %lu to %lu\n"
3804*6a54128fSAndroid Build Coastguard Workermsgstr ""
3805*6a54128fSAndroid Build Coastguard Worker
3806*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:529
3807*6a54128fSAndroid Build Coastguard Workermsgid "Checking for bad blocks in read-only mode\n"
3808*6a54128fSAndroid Build Coastguard Workermsgstr ""
3809*6a54128fSAndroid Build Coastguard Worker
3810*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:538
3811*6a54128fSAndroid Build Coastguard Workermsgid "Checking for bad blocks (read-only test): "
3812*6a54128fSAndroid Build Coastguard Workermsgstr ""
3813*6a54128fSAndroid Build Coastguard Worker
3814*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:545 misc/badblocks.c:652 misc/badblocks.c:694
3815*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:841
3816*6a54128fSAndroid Build Coastguard Workermsgid "Too many bad blocks, aborting test\n"
3817*6a54128fSAndroid Build Coastguard Workermsgstr ""
3818*6a54128fSAndroid Build Coastguard Worker
3819*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:627
3820*6a54128fSAndroid Build Coastguard Workermsgid "Checking for bad blocks in read-write mode\n"
3821*6a54128fSAndroid Build Coastguard Workermsgstr ""
3822*6a54128fSAndroid Build Coastguard Worker
3823*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:629 misc/badblocks.c:791
3824*6a54128fSAndroid Build Coastguard Worker#, c-format
3825*6a54128fSAndroid Build Coastguard Workermsgid "From block %lu to %lu\n"
3826*6a54128fSAndroid Build Coastguard Workermsgstr ""
3827*6a54128fSAndroid Build Coastguard Worker
3828*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:684
3829*6a54128fSAndroid Build Coastguard Workermsgid "Reading and comparing: "
3830*6a54128fSAndroid Build Coastguard Workermsgstr ""
3831*6a54128fSAndroid Build Coastguard Worker
3832*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:790
3833*6a54128fSAndroid Build Coastguard Workermsgid "Checking for bad blocks in non-destructive read-write mode\n"
3834*6a54128fSAndroid Build Coastguard Workermsgstr ""
3835*6a54128fSAndroid Build Coastguard Worker
3836*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:796
3837*6a54128fSAndroid Build Coastguard Workermsgid "Checking for bad blocks (non-destructive read-write test)\n"
3838*6a54128fSAndroid Build Coastguard Workermsgstr ""
3839*6a54128fSAndroid Build Coastguard Worker
3840*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:803
3841*6a54128fSAndroid Build Coastguard Workermsgid ""
3842*6a54128fSAndroid Build Coastguard Worker"\n"
3843*6a54128fSAndroid Build Coastguard Worker"Interrupt caught, cleaning up\n"
3844*6a54128fSAndroid Build Coastguard Workermsgstr ""
3845*6a54128fSAndroid Build Coastguard Worker
3846*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:886
3847*6a54128fSAndroid Build Coastguard Worker#, c-format
3848*6a54128fSAndroid Build Coastguard Workermsgid "during test data write, block %lu"
3849*6a54128fSAndroid Build Coastguard Workermsgstr ""
3850*6a54128fSAndroid Build Coastguard Worker
3851*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1006 misc/util.c:140
3852*6a54128fSAndroid Build Coastguard Worker#, c-format
3853*6a54128fSAndroid Build Coastguard Workermsgid "%s is mounted; "
3854*6a54128fSAndroid Build Coastguard Workermsgstr ""
3855*6a54128fSAndroid Build Coastguard Worker
3856*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1008
3857*6a54128fSAndroid Build Coastguard Workermsgid "badblocks forced anyway.  Hope /etc/mtab is incorrect.\n"
3858*6a54128fSAndroid Build Coastguard Workermsgstr ""
3859*6a54128fSAndroid Build Coastguard Worker
3860*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1013
3861*6a54128fSAndroid Build Coastguard Workermsgid "it's not safe to run badblocks!\n"
3862*6a54128fSAndroid Build Coastguard Workermsgstr ""
3863*6a54128fSAndroid Build Coastguard Worker
3864*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1018 misc/util.c:151
3865*6a54128fSAndroid Build Coastguard Worker#, c-format
3866*6a54128fSAndroid Build Coastguard Workermsgid "%s is apparently in use by the system; "
3867*6a54128fSAndroid Build Coastguard Workermsgstr ""
3868*6a54128fSAndroid Build Coastguard Worker
3869*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1021
3870*6a54128fSAndroid Build Coastguard Workermsgid "badblocks forced anyway.\n"
3871*6a54128fSAndroid Build Coastguard Workermsgstr ""
3872*6a54128fSAndroid Build Coastguard Worker
3873*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1040
3874*6a54128fSAndroid Build Coastguard Worker#, c-format
3875*6a54128fSAndroid Build Coastguard Workermsgid "invalid %s - %s"
3876*6a54128fSAndroid Build Coastguard Workermsgstr ""
3877*6a54128fSAndroid Build Coastguard Worker
3878*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1044
3879*6a54128fSAndroid Build Coastguard Worker#, c-format
3880*6a54128fSAndroid Build Coastguard Workermsgid "%s too large - %lu"
3881*6a54128fSAndroid Build Coastguard Workermsgstr ""
3882*6a54128fSAndroid Build Coastguard Worker
3883*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1140
3884*6a54128fSAndroid Build Coastguard Worker#, c-format
3885*6a54128fSAndroid Build Coastguard Workermsgid "Too big max bad blocks count %u - maximum is %u"
3886*6a54128fSAndroid Build Coastguard Workermsgstr ""
3887*6a54128fSAndroid Build Coastguard Worker
3888*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1167
3889*6a54128fSAndroid Build Coastguard Worker#, c-format
3890*6a54128fSAndroid Build Coastguard Workermsgid "can't allocate memory for test_pattern - %s"
3891*6a54128fSAndroid Build Coastguard Workermsgstr ""
3892*6a54128fSAndroid Build Coastguard Worker
3893*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1197
3894*6a54128fSAndroid Build Coastguard Workermsgid "Maximum of one test_pattern may be specified in read-only mode"
3895*6a54128fSAndroid Build Coastguard Workermsgstr ""
3896*6a54128fSAndroid Build Coastguard Worker
3897*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1203
3898*6a54128fSAndroid Build Coastguard Workermsgid "Random test_pattern is not allowed in read-only mode"
3899*6a54128fSAndroid Build Coastguard Workermsgstr ""
3900*6a54128fSAndroid Build Coastguard Worker
3901*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1210
3902*6a54128fSAndroid Build Coastguard Worker#, c-format
3903*6a54128fSAndroid Build Coastguard Workermsgid "Invalid block size: %u\n"
3904*6a54128fSAndroid Build Coastguard Workermsgstr ""
3905*6a54128fSAndroid Build Coastguard Worker
3906*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1215
3907*6a54128fSAndroid Build Coastguard Worker#, c-format
3908*6a54128fSAndroid Build Coastguard Workermsgid "Invalid number of blocks: %d\n"
3909*6a54128fSAndroid Build Coastguard Workermsgstr ""
3910*6a54128fSAndroid Build Coastguard Worker
3911*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1220
3912*6a54128fSAndroid Build Coastguard Worker#, c-format
3913*6a54128fSAndroid Build Coastguard Workermsgid "For block size %d, number of blocks too large: %d\n"
3914*6a54128fSAndroid Build Coastguard Workermsgstr ""
3915*6a54128fSAndroid Build Coastguard Worker
3916*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1234
3917*6a54128fSAndroid Build Coastguard Workermsgid ""
3918*6a54128fSAndroid Build Coastguard Worker"Couldn't determine device size; you must specify\n"
3919*6a54128fSAndroid Build Coastguard Worker"the size manually\n"
3920*6a54128fSAndroid Build Coastguard Workermsgstr ""
3921*6a54128fSAndroid Build Coastguard Worker
3922*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1240
3923*6a54128fSAndroid Build Coastguard Workermsgid "while trying to determine device size"
3924*6a54128fSAndroid Build Coastguard Workermsgstr ""
3925*6a54128fSAndroid Build Coastguard Worker
3926*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1245
3927*6a54128fSAndroid Build Coastguard Workermsgid "last block"
3928*6a54128fSAndroid Build Coastguard Workermsgstr ""
3929*6a54128fSAndroid Build Coastguard Worker
3930*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1251
3931*6a54128fSAndroid Build Coastguard Workermsgid "first block"
3932*6a54128fSAndroid Build Coastguard Workermsgstr ""
3933*6a54128fSAndroid Build Coastguard Worker
3934*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1254
3935*6a54128fSAndroid Build Coastguard Worker#, c-format
3936*6a54128fSAndroid Build Coastguard Workermsgid "invalid starting block (%llu): must be less than %llu"
3937*6a54128fSAndroid Build Coastguard Workermsgstr ""
3938*6a54128fSAndroid Build Coastguard Worker
3939*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1262
3940*6a54128fSAndroid Build Coastguard Worker#, c-format
3941*6a54128fSAndroid Build Coastguard Workermsgid "invalid end block (%llu): must be 32-bit value"
3942*6a54128fSAndroid Build Coastguard Workermsgstr ""
3943*6a54128fSAndroid Build Coastguard Worker
3944*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1318
3945*6a54128fSAndroid Build Coastguard Workermsgid "while creating in-memory bad blocks list"
3946*6a54128fSAndroid Build Coastguard Workermsgstr ""
3947*6a54128fSAndroid Build Coastguard Worker
3948*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1327
3949*6a54128fSAndroid Build Coastguard Workermsgid "input file - bad format"
3950*6a54128fSAndroid Build Coastguard Workermsgstr ""
3951*6a54128fSAndroid Build Coastguard Worker
3952*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1335 misc/badblocks.c:1344
3953*6a54128fSAndroid Build Coastguard Workermsgid "while adding to in-memory bad block list"
3954*6a54128fSAndroid Build Coastguard Workermsgstr ""
3955*6a54128fSAndroid Build Coastguard Worker
3956*6a54128fSAndroid Build Coastguard Worker#: misc/badblocks.c:1369
3957*6a54128fSAndroid Build Coastguard Worker#, c-format
3958*6a54128fSAndroid Build Coastguard Workermsgid "Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"
3959*6a54128fSAndroid Build Coastguard Workermsgstr ""
3960*6a54128fSAndroid Build Coastguard Worker
3961*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:89
3962*6a54128fSAndroid Build Coastguard Worker#, c-format
3963*6a54128fSAndroid Build Coastguard Workermsgid ""
3964*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-RVf] [-+=aAcCdDeijPsStTuFx] [-p project] [-v version] files...\n"
3965*6a54128fSAndroid Build Coastguard Workermsgstr ""
3966*6a54128fSAndroid Build Coastguard Worker
3967*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:162
3968*6a54128fSAndroid Build Coastguard Worker#, c-format
3969*6a54128fSAndroid Build Coastguard Workermsgid "bad project - %s\n"
3970*6a54128fSAndroid Build Coastguard Workermsgstr ""
3971*6a54128fSAndroid Build Coastguard Worker
3972*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:176
3973*6a54128fSAndroid Build Coastguard Worker#, c-format
3974*6a54128fSAndroid Build Coastguard Workermsgid "bad version - %s\n"
3975*6a54128fSAndroid Build Coastguard Workermsgstr ""
3976*6a54128fSAndroid Build Coastguard Worker
3977*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:221 misc/lsattr.c:127
3978*6a54128fSAndroid Build Coastguard Worker#, c-format
3979*6a54128fSAndroid Build Coastguard Workermsgid "while trying to stat %s"
3980*6a54128fSAndroid Build Coastguard Workermsgstr ""
3981*6a54128fSAndroid Build Coastguard Worker
3982*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:228
3983*6a54128fSAndroid Build Coastguard Worker#, c-format
3984*6a54128fSAndroid Build Coastguard Workermsgid "while reading flags on %s"
3985*6a54128fSAndroid Build Coastguard Workermsgstr ""
3986*6a54128fSAndroid Build Coastguard Worker
3987*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:233 misc/chattr.c:245
3988*6a54128fSAndroid Build Coastguard Worker#, c-format
3989*6a54128fSAndroid Build Coastguard Workermsgid "Flags of %s set as "
3990*6a54128fSAndroid Build Coastguard Workermsgstr ""
3991*6a54128fSAndroid Build Coastguard Worker
3992*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:254
3993*6a54128fSAndroid Build Coastguard Worker#, c-format
3994*6a54128fSAndroid Build Coastguard Workermsgid "while setting flags on %s"
3995*6a54128fSAndroid Build Coastguard Workermsgstr ""
3996*6a54128fSAndroid Build Coastguard Worker
3997*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:262
3998*6a54128fSAndroid Build Coastguard Worker#, c-format
3999*6a54128fSAndroid Build Coastguard Workermsgid "Version of %s set as %lu\n"
4000*6a54128fSAndroid Build Coastguard Workermsgstr ""
4001*6a54128fSAndroid Build Coastguard Worker
4002*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:266
4003*6a54128fSAndroid Build Coastguard Worker#, c-format
4004*6a54128fSAndroid Build Coastguard Workermsgid "while setting version on %s"
4005*6a54128fSAndroid Build Coastguard Workermsgstr ""
4006*6a54128fSAndroid Build Coastguard Worker
4007*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:273
4008*6a54128fSAndroid Build Coastguard Worker#, c-format
4009*6a54128fSAndroid Build Coastguard Workermsgid "Project of %s set as %lu\n"
4010*6a54128fSAndroid Build Coastguard Workermsgstr ""
4011*6a54128fSAndroid Build Coastguard Worker
4012*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:277
4013*6a54128fSAndroid Build Coastguard Worker#, c-format
4014*6a54128fSAndroid Build Coastguard Workermsgid "while setting project on %s"
4015*6a54128fSAndroid Build Coastguard Workermsgstr ""
4016*6a54128fSAndroid Build Coastguard Worker
4017*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:299
4018*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate path variable in chattr_dir_proc"
4019*6a54128fSAndroid Build Coastguard Workermsgstr ""
4020*6a54128fSAndroid Build Coastguard Worker
4021*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:339
4022*6a54128fSAndroid Build Coastguard Workermsgid "= is incompatible with - and +\n"
4023*6a54128fSAndroid Build Coastguard Workermsgstr ""
4024*6a54128fSAndroid Build Coastguard Worker
4025*6a54128fSAndroid Build Coastguard Worker#: misc/chattr.c:347
4026*6a54128fSAndroid Build Coastguard Workermsgid "Must use '-v', =, - or +\n"
4027*6a54128fSAndroid Build Coastguard Workermsgstr ""
4028*6a54128fSAndroid Build Coastguard Worker
4029*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:80 misc/create_inode.c:119
4030*6a54128fSAndroid Build Coastguard Worker#, c-format
4031*6a54128fSAndroid Build Coastguard Workermsgid "while reading inode %u"
4032*6a54128fSAndroid Build Coastguard Workermsgstr ""
4033*6a54128fSAndroid Build Coastguard Worker
4034*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:90 misc/create_inode.c:298 misc/create_inode.c:363
4035*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:401
4036*6a54128fSAndroid Build Coastguard Workermsgid "while expanding directory"
4037*6a54128fSAndroid Build Coastguard Workermsgstr ""
4038*6a54128fSAndroid Build Coastguard Worker
4039*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:97
4040*6a54128fSAndroid Build Coastguard Worker#, c-format
4041*6a54128fSAndroid Build Coastguard Workermsgid "while linking \"%s\""
4042*6a54128fSAndroid Build Coastguard Workermsgstr ""
4043*6a54128fSAndroid Build Coastguard Worker
4044*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:105 misc/create_inode.c:134 misc/create_inode.c:332
4045*6a54128fSAndroid Build Coastguard Worker#, c-format
4046*6a54128fSAndroid Build Coastguard Workermsgid "while writing inode %u"
4047*6a54128fSAndroid Build Coastguard Workermsgstr ""
4048*6a54128fSAndroid Build Coastguard Worker
4049*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:156 misc/create_inode.c:187
4050*6a54128fSAndroid Build Coastguard Worker#, c-format
4051*6a54128fSAndroid Build Coastguard Workermsgid "while listing attributes of \"%s\""
4052*6a54128fSAndroid Build Coastguard Workermsgstr ""
4053*6a54128fSAndroid Build Coastguard Worker
4054*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:167
4055*6a54128fSAndroid Build Coastguard Worker#, c-format
4056*6a54128fSAndroid Build Coastguard Workermsgid "while opening inode %u"
4057*6a54128fSAndroid Build Coastguard Workermsgstr ""
4058*6a54128fSAndroid Build Coastguard Worker
4059*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:174
4060*6a54128fSAndroid Build Coastguard Worker#, c-format
4061*6a54128fSAndroid Build Coastguard Workermsgid "while reading xattrs for inode %u"
4062*6a54128fSAndroid Build Coastguard Workermsgstr ""
4063*6a54128fSAndroid Build Coastguard Worker
4064*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:180 misc/create_inode.c:207 misc/create_inode.c:1064
4065*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:186 misc/e2undo.c:483 misc/e2undo.c:489 misc/e2undo.c:495
4066*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:361
4067*6a54128fSAndroid Build Coastguard Workermsgid "while allocating memory"
4068*6a54128fSAndroid Build Coastguard Workermsgstr ""
4069*6a54128fSAndroid Build Coastguard Worker
4070*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:200 misc/create_inode.c:216
4071*6a54128fSAndroid Build Coastguard Worker#, c-format
4072*6a54128fSAndroid Build Coastguard Workermsgid "while reading attribute \"%s\" of \"%s\""
4073*6a54128fSAndroid Build Coastguard Workermsgstr ""
4074*6a54128fSAndroid Build Coastguard Worker
4075*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:225
4076*6a54128fSAndroid Build Coastguard Worker#, c-format
4077*6a54128fSAndroid Build Coastguard Workermsgid "while writing attribute \"%s\" to inode %u"
4078*6a54128fSAndroid Build Coastguard Workermsgstr ""
4079*6a54128fSAndroid Build Coastguard Worker
4080*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:235
4081*6a54128fSAndroid Build Coastguard Worker#, c-format
4082*6a54128fSAndroid Build Coastguard Workermsgid "while closing inode %u"
4083*6a54128fSAndroid Build Coastguard Workermsgstr ""
4084*6a54128fSAndroid Build Coastguard Worker
4085*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:285
4086*6a54128fSAndroid Build Coastguard Worker#, c-format
4087*6a54128fSAndroid Build Coastguard Workermsgid "while allocating inode \"%s\""
4088*6a54128fSAndroid Build Coastguard Workermsgstr ""
4089*6a54128fSAndroid Build Coastguard Worker
4090*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:304
4091*6a54128fSAndroid Build Coastguard Worker#, c-format
4092*6a54128fSAndroid Build Coastguard Workermsgid "while creating inode \"%s\""
4093*6a54128fSAndroid Build Coastguard Workermsgstr ""
4094*6a54128fSAndroid Build Coastguard Worker
4095*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:370
4096*6a54128fSAndroid Build Coastguard Worker#, c-format
4097*6a54128fSAndroid Build Coastguard Workermsgid "while creating symlink \"%s\""
4098*6a54128fSAndroid Build Coastguard Workermsgstr ""
4099*6a54128fSAndroid Build Coastguard Worker
4100*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:388 misc/create_inode.c:652 misc/create_inode.c:984
4101*6a54128fSAndroid Build Coastguard Worker#, c-format
4102*6a54128fSAndroid Build Coastguard Workermsgid "while looking up \"%s\""
4103*6a54128fSAndroid Build Coastguard Workermsgstr ""
4104*6a54128fSAndroid Build Coastguard Worker
4105*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:408
4106*6a54128fSAndroid Build Coastguard Worker#, c-format
4107*6a54128fSAndroid Build Coastguard Workermsgid "while creating directory \"%s\""
4108*6a54128fSAndroid Build Coastguard Workermsgstr ""
4109*6a54128fSAndroid Build Coastguard Worker
4110*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:638
4111*6a54128fSAndroid Build Coastguard Worker#, c-format
4112*6a54128fSAndroid Build Coastguard Workermsgid "while opening \"%s\" to copy"
4113*6a54128fSAndroid Build Coastguard Workermsgstr ""
4114*6a54128fSAndroid Build Coastguard Worker
4115*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:822
4116*6a54128fSAndroid Build Coastguard Worker#, c-format
4117*6a54128fSAndroid Build Coastguard Workermsgid "while changing working directory to \"%s\""
4118*6a54128fSAndroid Build Coastguard Workermsgstr ""
4119*6a54128fSAndroid Build Coastguard Worker
4120*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:832
4121*6a54128fSAndroid Build Coastguard Worker#, c-format
4122*6a54128fSAndroid Build Coastguard Workermsgid "while scanning directory \"%s\""
4123*6a54128fSAndroid Build Coastguard Workermsgstr ""
4124*6a54128fSAndroid Build Coastguard Worker
4125*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:842
4126*6a54128fSAndroid Build Coastguard Worker#, c-format
4127*6a54128fSAndroid Build Coastguard Workermsgid "while lstat \"%s\""
4128*6a54128fSAndroid Build Coastguard Workermsgstr ""
4129*6a54128fSAndroid Build Coastguard Worker
4130*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:892
4131*6a54128fSAndroid Build Coastguard Worker#, c-format
4132*6a54128fSAndroid Build Coastguard Workermsgid "while creating special file \"%s\""
4133*6a54128fSAndroid Build Coastguard Workermsgstr ""
4134*6a54128fSAndroid Build Coastguard Worker
4135*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:904
4136*6a54128fSAndroid Build Coastguard Workermsgid "malloc failed"
4137*6a54128fSAndroid Build Coastguard Workermsgstr ""
4138*6a54128fSAndroid Build Coastguard Worker
4139*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:912
4140*6a54128fSAndroid Build Coastguard Worker#, c-format
4141*6a54128fSAndroid Build Coastguard Workermsgid "while trying to read link \"%s\""
4142*6a54128fSAndroid Build Coastguard Workermsgstr ""
4143*6a54128fSAndroid Build Coastguard Worker
4144*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:919
4145*6a54128fSAndroid Build Coastguard Workermsgid "symlink increased in size between lstat() and readlink()"
4146*6a54128fSAndroid Build Coastguard Workermsgstr ""
4147*6a54128fSAndroid Build Coastguard Worker
4148*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:930
4149*6a54128fSAndroid Build Coastguard Worker#, c-format
4150*6a54128fSAndroid Build Coastguard Workermsgid "while writing symlink\"%s\""
4151*6a54128fSAndroid Build Coastguard Workermsgstr ""
4152*6a54128fSAndroid Build Coastguard Worker
4153*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:942
4154*6a54128fSAndroid Build Coastguard Worker#, c-format
4155*6a54128fSAndroid Build Coastguard Workermsgid "while writing file \"%s\""
4156*6a54128fSAndroid Build Coastguard Workermsgstr ""
4157*6a54128fSAndroid Build Coastguard Worker
4158*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:955
4159*6a54128fSAndroid Build Coastguard Worker#, c-format
4160*6a54128fSAndroid Build Coastguard Workermsgid "while making dir \"%s\""
4161*6a54128fSAndroid Build Coastguard Workermsgstr ""
4162*6a54128fSAndroid Build Coastguard Worker
4163*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:973
4164*6a54128fSAndroid Build Coastguard Workermsgid "while changing directory"
4165*6a54128fSAndroid Build Coastguard Workermsgstr ""
4166*6a54128fSAndroid Build Coastguard Worker
4167*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:979
4168*6a54128fSAndroid Build Coastguard Worker#, c-format
4169*6a54128fSAndroid Build Coastguard Workermsgid "ignoring entry \"%s\""
4170*6a54128fSAndroid Build Coastguard Workermsgstr ""
4171*6a54128fSAndroid Build Coastguard Worker
4172*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:992
4173*6a54128fSAndroid Build Coastguard Worker#, c-format
4174*6a54128fSAndroid Build Coastguard Workermsgid "while setting inode for \"%s\""
4175*6a54128fSAndroid Build Coastguard Workermsgstr ""
4176*6a54128fSAndroid Build Coastguard Worker
4177*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:999
4178*6a54128fSAndroid Build Coastguard Worker#, c-format
4179*6a54128fSAndroid Build Coastguard Workermsgid "while setting xattrs for \"%s\""
4180*6a54128fSAndroid Build Coastguard Workermsgstr ""
4181*6a54128fSAndroid Build Coastguard Worker
4182*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:1025
4183*6a54128fSAndroid Build Coastguard Workermsgid "while saving inode data"
4184*6a54128fSAndroid Build Coastguard Workermsgstr ""
4185*6a54128fSAndroid Build Coastguard Worker
4186*6a54128fSAndroid Build Coastguard Worker#: misc/create_inode.c:1075
4187*6a54128fSAndroid Build Coastguard Workermsgid "while copying xattrs on root directory"
4188*6a54128fSAndroid Build Coastguard Workermsgstr ""
4189*6a54128fSAndroid Build Coastguard Worker
4190*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:56
4191*6a54128fSAndroid Build Coastguard Worker#, c-format
4192*6a54128fSAndroid Build Coastguard Workermsgid ""
4193*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-bfghimxV] [-o superblock=<num>] [-o blocksize=<num>] device\n"
4194*6a54128fSAndroid Build Coastguard Workermsgstr ""
4195*6a54128fSAndroid Build Coastguard Worker
4196*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:159
4197*6a54128fSAndroid Build Coastguard Workermsgid "blocks"
4198*6a54128fSAndroid Build Coastguard Workermsgstr ""
4199*6a54128fSAndroid Build Coastguard Worker
4200*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:168
4201*6a54128fSAndroid Build Coastguard Workermsgid "clusters"
4202*6a54128fSAndroid Build Coastguard Workermsgstr ""
4203*6a54128fSAndroid Build Coastguard Worker
4204*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:219
4205*6a54128fSAndroid Build Coastguard Worker#, c-format
4206*6a54128fSAndroid Build Coastguard Workermsgid "Group %lu: (Blocks "
4207*6a54128fSAndroid Build Coastguard Workermsgstr ""
4208*6a54128fSAndroid Build Coastguard Worker
4209*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:226
4210*6a54128fSAndroid Build Coastguard Worker#, c-format
4211*6a54128fSAndroid Build Coastguard Workermsgid " csum 0x%04x"
4212*6a54128fSAndroid Build Coastguard Workermsgstr ""
4213*6a54128fSAndroid Build Coastguard Worker
4214*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:228
4215*6a54128fSAndroid Build Coastguard Worker#, c-format
4216*6a54128fSAndroid Build Coastguard Workermsgid " (EXPECTED 0x%04x)"
4217*6a54128fSAndroid Build Coastguard Workermsgstr ""
4218*6a54128fSAndroid Build Coastguard Worker
4219*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:233
4220*6a54128fSAndroid Build Coastguard Worker#, c-format
4221*6a54128fSAndroid Build Coastguard Workermsgid "  %s superblock at "
4222*6a54128fSAndroid Build Coastguard Workermsgstr ""
4223*6a54128fSAndroid Build Coastguard Worker
4224*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:234
4225*6a54128fSAndroid Build Coastguard Workermsgid "Primary"
4226*6a54128fSAndroid Build Coastguard Workermsgstr ""
4227*6a54128fSAndroid Build Coastguard Worker
4228*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:234
4229*6a54128fSAndroid Build Coastguard Workermsgid "Backup"
4230*6a54128fSAndroid Build Coastguard Workermsgstr ""
4231*6a54128fSAndroid Build Coastguard Worker
4232*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:238
4233*6a54128fSAndroid Build Coastguard Workermsgid ", Group descriptors at "
4234*6a54128fSAndroid Build Coastguard Workermsgstr ""
4235*6a54128fSAndroid Build Coastguard Worker
4236*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:242
4237*6a54128fSAndroid Build Coastguard Workermsgid ""
4238*6a54128fSAndroid Build Coastguard Worker"\n"
4239*6a54128fSAndroid Build Coastguard Worker"  Reserved GDT blocks at "
4240*6a54128fSAndroid Build Coastguard Workermsgstr ""
4241*6a54128fSAndroid Build Coastguard Worker
4242*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:249
4243*6a54128fSAndroid Build Coastguard Workermsgid " Group descriptor at "
4244*6a54128fSAndroid Build Coastguard Workermsgstr ""
4245*6a54128fSAndroid Build Coastguard Worker
4246*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:255
4247*6a54128fSAndroid Build Coastguard Workermsgid "  Block bitmap at "
4248*6a54128fSAndroid Build Coastguard Workermsgstr ""
4249*6a54128fSAndroid Build Coastguard Worker
4250*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:260 misc/dumpe2fs.c:271
4251*6a54128fSAndroid Build Coastguard Worker#, c-format
4252*6a54128fSAndroid Build Coastguard Workermsgid ", csum 0x%08x"
4253*6a54128fSAndroid Build Coastguard Workermsgstr ""
4254*6a54128fSAndroid Build Coastguard Worker
4255*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:263
4256*6a54128fSAndroid Build Coastguard Workermsgid ","
4257*6a54128fSAndroid Build Coastguard Workermsgstr ""
4258*6a54128fSAndroid Build Coastguard Worker
4259*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:265
4260*6a54128fSAndroid Build Coastguard Workermsgid ""
4261*6a54128fSAndroid Build Coastguard Worker"\n"
4262*6a54128fSAndroid Build Coastguard Worker" "
4263*6a54128fSAndroid Build Coastguard Workermsgstr ""
4264*6a54128fSAndroid Build Coastguard Worker
4265*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:266
4266*6a54128fSAndroid Build Coastguard Workermsgid " Inode bitmap at "
4267*6a54128fSAndroid Build Coastguard Workermsgstr ""
4268*6a54128fSAndroid Build Coastguard Worker
4269*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:273
4270*6a54128fSAndroid Build Coastguard Workermsgid ""
4271*6a54128fSAndroid Build Coastguard Worker"\n"
4272*6a54128fSAndroid Build Coastguard Worker"  Inode table at "
4273*6a54128fSAndroid Build Coastguard Workermsgstr ""
4274*6a54128fSAndroid Build Coastguard Worker
4275*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:279
4276*6a54128fSAndroid Build Coastguard Worker#, c-format
4277*6a54128fSAndroid Build Coastguard Workermsgid ""
4278*6a54128fSAndroid Build Coastguard Worker"\n"
4279*6a54128fSAndroid Build Coastguard Worker"  %u free %s, %u free inodes, %u directories%s"
4280*6a54128fSAndroid Build Coastguard Workermsgstr ""
4281*6a54128fSAndroid Build Coastguard Worker
4282*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:286
4283*6a54128fSAndroid Build Coastguard Worker#, c-format
4284*6a54128fSAndroid Build Coastguard Workermsgid ", %u unused inodes\n"
4285*6a54128fSAndroid Build Coastguard Workermsgstr ""
4286*6a54128fSAndroid Build Coastguard Worker
4287*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:289
4288*6a54128fSAndroid Build Coastguard Workermsgid "  Free blocks: "
4289*6a54128fSAndroid Build Coastguard Workermsgstr ""
4290*6a54128fSAndroid Build Coastguard Worker
4291*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:304
4292*6a54128fSAndroid Build Coastguard Workermsgid "  Free inodes: "
4293*6a54128fSAndroid Build Coastguard Workermsgstr ""
4294*6a54128fSAndroid Build Coastguard Worker
4295*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:340
4296*6a54128fSAndroid Build Coastguard Workermsgid "while printing bad block list"
4297*6a54128fSAndroid Build Coastguard Workermsgstr ""
4298*6a54128fSAndroid Build Coastguard Worker
4299*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:347
4300*6a54128fSAndroid Build Coastguard Worker#, c-format
4301*6a54128fSAndroid Build Coastguard Workermsgid "Bad blocks: %u"
4302*6a54128fSAndroid Build Coastguard Workermsgstr ""
4303*6a54128fSAndroid Build Coastguard Worker
4304*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:375 misc/tune2fs.c:379
4305*6a54128fSAndroid Build Coastguard Workermsgid "while reading journal inode"
4306*6a54128fSAndroid Build Coastguard Workermsgstr ""
4307*6a54128fSAndroid Build Coastguard Worker
4308*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:381
4309*6a54128fSAndroid Build Coastguard Workermsgid "while opening journal inode"
4310*6a54128fSAndroid Build Coastguard Workermsgstr ""
4311*6a54128fSAndroid Build Coastguard Worker
4312*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:387
4313*6a54128fSAndroid Build Coastguard Workermsgid "while reading journal super block"
4314*6a54128fSAndroid Build Coastguard Workermsgstr ""
4315*6a54128fSAndroid Build Coastguard Worker
4316*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:394
4317*6a54128fSAndroid Build Coastguard Workermsgid "Journal superblock magic number invalid!\n"
4318*6a54128fSAndroid Build Coastguard Workermsgstr ""
4319*6a54128fSAndroid Build Coastguard Worker
4320*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:414 misc/tune2fs.c:222
4321*6a54128fSAndroid Build Coastguard Workermsgid "while reading journal superblock"
4322*6a54128fSAndroid Build Coastguard Workermsgstr ""
4323*6a54128fSAndroid Build Coastguard Worker
4324*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:422
4325*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't find journal superblock magic numbers"
4326*6a54128fSAndroid Build Coastguard Workermsgstr ""
4327*6a54128fSAndroid Build Coastguard Worker
4328*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:477
4329*6a54128fSAndroid Build Coastguard Workermsgid "failed to alloc MMP buffer\n"
4330*6a54128fSAndroid Build Coastguard Workermsgstr ""
4331*6a54128fSAndroid Build Coastguard Worker
4332*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:488
4333*6a54128fSAndroid Build Coastguard Worker#, c-format
4334*6a54128fSAndroid Build Coastguard Workermsgid "reading MMP block %llu from '%s'\n"
4335*6a54128fSAndroid Build Coastguard Workermsgstr ""
4336*6a54128fSAndroid Build Coastguard Worker
4337*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:520 misc/mke2fs.c:811 misc/tune2fs.c:2123
4338*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate memory to parse options!\n"
4339*6a54128fSAndroid Build Coastguard Workermsgstr ""
4340*6a54128fSAndroid Build Coastguard Worker
4341*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:546
4342*6a54128fSAndroid Build Coastguard Worker#, c-format
4343*6a54128fSAndroid Build Coastguard Workermsgid "Invalid superblock parameter: %s\n"
4344*6a54128fSAndroid Build Coastguard Workermsgstr ""
4345*6a54128fSAndroid Build Coastguard Worker
4346*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:561
4347*6a54128fSAndroid Build Coastguard Worker#, c-format
4348*6a54128fSAndroid Build Coastguard Workermsgid "Invalid blocksize parameter: %s\n"
4349*6a54128fSAndroid Build Coastguard Workermsgstr ""
4350*6a54128fSAndroid Build Coastguard Worker
4351*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:572
4352*6a54128fSAndroid Build Coastguard Worker#, c-format
4353*6a54128fSAndroid Build Coastguard Workermsgid ""
4354*6a54128fSAndroid Build Coastguard Worker"\n"
4355*6a54128fSAndroid Build Coastguard Worker"Bad extended option(s) specified: %s\n"
4356*6a54128fSAndroid Build Coastguard Worker"\n"
4357*6a54128fSAndroid Build Coastguard Worker"Extended options are separated by commas, and may take an argument which\n"
4358*6a54128fSAndroid Build Coastguard Worker"\tis set off by an equals ('=') sign.\n"
4359*6a54128fSAndroid Build Coastguard Worker"\n"
4360*6a54128fSAndroid Build Coastguard Worker"Valid extended options are:\n"
4361*6a54128fSAndroid Build Coastguard Worker"\tsuperblock=<superblock number>\n"
4362*6a54128fSAndroid Build Coastguard Worker"\tblocksize=<blocksize>\n"
4363*6a54128fSAndroid Build Coastguard Workermsgstr ""
4364*6a54128fSAndroid Build Coastguard Worker
4365*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:663 misc/mke2fs.c:1913
4366*6a54128fSAndroid Build Coastguard Worker#, c-format
4367*6a54128fSAndroid Build Coastguard Workermsgid "\tUsing %s\n"
4368*6a54128fSAndroid Build Coastguard Workermsgstr ""
4369*6a54128fSAndroid Build Coastguard Worker
4370*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:710 misc/e2image.c:1642 misc/tune2fs.c:3011
4371*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:424
4372*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't find valid filesystem superblock.\n"
4373*6a54128fSAndroid Build Coastguard Workermsgstr ""
4374*6a54128fSAndroid Build Coastguard Worker
4375*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:732
4376*6a54128fSAndroid Build Coastguard Worker#, c-format
4377*6a54128fSAndroid Build Coastguard Workermsgid "%s: MMP feature not enabled.\n"
4378*6a54128fSAndroid Build Coastguard Workermsgstr ""
4379*6a54128fSAndroid Build Coastguard Worker
4380*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:763
4381*6a54128fSAndroid Build Coastguard Worker#, c-format
4382*6a54128fSAndroid Build Coastguard Workermsgid "while trying to read '%s' bitmaps\n"
4383*6a54128fSAndroid Build Coastguard Workermsgstr ""
4384*6a54128fSAndroid Build Coastguard Worker
4385*6a54128fSAndroid Build Coastguard Worker#: misc/dumpe2fs.c:772
4386*6a54128fSAndroid Build Coastguard Workermsgid ""
4387*6a54128fSAndroid Build Coastguard Worker"*** Run e2fsck now!\n"
4388*6a54128fSAndroid Build Coastguard Worker"\n"
4389*6a54128fSAndroid Build Coastguard Workermsgstr ""
4390*6a54128fSAndroid Build Coastguard Worker
4391*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:108
4392*6a54128fSAndroid Build Coastguard Worker#, c-format
4393*6a54128fSAndroid Build Coastguard Workermsgid ""
4394*6a54128fSAndroid Build Coastguard Worker"Usage: %s [ -r|-Q ] [ -f ] [ -b superblock ] [ -B blocksize ] device image-"
4395*6a54128fSAndroid Build Coastguard Worker"file\n"
4396*6a54128fSAndroid Build Coastguard Workermsgstr ""
4397*6a54128fSAndroid Build Coastguard Worker
4398*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:111
4399*6a54128fSAndroid Build Coastguard Worker#, c-format
4400*6a54128fSAndroid Build Coastguard Workermsgid "       %s -I device image-file\n"
4401*6a54128fSAndroid Build Coastguard Workermsgstr ""
4402*6a54128fSAndroid Build Coastguard Worker
4403*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:112
4404*6a54128fSAndroid Build Coastguard Worker#, c-format
4405*6a54128fSAndroid Build Coastguard Workermsgid ""
4406*6a54128fSAndroid Build Coastguard Worker"       %s -ra [ -cfnp ] [ -o src_offset ] [ -O dest_offset ] src_fs "
4407*6a54128fSAndroid Build Coastguard Worker"[ dest_fs ]\n"
4408*6a54128fSAndroid Build Coastguard Workermsgstr ""
4409*6a54128fSAndroid Build Coastguard Worker
4410*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:177 misc/e2image.c:593 misc/e2image.c:599 misc/e2image.c:1201
4411*6a54128fSAndroid Build Coastguard Workermsgid "while allocating buffer"
4412*6a54128fSAndroid Build Coastguard Workermsgstr ""
4413*6a54128fSAndroid Build Coastguard Worker
4414*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:182
4415*6a54128fSAndroid Build Coastguard Worker#, c-format
4416*6a54128fSAndroid Build Coastguard Workermsgid "Writing block %llu\n"
4417*6a54128fSAndroid Build Coastguard Workermsgstr ""
4418*6a54128fSAndroid Build Coastguard Worker
4419*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:196
4420*6a54128fSAndroid Build Coastguard Worker#, c-format
4421*6a54128fSAndroid Build Coastguard Workermsgid "error writing block %llu"
4422*6a54128fSAndroid Build Coastguard Workermsgstr ""
4423*6a54128fSAndroid Build Coastguard Worker
4424*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:200
4425*6a54128fSAndroid Build Coastguard Workermsgid "error in generic_write()"
4426*6a54128fSAndroid Build Coastguard Workermsgstr ""
4427*6a54128fSAndroid Build Coastguard Worker
4428*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:217
4429*6a54128fSAndroid Build Coastguard Workermsgid "Error: header size is bigger than wrt_size\n"
4430*6a54128fSAndroid Build Coastguard Workermsgstr ""
4431*6a54128fSAndroid Build Coastguard Worker
4432*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:222
4433*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate header buffer\n"
4434*6a54128fSAndroid Build Coastguard Workermsgstr ""
4435*6a54128fSAndroid Build Coastguard Worker
4436*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:250
4437*6a54128fSAndroid Build Coastguard Workermsgid "while writing superblock"
4438*6a54128fSAndroid Build Coastguard Workermsgstr ""
4439*6a54128fSAndroid Build Coastguard Worker
4440*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:259
4441*6a54128fSAndroid Build Coastguard Workermsgid "while writing inode table"
4442*6a54128fSAndroid Build Coastguard Workermsgstr ""
4443*6a54128fSAndroid Build Coastguard Worker
4444*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:267
4445*6a54128fSAndroid Build Coastguard Workermsgid "while writing block bitmap"
4446*6a54128fSAndroid Build Coastguard Workermsgstr ""
4447*6a54128fSAndroid Build Coastguard Worker
4448*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:275
4449*6a54128fSAndroid Build Coastguard Workermsgid "while writing inode bitmap"
4450*6a54128fSAndroid Build Coastguard Workermsgstr ""
4451*6a54128fSAndroid Build Coastguard Worker
4452*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:517
4453*6a54128fSAndroid Build Coastguard Worker#, c-format
4454*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt directory block %llu: bad rec_len (%d)\n"
4455*6a54128fSAndroid Build Coastguard Workermsgstr ""
4456*6a54128fSAndroid Build Coastguard Worker
4457*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:529
4458*6a54128fSAndroid Build Coastguard Worker#, c-format
4459*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt directory block %llu: bad name_len (%d)\n"
4460*6a54128fSAndroid Build Coastguard Workermsgstr ""
4461*6a54128fSAndroid Build Coastguard Worker
4462*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:570
4463*6a54128fSAndroid Build Coastguard Worker#, c-format
4464*6a54128fSAndroid Build Coastguard Workermsgid "%llu / %llu blocks (%d%%)"
4465*6a54128fSAndroid Build Coastguard Workermsgstr ""
4466*6a54128fSAndroid Build Coastguard Worker
4467*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:603 misc/e2image.c:643
4468*6a54128fSAndroid Build Coastguard Workermsgid "Copying "
4469*6a54128fSAndroid Build Coastguard Workermsgstr ""
4470*6a54128fSAndroid Build Coastguard Worker
4471*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:640
4472*6a54128fSAndroid Build Coastguard Workermsgid ""
4473*6a54128fSAndroid Build Coastguard Worker"Stopping now will destroy the filesystem, interrupt again if you are sure\n"
4474*6a54128fSAndroid Build Coastguard Workermsgstr ""
4475*6a54128fSAndroid Build Coastguard Worker
4476*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:666
4477*6a54128fSAndroid Build Coastguard Worker#, c-format
4478*6a54128fSAndroid Build Coastguard Workermsgid " %s remaining at %.2f MB/s"
4479*6a54128fSAndroid Build Coastguard Workermsgstr ""
4480*6a54128fSAndroid Build Coastguard Worker
4481*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:678 misc/e2image.c:1211
4482*6a54128fSAndroid Build Coastguard Worker#, c-format
4483*6a54128fSAndroid Build Coastguard Workermsgid "error reading block %llu"
4484*6a54128fSAndroid Build Coastguard Workermsgstr ""
4485*6a54128fSAndroid Build Coastguard Worker
4486*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:733
4487*6a54128fSAndroid Build Coastguard Worker#, c-format
4488*6a54128fSAndroid Build Coastguard Workermsgid "Copied %llu / %llu blocks (%d%%) in %s "
4489*6a54128fSAndroid Build Coastguard Workermsgstr ""
4490*6a54128fSAndroid Build Coastguard Worker
4491*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:738
4492*6a54128fSAndroid Build Coastguard Worker#, c-format
4493*6a54128fSAndroid Build Coastguard Workermsgid "at %.2f MB/s"
4494*6a54128fSAndroid Build Coastguard Workermsgstr ""
4495*6a54128fSAndroid Build Coastguard Worker
4496*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:774
4497*6a54128fSAndroid Build Coastguard Workermsgid "while allocating l1 table"
4498*6a54128fSAndroid Build Coastguard Workermsgstr ""
4499*6a54128fSAndroid Build Coastguard Worker
4500*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:819
4501*6a54128fSAndroid Build Coastguard Workermsgid "while allocating l2 cache"
4502*6a54128fSAndroid Build Coastguard Workermsgstr ""
4503*6a54128fSAndroid Build Coastguard Worker
4504*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:842
4505*6a54128fSAndroid Build Coastguard Workermsgid ""
4506*6a54128fSAndroid Build Coastguard Worker"Warning: There are still tables in the cache while putting the cache, data "
4507*6a54128fSAndroid Build Coastguard Worker"will be lost so the image may not be valid.\n"
4508*6a54128fSAndroid Build Coastguard Workermsgstr ""
4509*6a54128fSAndroid Build Coastguard Worker
4510*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1168
4511*6a54128fSAndroid Build Coastguard Workermsgid "while allocating ext2_qcow2_image"
4512*6a54128fSAndroid Build Coastguard Workermsgstr ""
4513*6a54128fSAndroid Build Coastguard Worker
4514*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1175
4515*6a54128fSAndroid Build Coastguard Workermsgid "while initializing ext2_qcow2_image"
4516*6a54128fSAndroid Build Coastguard Workermsgstr ""
4517*6a54128fSAndroid Build Coastguard Worker
4518*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1235 misc/e2image.c:1253
4519*6a54128fSAndroid Build Coastguard Workermsgid "Programming error: multiple sequential refcount blocks created!\n"
4520*6a54128fSAndroid Build Coastguard Workermsgstr ""
4521*6a54128fSAndroid Build Coastguard Worker
4522*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1294
4523*6a54128fSAndroid Build Coastguard Workermsgid "while allocating block bitmap"
4524*6a54128fSAndroid Build Coastguard Workermsgstr ""
4525*6a54128fSAndroid Build Coastguard Worker
4526*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1303
4527*6a54128fSAndroid Build Coastguard Workermsgid "while allocating scramble block bitmap"
4528*6a54128fSAndroid Build Coastguard Workermsgstr ""
4529*6a54128fSAndroid Build Coastguard Worker
4530*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1326
4531*6a54128fSAndroid Build Coastguard Workermsgid "Scanning inodes...\n"
4532*6a54128fSAndroid Build Coastguard Workermsgstr ""
4533*6a54128fSAndroid Build Coastguard Worker
4534*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1338
4535*6a54128fSAndroid Build Coastguard Workermsgid "Can't allocate block buffer"
4536*6a54128fSAndroid Build Coastguard Workermsgstr ""
4537*6a54128fSAndroid Build Coastguard Worker
4538*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1350
4539*6a54128fSAndroid Build Coastguard Workermsgid "while getting next inode"
4540*6a54128fSAndroid Build Coastguard Workermsgstr ""
4541*6a54128fSAndroid Build Coastguard Worker
4542*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1379 misc/e2image.c:1393
4543*6a54128fSAndroid Build Coastguard Worker#, c-format
4544*6a54128fSAndroid Build Coastguard Workermsgid "while iterating over inode %u"
4545*6a54128fSAndroid Build Coastguard Workermsgstr ""
4546*6a54128fSAndroid Build Coastguard Worker
4547*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1425
4548*6a54128fSAndroid Build Coastguard Workermsgid "Raw and qcow2 images cannot be installed"
4549*6a54128fSAndroid Build Coastguard Workermsgstr ""
4550*6a54128fSAndroid Build Coastguard Worker
4551*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1447
4552*6a54128fSAndroid Build Coastguard Workermsgid "error reading bitmaps"
4553*6a54128fSAndroid Build Coastguard Workermsgstr ""
4554*6a54128fSAndroid Build Coastguard Worker
4555*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1459
4556*6a54128fSAndroid Build Coastguard Workermsgid "while opening device file"
4557*6a54128fSAndroid Build Coastguard Workermsgstr ""
4558*6a54128fSAndroid Build Coastguard Worker
4559*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1470
4560*6a54128fSAndroid Build Coastguard Workermsgid "while restoring the image table"
4561*6a54128fSAndroid Build Coastguard Workermsgstr ""
4562*6a54128fSAndroid Build Coastguard Worker
4563*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1578
4564*6a54128fSAndroid Build Coastguard Workermsgid "-a option can only be used with raw or QCOW2 images."
4565*6a54128fSAndroid Build Coastguard Workermsgstr ""
4566*6a54128fSAndroid Build Coastguard Worker
4567*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1583
4568*6a54128fSAndroid Build Coastguard Workermsgid "-b option can only be used with raw or QCOW2 images."
4569*6a54128fSAndroid Build Coastguard Workermsgstr ""
4570*6a54128fSAndroid Build Coastguard Worker
4571*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1589
4572*6a54128fSAndroid Build Coastguard Workermsgid "Offsets are only allowed with raw images."
4573*6a54128fSAndroid Build Coastguard Workermsgstr ""
4574*6a54128fSAndroid Build Coastguard Worker
4575*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1594
4576*6a54128fSAndroid Build Coastguard Workermsgid "Move mode is only allowed with raw images."
4577*6a54128fSAndroid Build Coastguard Workermsgstr ""
4578*6a54128fSAndroid Build Coastguard Worker
4579*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1599
4580*6a54128fSAndroid Build Coastguard Workermsgid "Move mode requires all data mode."
4581*6a54128fSAndroid Build Coastguard Workermsgstr ""
4582*6a54128fSAndroid Build Coastguard Worker
4583*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1609
4584*6a54128fSAndroid Build Coastguard Workermsgid "checking if mounted"
4585*6a54128fSAndroid Build Coastguard Workermsgstr ""
4586*6a54128fSAndroid Build Coastguard Worker
4587*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1616
4588*6a54128fSAndroid Build Coastguard Workermsgid ""
4589*6a54128fSAndroid Build Coastguard Worker"\n"
4590*6a54128fSAndroid Build Coastguard Worker"Running e2image on a R/W mounted filesystem can result in an\n"
4591*6a54128fSAndroid Build Coastguard Worker"inconsistent image which will not be useful for debugging purposes.\n"
4592*6a54128fSAndroid Build Coastguard Worker"Use -f option if you really want to do that.\n"
4593*6a54128fSAndroid Build Coastguard Workermsgstr ""
4594*6a54128fSAndroid Build Coastguard Worker
4595*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1670
4596*6a54128fSAndroid Build Coastguard Workermsgid "QCOW2 image can not be written to the stdout!\n"
4597*6a54128fSAndroid Build Coastguard Workermsgstr ""
4598*6a54128fSAndroid Build Coastguard Worker
4599*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1676
4600*6a54128fSAndroid Build Coastguard Workermsgid "Can not stat output\n"
4601*6a54128fSAndroid Build Coastguard Workermsgstr ""
4602*6a54128fSAndroid Build Coastguard Worker
4603*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1686
4604*6a54128fSAndroid Build Coastguard Worker#, c-format
4605*6a54128fSAndroid Build Coastguard Workermsgid "Image (%s) is compressed\n"
4606*6a54128fSAndroid Build Coastguard Workermsgstr ""
4607*6a54128fSAndroid Build Coastguard Worker
4608*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1689
4609*6a54128fSAndroid Build Coastguard Worker#, c-format
4610*6a54128fSAndroid Build Coastguard Workermsgid "Image (%s) is encrypted\n"
4611*6a54128fSAndroid Build Coastguard Workermsgstr ""
4612*6a54128fSAndroid Build Coastguard Worker
4613*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1692
4614*6a54128fSAndroid Build Coastguard Worker#, c-format
4615*6a54128fSAndroid Build Coastguard Workermsgid "Image (%s) is corrupted\n"
4616*6a54128fSAndroid Build Coastguard Workermsgstr ""
4617*6a54128fSAndroid Build Coastguard Worker
4618*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1696
4619*6a54128fSAndroid Build Coastguard Worker#, c-format
4620*6a54128fSAndroid Build Coastguard Workermsgid "while trying to convert qcow2 image (%s) into raw image (%s)"
4621*6a54128fSAndroid Build Coastguard Workermsgstr ""
4622*6a54128fSAndroid Build Coastguard Worker
4623*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1706
4624*6a54128fSAndroid Build Coastguard Workermsgid "The -c option only supported in raw mode\n"
4625*6a54128fSAndroid Build Coastguard Workermsgstr ""
4626*6a54128fSAndroid Build Coastguard Worker
4627*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1711
4628*6a54128fSAndroid Build Coastguard Workermsgid "The -c option not supported when writing to stdout\n"
4629*6a54128fSAndroid Build Coastguard Workermsgstr ""
4630*6a54128fSAndroid Build Coastguard Worker
4631*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1718
4632*6a54128fSAndroid Build Coastguard Workermsgid "while allocating check_buf"
4633*6a54128fSAndroid Build Coastguard Workermsgstr ""
4634*6a54128fSAndroid Build Coastguard Worker
4635*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1724
4636*6a54128fSAndroid Build Coastguard Workermsgid "The -p option only supported in raw mode\n"
4637*6a54128fSAndroid Build Coastguard Workermsgstr ""
4638*6a54128fSAndroid Build Coastguard Worker
4639*6a54128fSAndroid Build Coastguard Worker#: misc/e2image.c:1734
4640*6a54128fSAndroid Build Coastguard Worker#, c-format
4641*6a54128fSAndroid Build Coastguard Workermsgid "%d blocks already contained the data to be copied\n"
4642*6a54128fSAndroid Build Coastguard Workermsgstr ""
4643*6a54128fSAndroid Build Coastguard Worker
4644*6a54128fSAndroid Build Coastguard Worker#: misc/e2initrd_helper.c:69
4645*6a54128fSAndroid Build Coastguard Worker#, c-format
4646*6a54128fSAndroid Build Coastguard Workermsgid "Usage: %s -r device\n"
4647*6a54128fSAndroid Build Coastguard Workermsgstr ""
4648*6a54128fSAndroid Build Coastguard Worker
4649*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:58
4650*6a54128fSAndroid Build Coastguard Worker#, c-format
4651*6a54128fSAndroid Build Coastguard Workermsgid "e2label: cannot open %s\n"
4652*6a54128fSAndroid Build Coastguard Workermsgstr ""
4653*6a54128fSAndroid Build Coastguard Worker
4654*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:63
4655*6a54128fSAndroid Build Coastguard Worker#, c-format
4656*6a54128fSAndroid Build Coastguard Workermsgid "e2label: cannot seek to superblock\n"
4657*6a54128fSAndroid Build Coastguard Workermsgstr ""
4658*6a54128fSAndroid Build Coastguard Worker
4659*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:68
4660*6a54128fSAndroid Build Coastguard Worker#, c-format
4661*6a54128fSAndroid Build Coastguard Workermsgid "e2label: error reading superblock\n"
4662*6a54128fSAndroid Build Coastguard Workermsgstr ""
4663*6a54128fSAndroid Build Coastguard Worker
4664*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:72
4665*6a54128fSAndroid Build Coastguard Worker#, c-format
4666*6a54128fSAndroid Build Coastguard Workermsgid "e2label: not an ext2 filesystem\n"
4667*6a54128fSAndroid Build Coastguard Workermsgstr ""
4668*6a54128fSAndroid Build Coastguard Worker
4669*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:97 misc/tune2fs.c:3220
4670*6a54128fSAndroid Build Coastguard Worker#, c-format
4671*6a54128fSAndroid Build Coastguard Workermsgid "Warning: label too long, truncating.\n"
4672*6a54128fSAndroid Build Coastguard Workermsgstr ""
4673*6a54128fSAndroid Build Coastguard Worker
4674*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:100
4675*6a54128fSAndroid Build Coastguard Worker#, c-format
4676*6a54128fSAndroid Build Coastguard Workermsgid "e2label: cannot seek to superblock again\n"
4677*6a54128fSAndroid Build Coastguard Workermsgstr ""
4678*6a54128fSAndroid Build Coastguard Worker
4679*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:105
4680*6a54128fSAndroid Build Coastguard Worker#, c-format
4681*6a54128fSAndroid Build Coastguard Workermsgid "e2label: error writing superblock\n"
4682*6a54128fSAndroid Build Coastguard Workermsgstr ""
4683*6a54128fSAndroid Build Coastguard Worker
4684*6a54128fSAndroid Build Coastguard Worker#: misc/e2label.c:117 misc/tune2fs.c:1775
4685*6a54128fSAndroid Build Coastguard Worker#, c-format
4686*6a54128fSAndroid Build Coastguard Workermsgid "Usage: e2label device [newlabel]\n"
4687*6a54128fSAndroid Build Coastguard Workermsgstr ""
4688*6a54128fSAndroid Build Coastguard Worker
4689*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:124
4690*6a54128fSAndroid Build Coastguard Worker#, c-format
4691*6a54128fSAndroid Build Coastguard Workermsgid ""
4692*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-f] [-h] [-n] [-o offset] [-v] [-z undo_file] <transaction file> "
4693*6a54128fSAndroid Build Coastguard Worker"<filesystem>\n"
4694*6a54128fSAndroid Build Coastguard Workermsgstr ""
4695*6a54128fSAndroid Build Coastguard Worker
4696*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:153
4697*6a54128fSAndroid Build Coastguard Workermsgid "The file system superblock doesn't match the undo file.\n"
4698*6a54128fSAndroid Build Coastguard Workermsgstr ""
4699*6a54128fSAndroid Build Coastguard Worker
4700*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:156
4701*6a54128fSAndroid Build Coastguard Workermsgid "UUID does not match.\n"
4702*6a54128fSAndroid Build Coastguard Workermsgstr ""
4703*6a54128fSAndroid Build Coastguard Worker
4704*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:158
4705*6a54128fSAndroid Build Coastguard Workermsgid "Last mount time does not match.\n"
4706*6a54128fSAndroid Build Coastguard Workermsgstr ""
4707*6a54128fSAndroid Build Coastguard Worker
4708*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:160
4709*6a54128fSAndroid Build Coastguard Workermsgid "Last write time does not match.\n"
4710*6a54128fSAndroid Build Coastguard Workermsgstr ""
4711*6a54128fSAndroid Build Coastguard Worker
4712*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:162
4713*6a54128fSAndroid Build Coastguard Workermsgid "Lifetime write counter does not match.\n"
4714*6a54128fSAndroid Build Coastguard Workermsgstr ""
4715*6a54128fSAndroid Build Coastguard Worker
4716*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:176
4717*6a54128fSAndroid Build Coastguard Workermsgid "while reading filesystem superblock."
4718*6a54128fSAndroid Build Coastguard Workermsgstr ""
4719*6a54128fSAndroid Build Coastguard Worker
4720*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:192
4721*6a54128fSAndroid Build Coastguard Workermsgid "while fetching superblock"
4722*6a54128fSAndroid Build Coastguard Workermsgstr ""
4723*6a54128fSAndroid Build Coastguard Worker
4724*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:205
4725*6a54128fSAndroid Build Coastguard Worker#, c-format
4726*6a54128fSAndroid Build Coastguard Workermsgid "Undo file superblock checksum doesn't match.\n"
4727*6a54128fSAndroid Build Coastguard Workermsgstr ""
4728*6a54128fSAndroid Build Coastguard Worker
4729*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:344
4730*6a54128fSAndroid Build Coastguard Worker#, c-format
4731*6a54128fSAndroid Build Coastguard Workermsgid "illegal offset - %s"
4732*6a54128fSAndroid Build Coastguard Workermsgstr ""
4733*6a54128fSAndroid Build Coastguard Worker
4734*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:368
4735*6a54128fSAndroid Build Coastguard Worker#, c-format
4736*6a54128fSAndroid Build Coastguard Workermsgid "Will not write to an undo file while replaying it.\n"
4737*6a54128fSAndroid Build Coastguard Workermsgstr ""
4738*6a54128fSAndroid Build Coastguard Worker
4739*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:377
4740*6a54128fSAndroid Build Coastguard Worker#, c-format
4741*6a54128fSAndroid Build Coastguard Workermsgid "while opening undo file `%s'\n"
4742*6a54128fSAndroid Build Coastguard Workermsgstr ""
4743*6a54128fSAndroid Build Coastguard Worker
4744*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:384
4745*6a54128fSAndroid Build Coastguard Workermsgid "while reading undo file"
4746*6a54128fSAndroid Build Coastguard Workermsgstr ""
4747*6a54128fSAndroid Build Coastguard Worker
4748*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:389
4749*6a54128fSAndroid Build Coastguard Worker#, c-format
4750*6a54128fSAndroid Build Coastguard Workermsgid "%s: Not an undo file.\n"
4751*6a54128fSAndroid Build Coastguard Workermsgstr ""
4752*6a54128fSAndroid Build Coastguard Worker
4753*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:400
4754*6a54128fSAndroid Build Coastguard Worker#, c-format
4755*6a54128fSAndroid Build Coastguard Workermsgid "%s: Header checksum doesn't match.\n"
4756*6a54128fSAndroid Build Coastguard Workermsgstr ""
4757*6a54128fSAndroid Build Coastguard Worker
4758*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:407
4759*6a54128fSAndroid Build Coastguard Worker#, c-format
4760*6a54128fSAndroid Build Coastguard Workermsgid "%s: Corrupt undo file header.\n"
4761*6a54128fSAndroid Build Coastguard Workermsgstr ""
4762*6a54128fSAndroid Build Coastguard Worker
4763*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:411
4764*6a54128fSAndroid Build Coastguard Worker#, c-format
4765*6a54128fSAndroid Build Coastguard Workermsgid "%s: Undo block size too large.\n"
4766*6a54128fSAndroid Build Coastguard Workermsgstr ""
4767*6a54128fSAndroid Build Coastguard Worker
4768*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:416
4769*6a54128fSAndroid Build Coastguard Worker#, c-format
4770*6a54128fSAndroid Build Coastguard Workermsgid "%s: Undo block size too small.\n"
4771*6a54128fSAndroid Build Coastguard Workermsgstr ""
4772*6a54128fSAndroid Build Coastguard Worker
4773*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:429
4774*6a54128fSAndroid Build Coastguard Worker#, c-format
4775*6a54128fSAndroid Build Coastguard Workermsgid "%s: Unknown undo file feature set.\n"
4776*6a54128fSAndroid Build Coastguard Workermsgstr ""
4777*6a54128fSAndroid Build Coastguard Worker
4778*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:437
4779*6a54128fSAndroid Build Coastguard Worker#, c-format
4780*6a54128fSAndroid Build Coastguard Workermsgid "Error while determining whether %s is mounted."
4781*6a54128fSAndroid Build Coastguard Workermsgstr ""
4782*6a54128fSAndroid Build Coastguard Worker
4783*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:443
4784*6a54128fSAndroid Build Coastguard Workermsgid "e2undo should only be run on unmounted filesystems"
4785*6a54128fSAndroid Build Coastguard Workermsgstr ""
4786*6a54128fSAndroid Build Coastguard Worker
4787*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:459
4788*6a54128fSAndroid Build Coastguard Worker#, c-format
4789*6a54128fSAndroid Build Coastguard Workermsgid "while opening `%s'"
4790*6a54128fSAndroid Build Coastguard Workermsgstr ""
4791*6a54128fSAndroid Build Coastguard Worker
4792*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:470
4793*6a54128fSAndroid Build Coastguard Workermsgid "specified offset is too large"
4794*6a54128fSAndroid Build Coastguard Workermsgstr ""
4795*6a54128fSAndroid Build Coastguard Worker
4796*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:511
4797*6a54128fSAndroid Build Coastguard Workermsgid "while reading keys"
4798*6a54128fSAndroid Build Coastguard Workermsgstr ""
4799*6a54128fSAndroid Build Coastguard Worker
4800*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:523
4801*6a54128fSAndroid Build Coastguard Worker#, c-format
4802*6a54128fSAndroid Build Coastguard Workermsgid "%s: wrong key magic at %llu\n"
4803*6a54128fSAndroid Build Coastguard Workermsgstr ""
4804*6a54128fSAndroid Build Coastguard Worker
4805*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:533
4806*6a54128fSAndroid Build Coastguard Worker#, c-format
4807*6a54128fSAndroid Build Coastguard Workermsgid "%s: key block checksum error at %llu.\n"
4808*6a54128fSAndroid Build Coastguard Workermsgstr ""
4809*6a54128fSAndroid Build Coastguard Worker
4810*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:556
4811*6a54128fSAndroid Build Coastguard Worker#, c-format
4812*6a54128fSAndroid Build Coastguard Workermsgid "%s: block %llu is too long."
4813*6a54128fSAndroid Build Coastguard Workermsgstr ""
4814*6a54128fSAndroid Build Coastguard Worker
4815*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:569 misc/e2undo.c:606
4816*6a54128fSAndroid Build Coastguard Worker#, c-format
4817*6a54128fSAndroid Build Coastguard Workermsgid "while fetching block %llu."
4818*6a54128fSAndroid Build Coastguard Workermsgstr ""
4819*6a54128fSAndroid Build Coastguard Worker
4820*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:581
4821*6a54128fSAndroid Build Coastguard Worker#, c-format
4822*6a54128fSAndroid Build Coastguard Workermsgid "checksum error in filesystem block %llu (undo blk %llu)\n"
4823*6a54128fSAndroid Build Coastguard Workermsgstr ""
4824*6a54128fSAndroid Build Coastguard Worker
4825*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:622
4826*6a54128fSAndroid Build Coastguard Worker#, c-format
4827*6a54128fSAndroid Build Coastguard Workermsgid "while writing block %llu."
4828*6a54128fSAndroid Build Coastguard Workermsgstr ""
4829*6a54128fSAndroid Build Coastguard Worker
4830*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:629
4831*6a54128fSAndroid Build Coastguard Worker#, c-format
4832*6a54128fSAndroid Build Coastguard Workermsgid "Undo file corruption; run e2fsck NOW!\n"
4833*6a54128fSAndroid Build Coastguard Workermsgstr ""
4834*6a54128fSAndroid Build Coastguard Worker
4835*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:631
4836*6a54128fSAndroid Build Coastguard Worker#, c-format
4837*6a54128fSAndroid Build Coastguard Workermsgid "IO error during replay; run e2fsck NOW!\n"
4838*6a54128fSAndroid Build Coastguard Workermsgstr ""
4839*6a54128fSAndroid Build Coastguard Worker
4840*6a54128fSAndroid Build Coastguard Worker#: misc/e2undo.c:634
4841*6a54128fSAndroid Build Coastguard Worker#, c-format
4842*6a54128fSAndroid Build Coastguard Workermsgid "Incomplete undo record; run e2fsck.\n"
4843*6a54128fSAndroid Build Coastguard Workermsgstr ""
4844*6a54128fSAndroid Build Coastguard Worker
4845*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:110
4846*6a54128fSAndroid Build Coastguard Worker#, c-format
4847*6a54128fSAndroid Build Coastguard Workermsgid "Usage:  findsuper device [skipbytes [startkb]]\n"
4848*6a54128fSAndroid Build Coastguard Workermsgstr ""
4849*6a54128fSAndroid Build Coastguard Worker
4850*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:155
4851*6a54128fSAndroid Build Coastguard Worker#, c-format
4852*6a54128fSAndroid Build Coastguard Workermsgid "skipbytes should be a number, not %s\n"
4853*6a54128fSAndroid Build Coastguard Workermsgstr ""
4854*6a54128fSAndroid Build Coastguard Worker
4855*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:162
4856*6a54128fSAndroid Build Coastguard Worker#, c-format
4857*6a54128fSAndroid Build Coastguard Workermsgid "skipbytes must be a multiple of the sector size\n"
4858*6a54128fSAndroid Build Coastguard Workermsgstr ""
4859*6a54128fSAndroid Build Coastguard Worker
4860*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:169
4861*6a54128fSAndroid Build Coastguard Worker#, c-format
4862*6a54128fSAndroid Build Coastguard Workermsgid "startkb should be a number, not %s\n"
4863*6a54128fSAndroid Build Coastguard Workermsgstr ""
4864*6a54128fSAndroid Build Coastguard Worker
4865*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:175
4866*6a54128fSAndroid Build Coastguard Worker#, c-format
4867*6a54128fSAndroid Build Coastguard Workermsgid "startkb should be positive, not %llu\n"
4868*6a54128fSAndroid Build Coastguard Workermsgstr ""
4869*6a54128fSAndroid Build Coastguard Worker
4870*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:186
4871*6a54128fSAndroid Build Coastguard Worker#, c-format
4872*6a54128fSAndroid Build Coastguard Workermsgid "starting at %llu, with %u byte increments\n"
4873*6a54128fSAndroid Build Coastguard Workermsgstr ""
4874*6a54128fSAndroid Build Coastguard Worker
4875*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:188
4876*6a54128fSAndroid Build Coastguard Worker#, c-format
4877*6a54128fSAndroid Build Coastguard Workermsgid ""
4878*6a54128fSAndroid Build Coastguard Worker"[*] probably superblock written in the ext3 journal superblock,\n"
4879*6a54128fSAndroid Build Coastguard Worker"\tso start/end/grp wrong\n"
4880*6a54128fSAndroid Build Coastguard Workermsgstr ""
4881*6a54128fSAndroid Build Coastguard Worker
4882*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:190
4883*6a54128fSAndroid Build Coastguard Worker#, c-format
4884*6a54128fSAndroid Build Coastguard Workermsgid ""
4885*6a54128fSAndroid Build Coastguard Worker"byte_offset  byte_start     byte_end  fs_blocks blksz  grp  mkfs/"
4886*6a54128fSAndroid Build Coastguard Worker"mount_time           sb_uuid label\n"
4887*6a54128fSAndroid Build Coastguard Workermsgstr ""
4888*6a54128fSAndroid Build Coastguard Worker
4889*6a54128fSAndroid Build Coastguard Worker#: misc/findsuper.c:265
4890*6a54128fSAndroid Build Coastguard Worker#, c-format
4891*6a54128fSAndroid Build Coastguard Workermsgid ""
4892*6a54128fSAndroid Build Coastguard Worker"\n"
4893*6a54128fSAndroid Build Coastguard Worker"%11Lu: finished with errno %d\n"
4894*6a54128fSAndroid Build Coastguard Workermsgstr ""
4895*6a54128fSAndroid Build Coastguard Worker
4896*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:344
4897*6a54128fSAndroid Build Coastguard Worker#, c-format
4898*6a54128fSAndroid Build Coastguard Workermsgid "WARNING: couldn't open %s: %s\n"
4899*6a54128fSAndroid Build Coastguard Workermsgstr ""
4900*6a54128fSAndroid Build Coastguard Worker
4901*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:354
4902*6a54128fSAndroid Build Coastguard Worker#, c-format
4903*6a54128fSAndroid Build Coastguard Workermsgid "WARNING: bad format on line %d of %s\n"
4904*6a54128fSAndroid Build Coastguard Workermsgstr ""
4905*6a54128fSAndroid Build Coastguard Worker
4906*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:371
4907*6a54128fSAndroid Build Coastguard Workermsgid ""
4908*6a54128fSAndroid Build Coastguard Worker"WARNING: Your /etc/fstab does not contain the fsck passno\n"
4909*6a54128fSAndroid Build Coastguard Worker"\tfield.  I will kludge around things for you, but you\n"
4910*6a54128fSAndroid Build Coastguard Worker"\tshould fix your /etc/fstab file as soon as you can.\n"
4911*6a54128fSAndroid Build Coastguard Worker"\n"
4912*6a54128fSAndroid Build Coastguard Workermsgstr ""
4913*6a54128fSAndroid Build Coastguard Worker
4914*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:486
4915*6a54128fSAndroid Build Coastguard Worker#, c-format
4916*6a54128fSAndroid Build Coastguard Workermsgid "fsck: %s: not found\n"
4917*6a54128fSAndroid Build Coastguard Workermsgstr ""
4918*6a54128fSAndroid Build Coastguard Worker
4919*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:604
4920*6a54128fSAndroid Build Coastguard Worker#, c-format
4921*6a54128fSAndroid Build Coastguard Workermsgid "%s: wait: No more child process?!?\n"
4922*6a54128fSAndroid Build Coastguard Workermsgstr ""
4923*6a54128fSAndroid Build Coastguard Worker
4924*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:626
4925*6a54128fSAndroid Build Coastguard Worker#, c-format
4926*6a54128fSAndroid Build Coastguard Workermsgid "Warning... %s for device %s exited with signal %d.\n"
4927*6a54128fSAndroid Build Coastguard Workermsgstr ""
4928*6a54128fSAndroid Build Coastguard Worker
4929*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:632
4930*6a54128fSAndroid Build Coastguard Worker#, c-format
4931*6a54128fSAndroid Build Coastguard Workermsgid "%s %s: status is %x, should never happen.\n"
4932*6a54128fSAndroid Build Coastguard Workermsgstr ""
4933*6a54128fSAndroid Build Coastguard Worker
4934*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:671
4935*6a54128fSAndroid Build Coastguard Worker#, c-format
4936*6a54128fSAndroid Build Coastguard Workermsgid "Finished with %s (exit status %d)\n"
4937*6a54128fSAndroid Build Coastguard Workermsgstr ""
4938*6a54128fSAndroid Build Coastguard Worker
4939*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:731
4940*6a54128fSAndroid Build Coastguard Worker#, c-format
4941*6a54128fSAndroid Build Coastguard Workermsgid "%s: Error %d while executing fsck.%s for %s\n"
4942*6a54128fSAndroid Build Coastguard Workermsgstr ""
4943*6a54128fSAndroid Build Coastguard Worker
4944*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:752
4945*6a54128fSAndroid Build Coastguard Workermsgid ""
4946*6a54128fSAndroid Build Coastguard Worker"Either all or none of the filesystem types passed to -t must be prefixed\n"
4947*6a54128fSAndroid Build Coastguard Worker"with 'no' or '!'.\n"
4948*6a54128fSAndroid Build Coastguard Workermsgstr ""
4949*6a54128fSAndroid Build Coastguard Worker
4950*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:771
4951*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate memory for filesystem types\n"
4952*6a54128fSAndroid Build Coastguard Workermsgstr ""
4953*6a54128fSAndroid Build Coastguard Worker
4954*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:894
4955*6a54128fSAndroid Build Coastguard Worker#, c-format
4956*6a54128fSAndroid Build Coastguard Workermsgid ""
4957*6a54128fSAndroid Build Coastguard Worker"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
4958*6a54128fSAndroid Build Coastguard Worker"number\n"
4959*6a54128fSAndroid Build Coastguard Workermsgstr ""
4960*6a54128fSAndroid Build Coastguard Worker
4961*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:921
4962*6a54128fSAndroid Build Coastguard Worker#, c-format
4963*6a54128fSAndroid Build Coastguard Workermsgid "fsck: cannot check %s: fsck.%s not found\n"
4964*6a54128fSAndroid Build Coastguard Workermsgstr ""
4965*6a54128fSAndroid Build Coastguard Worker
4966*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:977
4967*6a54128fSAndroid Build Coastguard Workermsgid "Checking all file systems.\n"
4968*6a54128fSAndroid Build Coastguard Workermsgstr ""
4969*6a54128fSAndroid Build Coastguard Worker
4970*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:1068
4971*6a54128fSAndroid Build Coastguard Worker#, c-format
4972*6a54128fSAndroid Build Coastguard Workermsgid "--waiting-- (pass %d)\n"
4973*6a54128fSAndroid Build Coastguard Workermsgstr ""
4974*6a54128fSAndroid Build Coastguard Worker
4975*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:1088
4976*6a54128fSAndroid Build Coastguard Workermsgid ""
4977*6a54128fSAndroid Build Coastguard Worker"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
4978*6a54128fSAndroid Build Coastguard Workermsgstr ""
4979*6a54128fSAndroid Build Coastguard Worker
4980*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:1130
4981*6a54128fSAndroid Build Coastguard Worker#, c-format
4982*6a54128fSAndroid Build Coastguard Workermsgid "%s: too many devices\n"
4983*6a54128fSAndroid Build Coastguard Workermsgstr ""
4984*6a54128fSAndroid Build Coastguard Worker
4985*6a54128fSAndroid Build Coastguard Worker#: misc/fsck.c:1163 misc/fsck.c:1249
4986*6a54128fSAndroid Build Coastguard Worker#, c-format
4987*6a54128fSAndroid Build Coastguard Workermsgid "%s: too many arguments\n"
4988*6a54128fSAndroid Build Coastguard Workermsgstr ""
4989*6a54128fSAndroid Build Coastguard Worker
4990*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3750
4991*6a54128fSAndroid Build Coastguard Workermsgid "Mounting read-only.\n"
4992*6a54128fSAndroid Build Coastguard Workermsgstr ""
4993*6a54128fSAndroid Build Coastguard Worker
4994*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3774
4995*6a54128fSAndroid Build Coastguard Worker#, c-format
4996*6a54128fSAndroid Build Coastguard Workermsgid "%s: Allowing users to allocate all blocks. This is dangerous!\n"
4997*6a54128fSAndroid Build Coastguard Workermsgstr ""
4998*6a54128fSAndroid Build Coastguard Worker
4999*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3788 misc/fuse2fs.c:3806
5000*6a54128fSAndroid Build Coastguard Worker#, c-format
5001*6a54128fSAndroid Build Coastguard Workermsgid "%s: %s.\n"
5002*6a54128fSAndroid Build Coastguard Workermsgstr ""
5003*6a54128fSAndroid Build Coastguard Worker
5004*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3789 misc/fuse2fs.c:3808 misc/tune2fs.c:3111
5005*6a54128fSAndroid Build Coastguard Worker#, c-format
5006*6a54128fSAndroid Build Coastguard Workermsgid "Please run e2fsck -fy %s.\n"
5007*6a54128fSAndroid Build Coastguard Workermsgstr ""
5008*6a54128fSAndroid Build Coastguard Worker
5009*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3799
5010*6a54128fSAndroid Build Coastguard Worker#, c-format
5011*6a54128fSAndroid Build Coastguard Workermsgid "%s: mounting read-only without recovering journal\n"
5012*6a54128fSAndroid Build Coastguard Workermsgstr ""
5013*6a54128fSAndroid Build Coastguard Worker
5014*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3815
5015*6a54128fSAndroid Build Coastguard Workermsgid "Journal needs recovery; running `e2fsck -E journal_only' is required.\n"
5016*6a54128fSAndroid Build Coastguard Workermsgstr ""
5017*6a54128fSAndroid Build Coastguard Worker
5018*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3823
5019*6a54128fSAndroid Build Coastguard Worker#, c-format
5020*6a54128fSAndroid Build Coastguard Workermsgid "%s: Writing to the journal is not supported.\n"
5021*6a54128fSAndroid Build Coastguard Workermsgstr ""
5022*6a54128fSAndroid Build Coastguard Worker
5023*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3838
5024*6a54128fSAndroid Build Coastguard Workermsgid "Warning: Mounting unchecked fs, running e2fsck is recommended.\n"
5025*6a54128fSAndroid Build Coastguard Workermsgstr ""
5026*6a54128fSAndroid Build Coastguard Worker
5027*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3842
5028*6a54128fSAndroid Build Coastguard Workermsgid "Warning: Maximal mount count reached, running e2fsck is recommended.\n"
5029*6a54128fSAndroid Build Coastguard Workermsgstr ""
5030*6a54128fSAndroid Build Coastguard Worker
5031*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3847
5032*6a54128fSAndroid Build Coastguard Workermsgid "Warning: Check time reached; running e2fsck is recommended.\n"
5033*6a54128fSAndroid Build Coastguard Workermsgstr ""
5034*6a54128fSAndroid Build Coastguard Worker
5035*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3851
5036*6a54128fSAndroid Build Coastguard Workermsgid "Orphans detected; running e2fsck is recommended.\n"
5037*6a54128fSAndroid Build Coastguard Workermsgstr ""
5038*6a54128fSAndroid Build Coastguard Worker
5039*6a54128fSAndroid Build Coastguard Worker#: misc/fuse2fs.c:3855
5040*6a54128fSAndroid Build Coastguard Workermsgid "Errors detected; running e2fsck is required.\n"
5041*6a54128fSAndroid Build Coastguard Workermsgstr ""
5042*6a54128fSAndroid Build Coastguard Worker
5043*6a54128fSAndroid Build Coastguard Worker#: misc/lsattr.c:75
5044*6a54128fSAndroid Build Coastguard Worker#, c-format
5045*6a54128fSAndroid Build Coastguard Workermsgid "Usage: %s [-RVadlpv] [files...]\n"
5046*6a54128fSAndroid Build Coastguard Workermsgstr ""
5047*6a54128fSAndroid Build Coastguard Worker
5048*6a54128fSAndroid Build Coastguard Worker#: misc/lsattr.c:86
5049*6a54128fSAndroid Build Coastguard Worker#, c-format
5050*6a54128fSAndroid Build Coastguard Workermsgid "While reading flags on %s"
5051*6a54128fSAndroid Build Coastguard Workermsgstr ""
5052*6a54128fSAndroid Build Coastguard Worker
5053*6a54128fSAndroid Build Coastguard Worker#: misc/lsattr.c:93
5054*6a54128fSAndroid Build Coastguard Worker#, c-format
5055*6a54128fSAndroid Build Coastguard Workermsgid "While reading project on %s"
5056*6a54128fSAndroid Build Coastguard Workermsgstr ""
5057*6a54128fSAndroid Build Coastguard Worker
5058*6a54128fSAndroid Build Coastguard Worker#: misc/lsattr.c:102
5059*6a54128fSAndroid Build Coastguard Worker#, c-format
5060*6a54128fSAndroid Build Coastguard Workermsgid "While reading version on %s"
5061*6a54128fSAndroid Build Coastguard Workermsgstr ""
5062*6a54128fSAndroid Build Coastguard Worker
5063*6a54128fSAndroid Build Coastguard Worker#: misc/lsattr.c:148
5064*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate path variable in lsattr_dir_proc\n"
5065*6a54128fSAndroid Build Coastguard Workermsgstr ""
5066*6a54128fSAndroid Build Coastguard Worker
5067*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:131
5068*6a54128fSAndroid Build Coastguard Worker#, c-format
5069*6a54128fSAndroid Build Coastguard Workermsgid ""
5070*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-c|-l filename] [-b block-size] [-C cluster-size]\n"
5071*6a54128fSAndroid Build Coastguard Worker"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
5072*6a54128fSAndroid Build Coastguard Worker"\t[-G flex-group-size] [-N number-of-inodes] [-d root-directory]\n"
5073*6a54128fSAndroid Build Coastguard Worker"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
5074*6a54128fSAndroid Build Coastguard Worker"\t[-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]\n"
5075*6a54128fSAndroid Build Coastguard Worker"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
5076*6a54128fSAndroid Build Coastguard Worker"\t[-t fs-type] [-T usage-type ] [-U UUID] [-e errors_behavior][-z "
5077*6a54128fSAndroid Build Coastguard Worker"undo_file]\n"
5078*6a54128fSAndroid Build Coastguard Worker"\t[-jnqvDFSV] device [blocks-count]\n"
5079*6a54128fSAndroid Build Coastguard Workermsgstr ""
5080*6a54128fSAndroid Build Coastguard Worker
5081*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:263
5082*6a54128fSAndroid Build Coastguard Worker#, c-format
5083*6a54128fSAndroid Build Coastguard Workermsgid "Running command: %s\n"
5084*6a54128fSAndroid Build Coastguard Workermsgstr ""
5085*6a54128fSAndroid Build Coastguard Worker
5086*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:267
5087*6a54128fSAndroid Build Coastguard Worker#, c-format
5088*6a54128fSAndroid Build Coastguard Workermsgid "while trying to run '%s'"
5089*6a54128fSAndroid Build Coastguard Workermsgstr ""
5090*6a54128fSAndroid Build Coastguard Worker
5091*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:274
5092*6a54128fSAndroid Build Coastguard Workermsgid "while processing list of bad blocks from program"
5093*6a54128fSAndroid Build Coastguard Workermsgstr ""
5094*6a54128fSAndroid Build Coastguard Worker
5095*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:301
5096*6a54128fSAndroid Build Coastguard Worker#, c-format
5097*6a54128fSAndroid Build Coastguard Workermsgid "Block %d in primary superblock/group descriptor area bad.\n"
5098*6a54128fSAndroid Build Coastguard Workermsgstr ""
5099*6a54128fSAndroid Build Coastguard Worker
5100*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:303
5101*6a54128fSAndroid Build Coastguard Worker#, c-format
5102*6a54128fSAndroid Build Coastguard Workermsgid "Blocks %u through %u must be good in order to build a filesystem.\n"
5103*6a54128fSAndroid Build Coastguard Workermsgstr ""
5104*6a54128fSAndroid Build Coastguard Worker
5105*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:306
5106*6a54128fSAndroid Build Coastguard Workermsgid "Aborting....\n"
5107*6a54128fSAndroid Build Coastguard Workermsgstr ""
5108*6a54128fSAndroid Build Coastguard Worker
5109*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:326
5110*6a54128fSAndroid Build Coastguard Worker#, c-format
5111*6a54128fSAndroid Build Coastguard Workermsgid ""
5112*6a54128fSAndroid Build Coastguard Worker"Warning: the backup superblock/group descriptors at block %u contain\n"
5113*6a54128fSAndroid Build Coastguard Worker"\tbad blocks.\n"
5114*6a54128fSAndroid Build Coastguard Worker"\n"
5115*6a54128fSAndroid Build Coastguard Workermsgstr ""
5116*6a54128fSAndroid Build Coastguard Worker
5117*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:345 misc/mke2fs.c:3320
5118*6a54128fSAndroid Build Coastguard Workermsgid "while marking bad blocks as used"
5119*6a54128fSAndroid Build Coastguard Workermsgstr ""
5120*6a54128fSAndroid Build Coastguard Worker
5121*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:370
5122*6a54128fSAndroid Build Coastguard Workermsgid "while writing reserved inodes"
5123*6a54128fSAndroid Build Coastguard Workermsgstr ""
5124*6a54128fSAndroid Build Coastguard Worker
5125*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:422
5126*6a54128fSAndroid Build Coastguard Workermsgid "Writing inode tables: "
5127*6a54128fSAndroid Build Coastguard Workermsgstr ""
5128*6a54128fSAndroid Build Coastguard Worker
5129*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:444
5130*6a54128fSAndroid Build Coastguard Worker#, c-format
5131*6a54128fSAndroid Build Coastguard Workermsgid ""
5132*6a54128fSAndroid Build Coastguard Worker"\n"
5133*6a54128fSAndroid Build Coastguard Worker"Could not write %d blocks in inode table starting at %llu: %s\n"
5134*6a54128fSAndroid Build Coastguard Workermsgstr ""
5135*6a54128fSAndroid Build Coastguard Worker
5136*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:459 misc/mke2fs.c:2872 misc/mke2fs.c:3280
5137*6a54128fSAndroid Build Coastguard Workermsgid "done                            \n"
5138*6a54128fSAndroid Build Coastguard Workermsgstr ""
5139*6a54128fSAndroid Build Coastguard Worker
5140*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:474
5141*6a54128fSAndroid Build Coastguard Workermsgid "while creating root dir"
5142*6a54128fSAndroid Build Coastguard Workermsgstr ""
5143*6a54128fSAndroid Build Coastguard Worker
5144*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:481
5145*6a54128fSAndroid Build Coastguard Workermsgid "while reading root inode"
5146*6a54128fSAndroid Build Coastguard Workermsgstr ""
5147*6a54128fSAndroid Build Coastguard Worker
5148*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:493
5149*6a54128fSAndroid Build Coastguard Workermsgid "while setting root inode ownership"
5150*6a54128fSAndroid Build Coastguard Workermsgstr ""
5151*6a54128fSAndroid Build Coastguard Worker
5152*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:511
5153*6a54128fSAndroid Build Coastguard Workermsgid "while creating /lost+found"
5154*6a54128fSAndroid Build Coastguard Workermsgstr ""
5155*6a54128fSAndroid Build Coastguard Worker
5156*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:518
5157*6a54128fSAndroid Build Coastguard Workermsgid "while looking up /lost+found"
5158*6a54128fSAndroid Build Coastguard Workermsgstr ""
5159*6a54128fSAndroid Build Coastguard Worker
5160*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:531
5161*6a54128fSAndroid Build Coastguard Workermsgid "while expanding /lost+found"
5162*6a54128fSAndroid Build Coastguard Workermsgstr ""
5163*6a54128fSAndroid Build Coastguard Worker
5164*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:546
5165*6a54128fSAndroid Build Coastguard Workermsgid "while setting bad block inode"
5166*6a54128fSAndroid Build Coastguard Workermsgstr ""
5167*6a54128fSAndroid Build Coastguard Worker
5168*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:573
5169*6a54128fSAndroid Build Coastguard Worker#, c-format
5170*6a54128fSAndroid Build Coastguard Workermsgid "Out of memory erasing sectors %d-%d\n"
5171*6a54128fSAndroid Build Coastguard Workermsgstr ""
5172*6a54128fSAndroid Build Coastguard Worker
5173*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:583
5174*6a54128fSAndroid Build Coastguard Worker#, c-format
5175*6a54128fSAndroid Build Coastguard Workermsgid "Warning: could not read block 0: %s\n"
5176*6a54128fSAndroid Build Coastguard Workermsgstr ""
5177*6a54128fSAndroid Build Coastguard Worker
5178*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:601
5179*6a54128fSAndroid Build Coastguard Worker#, c-format
5180*6a54128fSAndroid Build Coastguard Workermsgid "Warning: could not erase sector %d: %s\n"
5181*6a54128fSAndroid Build Coastguard Workermsgstr ""
5182*6a54128fSAndroid Build Coastguard Worker
5183*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:617
5184*6a54128fSAndroid Build Coastguard Workermsgid "while splitting the journal size"
5185*6a54128fSAndroid Build Coastguard Workermsgstr ""
5186*6a54128fSAndroid Build Coastguard Worker
5187*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:624
5188*6a54128fSAndroid Build Coastguard Workermsgid "while initializing journal superblock"
5189*6a54128fSAndroid Build Coastguard Workermsgstr ""
5190*6a54128fSAndroid Build Coastguard Worker
5191*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:632
5192*6a54128fSAndroid Build Coastguard Workermsgid "Zeroing journal device: "
5193*6a54128fSAndroid Build Coastguard Workermsgstr ""
5194*6a54128fSAndroid Build Coastguard Worker
5195*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:644
5196*6a54128fSAndroid Build Coastguard Worker#, c-format
5197*6a54128fSAndroid Build Coastguard Workermsgid "while zeroing journal device (block %llu, count %d)"
5198*6a54128fSAndroid Build Coastguard Workermsgstr ""
5199*6a54128fSAndroid Build Coastguard Worker
5200*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:662
5201*6a54128fSAndroid Build Coastguard Workermsgid "while writing journal superblock"
5202*6a54128fSAndroid Build Coastguard Workermsgstr ""
5203*6a54128fSAndroid Build Coastguard Worker
5204*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:676
5205*6a54128fSAndroid Build Coastguard Worker#, c-format
5206*6a54128fSAndroid Build Coastguard Workermsgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
5207*6a54128fSAndroid Build Coastguard Workermsgstr ""
5208*6a54128fSAndroid Build Coastguard Worker
5209*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:684
5210*6a54128fSAndroid Build Coastguard Worker#, c-format
5211*6a54128fSAndroid Build Coastguard Workermsgid ""
5212*6a54128fSAndroid Build Coastguard Worker"warning: %llu blocks unused.\n"
5213*6a54128fSAndroid Build Coastguard Worker"\n"
5214*6a54128fSAndroid Build Coastguard Workermsgstr ""
5215*6a54128fSAndroid Build Coastguard Worker
5216*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:688
5217*6a54128fSAndroid Build Coastguard Worker#, c-format
5218*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem label=%.*s\n"
5219*6a54128fSAndroid Build Coastguard Workermsgstr ""
5220*6a54128fSAndroid Build Coastguard Worker
5221*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:692
5222*6a54128fSAndroid Build Coastguard Worker#, c-format
5223*6a54128fSAndroid Build Coastguard Workermsgid "OS type: %s\n"
5224*6a54128fSAndroid Build Coastguard Workermsgstr ""
5225*6a54128fSAndroid Build Coastguard Worker
5226*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:694
5227*6a54128fSAndroid Build Coastguard Worker#, c-format
5228*6a54128fSAndroid Build Coastguard Workermsgid "Block size=%u (log=%u)\n"
5229*6a54128fSAndroid Build Coastguard Workermsgstr ""
5230*6a54128fSAndroid Build Coastguard Worker
5231*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:697
5232*6a54128fSAndroid Build Coastguard Worker#, c-format
5233*6a54128fSAndroid Build Coastguard Workermsgid "Cluster size=%u (log=%u)\n"
5234*6a54128fSAndroid Build Coastguard Workermsgstr ""
5235*6a54128fSAndroid Build Coastguard Worker
5236*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:701
5237*6a54128fSAndroid Build Coastguard Worker#, c-format
5238*6a54128fSAndroid Build Coastguard Workermsgid "Fragment size=%u (log=%u)\n"
5239*6a54128fSAndroid Build Coastguard Workermsgstr ""
5240*6a54128fSAndroid Build Coastguard Worker
5241*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:703
5242*6a54128fSAndroid Build Coastguard Worker#, c-format
5243*6a54128fSAndroid Build Coastguard Workermsgid "Stride=%u blocks, Stripe width=%u blocks\n"
5244*6a54128fSAndroid Build Coastguard Workermsgstr ""
5245*6a54128fSAndroid Build Coastguard Worker
5246*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:705
5247*6a54128fSAndroid Build Coastguard Worker#, c-format
5248*6a54128fSAndroid Build Coastguard Workermsgid "%u inodes, %llu blocks\n"
5249*6a54128fSAndroid Build Coastguard Workermsgstr ""
5250*6a54128fSAndroid Build Coastguard Worker
5251*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:707
5252*6a54128fSAndroid Build Coastguard Worker#, c-format
5253*6a54128fSAndroid Build Coastguard Workermsgid "%llu blocks (%2.2f%%) reserved for the super user\n"
5254*6a54128fSAndroid Build Coastguard Workermsgstr ""
5255*6a54128fSAndroid Build Coastguard Worker
5256*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:710
5257*6a54128fSAndroid Build Coastguard Worker#, c-format
5258*6a54128fSAndroid Build Coastguard Workermsgid "First data block=%u\n"
5259*6a54128fSAndroid Build Coastguard Workermsgstr ""
5260*6a54128fSAndroid Build Coastguard Worker
5261*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:712
5262*6a54128fSAndroid Build Coastguard Worker#, c-format
5263*6a54128fSAndroid Build Coastguard Workermsgid "Root directory owner=%u:%u\n"
5264*6a54128fSAndroid Build Coastguard Workermsgstr ""
5265*6a54128fSAndroid Build Coastguard Worker
5266*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:714
5267*6a54128fSAndroid Build Coastguard Worker#, c-format
5268*6a54128fSAndroid Build Coastguard Workermsgid "Maximum filesystem blocks=%lu\n"
5269*6a54128fSAndroid Build Coastguard Workermsgstr ""
5270*6a54128fSAndroid Build Coastguard Worker
5271*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:718
5272*6a54128fSAndroid Build Coastguard Worker#, c-format
5273*6a54128fSAndroid Build Coastguard Workermsgid "%u block groups\n"
5274*6a54128fSAndroid Build Coastguard Workermsgstr ""
5275*6a54128fSAndroid Build Coastguard Worker
5276*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:720
5277*6a54128fSAndroid Build Coastguard Worker#, c-format
5278*6a54128fSAndroid Build Coastguard Workermsgid "%u block group\n"
5279*6a54128fSAndroid Build Coastguard Workermsgstr ""
5280*6a54128fSAndroid Build Coastguard Worker
5281*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:722
5282*6a54128fSAndroid Build Coastguard Worker#, c-format
5283*6a54128fSAndroid Build Coastguard Workermsgid "%u blocks per group, %u clusters per group\n"
5284*6a54128fSAndroid Build Coastguard Workermsgstr ""
5285*6a54128fSAndroid Build Coastguard Worker
5286*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:725
5287*6a54128fSAndroid Build Coastguard Worker#, c-format
5288*6a54128fSAndroid Build Coastguard Workermsgid "%u blocks per group, %u fragments per group\n"
5289*6a54128fSAndroid Build Coastguard Workermsgstr ""
5290*6a54128fSAndroid Build Coastguard Worker
5291*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:727
5292*6a54128fSAndroid Build Coastguard Worker#, c-format
5293*6a54128fSAndroid Build Coastguard Workermsgid "%u inodes per group\n"
5294*6a54128fSAndroid Build Coastguard Workermsgstr ""
5295*6a54128fSAndroid Build Coastguard Worker
5296*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:736
5297*6a54128fSAndroid Build Coastguard Worker#, c-format
5298*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem UUID: %s\n"
5299*6a54128fSAndroid Build Coastguard Workermsgstr ""
5300*6a54128fSAndroid Build Coastguard Worker
5301*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:737
5302*6a54128fSAndroid Build Coastguard Workermsgid "Superblock backups stored on blocks: "
5303*6a54128fSAndroid Build Coastguard Workermsgstr ""
5304*6a54128fSAndroid Build Coastguard Worker
5305*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:833
5306*6a54128fSAndroid Build Coastguard Worker#, c-format
5307*6a54128fSAndroid Build Coastguard Workermsgid "%s requires '-O 64bit'\n"
5308*6a54128fSAndroid Build Coastguard Workermsgstr ""
5309*6a54128fSAndroid Build Coastguard Worker
5310*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:839
5311*6a54128fSAndroid Build Coastguard Worker#, c-format
5312*6a54128fSAndroid Build Coastguard Workermsgid "'%s' must be before 'resize=%u'\n"
5313*6a54128fSAndroid Build Coastguard Workermsgstr ""
5314*6a54128fSAndroid Build Coastguard Worker
5315*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:852
5316*6a54128fSAndroid Build Coastguard Worker#, c-format
5317*6a54128fSAndroid Build Coastguard Workermsgid "Invalid desc_size: '%s'\n"
5318*6a54128fSAndroid Build Coastguard Workermsgstr ""
5319*6a54128fSAndroid Build Coastguard Worker
5320*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:866
5321*6a54128fSAndroid Build Coastguard Worker#, c-format
5322*6a54128fSAndroid Build Coastguard Workermsgid "Invalid hash seed: %s\n"
5323*6a54128fSAndroid Build Coastguard Workermsgstr ""
5324*6a54128fSAndroid Build Coastguard Worker
5325*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:878
5326*6a54128fSAndroid Build Coastguard Worker#, c-format
5327*6a54128fSAndroid Build Coastguard Workermsgid "Invalid offset: %s\n"
5328*6a54128fSAndroid Build Coastguard Workermsgstr ""
5329*6a54128fSAndroid Build Coastguard Worker
5330*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:892 misc/tune2fs.c:2151
5331*6a54128fSAndroid Build Coastguard Worker#, c-format
5332*6a54128fSAndroid Build Coastguard Workermsgid "Invalid mmp_update_interval: %s\n"
5333*6a54128fSAndroid Build Coastguard Workermsgstr ""
5334*6a54128fSAndroid Build Coastguard Worker
5335*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:909
5336*6a54128fSAndroid Build Coastguard Worker#, c-format
5337*6a54128fSAndroid Build Coastguard Workermsgid "Invalid # of backup superblocks: %s\n"
5338*6a54128fSAndroid Build Coastguard Workermsgstr ""
5339*6a54128fSAndroid Build Coastguard Worker
5340*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:931
5341*6a54128fSAndroid Build Coastguard Worker#, c-format
5342*6a54128fSAndroid Build Coastguard Workermsgid "Invalid stride parameter: %s\n"
5343*6a54128fSAndroid Build Coastguard Workermsgstr ""
5344*6a54128fSAndroid Build Coastguard Worker
5345*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:946
5346*6a54128fSAndroid Build Coastguard Worker#, c-format
5347*6a54128fSAndroid Build Coastguard Workermsgid "Invalid stripe-width parameter: %s\n"
5348*6a54128fSAndroid Build Coastguard Workermsgstr ""
5349*6a54128fSAndroid Build Coastguard Worker
5350*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:969
5351*6a54128fSAndroid Build Coastguard Worker#, c-format
5352*6a54128fSAndroid Build Coastguard Workermsgid "Invalid resize parameter: %s\n"
5353*6a54128fSAndroid Build Coastguard Workermsgstr ""
5354*6a54128fSAndroid Build Coastguard Worker
5355*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:976
5356*6a54128fSAndroid Build Coastguard Workermsgid "The resize maximum must be greater than the filesystem size.\n"
5357*6a54128fSAndroid Build Coastguard Workermsgstr ""
5358*6a54128fSAndroid Build Coastguard Worker
5359*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1000
5360*6a54128fSAndroid Build Coastguard Workermsgid "On-line resizing not supported with revision 0 filesystems\n"
5361*6a54128fSAndroid Build Coastguard Workermsgstr ""
5362*6a54128fSAndroid Build Coastguard Worker
5363*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1026 misc/mke2fs.c:1035
5364*6a54128fSAndroid Build Coastguard Worker#, c-format
5365*6a54128fSAndroid Build Coastguard Workermsgid "Invalid root_owner: '%s'\n"
5366*6a54128fSAndroid Build Coastguard Workermsgstr ""
5367*6a54128fSAndroid Build Coastguard Worker
5368*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1080
5369*6a54128fSAndroid Build Coastguard Worker#, c-format
5370*6a54128fSAndroid Build Coastguard Workermsgid "Invalid encoding: %s"
5371*6a54128fSAndroid Build Coastguard Workermsgstr ""
5372*6a54128fSAndroid Build Coastguard Worker
5373*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1098
5374*6a54128fSAndroid Build Coastguard Worker#, c-format
5375*6a54128fSAndroid Build Coastguard Workermsgid ""
5376*6a54128fSAndroid Build Coastguard Worker"\n"
5377*6a54128fSAndroid Build Coastguard Worker"Bad option(s) specified: %s\n"
5378*6a54128fSAndroid Build Coastguard Worker"\n"
5379*6a54128fSAndroid Build Coastguard Worker"Extended options are separated by commas, and may take an argument which\n"
5380*6a54128fSAndroid Build Coastguard Worker"\tis set off by an equals ('=') sign.\n"
5381*6a54128fSAndroid Build Coastguard Worker"\n"
5382*6a54128fSAndroid Build Coastguard Worker"Valid extended options are:\n"
5383*6a54128fSAndroid Build Coastguard Worker"\tmmp_update_interval=<interval>\n"
5384*6a54128fSAndroid Build Coastguard Worker"\tnum_backup_sb=<0|1|2>\n"
5385*6a54128fSAndroid Build Coastguard Worker"\tstride=<RAID per-disk data chunk in blocks>\n"
5386*6a54128fSAndroid Build Coastguard Worker"\tstripe-width=<RAID stride * data disks in blocks>\n"
5387*6a54128fSAndroid Build Coastguard Worker"\toffset=<offset to create the file system>\n"
5388*6a54128fSAndroid Build Coastguard Worker"\tresize=<resize maximum size in blocks>\n"
5389*6a54128fSAndroid Build Coastguard Worker"\tpacked_meta_blocks=<0 to disable, 1 to enable>\n"
5390*6a54128fSAndroid Build Coastguard Worker"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
5391*6a54128fSAndroid Build Coastguard Worker"\tlazy_journal_init=<0 to disable, 1 to enable>\n"
5392*6a54128fSAndroid Build Coastguard Worker"\troot_owner=<uid of root dir>:<gid of root dir>\n"
5393*6a54128fSAndroid Build Coastguard Worker"\ttest_fs\n"
5394*6a54128fSAndroid Build Coastguard Worker"\tdiscard\n"
5395*6a54128fSAndroid Build Coastguard Worker"\tnodiscard\n"
5396*6a54128fSAndroid Build Coastguard Worker"\tencoding=<encoding>\n"
5397*6a54128fSAndroid Build Coastguard Worker"\tencoding_flags=<flags>\n"
5398*6a54128fSAndroid Build Coastguard Worker"\tquotatype=<quota type(s) to be enabled>\n"
5399*6a54128fSAndroid Build Coastguard Worker"\n"
5400*6a54128fSAndroid Build Coastguard Workermsgstr ""
5401*6a54128fSAndroid Build Coastguard Worker
5402*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1125
5403*6a54128fSAndroid Build Coastguard Worker#, c-format
5404*6a54128fSAndroid Build Coastguard Workermsgid ""
5405*6a54128fSAndroid Build Coastguard Worker"\n"
5406*6a54128fSAndroid Build Coastguard Worker"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
5407*6a54128fSAndroid Build Coastguard Worker"\n"
5408*6a54128fSAndroid Build Coastguard Workermsgstr ""
5409*6a54128fSAndroid Build Coastguard Worker
5410*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1136 misc/tune2fs.c:2287
5411*6a54128fSAndroid Build Coastguard Worker#, c-format
5412*6a54128fSAndroid Build Coastguard Workermsgid "error: Invalid encoding flag: %s\n"
5413*6a54128fSAndroid Build Coastguard Workermsgstr ""
5414*6a54128fSAndroid Build Coastguard Worker
5415*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1142 misc/tune2fs.c:2296
5416*6a54128fSAndroid Build Coastguard Worker#, c-format
5417*6a54128fSAndroid Build Coastguard Workermsgid ""
5418*6a54128fSAndroid Build Coastguard Worker"error: An encoding must be explicitly specified when passing encoding-flags\n"
5419*6a54128fSAndroid Build Coastguard Workermsgstr ""
5420*6a54128fSAndroid Build Coastguard Worker
5421*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1192
5422*6a54128fSAndroid Build Coastguard Worker#, c-format
5423*6a54128fSAndroid Build Coastguard Workermsgid ""
5424*6a54128fSAndroid Build Coastguard Worker"Syntax error in mke2fs config file (%s, line #%d)\n"
5425*6a54128fSAndroid Build Coastguard Worker"\t%s\n"
5426*6a54128fSAndroid Build Coastguard Workermsgstr ""
5427*6a54128fSAndroid Build Coastguard Worker
5428*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1205 misc/tune2fs.c:1111
5429*6a54128fSAndroid Build Coastguard Worker#, c-format
5430*6a54128fSAndroid Build Coastguard Workermsgid "Invalid filesystem option set: %s\n"
5431*6a54128fSAndroid Build Coastguard Workermsgstr ""
5432*6a54128fSAndroid Build Coastguard Worker
5433*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1217 misc/tune2fs.c:425
5434*6a54128fSAndroid Build Coastguard Worker#, c-format
5435*6a54128fSAndroid Build Coastguard Workermsgid "Invalid mount option set: %s\n"
5436*6a54128fSAndroid Build Coastguard Workermsgstr ""
5437*6a54128fSAndroid Build Coastguard Worker
5438*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1353
5439*6a54128fSAndroid Build Coastguard Worker#, c-format
5440*6a54128fSAndroid Build Coastguard Workermsgid ""
5441*6a54128fSAndroid Build Coastguard Worker"\n"
5442*6a54128fSAndroid Build Coastguard Worker"Your mke2fs.conf file does not define the %s filesystem type.\n"
5443*6a54128fSAndroid Build Coastguard Workermsgstr ""
5444*6a54128fSAndroid Build Coastguard Worker
5445*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1357
5446*6a54128fSAndroid Build Coastguard Workermsgid ""
5447*6a54128fSAndroid Build Coastguard Worker"You probably need to install an updated mke2fs.conf file.\n"
5448*6a54128fSAndroid Build Coastguard Worker"\n"
5449*6a54128fSAndroid Build Coastguard Workermsgstr ""
5450*6a54128fSAndroid Build Coastguard Worker
5451*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1361
5452*6a54128fSAndroid Build Coastguard Workermsgid "Aborting...\n"
5453*6a54128fSAndroid Build Coastguard Workermsgstr ""
5454*6a54128fSAndroid Build Coastguard Worker
5455*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1402
5456*6a54128fSAndroid Build Coastguard Worker#, c-format
5457*6a54128fSAndroid Build Coastguard Workermsgid ""
5458*6a54128fSAndroid Build Coastguard Worker"\n"
5459*6a54128fSAndroid Build Coastguard Worker"Warning: the fs_type %s is not defined in mke2fs.conf\n"
5460*6a54128fSAndroid Build Coastguard Worker"\n"
5461*6a54128fSAndroid Build Coastguard Workermsgstr ""
5462*6a54128fSAndroid Build Coastguard Worker
5463*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1590
5464*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate memory for new PATH.\n"
5465*6a54128fSAndroid Build Coastguard Workermsgstr ""
5466*6a54128fSAndroid Build Coastguard Worker
5467*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1630
5468*6a54128fSAndroid Build Coastguard Worker#, c-format
5469*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't init profile successfully (error: %ld).\n"
5470*6a54128fSAndroid Build Coastguard Workermsgstr ""
5471*6a54128fSAndroid Build Coastguard Worker
5472*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1663
5473*6a54128fSAndroid Build Coastguard Worker#, c-format
5474*6a54128fSAndroid Build Coastguard Workermsgid "invalid block size - %s"
5475*6a54128fSAndroid Build Coastguard Workermsgstr ""
5476*6a54128fSAndroid Build Coastguard Worker
5477*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1667
5478*6a54128fSAndroid Build Coastguard Worker#, c-format
5479*6a54128fSAndroid Build Coastguard Workermsgid "Warning: blocksize %d not usable on most systems.\n"
5480*6a54128fSAndroid Build Coastguard Workermsgstr ""
5481*6a54128fSAndroid Build Coastguard Worker
5482*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1683
5483*6a54128fSAndroid Build Coastguard Worker#, c-format
5484*6a54128fSAndroid Build Coastguard Workermsgid "invalid cluster size - %s"
5485*6a54128fSAndroid Build Coastguard Workermsgstr ""
5486*6a54128fSAndroid Build Coastguard Worker
5487*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1696
5488*6a54128fSAndroid Build Coastguard Workermsgid "'-R' is deprecated, use '-E' instead"
5489*6a54128fSAndroid Build Coastguard Workermsgstr ""
5490*6a54128fSAndroid Build Coastguard Worker
5491*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1710 misc/tune2fs.c:1877
5492*6a54128fSAndroid Build Coastguard Worker#, c-format
5493*6a54128fSAndroid Build Coastguard Workermsgid "bad error behavior - %s"
5494*6a54128fSAndroid Build Coastguard Workermsgstr ""
5495*6a54128fSAndroid Build Coastguard Worker
5496*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1722
5497*6a54128fSAndroid Build Coastguard Workermsgid "Illegal number for blocks per group"
5498*6a54128fSAndroid Build Coastguard Workermsgstr ""
5499*6a54128fSAndroid Build Coastguard Worker
5500*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1727
5501*6a54128fSAndroid Build Coastguard Workermsgid "blocks per group must be multiple of 8"
5502*6a54128fSAndroid Build Coastguard Workermsgstr ""
5503*6a54128fSAndroid Build Coastguard Worker
5504*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1735
5505*6a54128fSAndroid Build Coastguard Workermsgid "Illegal number for flex_bg size"
5506*6a54128fSAndroid Build Coastguard Workermsgstr ""
5507*6a54128fSAndroid Build Coastguard Worker
5508*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1741
5509*6a54128fSAndroid Build Coastguard Workermsgid "flex_bg size must be a power of 2"
5510*6a54128fSAndroid Build Coastguard Workermsgstr ""
5511*6a54128fSAndroid Build Coastguard Worker
5512*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1746
5513*6a54128fSAndroid Build Coastguard Worker#, c-format
5514*6a54128fSAndroid Build Coastguard Workermsgid "flex_bg size (%lu) must be less than or equal to 2^31"
5515*6a54128fSAndroid Build Coastguard Workermsgstr ""
5516*6a54128fSAndroid Build Coastguard Worker
5517*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1756
5518*6a54128fSAndroid Build Coastguard Worker#, c-format
5519*6a54128fSAndroid Build Coastguard Workermsgid "invalid inode ratio %s (min %d/max %d)"
5520*6a54128fSAndroid Build Coastguard Workermsgstr ""
5521*6a54128fSAndroid Build Coastguard Worker
5522*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1766
5523*6a54128fSAndroid Build Coastguard Worker#, c-format
5524*6a54128fSAndroid Build Coastguard Workermsgid "invalid inode size - %s"
5525*6a54128fSAndroid Build Coastguard Workermsgstr ""
5526*6a54128fSAndroid Build Coastguard Worker
5527*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1781
5528*6a54128fSAndroid Build Coastguard Workermsgid ""
5529*6a54128fSAndroid Build Coastguard Worker"Warning: -K option is deprecated and should not be used anymore. Use '-E "
5530*6a54128fSAndroid Build Coastguard Worker"nodiscard' extended option instead!\n"
5531*6a54128fSAndroid Build Coastguard Workermsgstr ""
5532*6a54128fSAndroid Build Coastguard Worker
5533*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1792
5534*6a54128fSAndroid Build Coastguard Workermsgid "in malloc for bad_blocks_filename"
5535*6a54128fSAndroid Build Coastguard Workermsgstr ""
5536*6a54128fSAndroid Build Coastguard Worker
5537*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1801
5538*6a54128fSAndroid Build Coastguard Worker#, c-format
5539*6a54128fSAndroid Build Coastguard Workermsgid ""
5540*6a54128fSAndroid Build Coastguard Worker"Warning: label too long; will be truncated to '%s'\n"
5541*6a54128fSAndroid Build Coastguard Worker"\n"
5542*6a54128fSAndroid Build Coastguard Workermsgstr ""
5543*6a54128fSAndroid Build Coastguard Worker
5544*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1810
5545*6a54128fSAndroid Build Coastguard Worker#, c-format
5546*6a54128fSAndroid Build Coastguard Workermsgid "invalid reserved blocks percent - %s"
5547*6a54128fSAndroid Build Coastguard Workermsgstr ""
5548*6a54128fSAndroid Build Coastguard Worker
5549*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1825
5550*6a54128fSAndroid Build Coastguard Worker#, c-format
5551*6a54128fSAndroid Build Coastguard Workermsgid "bad num inodes - %s"
5552*6a54128fSAndroid Build Coastguard Workermsgstr ""
5553*6a54128fSAndroid Build Coastguard Worker
5554*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1838
5555*6a54128fSAndroid Build Coastguard Workermsgid "while allocating fs_feature string"
5556*6a54128fSAndroid Build Coastguard Workermsgstr ""
5557*6a54128fSAndroid Build Coastguard Worker
5558*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1855
5559*6a54128fSAndroid Build Coastguard Worker#, c-format
5560*6a54128fSAndroid Build Coastguard Workermsgid "bad revision level - %s"
5561*6a54128fSAndroid Build Coastguard Workermsgstr ""
5562*6a54128fSAndroid Build Coastguard Worker
5563*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1860
5564*6a54128fSAndroid Build Coastguard Worker#, c-format
5565*6a54128fSAndroid Build Coastguard Workermsgid "while trying to create revision %d"
5566*6a54128fSAndroid Build Coastguard Workermsgstr ""
5567*6a54128fSAndroid Build Coastguard Worker
5568*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1874
5569*6a54128fSAndroid Build Coastguard Workermsgid "The -t option may only be used once"
5570*6a54128fSAndroid Build Coastguard Workermsgstr ""
5571*6a54128fSAndroid Build Coastguard Worker
5572*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1882
5573*6a54128fSAndroid Build Coastguard Workermsgid "The -T option may only be used once"
5574*6a54128fSAndroid Build Coastguard Workermsgstr ""
5575*6a54128fSAndroid Build Coastguard Worker
5576*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1938 misc/mke2fs.c:3403
5577*6a54128fSAndroid Build Coastguard Worker#, c-format
5578*6a54128fSAndroid Build Coastguard Workermsgid "while trying to open journal device %s\n"
5579*6a54128fSAndroid Build Coastguard Workermsgstr ""
5580*6a54128fSAndroid Build Coastguard Worker
5581*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1944
5582*6a54128fSAndroid Build Coastguard Worker#, c-format
5583*6a54128fSAndroid Build Coastguard Workermsgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
5584*6a54128fSAndroid Build Coastguard Workermsgstr ""
5585*6a54128fSAndroid Build Coastguard Worker
5586*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1950
5587*6a54128fSAndroid Build Coastguard Worker#, c-format
5588*6a54128fSAndroid Build Coastguard Workermsgid "Using journal device's blocksize: %d\n"
5589*6a54128fSAndroid Build Coastguard Workermsgstr ""
5590*6a54128fSAndroid Build Coastguard Worker
5591*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1961
5592*6a54128fSAndroid Build Coastguard Worker#, c-format
5593*6a54128fSAndroid Build Coastguard Workermsgid "invalid blocks '%s' on device '%s'"
5594*6a54128fSAndroid Build Coastguard Workermsgstr ""
5595*6a54128fSAndroid Build Coastguard Worker
5596*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1981
5597*6a54128fSAndroid Build Coastguard Workermsgid "filesystem"
5598*6a54128fSAndroid Build Coastguard Workermsgstr ""
5599*6a54128fSAndroid Build Coastguard Worker
5600*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:1996 lib/support/plausible.c:187
5601*6a54128fSAndroid Build Coastguard Worker#, c-format
5602*6a54128fSAndroid Build Coastguard Workermsgid "The file %s does not exist and no size was specified.\n"
5603*6a54128fSAndroid Build Coastguard Workermsgstr ""
5604*6a54128fSAndroid Build Coastguard Worker
5605*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2008 lib/support/plausible.c:195
5606*6a54128fSAndroid Build Coastguard Worker#, c-format
5607*6a54128fSAndroid Build Coastguard Workermsgid "Creating regular file %s\n"
5608*6a54128fSAndroid Build Coastguard Workermsgstr ""
5609*6a54128fSAndroid Build Coastguard Worker
5610*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2013 resize/main.c:512
5611*6a54128fSAndroid Build Coastguard Workermsgid "while trying to determine filesystem size"
5612*6a54128fSAndroid Build Coastguard Workermsgstr ""
5613*6a54128fSAndroid Build Coastguard Worker
5614*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2019
5615*6a54128fSAndroid Build Coastguard Workermsgid ""
5616*6a54128fSAndroid Build Coastguard Worker"Couldn't determine device size; you must specify\n"
5617*6a54128fSAndroid Build Coastguard Worker"the size of the filesystem\n"
5618*6a54128fSAndroid Build Coastguard Workermsgstr ""
5619*6a54128fSAndroid Build Coastguard Worker
5620*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2026
5621*6a54128fSAndroid Build Coastguard Workermsgid ""
5622*6a54128fSAndroid Build Coastguard Worker"Device size reported to be zero.  Invalid partition specified, or\n"
5623*6a54128fSAndroid Build Coastguard Worker"\tpartition table wasn't reread after running fdisk, due to\n"
5624*6a54128fSAndroid Build Coastguard Worker"\ta modified partition being busy and in use.  You may need to reboot\n"
5625*6a54128fSAndroid Build Coastguard Worker"\tto re-read your partition table.\n"
5626*6a54128fSAndroid Build Coastguard Workermsgstr ""
5627*6a54128fSAndroid Build Coastguard Worker
5628*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2043
5629*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem larger than apparent device size."
5630*6a54128fSAndroid Build Coastguard Workermsgstr ""
5631*6a54128fSAndroid Build Coastguard Worker
5632*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2066
5633*6a54128fSAndroid Build Coastguard Workermsgid "Failed to parse fs types list\n"
5634*6a54128fSAndroid Build Coastguard Workermsgstr ""
5635*6a54128fSAndroid Build Coastguard Worker
5636*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2116
5637*6a54128fSAndroid Build Coastguard Workermsgid "The HURD does not support the filetype feature.\n"
5638*6a54128fSAndroid Build Coastguard Workermsgstr ""
5639*6a54128fSAndroid Build Coastguard Worker
5640*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2121
5641*6a54128fSAndroid Build Coastguard Workermsgid "The HURD does not support the huge_file feature.\n"
5642*6a54128fSAndroid Build Coastguard Workermsgstr ""
5643*6a54128fSAndroid Build Coastguard Worker
5644*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2126
5645*6a54128fSAndroid Build Coastguard Workermsgid "The HURD does not support the metadata_csum feature.\n"
5646*6a54128fSAndroid Build Coastguard Workermsgstr ""
5647*6a54128fSAndroid Build Coastguard Worker
5648*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2131
5649*6a54128fSAndroid Build Coastguard Workermsgid "The HURD does not support the ea_inode feature.\n"
5650*6a54128fSAndroid Build Coastguard Workermsgstr ""
5651*6a54128fSAndroid Build Coastguard Worker
5652*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2141
5653*6a54128fSAndroid Build Coastguard Workermsgid "while trying to determine hardware sector size"
5654*6a54128fSAndroid Build Coastguard Workermsgstr ""
5655*6a54128fSAndroid Build Coastguard Worker
5656*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2147
5657*6a54128fSAndroid Build Coastguard Workermsgid "while trying to determine physical sector size"
5658*6a54128fSAndroid Build Coastguard Workermsgstr ""
5659*6a54128fSAndroid Build Coastguard Worker
5660*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2179
5661*6a54128fSAndroid Build Coastguard Workermsgid "while setting blocksize; too small for device\n"
5662*6a54128fSAndroid Build Coastguard Workermsgstr ""
5663*6a54128fSAndroid Build Coastguard Worker
5664*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2184
5665*6a54128fSAndroid Build Coastguard Worker#, c-format
5666*6a54128fSAndroid Build Coastguard Workermsgid ""
5667*6a54128fSAndroid Build Coastguard Worker"Warning: specified blocksize %d is less than device physical sectorsize %d\n"
5668*6a54128fSAndroid Build Coastguard Workermsgstr ""
5669*6a54128fSAndroid Build Coastguard Worker
5670*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2208
5671*6a54128fSAndroid Build Coastguard Worker#, c-format
5672*6a54128fSAndroid Build Coastguard Workermsgid ""
5673*6a54128fSAndroid Build Coastguard Worker"%s: Size of device (0x%llx blocks) %s too big to be expressed\n"
5674*6a54128fSAndroid Build Coastguard Worker"\tin 32 bits using a blocksize of %d.\n"
5675*6a54128fSAndroid Build Coastguard Workermsgstr ""
5676*6a54128fSAndroid Build Coastguard Worker
5677*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2222
5678*6a54128fSAndroid Build Coastguard Worker#, c-format
5679*6a54128fSAndroid Build Coastguard Workermsgid ""
5680*6a54128fSAndroid Build Coastguard Worker"%s: Size of device (0x%llx blocks) %s too big to create\n"
5681*6a54128fSAndroid Build Coastguard Worker"\ta filesystem using a blocksize of %d.\n"
5682*6a54128fSAndroid Build Coastguard Workermsgstr ""
5683*6a54128fSAndroid Build Coastguard Worker
5684*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2244
5685*6a54128fSAndroid Build Coastguard Workermsgid "fs_types for mke2fs.conf resolution: "
5686*6a54128fSAndroid Build Coastguard Workermsgstr ""
5687*6a54128fSAndroid Build Coastguard Worker
5688*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2251
5689*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem features not supported with revision 0 filesystems\n"
5690*6a54128fSAndroid Build Coastguard Workermsgstr ""
5691*6a54128fSAndroid Build Coastguard Worker
5692*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2259
5693*6a54128fSAndroid Build Coastguard Workermsgid "Sparse superblocks not supported with revision 0 filesystems\n"
5694*6a54128fSAndroid Build Coastguard Workermsgstr ""
5695*6a54128fSAndroid Build Coastguard Worker
5696*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2269
5697*6a54128fSAndroid Build Coastguard Workermsgid "Journals not supported with revision 0 filesystems\n"
5698*6a54128fSAndroid Build Coastguard Workermsgstr ""
5699*6a54128fSAndroid Build Coastguard Worker
5700*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2282
5701*6a54128fSAndroid Build Coastguard Worker#, c-format
5702*6a54128fSAndroid Build Coastguard Workermsgid "invalid reserved blocks percent - %lf"
5703*6a54128fSAndroid Build Coastguard Workermsgstr ""
5704*6a54128fSAndroid Build Coastguard Worker
5705*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2299
5706*6a54128fSAndroid Build Coastguard Workermsgid ""
5707*6a54128fSAndroid Build Coastguard Worker"Extents MUST be enabled for a 64-bit filesystem.  Pass -O extents to "
5708*6a54128fSAndroid Build Coastguard Worker"rectify.\n"
5709*6a54128fSAndroid Build Coastguard Workermsgstr ""
5710*6a54128fSAndroid Build Coastguard Worker
5711*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2319
5712*6a54128fSAndroid Build Coastguard Workermsgid "The cluster size may not be smaller than the block size.\n"
5713*6a54128fSAndroid Build Coastguard Workermsgstr ""
5714*6a54128fSAndroid Build Coastguard Worker
5715*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2325
5716*6a54128fSAndroid Build Coastguard Workermsgid "specifying a cluster size requires the bigalloc feature"
5717*6a54128fSAndroid Build Coastguard Workermsgstr ""
5718*6a54128fSAndroid Build Coastguard Worker
5719*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2345
5720*6a54128fSAndroid Build Coastguard Worker#, c-format
5721*6a54128fSAndroid Build Coastguard Workermsgid "warning: Unable to get device geometry for %s\n"
5722*6a54128fSAndroid Build Coastguard Workermsgstr ""
5723*6a54128fSAndroid Build Coastguard Worker
5724*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2357
5725*6a54128fSAndroid Build Coastguard Worker#, c-format
5726*6a54128fSAndroid Build Coastguard Workermsgid "%s alignment is offset by %lu bytes.\n"
5727*6a54128fSAndroid Build Coastguard Workermsgstr ""
5728*6a54128fSAndroid Build Coastguard Worker
5729*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2359
5730*6a54128fSAndroid Build Coastguard Worker#, c-format
5731*6a54128fSAndroid Build Coastguard Workermsgid ""
5732*6a54128fSAndroid Build Coastguard Worker"This may result in very poor performance, (re)-partitioning suggested.\n"
5733*6a54128fSAndroid Build Coastguard Workermsgstr ""
5734*6a54128fSAndroid Build Coastguard Worker
5735*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2365
5736*6a54128fSAndroid Build Coastguard Worker#, c-format
5737*6a54128fSAndroid Build Coastguard Workermsgid ""
5738*6a54128fSAndroid Build Coastguard Worker"%s is capable of DAX but current block size %u is different from system page "
5739*6a54128fSAndroid Build Coastguard Worker"size %u so filesystem will not support DAX.\n"
5740*6a54128fSAndroid Build Coastguard Workermsgstr ""
5741*6a54128fSAndroid Build Coastguard Worker
5742*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2389
5743*6a54128fSAndroid Build Coastguard Worker#, c-format
5744*6a54128fSAndroid Build Coastguard Workermsgid "%d-byte blocks too big for system (max %d)"
5745*6a54128fSAndroid Build Coastguard Workermsgstr ""
5746*6a54128fSAndroid Build Coastguard Worker
5747*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2393
5748*6a54128fSAndroid Build Coastguard Worker#, c-format
5749*6a54128fSAndroid Build Coastguard Workermsgid ""
5750*6a54128fSAndroid Build Coastguard Worker"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
5751*6a54128fSAndroid Build Coastguard Workermsgstr ""
5752*6a54128fSAndroid Build Coastguard Worker
5753*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2401
5754*6a54128fSAndroid Build Coastguard Worker#, c-format
5755*6a54128fSAndroid Build Coastguard Workermsgid ""
5756*6a54128fSAndroid Build Coastguard Worker"Suggestion: Use Linux kernel >= 3.18 for improved stability of the metadata "
5757*6a54128fSAndroid Build Coastguard Worker"and journal checksum features.\n"
5758*6a54128fSAndroid Build Coastguard Workermsgstr ""
5759*6a54128fSAndroid Build Coastguard Worker
5760*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2447
5761*6a54128fSAndroid Build Coastguard Worker#, c-format
5762*6a54128fSAndroid Build Coastguard Workermsgid "Unknown filename encoding from profile: %s"
5763*6a54128fSAndroid Build Coastguard Workermsgstr ""
5764*6a54128fSAndroid Build Coastguard Worker
5765*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2458
5766*6a54128fSAndroid Build Coastguard Worker#, c-format
5767*6a54128fSAndroid Build Coastguard Workermsgid "Unknown encoding flags from profile: %s"
5768*6a54128fSAndroid Build Coastguard Workermsgstr ""
5769*6a54128fSAndroid Build Coastguard Worker
5770*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2483
5771*6a54128fSAndroid Build Coastguard Worker#, c-format
5772*6a54128fSAndroid Build Coastguard Workermsgid ""
5773*6a54128fSAndroid Build Coastguard Worker"\n"
5774*6a54128fSAndroid Build Coastguard Worker"Warning: offset specified without an explicit file system size.\n"
5775*6a54128fSAndroid Build Coastguard Worker"Creating a file system with %llu blocks but this might\n"
5776*6a54128fSAndroid Build Coastguard Worker"not be what you want.\n"
5777*6a54128fSAndroid Build Coastguard Worker"\n"
5778*6a54128fSAndroid Build Coastguard Workermsgstr ""
5779*6a54128fSAndroid Build Coastguard Worker
5780*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2498
5781*6a54128fSAndroid Build Coastguard Worker#, c-format
5782*6a54128fSAndroid Build Coastguard Workermsgid "%d byte inodes are too small for project quota"
5783*6a54128fSAndroid Build Coastguard Workermsgstr ""
5784*6a54128fSAndroid Build Coastguard Worker
5785*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2520
5786*6a54128fSAndroid Build Coastguard Workermsgid "Can't support bigalloc feature without extents feature"
5787*6a54128fSAndroid Build Coastguard Workermsgstr ""
5788*6a54128fSAndroid Build Coastguard Worker
5789*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2527
5790*6a54128fSAndroid Build Coastguard Workermsgid ""
5791*6a54128fSAndroid Build Coastguard Worker"The resize_inode and meta_bg features are not compatible.\n"
5792*6a54128fSAndroid Build Coastguard Worker"They can not be both enabled simultaneously.\n"
5793*6a54128fSAndroid Build Coastguard Workermsgstr ""
5794*6a54128fSAndroid Build Coastguard Worker
5795*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2536
5796*6a54128fSAndroid Build Coastguard Workermsgid ""
5797*6a54128fSAndroid Build Coastguard Worker"\n"
5798*6a54128fSAndroid Build Coastguard Worker"Warning: bigalloc file systems with a cluster size greater than\n"
5799*6a54128fSAndroid Build Coastguard Worker"16 times the block size is considered experimental\n"
5800*6a54128fSAndroid Build Coastguard Workermsgstr ""
5801*6a54128fSAndroid Build Coastguard Worker
5802*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2548
5803*6a54128fSAndroid Build Coastguard Workermsgid "reserved online resize blocks not supported on non-sparse filesystem"
5804*6a54128fSAndroid Build Coastguard Workermsgstr ""
5805*6a54128fSAndroid Build Coastguard Worker
5806*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2557
5807*6a54128fSAndroid Build Coastguard Workermsgid "blocks per group count out of range"
5808*6a54128fSAndroid Build Coastguard Workermsgstr ""
5809*6a54128fSAndroid Build Coastguard Worker
5810*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2579
5811*6a54128fSAndroid Build Coastguard Workermsgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
5812*6a54128fSAndroid Build Coastguard Workermsgstr ""
5813*6a54128fSAndroid Build Coastguard Worker
5814*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2591
5815*6a54128fSAndroid Build Coastguard Worker#, c-format
5816*6a54128fSAndroid Build Coastguard Workermsgid "invalid inode size %d (min %d/max %d)"
5817*6a54128fSAndroid Build Coastguard Workermsgstr ""
5818*6a54128fSAndroid Build Coastguard Worker
5819*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2606
5820*6a54128fSAndroid Build Coastguard Worker#, c-format
5821*6a54128fSAndroid Build Coastguard Workermsgid "%d byte inodes are too small for inline data; specify larger size"
5822*6a54128fSAndroid Build Coastguard Workermsgstr ""
5823*6a54128fSAndroid Build Coastguard Worker
5824*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2621
5825*6a54128fSAndroid Build Coastguard Worker#, c-format
5826*6a54128fSAndroid Build Coastguard Workermsgid "128-byte inodes cannot handle dates beyond 2038 and are deprecated\n"
5827*6a54128fSAndroid Build Coastguard Workermsgstr ""
5828*6a54128fSAndroid Build Coastguard Worker
5829*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2632
5830*6a54128fSAndroid Build Coastguard Worker#, c-format
5831*6a54128fSAndroid Build Coastguard Workermsgid "too many inodes (%llu), raise inode ratio?"
5832*6a54128fSAndroid Build Coastguard Workermsgstr ""
5833*6a54128fSAndroid Build Coastguard Worker
5834*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2640
5835*6a54128fSAndroid Build Coastguard Worker#, c-format
5836*6a54128fSAndroid Build Coastguard Workermsgid "too many inodes (%llu), specify < 2^32 inodes"
5837*6a54128fSAndroid Build Coastguard Workermsgstr ""
5838*6a54128fSAndroid Build Coastguard Worker
5839*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2654
5840*6a54128fSAndroid Build Coastguard Worker#, c-format
5841*6a54128fSAndroid Build Coastguard Workermsgid ""
5842*6a54128fSAndroid Build Coastguard Worker"inode_size (%u) * inodes_count (%u) too big for a\n"
5843*6a54128fSAndroid Build Coastguard Worker"\tfilesystem with %llu blocks, specify higher inode_ratio (-i)\n"
5844*6a54128fSAndroid Build Coastguard Worker"\tor lower inode count (-N).\n"
5845*6a54128fSAndroid Build Coastguard Workermsgstr ""
5846*6a54128fSAndroid Build Coastguard Worker
5847*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2851
5848*6a54128fSAndroid Build Coastguard Workermsgid "Discarding device blocks: "
5849*6a54128fSAndroid Build Coastguard Workermsgstr ""
5850*6a54128fSAndroid Build Coastguard Worker
5851*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2867
5852*6a54128fSAndroid Build Coastguard Workermsgid "failed - "
5853*6a54128fSAndroid Build Coastguard Workermsgstr ""
5854*6a54128fSAndroid Build Coastguard Worker
5855*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2926
5856*6a54128fSAndroid Build Coastguard Workermsgid "while initializing quota context"
5857*6a54128fSAndroid Build Coastguard Workermsgstr ""
5858*6a54128fSAndroid Build Coastguard Worker
5859*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2933
5860*6a54128fSAndroid Build Coastguard Workermsgid "while writing quota inodes"
5861*6a54128fSAndroid Build Coastguard Workermsgstr ""
5862*6a54128fSAndroid Build Coastguard Worker
5863*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:2958
5864*6a54128fSAndroid Build Coastguard Worker#, c-format
5865*6a54128fSAndroid Build Coastguard Workermsgid "bad error behavior in profile - %s"
5866*6a54128fSAndroid Build Coastguard Workermsgstr ""
5867*6a54128fSAndroid Build Coastguard Worker
5868*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3037
5869*6a54128fSAndroid Build Coastguard Workermsgid "in malloc for android_sparse_params"
5870*6a54128fSAndroid Build Coastguard Workermsgstr ""
5871*6a54128fSAndroid Build Coastguard Worker
5872*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3051
5873*6a54128fSAndroid Build Coastguard Workermsgid "while setting up superblock"
5874*6a54128fSAndroid Build Coastguard Workermsgstr ""
5875*6a54128fSAndroid Build Coastguard Worker
5876*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3067
5877*6a54128fSAndroid Build Coastguard Workermsgid ""
5878*6a54128fSAndroid Build Coastguard Worker"Extents are not enabled.  The file extent tree can be checksummed, whereas "
5879*6a54128fSAndroid Build Coastguard Worker"block maps cannot.  Not enabling extents reduces the coverage of metadata "
5880*6a54128fSAndroid Build Coastguard Worker"checksumming.  Pass -O extents to rectify.\n"
5881*6a54128fSAndroid Build Coastguard Workermsgstr ""
5882*6a54128fSAndroid Build Coastguard Worker
5883*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3074
5884*6a54128fSAndroid Build Coastguard Workermsgid ""
5885*6a54128fSAndroid Build Coastguard Worker"64-bit filesystem support is not enabled.  The larger fields afforded by "
5886*6a54128fSAndroid Build Coastguard Worker"this feature enable full-strength checksumming.  Pass -O 64bit to rectify.\n"
5887*6a54128fSAndroid Build Coastguard Workermsgstr ""
5888*6a54128fSAndroid Build Coastguard Worker
5889*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3082
5890*6a54128fSAndroid Build Coastguard Workermsgid "The metadata_csum_seed feature requires the metadata_csum feature.\n"
5891*6a54128fSAndroid Build Coastguard Workermsgstr ""
5892*6a54128fSAndroid Build Coastguard Worker
5893*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3106
5894*6a54128fSAndroid Build Coastguard Workermsgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
5895*6a54128fSAndroid Build Coastguard Workermsgstr ""
5896*6a54128fSAndroid Build Coastguard Worker
5897*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3205
5898*6a54128fSAndroid Build Coastguard Worker#, c-format
5899*6a54128fSAndroid Build Coastguard Workermsgid "unknown os - %s"
5900*6a54128fSAndroid Build Coastguard Workermsgstr ""
5901*6a54128fSAndroid Build Coastguard Worker
5902*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3268
5903*6a54128fSAndroid Build Coastguard Workermsgid "Allocating group tables: "
5904*6a54128fSAndroid Build Coastguard Workermsgstr ""
5905*6a54128fSAndroid Build Coastguard Worker
5906*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3276
5907*6a54128fSAndroid Build Coastguard Workermsgid "while trying to allocate filesystem tables"
5908*6a54128fSAndroid Build Coastguard Workermsgstr ""
5909*6a54128fSAndroid Build Coastguard Worker
5910*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3291
5911*6a54128fSAndroid Build Coastguard Workermsgid "while unmarking bad blocks"
5912*6a54128fSAndroid Build Coastguard Workermsgstr ""
5913*6a54128fSAndroid Build Coastguard Worker
5914*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3302
5915*6a54128fSAndroid Build Coastguard Workermsgid ""
5916*6a54128fSAndroid Build Coastguard Worker"\n"
5917*6a54128fSAndroid Build Coastguard Worker"\twhile converting subcluster bitmap"
5918*6a54128fSAndroid Build Coastguard Workermsgstr ""
5919*6a54128fSAndroid Build Coastguard Worker
5920*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3311
5921*6a54128fSAndroid Build Coastguard Workermsgid "while calculating overhead"
5922*6a54128fSAndroid Build Coastguard Workermsgstr ""
5923*6a54128fSAndroid Build Coastguard Worker
5924*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3330
5925*6a54128fSAndroid Build Coastguard Worker#, c-format
5926*6a54128fSAndroid Build Coastguard Workermsgid "%s may be further corrupted by superblock rewrite\n"
5927*6a54128fSAndroid Build Coastguard Workermsgstr ""
5928*6a54128fSAndroid Build Coastguard Worker
5929*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3371
5930*6a54128fSAndroid Build Coastguard Worker#, c-format
5931*6a54128fSAndroid Build Coastguard Workermsgid "while zeroing block %llu at end of filesystem"
5932*6a54128fSAndroid Build Coastguard Workermsgstr ""
5933*6a54128fSAndroid Build Coastguard Worker
5934*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3384
5935*6a54128fSAndroid Build Coastguard Workermsgid "while reserving blocks for online resize"
5936*6a54128fSAndroid Build Coastguard Workermsgstr ""
5937*6a54128fSAndroid Build Coastguard Worker
5938*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3396 misc/tune2fs.c:1573
5939*6a54128fSAndroid Build Coastguard Workermsgid "journal"
5940*6a54128fSAndroid Build Coastguard Workermsgstr ""
5941*6a54128fSAndroid Build Coastguard Worker
5942*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3408
5943*6a54128fSAndroid Build Coastguard Worker#, c-format
5944*6a54128fSAndroid Build Coastguard Workermsgid "Adding journal to device %s: "
5945*6a54128fSAndroid Build Coastguard Workermsgstr ""
5946*6a54128fSAndroid Build Coastguard Worker
5947*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3415
5948*6a54128fSAndroid Build Coastguard Worker#, c-format
5949*6a54128fSAndroid Build Coastguard Workermsgid ""
5950*6a54128fSAndroid Build Coastguard Worker"\n"
5951*6a54128fSAndroid Build Coastguard Worker"\twhile trying to add journal to device %s"
5952*6a54128fSAndroid Build Coastguard Workermsgstr ""
5953*6a54128fSAndroid Build Coastguard Worker
5954*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3420 misc/mke2fs.c:3450 misc/mke2fs.c:3492
5955*6a54128fSAndroid Build Coastguard Worker#: misc/mk_hugefiles.c:486 misc/tune2fs.c:1602 misc/tune2fs.c:1624
5956*6a54128fSAndroid Build Coastguard Workermsgid "done\n"
5957*6a54128fSAndroid Build Coastguard Workermsgstr ""
5958*6a54128fSAndroid Build Coastguard Worker
5959*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3427
5960*6a54128fSAndroid Build Coastguard Workermsgid "Skipping journal creation in super-only mode\n"
5961*6a54128fSAndroid Build Coastguard Workermsgstr ""
5962*6a54128fSAndroid Build Coastguard Worker
5963*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3437
5964*6a54128fSAndroid Build Coastguard Worker#, c-format
5965*6a54128fSAndroid Build Coastguard Workermsgid "Creating journal (%u blocks): "
5966*6a54128fSAndroid Build Coastguard Workermsgstr ""
5967*6a54128fSAndroid Build Coastguard Worker
5968*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3446
5969*6a54128fSAndroid Build Coastguard Workermsgid ""
5970*6a54128fSAndroid Build Coastguard Worker"\n"
5971*6a54128fSAndroid Build Coastguard Worker"\twhile trying to create journal"
5972*6a54128fSAndroid Build Coastguard Workermsgstr ""
5973*6a54128fSAndroid Build Coastguard Worker
5974*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3458 misc/tune2fs.c:1176
5975*6a54128fSAndroid Build Coastguard Workermsgid ""
5976*6a54128fSAndroid Build Coastguard Worker"\n"
5977*6a54128fSAndroid Build Coastguard Worker"Error while enabling multiple mount protection feature."
5978*6a54128fSAndroid Build Coastguard Workermsgstr ""
5979*6a54128fSAndroid Build Coastguard Worker
5980*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3463
5981*6a54128fSAndroid Build Coastguard Worker#, c-format
5982*6a54128fSAndroid Build Coastguard Workermsgid "Multiple mount protection is enabled with update interval %d seconds.\n"
5983*6a54128fSAndroid Build Coastguard Workermsgstr ""
5984*6a54128fSAndroid Build Coastguard Worker
5985*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3483
5986*6a54128fSAndroid Build Coastguard Workermsgid "Copying files into the device: "
5987*6a54128fSAndroid Build Coastguard Workermsgstr ""
5988*6a54128fSAndroid Build Coastguard Worker
5989*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3489
5990*6a54128fSAndroid Build Coastguard Workermsgid "while populating file system"
5991*6a54128fSAndroid Build Coastguard Workermsgstr ""
5992*6a54128fSAndroid Build Coastguard Worker
5993*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3496
5994*6a54128fSAndroid Build Coastguard Workermsgid "Writing superblocks and filesystem accounting information: "
5995*6a54128fSAndroid Build Coastguard Workermsgstr ""
5996*6a54128fSAndroid Build Coastguard Worker
5997*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3503 misc/tune2fs.c:3466
5998*6a54128fSAndroid Build Coastguard Workermsgid "while writing out and closing file system"
5999*6a54128fSAndroid Build Coastguard Workermsgstr ""
6000*6a54128fSAndroid Build Coastguard Worker
6001*6a54128fSAndroid Build Coastguard Worker#: misc/mke2fs.c:3506
6002*6a54128fSAndroid Build Coastguard Workermsgid ""
6003*6a54128fSAndroid Build Coastguard Worker"done\n"
6004*6a54128fSAndroid Build Coastguard Worker"\n"
6005*6a54128fSAndroid Build Coastguard Workermsgstr ""
6006*6a54128fSAndroid Build Coastguard Worker
6007*6a54128fSAndroid Build Coastguard Worker#: misc/mk_hugefiles.c:223
6008*6a54128fSAndroid Build Coastguard Worker#, c-format
6009*6a54128fSAndroid Build Coastguard Workermsgid "while zeroing block %llu for hugefile"
6010*6a54128fSAndroid Build Coastguard Workermsgstr ""
6011*6a54128fSAndroid Build Coastguard Worker
6012*6a54128fSAndroid Build Coastguard Worker#: misc/mk_hugefiles.c:400
6013*6a54128fSAndroid Build Coastguard Worker#, c-format
6014*6a54128fSAndroid Build Coastguard Workermsgid ""
6015*6a54128fSAndroid Build Coastguard Worker"Partition offset of %llu (%uk) blocks not compatible with cluster size %u.\n"
6016*6a54128fSAndroid Build Coastguard Workermsgstr ""
6017*6a54128fSAndroid Build Coastguard Worker
6018*6a54128fSAndroid Build Coastguard Worker#: misc/mk_hugefiles.c:468
6019*6a54128fSAndroid Build Coastguard Workermsgid "Huge files will be zero'ed\n"
6020*6a54128fSAndroid Build Coastguard Workermsgstr ""
6021*6a54128fSAndroid Build Coastguard Worker
6022*6a54128fSAndroid Build Coastguard Worker#: misc/mk_hugefiles.c:469
6023*6a54128fSAndroid Build Coastguard Worker#, c-format
6024*6a54128fSAndroid Build Coastguard Workermsgid "Creating %lu huge file(s) "
6025*6a54128fSAndroid Build Coastguard Workermsgstr ""
6026*6a54128fSAndroid Build Coastguard Worker
6027*6a54128fSAndroid Build Coastguard Worker#: misc/mk_hugefiles.c:471
6028*6a54128fSAndroid Build Coastguard Worker#, c-format
6029*6a54128fSAndroid Build Coastguard Workermsgid "with %llu blocks each"
6030*6a54128fSAndroid Build Coastguard Workermsgstr ""
6031*6a54128fSAndroid Build Coastguard Worker
6032*6a54128fSAndroid Build Coastguard Worker#: misc/mk_hugefiles.c:481
6033*6a54128fSAndroid Build Coastguard Worker#, c-format
6034*6a54128fSAndroid Build Coastguard Workermsgid "while creating huge file %lu"
6035*6a54128fSAndroid Build Coastguard Workermsgstr ""
6036*6a54128fSAndroid Build Coastguard Worker
6037*6a54128fSAndroid Build Coastguard Worker#: misc/mklost+found.c:50
6038*6a54128fSAndroid Build Coastguard Workermsgid "Usage: mklost+found\n"
6039*6a54128fSAndroid Build Coastguard Workermsgstr ""
6040*6a54128fSAndroid Build Coastguard Worker
6041*6a54128fSAndroid Build Coastguard Worker#: misc/partinfo.c:43
6042*6a54128fSAndroid Build Coastguard Worker#, c-format
6043*6a54128fSAndroid Build Coastguard Workermsgid ""
6044*6a54128fSAndroid Build Coastguard Worker"Usage:  %s device...\n"
6045*6a54128fSAndroid Build Coastguard Worker"\n"
6046*6a54128fSAndroid Build Coastguard Worker"Prints out the partition information for each given device.\n"
6047*6a54128fSAndroid Build Coastguard Worker"For example: %s /dev/hda\n"
6048*6a54128fSAndroid Build Coastguard Worker"\n"
6049*6a54128fSAndroid Build Coastguard Workermsgstr ""
6050*6a54128fSAndroid Build Coastguard Worker
6051*6a54128fSAndroid Build Coastguard Worker#: misc/partinfo.c:53
6052*6a54128fSAndroid Build Coastguard Worker#, c-format
6053*6a54128fSAndroid Build Coastguard Workermsgid "Cannot open %s: %s"
6054*6a54128fSAndroid Build Coastguard Workermsgstr ""
6055*6a54128fSAndroid Build Coastguard Worker
6056*6a54128fSAndroid Build Coastguard Worker#: misc/partinfo.c:59
6057*6a54128fSAndroid Build Coastguard Worker#, c-format
6058*6a54128fSAndroid Build Coastguard Workermsgid "Cannot get geometry of %s: %s"
6059*6a54128fSAndroid Build Coastguard Workermsgstr ""
6060*6a54128fSAndroid Build Coastguard Worker
6061*6a54128fSAndroid Build Coastguard Worker#: misc/partinfo.c:67
6062*6a54128fSAndroid Build Coastguard Worker#, c-format
6063*6a54128fSAndroid Build Coastguard Workermsgid "Cannot get size of %s: %s"
6064*6a54128fSAndroid Build Coastguard Workermsgstr ""
6065*6a54128fSAndroid Build Coastguard Worker
6066*6a54128fSAndroid Build Coastguard Worker#: misc/partinfo.c:73
6067*6a54128fSAndroid Build Coastguard Worker#, c-format
6068*6a54128fSAndroid Build Coastguard Workermsgid "%s: h=%3d s=%3d c=%4d   start=%8d size=%8lu end=%8d\n"
6069*6a54128fSAndroid Build Coastguard Workermsgstr ""
6070*6a54128fSAndroid Build Coastguard Worker
6071*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:121
6072*6a54128fSAndroid Build Coastguard Workermsgid ""
6073*6a54128fSAndroid Build Coastguard Worker"\n"
6074*6a54128fSAndroid Build Coastguard Worker"This operation requires a freshly checked filesystem.\n"
6075*6a54128fSAndroid Build Coastguard Workermsgstr ""
6076*6a54128fSAndroid Build Coastguard Worker
6077*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:123
6078*6a54128fSAndroid Build Coastguard Workermsgid "Please run e2fsck -f on the filesystem.\n"
6079*6a54128fSAndroid Build Coastguard Workermsgstr ""
6080*6a54128fSAndroid Build Coastguard Worker
6081*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:125
6082*6a54128fSAndroid Build Coastguard Workermsgid "Please run e2fsck -fD on the filesystem.\n"
6083*6a54128fSAndroid Build Coastguard Workermsgstr ""
6084*6a54128fSAndroid Build Coastguard Worker
6085*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:138
6086*6a54128fSAndroid Build Coastguard Worker#, c-format
6087*6a54128fSAndroid Build Coastguard Workermsgid ""
6088*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-f] [-g group]\n"
6089*6a54128fSAndroid Build Coastguard Worker"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
6090*6a54128fSAndroid Build Coastguard Worker"\t[-m reserved_blocks_percent] [-o [^]mount_options[,...]]\n"
6091*6a54128fSAndroid Build Coastguard Worker"\t[-r reserved_blocks_count] [-u user] [-C mount_count]\n"
6092*6a54128fSAndroid Build Coastguard Worker"\t[-L volume_label] [-M last_mounted_dir]\n"
6093*6a54128fSAndroid Build Coastguard Worker"\t[-O [^]feature[,...]] [-Q quota_options]\n"
6094*6a54128fSAndroid Build Coastguard Worker"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID]\n"
6095*6a54128fSAndroid Build Coastguard Worker"\t[-I new_inode_size] [-z undo_file] device\n"
6096*6a54128fSAndroid Build Coastguard Workermsgstr ""
6097*6a54128fSAndroid Build Coastguard Worker
6098*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:229
6099*6a54128fSAndroid Build Coastguard Workermsgid "Journal superblock not found!\n"
6100*6a54128fSAndroid Build Coastguard Workermsgstr ""
6101*6a54128fSAndroid Build Coastguard Worker
6102*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:287
6103*6a54128fSAndroid Build Coastguard Workermsgid "while trying to open external journal"
6104*6a54128fSAndroid Build Coastguard Workermsgstr ""
6105*6a54128fSAndroid Build Coastguard Worker
6106*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:293 misc/tune2fs.c:2899
6107*6a54128fSAndroid Build Coastguard Worker#, c-format
6108*6a54128fSAndroid Build Coastguard Workermsgid "%s is not a journal device.\n"
6109*6a54128fSAndroid Build Coastguard Workermsgstr ""
6110*6a54128fSAndroid Build Coastguard Worker
6111*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:302 misc/tune2fs.c:2908
6112*6a54128fSAndroid Build Coastguard Worker#, c-format
6113*6a54128fSAndroid Build Coastguard Workermsgid ""
6114*6a54128fSAndroid Build Coastguard Worker"Journal superblock is corrupted, nr_users\n"
6115*6a54128fSAndroid Build Coastguard Worker"is too high (%d).\n"
6116*6a54128fSAndroid Build Coastguard Workermsgstr ""
6117*6a54128fSAndroid Build Coastguard Worker
6118*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:309 misc/tune2fs.c:2915
6119*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem's UUID not found on journal device.\n"
6120*6a54128fSAndroid Build Coastguard Workermsgstr ""
6121*6a54128fSAndroid Build Coastguard Worker
6122*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:333
6123*6a54128fSAndroid Build Coastguard Workermsgid ""
6124*6a54128fSAndroid Build Coastguard Worker"Cannot locate journal device. It was NOT removed\n"
6125*6a54128fSAndroid Build Coastguard Worker"Use -f option to remove missing journal device.\n"
6126*6a54128fSAndroid Build Coastguard Workermsgstr ""
6127*6a54128fSAndroid Build Coastguard Worker
6128*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:342
6129*6a54128fSAndroid Build Coastguard Workermsgid "Journal removed\n"
6130*6a54128fSAndroid Build Coastguard Workermsgstr ""
6131*6a54128fSAndroid Build Coastguard Worker
6132*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:386
6133*6a54128fSAndroid Build Coastguard Workermsgid "while reading bitmaps"
6134*6a54128fSAndroid Build Coastguard Workermsgstr ""
6135*6a54128fSAndroid Build Coastguard Worker
6136*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:394
6137*6a54128fSAndroid Build Coastguard Workermsgid "while clearing journal inode"
6138*6a54128fSAndroid Build Coastguard Workermsgstr ""
6139*6a54128fSAndroid Build Coastguard Worker
6140*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:407
6141*6a54128fSAndroid Build Coastguard Workermsgid "while writing journal inode"
6142*6a54128fSAndroid Build Coastguard Workermsgstr ""
6143*6a54128fSAndroid Build Coastguard Worker
6144*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:443 misc/tune2fs.c:468 misc/tune2fs.c:481
6145*6a54128fSAndroid Build Coastguard Workermsgid "(and reboot afterwards!)\n"
6146*6a54128fSAndroid Build Coastguard Workermsgstr ""
6147*6a54128fSAndroid Build Coastguard Worker
6148*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:496
6149*6a54128fSAndroid Build Coastguard Worker#, c-format
6150*6a54128fSAndroid Build Coastguard Workermsgid "After running e2fsck, please run `resize2fs %s %s"
6151*6a54128fSAndroid Build Coastguard Workermsgstr ""
6152*6a54128fSAndroid Build Coastguard Worker
6153*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:499
6154*6a54128fSAndroid Build Coastguard Worker#, c-format
6155*6a54128fSAndroid Build Coastguard Workermsgid "Please run `resize2fs %s %s"
6156*6a54128fSAndroid Build Coastguard Workermsgstr ""
6157*6a54128fSAndroid Build Coastguard Worker
6158*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:503
6159*6a54128fSAndroid Build Coastguard Worker#, c-format
6160*6a54128fSAndroid Build Coastguard Workermsgid " -z \"%s\""
6161*6a54128fSAndroid Build Coastguard Workermsgstr ""
6162*6a54128fSAndroid Build Coastguard Worker
6163*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:505
6164*6a54128fSAndroid Build Coastguard Worker#, c-format
6165*6a54128fSAndroid Build Coastguard Workermsgid "' to enable 64-bit mode.\n"
6166*6a54128fSAndroid Build Coastguard Workermsgstr ""
6167*6a54128fSAndroid Build Coastguard Worker
6168*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:507
6169*6a54128fSAndroid Build Coastguard Worker#, c-format
6170*6a54128fSAndroid Build Coastguard Workermsgid "' to disable 64-bit mode.\n"
6171*6a54128fSAndroid Build Coastguard Workermsgstr ""
6172*6a54128fSAndroid Build Coastguard Worker
6173*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1078
6174*6a54128fSAndroid Build Coastguard Workermsgid ""
6175*6a54128fSAndroid Build Coastguard Worker"WARNING: Could not confirm kernel support for metadata_csum_seed.\n"
6176*6a54128fSAndroid Build Coastguard Worker"  This requires Linux >= v4.4.\n"
6177*6a54128fSAndroid Build Coastguard Workermsgstr ""
6178*6a54128fSAndroid Build Coastguard Worker
6179*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1114
6180*6a54128fSAndroid Build Coastguard Worker#, c-format
6181*6a54128fSAndroid Build Coastguard Workermsgid "Clearing filesystem feature '%s' not supported.\n"
6182*6a54128fSAndroid Build Coastguard Workermsgstr ""
6183*6a54128fSAndroid Build Coastguard Worker
6184*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1120
6185*6a54128fSAndroid Build Coastguard Worker#, c-format
6186*6a54128fSAndroid Build Coastguard Workermsgid "Setting filesystem feature '%s' not supported.\n"
6187*6a54128fSAndroid Build Coastguard Workermsgstr ""
6188*6a54128fSAndroid Build Coastguard Worker
6189*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1129
6190*6a54128fSAndroid Build Coastguard Workermsgid ""
6191*6a54128fSAndroid Build Coastguard Worker"The has_journal feature may only be cleared when the filesystem is\n"
6192*6a54128fSAndroid Build Coastguard Worker"unmounted or mounted read-only.\n"
6193*6a54128fSAndroid Build Coastguard Workermsgstr ""
6194*6a54128fSAndroid Build Coastguard Worker
6195*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1137
6196*6a54128fSAndroid Build Coastguard Workermsgid ""
6197*6a54128fSAndroid Build Coastguard Worker"The needs_recovery flag is set.  Please run e2fsck before clearing\n"
6198*6a54128fSAndroid Build Coastguard Worker"the has_journal flag.\n"
6199*6a54128fSAndroid Build Coastguard Workermsgstr ""
6200*6a54128fSAndroid Build Coastguard Worker
6201*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1155
6202*6a54128fSAndroid Build Coastguard Workermsgid ""
6203*6a54128fSAndroid Build Coastguard Worker"Setting filesystem feature 'sparse_super' not supported\n"
6204*6a54128fSAndroid Build Coastguard Worker"for filesystems with the meta_bg feature enabled.\n"
6205*6a54128fSAndroid Build Coastguard Workermsgstr ""
6206*6a54128fSAndroid Build Coastguard Worker
6207*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1168
6208*6a54128fSAndroid Build Coastguard Workermsgid ""
6209*6a54128fSAndroid Build Coastguard Worker"The multiple mount protection feature can't\n"
6210*6a54128fSAndroid Build Coastguard Worker"be set if the filesystem is mounted or\n"
6211*6a54128fSAndroid Build Coastguard Worker"read-only.\n"
6212*6a54128fSAndroid Build Coastguard Workermsgstr ""
6213*6a54128fSAndroid Build Coastguard Worker
6214*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1186
6215*6a54128fSAndroid Build Coastguard Worker#, c-format
6216*6a54128fSAndroid Build Coastguard Workermsgid "Multiple mount protection has been enabled with update interval %ds.\n"
6217*6a54128fSAndroid Build Coastguard Workermsgstr ""
6218*6a54128fSAndroid Build Coastguard Worker
6219*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1195
6220*6a54128fSAndroid Build Coastguard Workermsgid ""
6221*6a54128fSAndroid Build Coastguard Worker"The multiple mount protection feature cannot\n"
6222*6a54128fSAndroid Build Coastguard Worker"be disabled if the filesystem is readonly.\n"
6223*6a54128fSAndroid Build Coastguard Workermsgstr ""
6224*6a54128fSAndroid Build Coastguard Worker
6225*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1203
6226*6a54128fSAndroid Build Coastguard Workermsgid "Error while reading bitmaps\n"
6227*6a54128fSAndroid Build Coastguard Workermsgstr ""
6228*6a54128fSAndroid Build Coastguard Worker
6229*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1212
6230*6a54128fSAndroid Build Coastguard Worker#, c-format
6231*6a54128fSAndroid Build Coastguard Workermsgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
6232*6a54128fSAndroid Build Coastguard Workermsgstr ""
6233*6a54128fSAndroid Build Coastguard Worker
6234*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1217
6235*6a54128fSAndroid Build Coastguard Workermsgid "while reading MMP block."
6236*6a54128fSAndroid Build Coastguard Workermsgstr ""
6237*6a54128fSAndroid Build Coastguard Worker
6238*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1250
6239*6a54128fSAndroid Build Coastguard Workermsgid ""
6240*6a54128fSAndroid Build Coastguard Worker"Disabling directory index on filesystem with checksums could take some time."
6241*6a54128fSAndroid Build Coastguard Workermsgstr ""
6242*6a54128fSAndroid Build Coastguard Worker
6243*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1254
6244*6a54128fSAndroid Build Coastguard Workermsgid "Cannot disable dir_index on a mounted filesystem!\n"
6245*6a54128fSAndroid Build Coastguard Workermsgstr ""
6246*6a54128fSAndroid Build Coastguard Worker
6247*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1267
6248*6a54128fSAndroid Build Coastguard Workermsgid ""
6249*6a54128fSAndroid Build Coastguard Worker"Clearing the flex_bg flag would cause the the filesystem to be\n"
6250*6a54128fSAndroid Build Coastguard Worker"inconsistent.\n"
6251*6a54128fSAndroid Build Coastguard Workermsgstr ""
6252*6a54128fSAndroid Build Coastguard Worker
6253*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1278
6254*6a54128fSAndroid Build Coastguard Workermsgid ""
6255*6a54128fSAndroid Build Coastguard Worker"The huge_file feature may only be cleared when the filesystem is\n"
6256*6a54128fSAndroid Build Coastguard Worker"unmounted or mounted read-only.\n"
6257*6a54128fSAndroid Build Coastguard Workermsgstr ""
6258*6a54128fSAndroid Build Coastguard Worker
6259*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1289
6260*6a54128fSAndroid Build Coastguard Workermsgid "Enabling checksums could take some time."
6261*6a54128fSAndroid Build Coastguard Workermsgstr ""
6262*6a54128fSAndroid Build Coastguard Worker
6263*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1292
6264*6a54128fSAndroid Build Coastguard Workermsgid "Cannot enable metadata_csum on a mounted filesystem!\n"
6265*6a54128fSAndroid Build Coastguard Workermsgstr ""
6266*6a54128fSAndroid Build Coastguard Worker
6267*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1298
6268*6a54128fSAndroid Build Coastguard Workermsgid ""
6269*6a54128fSAndroid Build Coastguard Worker"Extents are not enabled.  The file extent tree can be checksummed, whereas "
6270*6a54128fSAndroid Build Coastguard Worker"block maps cannot.  Not enabling extents reduces the coverage of metadata "
6271*6a54128fSAndroid Build Coastguard Worker"checksumming.  Re-run with -O extent to rectify.\n"
6272*6a54128fSAndroid Build Coastguard Workermsgstr ""
6273*6a54128fSAndroid Build Coastguard Worker
6274*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1305
6275*6a54128fSAndroid Build Coastguard Workermsgid ""
6276*6a54128fSAndroid Build Coastguard Worker"64-bit filesystem support is not enabled.  The larger fields afforded by "
6277*6a54128fSAndroid Build Coastguard Worker"this feature enable full-strength checksumming.  Run resize2fs -b to "
6278*6a54128fSAndroid Build Coastguard Worker"rectify.\n"
6279*6a54128fSAndroid Build Coastguard Workermsgstr ""
6280*6a54128fSAndroid Build Coastguard Worker
6281*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1331
6282*6a54128fSAndroid Build Coastguard Workermsgid "Disabling checksums could take some time."
6283*6a54128fSAndroid Build Coastguard Workermsgstr ""
6284*6a54128fSAndroid Build Coastguard Worker
6285*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1334
6286*6a54128fSAndroid Build Coastguard Workermsgid "Cannot disable metadata_csum on a mounted filesystem!\n"
6287*6a54128fSAndroid Build Coastguard Workermsgstr ""
6288*6a54128fSAndroid Build Coastguard Worker
6289*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1375
6290*6a54128fSAndroid Build Coastguard Workermsgid "Cannot enable uninit_bg on a mounted filesystem!\n"
6291*6a54128fSAndroid Build Coastguard Workermsgstr ""
6292*6a54128fSAndroid Build Coastguard Worker
6293*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1390
6294*6a54128fSAndroid Build Coastguard Workermsgid "Cannot disable uninit_bg on a mounted filesystem!\n"
6295*6a54128fSAndroid Build Coastguard Workermsgstr ""
6296*6a54128fSAndroid Build Coastguard Worker
6297*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1409
6298*6a54128fSAndroid Build Coastguard Worker#, c-format
6299*6a54128fSAndroid Build Coastguard Workermsgid "Cannot enable 64-bit mode while mounted!\n"
6300*6a54128fSAndroid Build Coastguard Workermsgstr ""
6301*6a54128fSAndroid Build Coastguard Worker
6302*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1419
6303*6a54128fSAndroid Build Coastguard Worker#, c-format
6304*6a54128fSAndroid Build Coastguard Workermsgid "Cannot disable 64-bit mode while mounted!\n"
6305*6a54128fSAndroid Build Coastguard Workermsgstr ""
6306*6a54128fSAndroid Build Coastguard Worker
6307*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1449
6308*6a54128fSAndroid Build Coastguard Worker#, c-format
6309*6a54128fSAndroid Build Coastguard Workermsgid "Cannot enable project feature; inode size too small.\n"
6310*6a54128fSAndroid Build Coastguard Workermsgstr ""
6311*6a54128fSAndroid Build Coastguard Worker
6312*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1470
6313*6a54128fSAndroid Build Coastguard Workermsgid ""
6314*6a54128fSAndroid Build Coastguard Worker"\n"
6315*6a54128fSAndroid Build Coastguard Worker"Warning: '^quota' option overrides '-Q'arguments.\n"
6316*6a54128fSAndroid Build Coastguard Workermsgstr ""
6317*6a54128fSAndroid Build Coastguard Worker
6318*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1487 misc/tune2fs.c:2249
6319*6a54128fSAndroid Build Coastguard Workermsgid ""
6320*6a54128fSAndroid Build Coastguard Worker"The casefold feature may only be enabled when the filesystem is unmounted.\n"
6321*6a54128fSAndroid Build Coastguard Workermsgstr ""
6322*6a54128fSAndroid Build Coastguard Worker
6323*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1499
6324*6a54128fSAndroid Build Coastguard Workermsgid ""
6325*6a54128fSAndroid Build Coastguard Worker"Setting feature 'metadata_csum_seed' is only supported\n"
6326*6a54128fSAndroid Build Coastguard Worker"on filesystems with the metadata_csum feature enabled.\n"
6327*6a54128fSAndroid Build Coastguard Workermsgstr ""
6328*6a54128fSAndroid Build Coastguard Worker
6329*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1517
6330*6a54128fSAndroid Build Coastguard Workermsgid ""
6331*6a54128fSAndroid Build Coastguard Worker"UUID has changed since enabling metadata_csum.  Filesystem must be "
6332*6a54128fSAndroid Build Coastguard Worker"unmounted \n"
6333*6a54128fSAndroid Build Coastguard Worker"to safely rewrite all metadata to match the new UUID.\n"
6334*6a54128fSAndroid Build Coastguard Workermsgstr ""
6335*6a54128fSAndroid Build Coastguard Worker
6336*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1523
6337*6a54128fSAndroid Build Coastguard Workermsgid "Recalculating checksums could take some time."
6338*6a54128fSAndroid Build Coastguard Workermsgstr ""
6339*6a54128fSAndroid Build Coastguard Worker
6340*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1566
6341*6a54128fSAndroid Build Coastguard Workermsgid "The filesystem already has a journal.\n"
6342*6a54128fSAndroid Build Coastguard Workermsgstr ""
6343*6a54128fSAndroid Build Coastguard Worker
6344*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1586
6345*6a54128fSAndroid Build Coastguard Worker#, c-format
6346*6a54128fSAndroid Build Coastguard Workermsgid ""
6347*6a54128fSAndroid Build Coastguard Worker"\n"
6348*6a54128fSAndroid Build Coastguard Worker"\twhile trying to open journal on %s\n"
6349*6a54128fSAndroid Build Coastguard Workermsgstr ""
6350*6a54128fSAndroid Build Coastguard Worker
6351*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1590
6352*6a54128fSAndroid Build Coastguard Worker#, c-format
6353*6a54128fSAndroid Build Coastguard Workermsgid "Creating journal on device %s: "
6354*6a54128fSAndroid Build Coastguard Workermsgstr ""
6355*6a54128fSAndroid Build Coastguard Worker
6356*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1598
6357*6a54128fSAndroid Build Coastguard Worker#, c-format
6358*6a54128fSAndroid Build Coastguard Workermsgid "while adding filesystem to journal on %s"
6359*6a54128fSAndroid Build Coastguard Workermsgstr ""
6360*6a54128fSAndroid Build Coastguard Worker
6361*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1604
6362*6a54128fSAndroid Build Coastguard Workermsgid "Creating journal inode: "
6363*6a54128fSAndroid Build Coastguard Workermsgstr ""
6364*6a54128fSAndroid Build Coastguard Worker
6365*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1618
6366*6a54128fSAndroid Build Coastguard Workermsgid ""
6367*6a54128fSAndroid Build Coastguard Worker"\n"
6368*6a54128fSAndroid Build Coastguard Worker"\twhile trying to create journal file"
6369*6a54128fSAndroid Build Coastguard Workermsgstr ""
6370*6a54128fSAndroid Build Coastguard Worker
6371*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1660
6372*6a54128fSAndroid Build Coastguard Worker#, c-format
6373*6a54128fSAndroid Build Coastguard Workermsgid "Cannot enable project quota; inode size too small.\n"
6374*6a54128fSAndroid Build Coastguard Workermsgstr ""
6375*6a54128fSAndroid Build Coastguard Worker
6376*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1673
6377*6a54128fSAndroid Build Coastguard Workermsgid "while initializing quota context in support library"
6378*6a54128fSAndroid Build Coastguard Workermsgstr ""
6379*6a54128fSAndroid Build Coastguard Worker
6380*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1689
6381*6a54128fSAndroid Build Coastguard Worker#, c-format
6382*6a54128fSAndroid Build Coastguard Workermsgid "while updating quota limits (%d)"
6383*6a54128fSAndroid Build Coastguard Workermsgstr ""
6384*6a54128fSAndroid Build Coastguard Worker
6385*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1699
6386*6a54128fSAndroid Build Coastguard Worker#, c-format
6387*6a54128fSAndroid Build Coastguard Workermsgid "while writing quota file (%d)"
6388*6a54128fSAndroid Build Coastguard Workermsgstr ""
6389*6a54128fSAndroid Build Coastguard Worker
6390*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1717
6391*6a54128fSAndroid Build Coastguard Worker#, c-format
6392*6a54128fSAndroid Build Coastguard Workermsgid "while removing quota file (%d)"
6393*6a54128fSAndroid Build Coastguard Workermsgstr ""
6394*6a54128fSAndroid Build Coastguard Worker
6395*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1760
6396*6a54128fSAndroid Build Coastguard Workermsgid ""
6397*6a54128fSAndroid Build Coastguard Worker"\n"
6398*6a54128fSAndroid Build Coastguard Worker"Bad quota options specified.\n"
6399*6a54128fSAndroid Build Coastguard Worker"\n"
6400*6a54128fSAndroid Build Coastguard Worker"Following valid quota options are available (pass by separating with "
6401*6a54128fSAndroid Build Coastguard Worker"comma):\n"
6402*6a54128fSAndroid Build Coastguard Worker"\t[^]usr[quota]\n"
6403*6a54128fSAndroid Build Coastguard Worker"\t[^]grp[quota]\n"
6404*6a54128fSAndroid Build Coastguard Worker"\t[^]prj[quota]\n"
6405*6a54128fSAndroid Build Coastguard Worker"\n"
6406*6a54128fSAndroid Build Coastguard Worker"\n"
6407*6a54128fSAndroid Build Coastguard Workermsgstr ""
6408*6a54128fSAndroid Build Coastguard Worker
6409*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1818
6410*6a54128fSAndroid Build Coastguard Worker#, c-format
6411*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't parse date/time specifier: %s"
6412*6a54128fSAndroid Build Coastguard Workermsgstr ""
6413*6a54128fSAndroid Build Coastguard Worker
6414*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1850 misc/tune2fs.c:1861
6415*6a54128fSAndroid Build Coastguard Worker#, c-format
6416*6a54128fSAndroid Build Coastguard Workermsgid "bad mounts count - %s"
6417*6a54128fSAndroid Build Coastguard Workermsgstr ""
6418*6a54128fSAndroid Build Coastguard Worker
6419*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1904
6420*6a54128fSAndroid Build Coastguard Worker#, c-format
6421*6a54128fSAndroid Build Coastguard Workermsgid "bad gid/group name - %s"
6422*6a54128fSAndroid Build Coastguard Workermsgstr ""
6423*6a54128fSAndroid Build Coastguard Worker
6424*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1937
6425*6a54128fSAndroid Build Coastguard Worker#, c-format
6426*6a54128fSAndroid Build Coastguard Workermsgid "bad interval - %s"
6427*6a54128fSAndroid Build Coastguard Workermsgstr ""
6428*6a54128fSAndroid Build Coastguard Worker
6429*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1966
6430*6a54128fSAndroid Build Coastguard Worker#, c-format
6431*6a54128fSAndroid Build Coastguard Workermsgid "bad reserved block ratio - %s"
6432*6a54128fSAndroid Build Coastguard Workermsgstr ""
6433*6a54128fSAndroid Build Coastguard Worker
6434*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1981
6435*6a54128fSAndroid Build Coastguard Workermsgid "-o may only be specified once"
6436*6a54128fSAndroid Build Coastguard Workermsgstr ""
6437*6a54128fSAndroid Build Coastguard Worker
6438*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:1990
6439*6a54128fSAndroid Build Coastguard Workermsgid "-O may only be specified once"
6440*6a54128fSAndroid Build Coastguard Workermsgstr ""
6441*6a54128fSAndroid Build Coastguard Worker
6442*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2007
6443*6a54128fSAndroid Build Coastguard Worker#, c-format
6444*6a54128fSAndroid Build Coastguard Workermsgid "bad reserved blocks count - %s"
6445*6a54128fSAndroid Build Coastguard Workermsgstr ""
6446*6a54128fSAndroid Build Coastguard Worker
6447*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2036
6448*6a54128fSAndroid Build Coastguard Worker#, c-format
6449*6a54128fSAndroid Build Coastguard Workermsgid "bad uid/user name - %s"
6450*6a54128fSAndroid Build Coastguard Workermsgstr ""
6451*6a54128fSAndroid Build Coastguard Worker
6452*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2053
6453*6a54128fSAndroid Build Coastguard Worker#, c-format
6454*6a54128fSAndroid Build Coastguard Workermsgid "bad inode size - %s"
6455*6a54128fSAndroid Build Coastguard Workermsgstr ""
6456*6a54128fSAndroid Build Coastguard Worker
6457*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2060
6458*6a54128fSAndroid Build Coastguard Worker#, c-format
6459*6a54128fSAndroid Build Coastguard Workermsgid "Inode size must be a power of two- %s"
6460*6a54128fSAndroid Build Coastguard Workermsgstr ""
6461*6a54128fSAndroid Build Coastguard Worker
6462*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2160
6463*6a54128fSAndroid Build Coastguard Worker#, c-format
6464*6a54128fSAndroid Build Coastguard Workermsgid "mmp_update_interval too big: %lu\n"
6465*6a54128fSAndroid Build Coastguard Workermsgstr ""
6466*6a54128fSAndroid Build Coastguard Worker
6467*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2165
6468*6a54128fSAndroid Build Coastguard Worker#, c-format
6469*6a54128fSAndroid Build Coastguard Workermsgid "Setting multiple mount protection update interval to %lu second\n"
6470*6a54128fSAndroid Build Coastguard Workermsgid_plural ""
6471*6a54128fSAndroid Build Coastguard Worker"Setting multiple mount protection update interval to %lu seconds\n"
6472*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
6473*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
6474*6a54128fSAndroid Build Coastguard Worker
6475*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2174
6476*6a54128fSAndroid Build Coastguard Worker#, c-format
6477*6a54128fSAndroid Build Coastguard Workermsgid "Setting filesystem error flag to force fsck.\n"
6478*6a54128fSAndroid Build Coastguard Workermsgstr ""
6479*6a54128fSAndroid Build Coastguard Worker
6480*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2192
6481*6a54128fSAndroid Build Coastguard Worker#, c-format
6482*6a54128fSAndroid Build Coastguard Workermsgid "Invalid RAID stride: %s\n"
6483*6a54128fSAndroid Build Coastguard Workermsgstr ""
6484*6a54128fSAndroid Build Coastguard Worker
6485*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2207
6486*6a54128fSAndroid Build Coastguard Worker#, c-format
6487*6a54128fSAndroid Build Coastguard Workermsgid "Invalid RAID stripe-width: %s\n"
6488*6a54128fSAndroid Build Coastguard Workermsgstr ""
6489*6a54128fSAndroid Build Coastguard Worker
6490*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2222
6491*6a54128fSAndroid Build Coastguard Worker#, c-format
6492*6a54128fSAndroid Build Coastguard Workermsgid "Invalid hash algorithm: %s\n"
6493*6a54128fSAndroid Build Coastguard Workermsgstr ""
6494*6a54128fSAndroid Build Coastguard Worker
6495*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2228
6496*6a54128fSAndroid Build Coastguard Worker#, c-format
6497*6a54128fSAndroid Build Coastguard Workermsgid "Setting default hash algorithm to %s (%d)\n"
6498*6a54128fSAndroid Build Coastguard Workermsgstr ""
6499*6a54128fSAndroid Build Coastguard Worker
6500*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2255
6501*6a54128fSAndroid Build Coastguard Worker#, c-format
6502*6a54128fSAndroid Build Coastguard Workermsgid "Cannot alter existing encoding\n"
6503*6a54128fSAndroid Build Coastguard Workermsgstr ""
6504*6a54128fSAndroid Build Coastguard Worker
6505*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2261
6506*6a54128fSAndroid Build Coastguard Worker#, c-format
6507*6a54128fSAndroid Build Coastguard Workermsgid "Invalid encoding: %s\n"
6508*6a54128fSAndroid Build Coastguard Workermsgstr ""
6509*6a54128fSAndroid Build Coastguard Worker
6510*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2267
6511*6a54128fSAndroid Build Coastguard Worker#, c-format
6512*6a54128fSAndroid Build Coastguard Workermsgid "Setting encoding to '%s'\n"
6513*6a54128fSAndroid Build Coastguard Workermsgstr ""
6514*6a54128fSAndroid Build Coastguard Worker
6515*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2291
6516*6a54128fSAndroid Build Coastguard Worker#, c-format
6517*6a54128fSAndroid Build Coastguard Workermsgid "Setting encoding_flags to '%s'\n"
6518*6a54128fSAndroid Build Coastguard Workermsgstr ""
6519*6a54128fSAndroid Build Coastguard Worker
6520*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2301
6521*6a54128fSAndroid Build Coastguard Workermsgid ""
6522*6a54128fSAndroid Build Coastguard Worker"\n"
6523*6a54128fSAndroid Build Coastguard Worker"Bad options specified.\n"
6524*6a54128fSAndroid Build Coastguard Worker"\n"
6525*6a54128fSAndroid Build Coastguard Worker"Extended options are separated by commas, and may take an argument which\n"
6526*6a54128fSAndroid Build Coastguard Worker"\tis set off by an equals ('=') sign.\n"
6527*6a54128fSAndroid Build Coastguard Worker"\n"
6528*6a54128fSAndroid Build Coastguard Worker"Valid extended options are:\n"
6529*6a54128fSAndroid Build Coastguard Worker"\tclear_mmp\n"
6530*6a54128fSAndroid Build Coastguard Worker"\thash_alg=<hash algorithm>\n"
6531*6a54128fSAndroid Build Coastguard Worker"\tmount_opts=<extended default mount options>\n"
6532*6a54128fSAndroid Build Coastguard Worker"\tmmp_update_interval=<mmp update interval in seconds>\n"
6533*6a54128fSAndroid Build Coastguard Worker"\tstride=<RAID per-disk chunk size in blocks>\n"
6534*6a54128fSAndroid Build Coastguard Worker"\tstripe_width=<RAID stride*data disks in blocks>\n"
6535*6a54128fSAndroid Build Coastguard Worker"\tforce_fsck\n"
6536*6a54128fSAndroid Build Coastguard Worker"\ttest_fs\n"
6537*6a54128fSAndroid Build Coastguard Worker"\t^test_fs\n"
6538*6a54128fSAndroid Build Coastguard Worker"\tencoding=<encoding>\n"
6539*6a54128fSAndroid Build Coastguard Worker"\tencoding_flags=<flags>\n"
6540*6a54128fSAndroid Build Coastguard Workermsgstr ""
6541*6a54128fSAndroid Build Coastguard Worker
6542*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2717
6543*6a54128fSAndroid Build Coastguard Workermsgid "Failed to read inode bitmap\n"
6544*6a54128fSAndroid Build Coastguard Workermsgstr ""
6545*6a54128fSAndroid Build Coastguard Worker
6546*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2722
6547*6a54128fSAndroid Build Coastguard Workermsgid "Failed to read block bitmap\n"
6548*6a54128fSAndroid Build Coastguard Workermsgstr ""
6549*6a54128fSAndroid Build Coastguard Worker
6550*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2739 resize/resize2fs.c:1368
6551*6a54128fSAndroid Build Coastguard Workermsgid "blocks to be moved"
6552*6a54128fSAndroid Build Coastguard Workermsgstr ""
6553*6a54128fSAndroid Build Coastguard Worker
6554*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2742
6555*6a54128fSAndroid Build Coastguard Workermsgid "Failed to allocate block bitmap when increasing inode size\n"
6556*6a54128fSAndroid Build Coastguard Workermsgstr ""
6557*6a54128fSAndroid Build Coastguard Worker
6558*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2748
6559*6a54128fSAndroid Build Coastguard Workermsgid "Not enough space to increase inode size \n"
6560*6a54128fSAndroid Build Coastguard Workermsgstr ""
6561*6a54128fSAndroid Build Coastguard Worker
6562*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2753
6563*6a54128fSAndroid Build Coastguard Workermsgid "Failed to relocate blocks during inode resize \n"
6564*6a54128fSAndroid Build Coastguard Workermsgstr ""
6565*6a54128fSAndroid Build Coastguard Worker
6566*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2785
6567*6a54128fSAndroid Build Coastguard Workermsgid ""
6568*6a54128fSAndroid Build Coastguard Worker"Error in resizing the inode size.\n"
6569*6a54128fSAndroid Build Coastguard Worker"Run e2undo to undo the file system changes. \n"
6570*6a54128fSAndroid Build Coastguard Workermsgstr ""
6571*6a54128fSAndroid Build Coastguard Worker
6572*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:2998
6573*6a54128fSAndroid Build Coastguard Workermsgid ""
6574*6a54128fSAndroid Build Coastguard Worker"If you are sure the filesystem is not in use on any node, run:\n"
6575*6a54128fSAndroid Build Coastguard Worker"'tune2fs -f -E clear_mmp {device}'\n"
6576*6a54128fSAndroid Build Coastguard Workermsgstr ""
6577*6a54128fSAndroid Build Coastguard Worker
6578*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3005
6579*6a54128fSAndroid Build Coastguard Worker#, c-format
6580*6a54128fSAndroid Build Coastguard Workermsgid ""
6581*6a54128fSAndroid Build Coastguard Worker"MMP block magic is bad. Try to fix it by running:\n"
6582*6a54128fSAndroid Build Coastguard Worker"'e2fsck -f %s'\n"
6583*6a54128fSAndroid Build Coastguard Workermsgstr ""
6584*6a54128fSAndroid Build Coastguard Worker
6585*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3017
6586*6a54128fSAndroid Build Coastguard Workermsgid "Cannot modify a journal device.\n"
6587*6a54128fSAndroid Build Coastguard Workermsgstr ""
6588*6a54128fSAndroid Build Coastguard Worker
6589*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3030
6590*6a54128fSAndroid Build Coastguard Worker#, c-format
6591*6a54128fSAndroid Build Coastguard Workermsgid "The inode size is already %lu\n"
6592*6a54128fSAndroid Build Coastguard Workermsgstr ""
6593*6a54128fSAndroid Build Coastguard Worker
6594*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3037
6595*6a54128fSAndroid Build Coastguard Workermsgid "Shrinking inode size is not supported\n"
6596*6a54128fSAndroid Build Coastguard Workermsgstr ""
6597*6a54128fSAndroid Build Coastguard Worker
6598*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3042
6599*6a54128fSAndroid Build Coastguard Worker#, c-format
6600*6a54128fSAndroid Build Coastguard Workermsgid "Invalid inode size %lu (max %d)\n"
6601*6a54128fSAndroid Build Coastguard Workermsgstr ""
6602*6a54128fSAndroid Build Coastguard Worker
6603*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3048
6604*6a54128fSAndroid Build Coastguard Workermsgid "Resizing inodes could take some time."
6605*6a54128fSAndroid Build Coastguard Workermsgstr ""
6606*6a54128fSAndroid Build Coastguard Worker
6607*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3097
6608*6a54128fSAndroid Build Coastguard Worker#, c-format
6609*6a54128fSAndroid Build Coastguard Workermsgid ""
6610*6a54128fSAndroid Build Coastguard Worker"Warning: The journal is dirty. You may wish to replay the journal like:\n"
6611*6a54128fSAndroid Build Coastguard Worker"\n"
6612*6a54128fSAndroid Build Coastguard Worker"\te2fsck -E journal_only %s\n"
6613*6a54128fSAndroid Build Coastguard Worker"\n"
6614*6a54128fSAndroid Build Coastguard Worker"then rerun this command.  Otherwise, any changes made may be overwritten\n"
6615*6a54128fSAndroid Build Coastguard Worker"by journal recovery.\n"
6616*6a54128fSAndroid Build Coastguard Workermsgstr ""
6617*6a54128fSAndroid Build Coastguard Worker
6618*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3106
6619*6a54128fSAndroid Build Coastguard Worker#, c-format
6620*6a54128fSAndroid Build Coastguard Workermsgid "Recovering journal.\n"
6621*6a54128fSAndroid Build Coastguard Workermsgstr ""
6622*6a54128fSAndroid Build Coastguard Worker
6623*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3130
6624*6a54128fSAndroid Build Coastguard Worker#, c-format
6625*6a54128fSAndroid Build Coastguard Workermsgid "Setting maximal mount count to %d\n"
6626*6a54128fSAndroid Build Coastguard Workermsgstr ""
6627*6a54128fSAndroid Build Coastguard Worker
6628*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3136
6629*6a54128fSAndroid Build Coastguard Worker#, c-format
6630*6a54128fSAndroid Build Coastguard Workermsgid "Setting current mount count to %d\n"
6631*6a54128fSAndroid Build Coastguard Workermsgstr ""
6632*6a54128fSAndroid Build Coastguard Worker
6633*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3141
6634*6a54128fSAndroid Build Coastguard Worker#, c-format
6635*6a54128fSAndroid Build Coastguard Workermsgid "Setting error behavior to %d\n"
6636*6a54128fSAndroid Build Coastguard Workermsgstr ""
6637*6a54128fSAndroid Build Coastguard Worker
6638*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3146
6639*6a54128fSAndroid Build Coastguard Worker#, c-format
6640*6a54128fSAndroid Build Coastguard Workermsgid "Setting reserved blocks gid to %lu\n"
6641*6a54128fSAndroid Build Coastguard Workermsgstr ""
6642*6a54128fSAndroid Build Coastguard Worker
6643*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3151
6644*6a54128fSAndroid Build Coastguard Worker#, c-format
6645*6a54128fSAndroid Build Coastguard Workermsgid "interval between checks is too big (%lu)"
6646*6a54128fSAndroid Build Coastguard Workermsgstr ""
6647*6a54128fSAndroid Build Coastguard Worker
6648*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3158
6649*6a54128fSAndroid Build Coastguard Worker#, c-format
6650*6a54128fSAndroid Build Coastguard Workermsgid "Setting interval between checks to %lu seconds\n"
6651*6a54128fSAndroid Build Coastguard Workermsgstr ""
6652*6a54128fSAndroid Build Coastguard Worker
6653*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3165
6654*6a54128fSAndroid Build Coastguard Worker#, c-format
6655*6a54128fSAndroid Build Coastguard Workermsgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
6656*6a54128fSAndroid Build Coastguard Workermsgstr ""
6657*6a54128fSAndroid Build Coastguard Worker
6658*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3172
6659*6a54128fSAndroid Build Coastguard Worker#, c-format
6660*6a54128fSAndroid Build Coastguard Workermsgid "reserved blocks count is too big (%llu)"
6661*6a54128fSAndroid Build Coastguard Workermsgstr ""
6662*6a54128fSAndroid Build Coastguard Worker
6663*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3179
6664*6a54128fSAndroid Build Coastguard Worker#, c-format
6665*6a54128fSAndroid Build Coastguard Workermsgid "Setting reserved blocks count to %llu\n"
6666*6a54128fSAndroid Build Coastguard Workermsgstr ""
6667*6a54128fSAndroid Build Coastguard Worker
6668*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3184
6669*6a54128fSAndroid Build Coastguard Workermsgid ""
6670*6a54128fSAndroid Build Coastguard Worker"\n"
6671*6a54128fSAndroid Build Coastguard Worker"The filesystem already has sparse superblocks.\n"
6672*6a54128fSAndroid Build Coastguard Workermsgstr ""
6673*6a54128fSAndroid Build Coastguard Worker
6674*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3187
6675*6a54128fSAndroid Build Coastguard Workermsgid ""
6676*6a54128fSAndroid Build Coastguard Worker"\n"
6677*6a54128fSAndroid Build Coastguard Worker"Setting the sparse superblock flag not supported\n"
6678*6a54128fSAndroid Build Coastguard Worker"for filesystems with the meta_bg feature enabled.\n"
6679*6a54128fSAndroid Build Coastguard Workermsgstr ""
6680*6a54128fSAndroid Build Coastguard Worker
6681*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3197
6682*6a54128fSAndroid Build Coastguard Worker#, c-format
6683*6a54128fSAndroid Build Coastguard Workermsgid ""
6684*6a54128fSAndroid Build Coastguard Worker"\n"
6685*6a54128fSAndroid Build Coastguard Worker"Sparse superblock flag set.  %s"
6686*6a54128fSAndroid Build Coastguard Workermsgstr ""
6687*6a54128fSAndroid Build Coastguard Worker
6688*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3202
6689*6a54128fSAndroid Build Coastguard Workermsgid ""
6690*6a54128fSAndroid Build Coastguard Worker"\n"
6691*6a54128fSAndroid Build Coastguard Worker"Clearing the sparse superblock flag not supported.\n"
6692*6a54128fSAndroid Build Coastguard Workermsgstr ""
6693*6a54128fSAndroid Build Coastguard Worker
6694*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3210
6695*6a54128fSAndroid Build Coastguard Worker#, c-format
6696*6a54128fSAndroid Build Coastguard Workermsgid "Setting time filesystem last checked to %s\n"
6697*6a54128fSAndroid Build Coastguard Workermsgstr ""
6698*6a54128fSAndroid Build Coastguard Worker
6699*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3216
6700*6a54128fSAndroid Build Coastguard Worker#, c-format
6701*6a54128fSAndroid Build Coastguard Workermsgid "Setting reserved blocks uid to %lu\n"
6702*6a54128fSAndroid Build Coastguard Workermsgstr ""
6703*6a54128fSAndroid Build Coastguard Worker
6704*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3248
6705*6a54128fSAndroid Build Coastguard Workermsgid "Error in using clear_mmp. It must be used with -f\n"
6706*6a54128fSAndroid Build Coastguard Workermsgstr ""
6707*6a54128fSAndroid Build Coastguard Worker
6708*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3267
6709*6a54128fSAndroid Build Coastguard Workermsgid ""
6710*6a54128fSAndroid Build Coastguard Worker"The quota feature may only be changed when the filesystem is unmounted.\n"
6711*6a54128fSAndroid Build Coastguard Workermsgstr ""
6712*6a54128fSAndroid Build Coastguard Worker
6713*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3284
6714*6a54128fSAndroid Build Coastguard Workermsgid ""
6715*6a54128fSAndroid Build Coastguard Worker"Cannot change the UUID of this filesystem because it has the stable_inodes "
6716*6a54128fSAndroid Build Coastguard Worker"feature flag.\n"
6717*6a54128fSAndroid Build Coastguard Workermsgstr ""
6718*6a54128fSAndroid Build Coastguard Worker
6719*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3294
6720*6a54128fSAndroid Build Coastguard Workermsgid "Setting the UUID on this filesystem could take some time."
6721*6a54128fSAndroid Build Coastguard Workermsgstr ""
6722*6a54128fSAndroid Build Coastguard Worker
6723*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3311
6724*6a54128fSAndroid Build Coastguard Workermsgid "The UUID may only be changed when the filesystem is unmounted.\n"
6725*6a54128fSAndroid Build Coastguard Workermsgstr ""
6726*6a54128fSAndroid Build Coastguard Worker
6727*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3314
6728*6a54128fSAndroid Build Coastguard Workermsgid ""
6729*6a54128fSAndroid Build Coastguard Worker"If you only use kernels newer than v4.4, run 'tune2fs -O metadata_csum_seed' "
6730*6a54128fSAndroid Build Coastguard Worker"and re-run this command.\n"
6731*6a54128fSAndroid Build Coastguard Workermsgstr ""
6732*6a54128fSAndroid Build Coastguard Worker
6733*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3345
6734*6a54128fSAndroid Build Coastguard Workermsgid "Invalid UUID format\n"
6735*6a54128fSAndroid Build Coastguard Workermsgstr ""
6736*6a54128fSAndroid Build Coastguard Worker
6737*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3361
6738*6a54128fSAndroid Build Coastguard Workermsgid "Need to update journal superblock.\n"
6739*6a54128fSAndroid Build Coastguard Workermsgstr ""
6740*6a54128fSAndroid Build Coastguard Worker
6741*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3383
6742*6a54128fSAndroid Build Coastguard Workermsgid "The inode size may only be changed when the filesystem is unmounted.\n"
6743*6a54128fSAndroid Build Coastguard Workermsgstr ""
6744*6a54128fSAndroid Build Coastguard Worker
6745*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3390
6746*6a54128fSAndroid Build Coastguard Workermsgid ""
6747*6a54128fSAndroid Build Coastguard Worker"Changing the inode size not supported for filesystems with the flex_bg\n"
6748*6a54128fSAndroid Build Coastguard Worker"feature enabled.\n"
6749*6a54128fSAndroid Build Coastguard Workermsgstr ""
6750*6a54128fSAndroid Build Coastguard Worker
6751*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3408
6752*6a54128fSAndroid Build Coastguard Worker#, c-format
6753*6a54128fSAndroid Build Coastguard Workermsgid "Setting inode size %lu\n"
6754*6a54128fSAndroid Build Coastguard Workermsgstr ""
6755*6a54128fSAndroid Build Coastguard Worker
6756*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3412
6757*6a54128fSAndroid Build Coastguard Workermsgid "Failed to change inode size\n"
6758*6a54128fSAndroid Build Coastguard Workermsgstr ""
6759*6a54128fSAndroid Build Coastguard Worker
6760*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3432
6761*6a54128fSAndroid Build Coastguard Worker#, c-format
6762*6a54128fSAndroid Build Coastguard Workermsgid "Setting stride size to %d\n"
6763*6a54128fSAndroid Build Coastguard Workermsgstr ""
6764*6a54128fSAndroid Build Coastguard Worker
6765*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3437
6766*6a54128fSAndroid Build Coastguard Worker#, c-format
6767*6a54128fSAndroid Build Coastguard Workermsgid "Setting stripe width to %d\n"
6768*6a54128fSAndroid Build Coastguard Workermsgstr ""
6769*6a54128fSAndroid Build Coastguard Worker
6770*6a54128fSAndroid Build Coastguard Worker#: misc/tune2fs.c:3444
6771*6a54128fSAndroid Build Coastguard Worker#, c-format
6772*6a54128fSAndroid Build Coastguard Workermsgid "Setting extended default mount options to '%s'\n"
6773*6a54128fSAndroid Build Coastguard Workermsgstr ""
6774*6a54128fSAndroid Build Coastguard Worker
6775*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:107
6776*6a54128fSAndroid Build Coastguard Workermsgid "<proceeding>\n"
6777*6a54128fSAndroid Build Coastguard Workermsgstr ""
6778*6a54128fSAndroid Build Coastguard Worker
6779*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:111
6780*6a54128fSAndroid Build Coastguard Worker#, c-format
6781*6a54128fSAndroid Build Coastguard Workermsgid "Proceed anyway (or wait %d seconds to proceed) ? (y,N) "
6782*6a54128fSAndroid Build Coastguard Workermsgstr ""
6783*6a54128fSAndroid Build Coastguard Worker
6784*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:115
6785*6a54128fSAndroid Build Coastguard Workermsgid "Proceed anyway? (y,N) "
6786*6a54128fSAndroid Build Coastguard Workermsgstr ""
6787*6a54128fSAndroid Build Coastguard Worker
6788*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:142
6789*6a54128fSAndroid Build Coastguard Workermsgid "mke2fs forced anyway.  Hope /etc/mtab is incorrect.\n"
6790*6a54128fSAndroid Build Coastguard Workermsgstr ""
6791*6a54128fSAndroid Build Coastguard Worker
6792*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:147
6793*6a54128fSAndroid Build Coastguard Worker#, c-format
6794*6a54128fSAndroid Build Coastguard Workermsgid "will not make a %s here!\n"
6795*6a54128fSAndroid Build Coastguard Workermsgstr ""
6796*6a54128fSAndroid Build Coastguard Worker
6797*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:154
6798*6a54128fSAndroid Build Coastguard Workermsgid "mke2fs forced anyway.\n"
6799*6a54128fSAndroid Build Coastguard Workermsgstr ""
6800*6a54128fSAndroid Build Coastguard Worker
6801*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:170
6802*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't allocate memory to parse journal options!\n"
6803*6a54128fSAndroid Build Coastguard Workermsgstr ""
6804*6a54128fSAndroid Build Coastguard Worker
6805*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:195
6806*6a54128fSAndroid Build Coastguard Worker#, c-format
6807*6a54128fSAndroid Build Coastguard Workermsgid ""
6808*6a54128fSAndroid Build Coastguard Worker"\n"
6809*6a54128fSAndroid Build Coastguard Worker"Could not find journal device matching %s\n"
6810*6a54128fSAndroid Build Coastguard Workermsgstr ""
6811*6a54128fSAndroid Build Coastguard Worker
6812*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:230
6813*6a54128fSAndroid Build Coastguard Workermsgid ""
6814*6a54128fSAndroid Build Coastguard Worker"\n"
6815*6a54128fSAndroid Build Coastguard Worker"Bad journal options specified.\n"
6816*6a54128fSAndroid Build Coastguard Worker"\n"
6817*6a54128fSAndroid Build Coastguard Worker"Journal options are separated by commas, and may take an argument which\n"
6818*6a54128fSAndroid Build Coastguard Worker"\tis set off by an equals ('=') sign.\n"
6819*6a54128fSAndroid Build Coastguard Worker"\n"
6820*6a54128fSAndroid Build Coastguard Worker"Valid journal options are:\n"
6821*6a54128fSAndroid Build Coastguard Worker"\tsize=<journal size in megabytes>\n"
6822*6a54128fSAndroid Build Coastguard Worker"\tdevice=<journal device>\n"
6823*6a54128fSAndroid Build Coastguard Worker"\tlocation=<journal location>\n"
6824*6a54128fSAndroid Build Coastguard Worker"\n"
6825*6a54128fSAndroid Build Coastguard Worker"The journal size must be between 1024 and 10240000 filesystem blocks.\n"
6826*6a54128fSAndroid Build Coastguard Worker"\n"
6827*6a54128fSAndroid Build Coastguard Workermsgstr ""
6828*6a54128fSAndroid Build Coastguard Worker
6829*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:273
6830*6a54128fSAndroid Build Coastguard Workermsgid ""
6831*6a54128fSAndroid Build Coastguard Worker"\n"
6832*6a54128fSAndroid Build Coastguard Worker"Filesystem too small for a journal\n"
6833*6a54128fSAndroid Build Coastguard Workermsgstr ""
6834*6a54128fSAndroid Build Coastguard Worker
6835*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:290
6836*6a54128fSAndroid Build Coastguard Worker#, c-format
6837*6a54128fSAndroid Build Coastguard Workermsgid ""
6838*6a54128fSAndroid Build Coastguard Worker"\n"
6839*6a54128fSAndroid Build Coastguard Worker"The total requested journal size is %d blocks; it must be\n"
6840*6a54128fSAndroid Build Coastguard Worker"between 1024 and 10240000 blocks.  Aborting.\n"
6841*6a54128fSAndroid Build Coastguard Workermsgstr ""
6842*6a54128fSAndroid Build Coastguard Worker
6843*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:298
6844*6a54128fSAndroid Build Coastguard Workermsgid ""
6845*6a54128fSAndroid Build Coastguard Worker"\n"
6846*6a54128fSAndroid Build Coastguard Worker"Total journal size too big for filesystem.\n"
6847*6a54128fSAndroid Build Coastguard Workermsgstr ""
6848*6a54128fSAndroid Build Coastguard Worker
6849*6a54128fSAndroid Build Coastguard Worker#: misc/util.c:311
6850*6a54128fSAndroid Build Coastguard Worker#, c-format
6851*6a54128fSAndroid Build Coastguard Workermsgid ""
6852*6a54128fSAndroid Build Coastguard Worker"This filesystem will be automatically checked every %d mounts or\n"
6853*6a54128fSAndroid Build Coastguard Worker"%g days, whichever comes first.  Use tune2fs -c or -i to override.\n"
6854*6a54128fSAndroid Build Coastguard Workermsgstr ""
6855*6a54128fSAndroid Build Coastguard Worker
6856*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:49
6857*6a54128fSAndroid Build Coastguard Worker#, c-format
6858*6a54128fSAndroid Build Coastguard Workermsgid "Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]\n"
6859*6a54128fSAndroid Build Coastguard Workermsgstr ""
6860*6a54128fSAndroid Build Coastguard Worker
6861*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:51
6862*6a54128fSAndroid Build Coastguard Worker#, c-format
6863*6a54128fSAndroid Build Coastguard Workermsgid "       %s [-r|t] [-n num] [-s socketpath]\n"
6864*6a54128fSAndroid Build Coastguard Workermsgstr ""
6865*6a54128fSAndroid Build Coastguard Worker
6866*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:53
6867*6a54128fSAndroid Build Coastguard Worker#, c-format
6868*6a54128fSAndroid Build Coastguard Workermsgid "       %s -k\n"
6869*6a54128fSAndroid Build Coastguard Workermsgstr ""
6870*6a54128fSAndroid Build Coastguard Worker
6871*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:155
6872*6a54128fSAndroid Build Coastguard Workermsgid "bad arguments"
6873*6a54128fSAndroid Build Coastguard Workermsgstr ""
6874*6a54128fSAndroid Build Coastguard Worker
6875*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:173
6876*6a54128fSAndroid Build Coastguard Workermsgid "connect"
6877*6a54128fSAndroid Build Coastguard Workermsgstr ""
6878*6a54128fSAndroid Build Coastguard Worker
6879*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:192
6880*6a54128fSAndroid Build Coastguard Workermsgid "write"
6881*6a54128fSAndroid Build Coastguard Workermsgstr ""
6882*6a54128fSAndroid Build Coastguard Worker
6883*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:200
6884*6a54128fSAndroid Build Coastguard Workermsgid "read count"
6885*6a54128fSAndroid Build Coastguard Workermsgstr ""
6886*6a54128fSAndroid Build Coastguard Worker
6887*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:206
6888*6a54128fSAndroid Build Coastguard Workermsgid "bad response length"
6889*6a54128fSAndroid Build Coastguard Workermsgstr ""
6890*6a54128fSAndroid Build Coastguard Worker
6891*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:271
6892*6a54128fSAndroid Build Coastguard Worker#, c-format
6893*6a54128fSAndroid Build Coastguard Workermsgid "uuidd daemon already running at pid %s\n"
6894*6a54128fSAndroid Build Coastguard Workermsgstr ""
6895*6a54128fSAndroid Build Coastguard Worker
6896*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:279
6897*6a54128fSAndroid Build Coastguard Worker#, c-format
6898*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't create unix stream socket: %s"
6899*6a54128fSAndroid Build Coastguard Workermsgstr ""
6900*6a54128fSAndroid Build Coastguard Worker
6901*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:308
6902*6a54128fSAndroid Build Coastguard Worker#, c-format
6903*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't bind unix socket %s: %s\n"
6904*6a54128fSAndroid Build Coastguard Workermsgstr ""
6905*6a54128fSAndroid Build Coastguard Worker
6906*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:316
6907*6a54128fSAndroid Build Coastguard Worker#, c-format
6908*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't listen on unix socket %s: %s\n"
6909*6a54128fSAndroid Build Coastguard Workermsgstr ""
6910*6a54128fSAndroid Build Coastguard Worker
6911*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:354
6912*6a54128fSAndroid Build Coastguard Worker#, c-format
6913*6a54128fSAndroid Build Coastguard Workermsgid "Error reading from client, len = %d\n"
6914*6a54128fSAndroid Build Coastguard Workermsgstr ""
6915*6a54128fSAndroid Build Coastguard Worker
6916*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:362
6917*6a54128fSAndroid Build Coastguard Worker#, c-format
6918*6a54128fSAndroid Build Coastguard Workermsgid "operation %d, incoming num = %d\n"
6919*6a54128fSAndroid Build Coastguard Workermsgstr ""
6920*6a54128fSAndroid Build Coastguard Worker
6921*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:381
6922*6a54128fSAndroid Build Coastguard Worker#, c-format
6923*6a54128fSAndroid Build Coastguard Workermsgid "Generated time UUID: %s\n"
6924*6a54128fSAndroid Build Coastguard Workermsgstr ""
6925*6a54128fSAndroid Build Coastguard Worker
6926*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:391
6927*6a54128fSAndroid Build Coastguard Worker#, c-format
6928*6a54128fSAndroid Build Coastguard Workermsgid "Generated random UUID: %s\n"
6929*6a54128fSAndroid Build Coastguard Workermsgstr ""
6930*6a54128fSAndroid Build Coastguard Worker
6931*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:400
6932*6a54128fSAndroid Build Coastguard Worker#, c-format
6933*6a54128fSAndroid Build Coastguard Workermsgid "Generated time UUID %s and subsequent UUID\n"
6934*6a54128fSAndroid Build Coastguard Workermsgid_plural "Generated time UUID %s and %d subsequent UUIDs\n"
6935*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
6936*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
6937*6a54128fSAndroid Build Coastguard Worker
6938*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:421
6939*6a54128fSAndroid Build Coastguard Worker#, c-format
6940*6a54128fSAndroid Build Coastguard Workermsgid "Generated %d UUID's:\n"
6941*6a54128fSAndroid Build Coastguard Workermsgstr ""
6942*6a54128fSAndroid Build Coastguard Worker
6943*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:433
6944*6a54128fSAndroid Build Coastguard Worker#, c-format
6945*6a54128fSAndroid Build Coastguard Workermsgid "Invalid operation %d\n"
6946*6a54128fSAndroid Build Coastguard Workermsgstr ""
6947*6a54128fSAndroid Build Coastguard Worker
6948*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:477 misc/uuidd.c:499
6949*6a54128fSAndroid Build Coastguard Worker#, c-format
6950*6a54128fSAndroid Build Coastguard Workermsgid "Bad number: %s\n"
6951*6a54128fSAndroid Build Coastguard Workermsgstr ""
6952*6a54128fSAndroid Build Coastguard Worker
6953*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:534 misc/uuidd.c:563
6954*6a54128fSAndroid Build Coastguard Worker#, c-format
6955*6a54128fSAndroid Build Coastguard Workermsgid "Error calling uuidd daemon (%s): %s\n"
6956*6a54128fSAndroid Build Coastguard Workermsgstr ""
6957*6a54128fSAndroid Build Coastguard Worker
6958*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:544
6959*6a54128fSAndroid Build Coastguard Worker#, c-format
6960*6a54128fSAndroid Build Coastguard Workermsgid "%s and subsequent UUID\n"
6961*6a54128fSAndroid Build Coastguard Workermsgid_plural "%s and subsequent %d UUIDs\n"
6962*6a54128fSAndroid Build Coastguard Workermsgstr[0] ""
6963*6a54128fSAndroid Build Coastguard Workermsgstr[1] ""
6964*6a54128fSAndroid Build Coastguard Worker
6965*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:548
6966*6a54128fSAndroid Build Coastguard Workermsgid "List of UUID's:\n"
6967*6a54128fSAndroid Build Coastguard Workermsgstr ""
6968*6a54128fSAndroid Build Coastguard Worker
6969*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:569
6970*6a54128fSAndroid Build Coastguard Worker#, c-format
6971*6a54128fSAndroid Build Coastguard Workermsgid "Unexpected reply length from server %d\n"
6972*6a54128fSAndroid Build Coastguard Workermsgstr ""
6973*6a54128fSAndroid Build Coastguard Worker
6974*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:586
6975*6a54128fSAndroid Build Coastguard Worker#, c-format
6976*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't kill uuidd running at pid %d: %s\n"
6977*6a54128fSAndroid Build Coastguard Workermsgstr ""
6978*6a54128fSAndroid Build Coastguard Worker
6979*6a54128fSAndroid Build Coastguard Worker#: misc/uuidd.c:592
6980*6a54128fSAndroid Build Coastguard Worker#, c-format
6981*6a54128fSAndroid Build Coastguard Workermsgid "Killed uuidd running at pid %d\n"
6982*6a54128fSAndroid Build Coastguard Workermsgstr ""
6983*6a54128fSAndroid Build Coastguard Worker
6984*6a54128fSAndroid Build Coastguard Worker#: misc/uuidgen.c:32
6985*6a54128fSAndroid Build Coastguard Worker#, c-format
6986*6a54128fSAndroid Build Coastguard Workermsgid "Usage: %s [-r] [-t]\n"
6987*6a54128fSAndroid Build Coastguard Workermsgstr ""
6988*6a54128fSAndroid Build Coastguard Worker
6989*6a54128fSAndroid Build Coastguard Worker#: resize/extent.c:200
6990*6a54128fSAndroid Build Coastguard Workermsgid "# Extent dump:\n"
6991*6a54128fSAndroid Build Coastguard Workermsgstr ""
6992*6a54128fSAndroid Build Coastguard Worker
6993*6a54128fSAndroid Build Coastguard Worker#: resize/extent.c:201
6994*6a54128fSAndroid Build Coastguard Worker#, c-format
6995*6a54128fSAndroid Build Coastguard Workermsgid "#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"
6996*6a54128fSAndroid Build Coastguard Workermsgstr ""
6997*6a54128fSAndroid Build Coastguard Worker
6998*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:49
6999*6a54128fSAndroid Build Coastguard Worker#, c-format
7000*6a54128fSAndroid Build Coastguard Workermsgid ""
7001*6a54128fSAndroid Build Coastguard Worker"Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] device [-b|-s|new_size] "
7002*6a54128fSAndroid Build Coastguard Worker"[-S RAID-stride] [-z undo_file]\n"
7003*6a54128fSAndroid Build Coastguard Worker"\n"
7004*6a54128fSAndroid Build Coastguard Workermsgstr ""
7005*6a54128fSAndroid Build Coastguard Worker
7006*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:73
7007*6a54128fSAndroid Build Coastguard Workermsgid "Extending the inode table"
7008*6a54128fSAndroid Build Coastguard Workermsgstr ""
7009*6a54128fSAndroid Build Coastguard Worker
7010*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:76
7011*6a54128fSAndroid Build Coastguard Workermsgid "Relocating blocks"
7012*6a54128fSAndroid Build Coastguard Workermsgstr ""
7013*6a54128fSAndroid Build Coastguard Worker
7014*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:79
7015*6a54128fSAndroid Build Coastguard Workermsgid "Scanning inode table"
7016*6a54128fSAndroid Build Coastguard Workermsgstr ""
7017*6a54128fSAndroid Build Coastguard Worker
7018*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:82
7019*6a54128fSAndroid Build Coastguard Workermsgid "Updating inode references"
7020*6a54128fSAndroid Build Coastguard Workermsgstr ""
7021*6a54128fSAndroid Build Coastguard Worker
7022*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:85
7023*6a54128fSAndroid Build Coastguard Workermsgid "Moving inode table"
7024*6a54128fSAndroid Build Coastguard Workermsgstr ""
7025*6a54128fSAndroid Build Coastguard Worker
7026*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:88
7027*6a54128fSAndroid Build Coastguard Workermsgid "Unknown pass?!?"
7028*6a54128fSAndroid Build Coastguard Workermsgstr ""
7029*6a54128fSAndroid Build Coastguard Worker
7030*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:91
7031*6a54128fSAndroid Build Coastguard Worker#, c-format
7032*6a54128fSAndroid Build Coastguard Workermsgid "Begin pass %d (max = %lu)\n"
7033*6a54128fSAndroid Build Coastguard Workermsgstr ""
7034*6a54128fSAndroid Build Coastguard Worker
7035*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:163
7036*6a54128fSAndroid Build Coastguard Workermsgid ""
7037*6a54128fSAndroid Build Coastguard Worker"\n"
7038*6a54128fSAndroid Build Coastguard Worker"Resizing bigalloc file systems has not been fully tested.  Proceed at\n"
7039*6a54128fSAndroid Build Coastguard Worker"your own risk!  Use the force option if you want to go ahead anyway.\n"
7040*6a54128fSAndroid Build Coastguard Worker"\n"
7041*6a54128fSAndroid Build Coastguard Workermsgstr ""
7042*6a54128fSAndroid Build Coastguard Worker
7043*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:374
7044*6a54128fSAndroid Build Coastguard Worker#, c-format
7045*6a54128fSAndroid Build Coastguard Workermsgid "while opening %s"
7046*6a54128fSAndroid Build Coastguard Workermsgstr ""
7047*6a54128fSAndroid Build Coastguard Worker
7048*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:382
7049*6a54128fSAndroid Build Coastguard Worker#, c-format
7050*6a54128fSAndroid Build Coastguard Workermsgid "while getting stat information for %s"
7051*6a54128fSAndroid Build Coastguard Workermsgstr ""
7052*6a54128fSAndroid Build Coastguard Worker
7053*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:463
7054*6a54128fSAndroid Build Coastguard Worker#, c-format
7055*6a54128fSAndroid Build Coastguard Workermsgid ""
7056*6a54128fSAndroid Build Coastguard Worker"Please run 'e2fsck -f %s' first.\n"
7057*6a54128fSAndroid Build Coastguard Worker"\n"
7058*6a54128fSAndroid Build Coastguard Workermsgstr ""
7059*6a54128fSAndroid Build Coastguard Worker
7060*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:482
7061*6a54128fSAndroid Build Coastguard Worker#, c-format
7062*6a54128fSAndroid Build Coastguard Workermsgid "Estimated minimum size of the filesystem: %llu\n"
7063*6a54128fSAndroid Build Coastguard Workermsgstr ""
7064*6a54128fSAndroid Build Coastguard Worker
7065*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:522
7066*6a54128fSAndroid Build Coastguard Worker#, c-format
7067*6a54128fSAndroid Build Coastguard Workermsgid "Invalid new size: %s\n"
7068*6a54128fSAndroid Build Coastguard Workermsgstr ""
7069*6a54128fSAndroid Build Coastguard Worker
7070*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:541
7071*6a54128fSAndroid Build Coastguard Workermsgid "New size too large to be expressed in 32 bits\n"
7072*6a54128fSAndroid Build Coastguard Workermsgstr ""
7073*6a54128fSAndroid Build Coastguard Worker
7074*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:560
7075*6a54128fSAndroid Build Coastguard Workermsgid "New size results in too many block group descriptors.\n"
7076*6a54128fSAndroid Build Coastguard Workermsgstr ""
7077*6a54128fSAndroid Build Coastguard Worker
7078*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:567
7079*6a54128fSAndroid Build Coastguard Worker#, c-format
7080*6a54128fSAndroid Build Coastguard Workermsgid "New size smaller than minimum (%llu)\n"
7081*6a54128fSAndroid Build Coastguard Workermsgstr ""
7082*6a54128fSAndroid Build Coastguard Worker
7083*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:574
7084*6a54128fSAndroid Build Coastguard Workermsgid "Invalid stride length"
7085*6a54128fSAndroid Build Coastguard Workermsgstr ""
7086*6a54128fSAndroid Build Coastguard Worker
7087*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:598
7088*6a54128fSAndroid Build Coastguard Worker#, c-format
7089*6a54128fSAndroid Build Coastguard Workermsgid ""
7090*6a54128fSAndroid Build Coastguard Worker"The containing partition (or device) is only %llu (%dk) blocks.\n"
7091*6a54128fSAndroid Build Coastguard Worker"You requested a new size of %llu blocks.\n"
7092*6a54128fSAndroid Build Coastguard Worker"\n"
7093*6a54128fSAndroid Build Coastguard Workermsgstr ""
7094*6a54128fSAndroid Build Coastguard Worker
7095*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:605
7096*6a54128fSAndroid Build Coastguard Worker#, c-format
7097*6a54128fSAndroid Build Coastguard Workermsgid "Cannot set and unset 64bit feature.\n"
7098*6a54128fSAndroid Build Coastguard Workermsgstr ""
7099*6a54128fSAndroid Build Coastguard Worker
7100*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:609
7101*6a54128fSAndroid Build Coastguard Worker#, c-format
7102*6a54128fSAndroid Build Coastguard Workermsgid ""
7103*6a54128fSAndroid Build Coastguard Worker"Cannot change the 64bit feature on a filesystem that is larger than 2^32 "
7104*6a54128fSAndroid Build Coastguard Worker"blocks.\n"
7105*6a54128fSAndroid Build Coastguard Workermsgstr ""
7106*6a54128fSAndroid Build Coastguard Worker
7107*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:615
7108*6a54128fSAndroid Build Coastguard Worker#, c-format
7109*6a54128fSAndroid Build Coastguard Workermsgid "Cannot change the 64bit feature while the filesystem is mounted.\n"
7110*6a54128fSAndroid Build Coastguard Workermsgstr ""
7111*6a54128fSAndroid Build Coastguard Worker
7112*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:621
7113*6a54128fSAndroid Build Coastguard Worker#, c-format
7114*6a54128fSAndroid Build Coastguard Workermsgid ""
7115*6a54128fSAndroid Build Coastguard Worker"Please enable the extents feature with tune2fs before enabling the 64bit "
7116*6a54128fSAndroid Build Coastguard Worker"feature.\n"
7117*6a54128fSAndroid Build Coastguard Workermsgstr ""
7118*6a54128fSAndroid Build Coastguard Worker
7119*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:629
7120*6a54128fSAndroid Build Coastguard Worker#, c-format
7121*6a54128fSAndroid Build Coastguard Workermsgid ""
7122*6a54128fSAndroid Build Coastguard Worker"The filesystem is already %llu (%dk) blocks long.  Nothing to do!\n"
7123*6a54128fSAndroid Build Coastguard Worker"\n"
7124*6a54128fSAndroid Build Coastguard Workermsgstr ""
7125*6a54128fSAndroid Build Coastguard Worker
7126*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:639
7127*6a54128fSAndroid Build Coastguard Worker#, c-format
7128*6a54128fSAndroid Build Coastguard Workermsgid "The filesystem is already 64-bit.\n"
7129*6a54128fSAndroid Build Coastguard Workermsgstr ""
7130*6a54128fSAndroid Build Coastguard Worker
7131*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:644
7132*6a54128fSAndroid Build Coastguard Worker#, c-format
7133*6a54128fSAndroid Build Coastguard Workermsgid "The filesystem is already 32-bit.\n"
7134*6a54128fSAndroid Build Coastguard Workermsgstr ""
7135*6a54128fSAndroid Build Coastguard Worker
7136*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:649
7137*6a54128fSAndroid Build Coastguard Worker#, c-format
7138*6a54128fSAndroid Build Coastguard Workermsgid ""
7139*6a54128fSAndroid Build Coastguard Worker"Cannot shrink this filesystem because it has the stable_inodes feature "
7140*6a54128fSAndroid Build Coastguard Worker"flag.\n"
7141*6a54128fSAndroid Build Coastguard Workermsgstr ""
7142*6a54128fSAndroid Build Coastguard Worker
7143*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:658
7144*6a54128fSAndroid Build Coastguard Worker#, c-format
7145*6a54128fSAndroid Build Coastguard Workermsgid "Converting the filesystem to 64-bit.\n"
7146*6a54128fSAndroid Build Coastguard Workermsgstr ""
7147*6a54128fSAndroid Build Coastguard Worker
7148*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:660
7149*6a54128fSAndroid Build Coastguard Worker#, c-format
7150*6a54128fSAndroid Build Coastguard Workermsgid "Converting the filesystem to 32-bit.\n"
7151*6a54128fSAndroid Build Coastguard Workermsgstr ""
7152*6a54128fSAndroid Build Coastguard Worker
7153*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:662
7154*6a54128fSAndroid Build Coastguard Worker#, c-format
7155*6a54128fSAndroid Build Coastguard Workermsgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
7156*6a54128fSAndroid Build Coastguard Workermsgstr ""
7157*6a54128fSAndroid Build Coastguard Worker
7158*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:672
7159*6a54128fSAndroid Build Coastguard Worker#, c-format
7160*6a54128fSAndroid Build Coastguard Workermsgid "while trying to resize %s"
7161*6a54128fSAndroid Build Coastguard Workermsgstr ""
7162*6a54128fSAndroid Build Coastguard Worker
7163*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:675
7164*6a54128fSAndroid Build Coastguard Worker#, c-format
7165*6a54128fSAndroid Build Coastguard Workermsgid ""
7166*6a54128fSAndroid Build Coastguard Worker"Please run 'e2fsck -fy %s' to fix the filesystem\n"
7167*6a54128fSAndroid Build Coastguard Worker"after the aborted resize operation.\n"
7168*6a54128fSAndroid Build Coastguard Workermsgstr ""
7169*6a54128fSAndroid Build Coastguard Worker
7170*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:680
7171*6a54128fSAndroid Build Coastguard Worker#, c-format
7172*6a54128fSAndroid Build Coastguard Workermsgid ""
7173*6a54128fSAndroid Build Coastguard Worker"The filesystem on %s is now %llu (%dk) blocks long.\n"
7174*6a54128fSAndroid Build Coastguard Worker"\n"
7175*6a54128fSAndroid Build Coastguard Workermsgstr ""
7176*6a54128fSAndroid Build Coastguard Worker
7177*6a54128fSAndroid Build Coastguard Worker#: resize/main.c:695
7178*6a54128fSAndroid Build Coastguard Worker#, c-format
7179*6a54128fSAndroid Build Coastguard Workermsgid "while trying to truncate %s"
7180*6a54128fSAndroid Build Coastguard Workermsgstr ""
7181*6a54128fSAndroid Build Coastguard Worker
7182*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:81
7183*6a54128fSAndroid Build Coastguard Workermsgid "kernel does not support online resize with sparse_super2"
7184*6a54128fSAndroid Build Coastguard Workermsgstr ""
7185*6a54128fSAndroid Build Coastguard Worker
7186*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:86
7187*6a54128fSAndroid Build Coastguard Worker#, c-format
7188*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem at %s is mounted on %s; on-line resizing required\n"
7189*6a54128fSAndroid Build Coastguard Workermsgstr ""
7190*6a54128fSAndroid Build Coastguard Worker
7191*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:90
7192*6a54128fSAndroid Build Coastguard Workermsgid "On-line shrinking not supported"
7193*6a54128fSAndroid Build Coastguard Workermsgstr ""
7194*6a54128fSAndroid Build Coastguard Worker
7195*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:114
7196*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem does not support online resizing"
7197*6a54128fSAndroid Build Coastguard Workermsgstr ""
7198*6a54128fSAndroid Build Coastguard Worker
7199*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:122
7200*6a54128fSAndroid Build Coastguard Workermsgid "Not enough reserved gdt blocks for resizing"
7201*6a54128fSAndroid Build Coastguard Workermsgstr ""
7202*6a54128fSAndroid Build Coastguard Worker
7203*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:129
7204*6a54128fSAndroid Build Coastguard Workermsgid "Kernel does not support resizing a file system this large"
7205*6a54128fSAndroid Build Coastguard Workermsgstr ""
7206*6a54128fSAndroid Build Coastguard Worker
7207*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:137
7208*6a54128fSAndroid Build Coastguard Worker#, c-format
7209*6a54128fSAndroid Build Coastguard Workermsgid "while trying to open mountpoint %s"
7210*6a54128fSAndroid Build Coastguard Workermsgstr ""
7211*6a54128fSAndroid Build Coastguard Worker
7212*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:142
7213*6a54128fSAndroid Build Coastguard Worker#, c-format
7214*6a54128fSAndroid Build Coastguard Workermsgid "Old resize interface requested.\n"
7215*6a54128fSAndroid Build Coastguard Workermsgstr ""
7216*6a54128fSAndroid Build Coastguard Worker
7217*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:161 resize/online.c:178
7218*6a54128fSAndroid Build Coastguard Workermsgid "Permission denied to resize filesystem"
7219*6a54128fSAndroid Build Coastguard Workermsgstr ""
7220*6a54128fSAndroid Build Coastguard Worker
7221*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:164 resize/online.c:184
7222*6a54128fSAndroid Build Coastguard Workermsgid "While checking for on-line resizing support"
7223*6a54128fSAndroid Build Coastguard Workermsgstr ""
7224*6a54128fSAndroid Build Coastguard Worker
7225*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:181
7226*6a54128fSAndroid Build Coastguard Workermsgid "Kernel does not support online resizing"
7227*6a54128fSAndroid Build Coastguard Workermsgstr ""
7228*6a54128fSAndroid Build Coastguard Worker
7229*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:220
7230*6a54128fSAndroid Build Coastguard Worker#, c-format
7231*6a54128fSAndroid Build Coastguard Workermsgid "Performing an on-line resize of %s to %llu (%dk) blocks.\n"
7232*6a54128fSAndroid Build Coastguard Workermsgstr ""
7233*6a54128fSAndroid Build Coastguard Worker
7234*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:231
7235*6a54128fSAndroid Build Coastguard Workermsgid "While trying to extend the last group"
7236*6a54128fSAndroid Build Coastguard Workermsgstr ""
7237*6a54128fSAndroid Build Coastguard Worker
7238*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:278
7239*6a54128fSAndroid Build Coastguard Worker#, c-format
7240*6a54128fSAndroid Build Coastguard Workermsgid "While trying to add group #%d"
7241*6a54128fSAndroid Build Coastguard Workermsgstr ""
7242*6a54128fSAndroid Build Coastguard Worker
7243*6a54128fSAndroid Build Coastguard Worker#: resize/online.c:289
7244*6a54128fSAndroid Build Coastguard Worker#, c-format
7245*6a54128fSAndroid Build Coastguard Workermsgid ""
7246*6a54128fSAndroid Build Coastguard Worker"Filesystem at %s is mounted on %s, and on-line resizing is not supported on "
7247*6a54128fSAndroid Build Coastguard Worker"this system.\n"
7248*6a54128fSAndroid Build Coastguard Workermsgstr ""
7249*6a54128fSAndroid Build Coastguard Worker
7250*6a54128fSAndroid Build Coastguard Worker#: resize/resize2fs.c:769
7251*6a54128fSAndroid Build Coastguard Worker#, c-format
7252*6a54128fSAndroid Build Coastguard Workermsgid "inodes (%llu) must be less than %u\n"
7253*6a54128fSAndroid Build Coastguard Workermsgstr ""
7254*6a54128fSAndroid Build Coastguard Worker
7255*6a54128fSAndroid Build Coastguard Worker#: resize/resize2fs.c:1126
7256*6a54128fSAndroid Build Coastguard Workermsgid "reserved blocks"
7257*6a54128fSAndroid Build Coastguard Workermsgstr ""
7258*6a54128fSAndroid Build Coastguard Worker
7259*6a54128fSAndroid Build Coastguard Worker#: resize/resize2fs.c:1373
7260*6a54128fSAndroid Build Coastguard Workermsgid "meta-data blocks"
7261*6a54128fSAndroid Build Coastguard Workermsgstr ""
7262*6a54128fSAndroid Build Coastguard Worker
7263*6a54128fSAndroid Build Coastguard Worker#: resize/resize2fs.c:1477 resize/resize2fs.c:2521
7264*6a54128fSAndroid Build Coastguard Workermsgid "new meta blocks"
7265*6a54128fSAndroid Build Coastguard Workermsgstr ""
7266*6a54128fSAndroid Build Coastguard Worker
7267*6a54128fSAndroid Build Coastguard Worker#: resize/resize2fs.c:2745
7268*6a54128fSAndroid Build Coastguard Workermsgid "Should never happen!  No sb in last super_sparse bg?\n"
7269*6a54128fSAndroid Build Coastguard Workermsgstr ""
7270*6a54128fSAndroid Build Coastguard Worker
7271*6a54128fSAndroid Build Coastguard Worker#: resize/resize2fs.c:2750
7272*6a54128fSAndroid Build Coastguard Workermsgid "Should never happen!  Unexpected old_desc in super_sparse bg?\n"
7273*6a54128fSAndroid Build Coastguard Workermsgstr ""
7274*6a54128fSAndroid Build Coastguard Worker
7275*6a54128fSAndroid Build Coastguard Worker#: resize/resize2fs.c:2823
7276*6a54128fSAndroid Build Coastguard Workermsgid "Should never happen: resize inode corrupt!\n"
7277*6a54128fSAndroid Build Coastguard Workermsgstr ""
7278*6a54128fSAndroid Build Coastguard Worker
7279*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:11
7280*6a54128fSAndroid Build Coastguard Workermsgid "EXT2FS Library version 1.46.6"
7281*6a54128fSAndroid Build Coastguard Workermsgstr ""
7282*6a54128fSAndroid Build Coastguard Worker
7283*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:12
7284*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for ext2_filsys structure"
7285*6a54128fSAndroid Build Coastguard Workermsgstr ""
7286*6a54128fSAndroid Build Coastguard Worker
7287*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:13
7288*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for badblocks_list structure"
7289*6a54128fSAndroid Build Coastguard Workermsgstr ""
7290*6a54128fSAndroid Build Coastguard Worker
7291*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:14
7292*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for badblocks_iterate structure"
7293*6a54128fSAndroid Build Coastguard Workermsgstr ""
7294*6a54128fSAndroid Build Coastguard Worker
7295*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:15
7296*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for inode_scan structure"
7297*6a54128fSAndroid Build Coastguard Workermsgstr ""
7298*6a54128fSAndroid Build Coastguard Worker
7299*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:16
7300*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for io_channel structure"
7301*6a54128fSAndroid Build Coastguard Workermsgstr ""
7302*6a54128fSAndroid Build Coastguard Worker
7303*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:17
7304*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for unix io_channel structure"
7305*6a54128fSAndroid Build Coastguard Workermsgstr ""
7306*6a54128fSAndroid Build Coastguard Worker
7307*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:18
7308*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for io_manager structure"
7309*6a54128fSAndroid Build Coastguard Workermsgstr ""
7310*6a54128fSAndroid Build Coastguard Worker
7311*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:19
7312*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for block_bitmap structure"
7313*6a54128fSAndroid Build Coastguard Workermsgstr ""
7314*6a54128fSAndroid Build Coastguard Worker
7315*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:20
7316*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for inode_bitmap structure"
7317*6a54128fSAndroid Build Coastguard Workermsgstr ""
7318*6a54128fSAndroid Build Coastguard Worker
7319*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:21
7320*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for generic_bitmap structure"
7321*6a54128fSAndroid Build Coastguard Workermsgstr ""
7322*6a54128fSAndroid Build Coastguard Worker
7323*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:22
7324*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for test io_channel structure"
7325*6a54128fSAndroid Build Coastguard Workermsgstr ""
7326*6a54128fSAndroid Build Coastguard Worker
7327*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:23
7328*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for directory block list structure"
7329*6a54128fSAndroid Build Coastguard Workermsgstr ""
7330*6a54128fSAndroid Build Coastguard Worker
7331*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:24
7332*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for icount structure"
7333*6a54128fSAndroid Build Coastguard Workermsgstr ""
7334*6a54128fSAndroid Build Coastguard Worker
7335*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:25
7336*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for Powerquest io_channel structure"
7337*6a54128fSAndroid Build Coastguard Workermsgstr ""
7338*6a54128fSAndroid Build Coastguard Worker
7339*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:26
7340*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for ext2 file structure"
7341*6a54128fSAndroid Build Coastguard Workermsgstr ""
7342*6a54128fSAndroid Build Coastguard Worker
7343*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:27
7344*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for Ext2 Image Header"
7345*6a54128fSAndroid Build Coastguard Workermsgstr ""
7346*6a54128fSAndroid Build Coastguard Worker
7347*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:28
7348*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for inode io_channel structure"
7349*6a54128fSAndroid Build Coastguard Workermsgstr ""
7350*6a54128fSAndroid Build Coastguard Worker
7351*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:29
7352*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for ext4 extent handle"
7353*6a54128fSAndroid Build Coastguard Workermsgstr ""
7354*6a54128fSAndroid Build Coastguard Worker
7355*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:30
7356*6a54128fSAndroid Build Coastguard Workermsgid "Bad magic number in super-block"
7357*6a54128fSAndroid Build Coastguard Workermsgstr ""
7358*6a54128fSAndroid Build Coastguard Worker
7359*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:31
7360*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem revision too high"
7361*6a54128fSAndroid Build Coastguard Workermsgstr ""
7362*6a54128fSAndroid Build Coastguard Worker
7363*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:32
7364*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to write to filesystem opened read-only"
7365*6a54128fSAndroid Build Coastguard Workermsgstr ""
7366*6a54128fSAndroid Build Coastguard Worker
7367*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:33
7368*6a54128fSAndroid Build Coastguard Workermsgid "Can't read group descriptors"
7369*6a54128fSAndroid Build Coastguard Workermsgstr ""
7370*6a54128fSAndroid Build Coastguard Worker
7371*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:34
7372*6a54128fSAndroid Build Coastguard Workermsgid "Can't write group descriptors"
7373*6a54128fSAndroid Build Coastguard Workermsgstr ""
7374*6a54128fSAndroid Build Coastguard Worker
7375*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:35
7376*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt group descriptor: bad block for block bitmap"
7377*6a54128fSAndroid Build Coastguard Workermsgstr ""
7378*6a54128fSAndroid Build Coastguard Worker
7379*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:36
7380*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt group descriptor: bad block for inode bitmap"
7381*6a54128fSAndroid Build Coastguard Workermsgstr ""
7382*6a54128fSAndroid Build Coastguard Worker
7383*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:37
7384*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt group descriptor: bad block for inode table"
7385*6a54128fSAndroid Build Coastguard Workermsgstr ""
7386*6a54128fSAndroid Build Coastguard Worker
7387*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:38
7388*6a54128fSAndroid Build Coastguard Workermsgid "Can't write an inode bitmap"
7389*6a54128fSAndroid Build Coastguard Workermsgstr ""
7390*6a54128fSAndroid Build Coastguard Worker
7391*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:39
7392*6a54128fSAndroid Build Coastguard Workermsgid "Can't read an inode bitmap"
7393*6a54128fSAndroid Build Coastguard Workermsgstr ""
7394*6a54128fSAndroid Build Coastguard Worker
7395*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:40
7396*6a54128fSAndroid Build Coastguard Workermsgid "Can't write a block bitmap"
7397*6a54128fSAndroid Build Coastguard Workermsgstr ""
7398*6a54128fSAndroid Build Coastguard Worker
7399*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:41
7400*6a54128fSAndroid Build Coastguard Workermsgid "Can't read a block bitmap"
7401*6a54128fSAndroid Build Coastguard Workermsgstr ""
7402*6a54128fSAndroid Build Coastguard Worker
7403*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:42
7404*6a54128fSAndroid Build Coastguard Workermsgid "Can't write an inode table"
7405*6a54128fSAndroid Build Coastguard Workermsgstr ""
7406*6a54128fSAndroid Build Coastguard Worker
7407*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:43
7408*6a54128fSAndroid Build Coastguard Workermsgid "Can't read an inode table"
7409*6a54128fSAndroid Build Coastguard Workermsgstr ""
7410*6a54128fSAndroid Build Coastguard Worker
7411*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:44
7412*6a54128fSAndroid Build Coastguard Workermsgid "Can't read next inode"
7413*6a54128fSAndroid Build Coastguard Workermsgstr ""
7414*6a54128fSAndroid Build Coastguard Worker
7415*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:45
7416*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem has unexpected block size"
7417*6a54128fSAndroid Build Coastguard Workermsgstr ""
7418*6a54128fSAndroid Build Coastguard Worker
7419*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:46
7420*6a54128fSAndroid Build Coastguard Workermsgid "EXT2 directory corrupted"
7421*6a54128fSAndroid Build Coastguard Workermsgstr ""
7422*6a54128fSAndroid Build Coastguard Worker
7423*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:47
7424*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to read block from filesystem resulted in short read"
7425*6a54128fSAndroid Build Coastguard Workermsgstr ""
7426*6a54128fSAndroid Build Coastguard Worker
7427*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:48
7428*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to write block to filesystem resulted in short write"
7429*6a54128fSAndroid Build Coastguard Workermsgstr ""
7430*6a54128fSAndroid Build Coastguard Worker
7431*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:49
7432*6a54128fSAndroid Build Coastguard Workermsgid "No free space in the directory"
7433*6a54128fSAndroid Build Coastguard Workermsgstr ""
7434*6a54128fSAndroid Build Coastguard Worker
7435*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:50
7436*6a54128fSAndroid Build Coastguard Workermsgid "Inode bitmap not loaded"
7437*6a54128fSAndroid Build Coastguard Workermsgstr ""
7438*6a54128fSAndroid Build Coastguard Worker
7439*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:51
7440*6a54128fSAndroid Build Coastguard Workermsgid "Block bitmap not loaded"
7441*6a54128fSAndroid Build Coastguard Workermsgstr ""
7442*6a54128fSAndroid Build Coastguard Worker
7443*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:52
7444*6a54128fSAndroid Build Coastguard Workermsgid "Illegal inode number"
7445*6a54128fSAndroid Build Coastguard Workermsgstr ""
7446*6a54128fSAndroid Build Coastguard Worker
7447*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:53
7448*6a54128fSAndroid Build Coastguard Workermsgid "Illegal block number"
7449*6a54128fSAndroid Build Coastguard Workermsgstr ""
7450*6a54128fSAndroid Build Coastguard Worker
7451*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:54
7452*6a54128fSAndroid Build Coastguard Workermsgid "Internal error in ext2fs_expand_dir"
7453*6a54128fSAndroid Build Coastguard Workermsgstr ""
7454*6a54128fSAndroid Build Coastguard Worker
7455*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:55
7456*6a54128fSAndroid Build Coastguard Workermsgid "Not enough space to build proposed filesystem"
7457*6a54128fSAndroid Build Coastguard Workermsgstr ""
7458*6a54128fSAndroid Build Coastguard Worker
7459*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:56
7460*6a54128fSAndroid Build Coastguard Workermsgid "Illegal block number passed to ext2fs_mark_block_bitmap"
7461*6a54128fSAndroid Build Coastguard Workermsgstr ""
7462*6a54128fSAndroid Build Coastguard Worker
7463*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:57
7464*6a54128fSAndroid Build Coastguard Workermsgid "Illegal block number passed to ext2fs_unmark_block_bitmap"
7465*6a54128fSAndroid Build Coastguard Workermsgstr ""
7466*6a54128fSAndroid Build Coastguard Worker
7467*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:58
7468*6a54128fSAndroid Build Coastguard Workermsgid "Illegal block number passed to ext2fs_test_block_bitmap"
7469*6a54128fSAndroid Build Coastguard Workermsgstr ""
7470*6a54128fSAndroid Build Coastguard Worker
7471*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:59
7472*6a54128fSAndroid Build Coastguard Workermsgid "Illegal inode number passed to ext2fs_mark_inode_bitmap"
7473*6a54128fSAndroid Build Coastguard Workermsgstr ""
7474*6a54128fSAndroid Build Coastguard Worker
7475*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:60
7476*6a54128fSAndroid Build Coastguard Workermsgid "Illegal inode number passed to ext2fs_unmark_inode_bitmap"
7477*6a54128fSAndroid Build Coastguard Workermsgstr ""
7478*6a54128fSAndroid Build Coastguard Worker
7479*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:61
7480*6a54128fSAndroid Build Coastguard Workermsgid "Illegal inode number passed to ext2fs_test_inode_bitmap"
7481*6a54128fSAndroid Build Coastguard Workermsgstr ""
7482*6a54128fSAndroid Build Coastguard Worker
7483*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:62
7484*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to fudge end of block bitmap past the real end"
7485*6a54128fSAndroid Build Coastguard Workermsgstr ""
7486*6a54128fSAndroid Build Coastguard Worker
7487*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:63
7488*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to fudge end of inode bitmap past the real end"
7489*6a54128fSAndroid Build Coastguard Workermsgstr ""
7490*6a54128fSAndroid Build Coastguard Worker
7491*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:64
7492*6a54128fSAndroid Build Coastguard Workermsgid "Illegal indirect block found"
7493*6a54128fSAndroid Build Coastguard Workermsgstr ""
7494*6a54128fSAndroid Build Coastguard Worker
7495*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:65
7496*6a54128fSAndroid Build Coastguard Workermsgid "Illegal doubly indirect block found"
7497*6a54128fSAndroid Build Coastguard Workermsgstr ""
7498*6a54128fSAndroid Build Coastguard Worker
7499*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:66
7500*6a54128fSAndroid Build Coastguard Workermsgid "Illegal triply indirect block found"
7501*6a54128fSAndroid Build Coastguard Workermsgstr ""
7502*6a54128fSAndroid Build Coastguard Worker
7503*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:67
7504*6a54128fSAndroid Build Coastguard Workermsgid "Block bitmaps are not the same"
7505*6a54128fSAndroid Build Coastguard Workermsgstr ""
7506*6a54128fSAndroid Build Coastguard Worker
7507*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:68
7508*6a54128fSAndroid Build Coastguard Workermsgid "Inode bitmaps are not the same"
7509*6a54128fSAndroid Build Coastguard Workermsgstr ""
7510*6a54128fSAndroid Build Coastguard Worker
7511*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:69
7512*6a54128fSAndroid Build Coastguard Workermsgid "Illegal or malformed device name"
7513*6a54128fSAndroid Build Coastguard Workermsgstr ""
7514*6a54128fSAndroid Build Coastguard Worker
7515*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:70
7516*6a54128fSAndroid Build Coastguard Workermsgid "A block group is missing an inode table"
7517*6a54128fSAndroid Build Coastguard Workermsgstr ""
7518*6a54128fSAndroid Build Coastguard Worker
7519*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:71
7520*6a54128fSAndroid Build Coastguard Workermsgid "The ext2 superblock is corrupt"
7521*6a54128fSAndroid Build Coastguard Workermsgstr ""
7522*6a54128fSAndroid Build Coastguard Worker
7523*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:72
7524*6a54128fSAndroid Build Coastguard Workermsgid "Illegal generic bit number passed to ext2fs_mark_generic_bitmap"
7525*6a54128fSAndroid Build Coastguard Workermsgstr ""
7526*6a54128fSAndroid Build Coastguard Worker
7527*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:73
7528*6a54128fSAndroid Build Coastguard Workermsgid "Illegal generic bit number passed to ext2fs_unmark_generic_bitmap"
7529*6a54128fSAndroid Build Coastguard Workermsgstr ""
7530*6a54128fSAndroid Build Coastguard Worker
7531*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:74
7532*6a54128fSAndroid Build Coastguard Workermsgid "Illegal generic bit number passed to ext2fs_test_generic_bitmap"
7533*6a54128fSAndroid Build Coastguard Workermsgstr ""
7534*6a54128fSAndroid Build Coastguard Worker
7535*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:75
7536*6a54128fSAndroid Build Coastguard Workermsgid "Too many symbolic links encountered."
7537*6a54128fSAndroid Build Coastguard Workermsgstr ""
7538*6a54128fSAndroid Build Coastguard Worker
7539*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:76
7540*6a54128fSAndroid Build Coastguard Workermsgid "The callback function will not handle this case"
7541*6a54128fSAndroid Build Coastguard Workermsgstr ""
7542*6a54128fSAndroid Build Coastguard Worker
7543*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:77
7544*6a54128fSAndroid Build Coastguard Workermsgid "The inode is from a bad block in the inode table"
7545*6a54128fSAndroid Build Coastguard Workermsgstr ""
7546*6a54128fSAndroid Build Coastguard Worker
7547*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:78
7548*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem has unsupported feature(s)"
7549*6a54128fSAndroid Build Coastguard Workermsgstr ""
7550*6a54128fSAndroid Build Coastguard Worker
7551*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:79
7552*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem has unsupported read-only feature(s)"
7553*6a54128fSAndroid Build Coastguard Workermsgstr ""
7554*6a54128fSAndroid Build Coastguard Worker
7555*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:80
7556*6a54128fSAndroid Build Coastguard Workermsgid "IO Channel failed to seek on read or write"
7557*6a54128fSAndroid Build Coastguard Workermsgstr ""
7558*6a54128fSAndroid Build Coastguard Worker
7559*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:81
7560*6a54128fSAndroid Build Coastguard Workermsgid "Memory allocation failed"
7561*6a54128fSAndroid Build Coastguard Workermsgstr ""
7562*6a54128fSAndroid Build Coastguard Worker
7563*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:82
7564*6a54128fSAndroid Build Coastguard Workermsgid "Invalid argument passed to ext2 library"
7565*6a54128fSAndroid Build Coastguard Workermsgstr ""
7566*6a54128fSAndroid Build Coastguard Worker
7567*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:83
7568*6a54128fSAndroid Build Coastguard Workermsgid "Could not allocate block in ext2 filesystem"
7569*6a54128fSAndroid Build Coastguard Workermsgstr ""
7570*6a54128fSAndroid Build Coastguard Worker
7571*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:84
7572*6a54128fSAndroid Build Coastguard Workermsgid "Could not allocate inode in ext2 filesystem"
7573*6a54128fSAndroid Build Coastguard Workermsgstr ""
7574*6a54128fSAndroid Build Coastguard Worker
7575*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:85
7576*6a54128fSAndroid Build Coastguard Workermsgid "Ext2 inode is not a directory"
7577*6a54128fSAndroid Build Coastguard Workermsgstr ""
7578*6a54128fSAndroid Build Coastguard Worker
7579*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:86
7580*6a54128fSAndroid Build Coastguard Workermsgid "Too many references in table"
7581*6a54128fSAndroid Build Coastguard Workermsgstr ""
7582*6a54128fSAndroid Build Coastguard Worker
7583*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:87
7584*6a54128fSAndroid Build Coastguard Workermsgid "File not found by ext2_lookup"
7585*6a54128fSAndroid Build Coastguard Workermsgstr ""
7586*6a54128fSAndroid Build Coastguard Worker
7587*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:88
7588*6a54128fSAndroid Build Coastguard Workermsgid "File open read-only"
7589*6a54128fSAndroid Build Coastguard Workermsgstr ""
7590*6a54128fSAndroid Build Coastguard Worker
7591*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:89
7592*6a54128fSAndroid Build Coastguard Workermsgid "Ext2 directory block not found"
7593*6a54128fSAndroid Build Coastguard Workermsgstr ""
7594*6a54128fSAndroid Build Coastguard Worker
7595*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:90
7596*6a54128fSAndroid Build Coastguard Workermsgid "Ext2 directory already exists"
7597*6a54128fSAndroid Build Coastguard Workermsgstr ""
7598*6a54128fSAndroid Build Coastguard Worker
7599*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:91
7600*6a54128fSAndroid Build Coastguard Workermsgid "Unimplemented ext2 library function"
7601*6a54128fSAndroid Build Coastguard Workermsgstr ""
7602*6a54128fSAndroid Build Coastguard Worker
7603*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:92
7604*6a54128fSAndroid Build Coastguard Workermsgid "User cancel requested"
7605*6a54128fSAndroid Build Coastguard Workermsgstr ""
7606*6a54128fSAndroid Build Coastguard Worker
7607*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:93
7608*6a54128fSAndroid Build Coastguard Workermsgid "Ext2 file too big"
7609*6a54128fSAndroid Build Coastguard Workermsgstr ""
7610*6a54128fSAndroid Build Coastguard Worker
7611*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:94
7612*6a54128fSAndroid Build Coastguard Workermsgid "Supplied journal device not a block device"
7613*6a54128fSAndroid Build Coastguard Workermsgstr ""
7614*6a54128fSAndroid Build Coastguard Worker
7615*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:95
7616*6a54128fSAndroid Build Coastguard Workermsgid "Journal superblock not found"
7617*6a54128fSAndroid Build Coastguard Workermsgstr ""
7618*6a54128fSAndroid Build Coastguard Worker
7619*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:96
7620*6a54128fSAndroid Build Coastguard Workermsgid "Journal must be at least 1024 blocks"
7621*6a54128fSAndroid Build Coastguard Workermsgstr ""
7622*6a54128fSAndroid Build Coastguard Worker
7623*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:97
7624*6a54128fSAndroid Build Coastguard Workermsgid "Unsupported journal version"
7625*6a54128fSAndroid Build Coastguard Workermsgstr ""
7626*6a54128fSAndroid Build Coastguard Worker
7627*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:98
7628*6a54128fSAndroid Build Coastguard Workermsgid "Error loading external journal"
7629*6a54128fSAndroid Build Coastguard Workermsgstr ""
7630*6a54128fSAndroid Build Coastguard Worker
7631*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:99
7632*6a54128fSAndroid Build Coastguard Workermsgid "Journal not found"
7633*6a54128fSAndroid Build Coastguard Workermsgstr ""
7634*6a54128fSAndroid Build Coastguard Worker
7635*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:100
7636*6a54128fSAndroid Build Coastguard Workermsgid "Directory hash unsupported"
7637*6a54128fSAndroid Build Coastguard Workermsgstr ""
7638*6a54128fSAndroid Build Coastguard Worker
7639*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:101
7640*6a54128fSAndroid Build Coastguard Workermsgid "Illegal extended attribute block number"
7641*6a54128fSAndroid Build Coastguard Workermsgstr ""
7642*6a54128fSAndroid Build Coastguard Worker
7643*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:102
7644*6a54128fSAndroid Build Coastguard Workermsgid "Cannot create filesystem with requested number of inodes"
7645*6a54128fSAndroid Build Coastguard Workermsgstr ""
7646*6a54128fSAndroid Build Coastguard Worker
7647*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:103
7648*6a54128fSAndroid Build Coastguard Workermsgid "E2image snapshot not in use"
7649*6a54128fSAndroid Build Coastguard Workermsgstr ""
7650*6a54128fSAndroid Build Coastguard Worker
7651*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:104
7652*6a54128fSAndroid Build Coastguard Workermsgid "Too many reserved group descriptor blocks"
7653*6a54128fSAndroid Build Coastguard Workermsgstr ""
7654*6a54128fSAndroid Build Coastguard Worker
7655*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:105
7656*6a54128fSAndroid Build Coastguard Workermsgid "Resize inode is corrupt"
7657*6a54128fSAndroid Build Coastguard Workermsgstr ""
7658*6a54128fSAndroid Build Coastguard Worker
7659*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:106
7660*6a54128fSAndroid Build Coastguard Workermsgid "Tried to set block bmap with missing indirect block"
7661*6a54128fSAndroid Build Coastguard Workermsgstr ""
7662*6a54128fSAndroid Build Coastguard Worker
7663*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:107
7664*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Success"
7665*6a54128fSAndroid Build Coastguard Workermsgstr ""
7666*6a54128fSAndroid Build Coastguard Worker
7667*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:108
7668*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Corrupt database"
7669*6a54128fSAndroid Build Coastguard Workermsgstr ""
7670*6a54128fSAndroid Build Coastguard Worker
7671*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:109
7672*6a54128fSAndroid Build Coastguard Workermsgid "TDB: IO Error"
7673*6a54128fSAndroid Build Coastguard Workermsgstr ""
7674*6a54128fSAndroid Build Coastguard Worker
7675*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:110
7676*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Locking error"
7677*6a54128fSAndroid Build Coastguard Workermsgstr ""
7678*6a54128fSAndroid Build Coastguard Worker
7679*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:111
7680*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Out of memory"
7681*6a54128fSAndroid Build Coastguard Workermsgstr ""
7682*6a54128fSAndroid Build Coastguard Worker
7683*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:112
7684*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Record exists"
7685*6a54128fSAndroid Build Coastguard Workermsgstr ""
7686*6a54128fSAndroid Build Coastguard Worker
7687*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:113
7688*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Lock exists on other keys"
7689*6a54128fSAndroid Build Coastguard Workermsgstr ""
7690*6a54128fSAndroid Build Coastguard Worker
7691*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:114
7692*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Invalid parameter"
7693*6a54128fSAndroid Build Coastguard Workermsgstr ""
7694*6a54128fSAndroid Build Coastguard Worker
7695*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:115
7696*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Record does not exist"
7697*6a54128fSAndroid Build Coastguard Workermsgstr ""
7698*6a54128fSAndroid Build Coastguard Worker
7699*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:116
7700*6a54128fSAndroid Build Coastguard Workermsgid "TDB: Write not permitted"
7701*6a54128fSAndroid Build Coastguard Workermsgstr ""
7702*6a54128fSAndroid Build Coastguard Worker
7703*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:117
7704*6a54128fSAndroid Build Coastguard Workermsgid "Ext2fs directory block list is empty"
7705*6a54128fSAndroid Build Coastguard Workermsgstr ""
7706*6a54128fSAndroid Build Coastguard Worker
7707*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:118
7708*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to modify a block mapping via a read-only block iterator"
7709*6a54128fSAndroid Build Coastguard Workermsgstr ""
7710*6a54128fSAndroid Build Coastguard Worker
7711*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:119
7712*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for ext4 extent saved path"
7713*6a54128fSAndroid Build Coastguard Workermsgstr ""
7714*6a54128fSAndroid Build Coastguard Worker
7715*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:120
7716*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for 64-bit generic bitmap"
7717*6a54128fSAndroid Build Coastguard Workermsgstr ""
7718*6a54128fSAndroid Build Coastguard Worker
7719*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:121
7720*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for 64-bit block bitmap"
7721*6a54128fSAndroid Build Coastguard Workermsgstr ""
7722*6a54128fSAndroid Build Coastguard Worker
7723*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:122
7724*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for 64-bit inode bitmap"
7725*6a54128fSAndroid Build Coastguard Workermsgstr ""
7726*6a54128fSAndroid Build Coastguard Worker
7727*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:123
7728*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number --- RESERVED_13"
7729*6a54128fSAndroid Build Coastguard Workermsgstr ""
7730*6a54128fSAndroid Build Coastguard Worker
7731*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:124
7732*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number --- RESERVED_14"
7733*6a54128fSAndroid Build Coastguard Workermsgstr ""
7734*6a54128fSAndroid Build Coastguard Worker
7735*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:125
7736*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number --- RESERVED_15"
7737*6a54128fSAndroid Build Coastguard Workermsgstr ""
7738*6a54128fSAndroid Build Coastguard Worker
7739*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:126
7740*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number --- RESERVED_16"
7741*6a54128fSAndroid Build Coastguard Workermsgstr ""
7742*6a54128fSAndroid Build Coastguard Worker
7743*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:127
7744*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number --- RESERVED_17"
7745*6a54128fSAndroid Build Coastguard Workermsgstr ""
7746*6a54128fSAndroid Build Coastguard Worker
7747*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:128
7748*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number --- RESERVED_18"
7749*6a54128fSAndroid Build Coastguard Workermsgstr ""
7750*6a54128fSAndroid Build Coastguard Worker
7751*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:129
7752*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number --- RESERVED_19"
7753*6a54128fSAndroid Build Coastguard Workermsgstr ""
7754*6a54128fSAndroid Build Coastguard Worker
7755*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:130
7756*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt extent header"
7757*6a54128fSAndroid Build Coastguard Workermsgstr ""
7758*6a54128fSAndroid Build Coastguard Worker
7759*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:131
7760*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt extent index"
7761*6a54128fSAndroid Build Coastguard Workermsgstr ""
7762*6a54128fSAndroid Build Coastguard Worker
7763*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:132
7764*6a54128fSAndroid Build Coastguard Workermsgid "Corrupt extent"
7765*6a54128fSAndroid Build Coastguard Workermsgstr ""
7766*6a54128fSAndroid Build Coastguard Worker
7767*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:133
7768*6a54128fSAndroid Build Coastguard Workermsgid "No free space in extent map"
7769*6a54128fSAndroid Build Coastguard Workermsgstr ""
7770*6a54128fSAndroid Build Coastguard Worker
7771*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:134
7772*6a54128fSAndroid Build Coastguard Workermsgid "Inode does not use extents"
7773*6a54128fSAndroid Build Coastguard Workermsgstr ""
7774*6a54128fSAndroid Build Coastguard Worker
7775*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:135
7776*6a54128fSAndroid Build Coastguard Workermsgid "No 'next' extent"
7777*6a54128fSAndroid Build Coastguard Workermsgstr ""
7778*6a54128fSAndroid Build Coastguard Worker
7779*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:136
7780*6a54128fSAndroid Build Coastguard Workermsgid "No 'previous' extent"
7781*6a54128fSAndroid Build Coastguard Workermsgstr ""
7782*6a54128fSAndroid Build Coastguard Worker
7783*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:137
7784*6a54128fSAndroid Build Coastguard Workermsgid "No 'up' extent"
7785*6a54128fSAndroid Build Coastguard Workermsgstr ""
7786*6a54128fSAndroid Build Coastguard Worker
7787*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:138
7788*6a54128fSAndroid Build Coastguard Workermsgid "No 'down' extent"
7789*6a54128fSAndroid Build Coastguard Workermsgstr ""
7790*6a54128fSAndroid Build Coastguard Worker
7791*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:139
7792*6a54128fSAndroid Build Coastguard Workermsgid "No current node"
7793*6a54128fSAndroid Build Coastguard Workermsgstr ""
7794*6a54128fSAndroid Build Coastguard Worker
7795*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:140
7796*6a54128fSAndroid Build Coastguard Workermsgid "Ext2fs operation not supported"
7797*6a54128fSAndroid Build Coastguard Workermsgstr ""
7798*6a54128fSAndroid Build Coastguard Worker
7799*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:141
7800*6a54128fSAndroid Build Coastguard Workermsgid "No room to insert extent in node"
7801*6a54128fSAndroid Build Coastguard Workermsgstr ""
7802*6a54128fSAndroid Build Coastguard Worker
7803*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:142
7804*6a54128fSAndroid Build Coastguard Workermsgid "Splitting would result in empty node"
7805*6a54128fSAndroid Build Coastguard Workermsgstr ""
7806*6a54128fSAndroid Build Coastguard Worker
7807*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:143
7808*6a54128fSAndroid Build Coastguard Workermsgid "Extent not found"
7809*6a54128fSAndroid Build Coastguard Workermsgstr ""
7810*6a54128fSAndroid Build Coastguard Worker
7811*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:144
7812*6a54128fSAndroid Build Coastguard Workermsgid "Operation not supported for inodes containing extents"
7813*6a54128fSAndroid Build Coastguard Workermsgstr ""
7814*6a54128fSAndroid Build Coastguard Worker
7815*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:145
7816*6a54128fSAndroid Build Coastguard Workermsgid "Extent length is invalid"
7817*6a54128fSAndroid Build Coastguard Workermsgstr ""
7818*6a54128fSAndroid Build Coastguard Worker
7819*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:146
7820*6a54128fSAndroid Build Coastguard Workermsgid "I/O Channel does not support 64-bit block numbers"
7821*6a54128fSAndroid Build Coastguard Workermsgstr ""
7822*6a54128fSAndroid Build Coastguard Worker
7823*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:147
7824*6a54128fSAndroid Build Coastguard Workermsgid "Can't check if filesystem is mounted due to missing mtab file"
7825*6a54128fSAndroid Build Coastguard Workermsgstr ""
7826*6a54128fSAndroid Build Coastguard Worker
7827*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:148
7828*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem too large to use legacy bitmaps"
7829*6a54128fSAndroid Build Coastguard Workermsgstr ""
7830*6a54128fSAndroid Build Coastguard Worker
7831*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:149
7832*6a54128fSAndroid Build Coastguard Workermsgid "MMP: invalid magic number"
7833*6a54128fSAndroid Build Coastguard Workermsgstr ""
7834*6a54128fSAndroid Build Coastguard Worker
7835*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:150
7836*6a54128fSAndroid Build Coastguard Workermsgid "MMP: device currently active"
7837*6a54128fSAndroid Build Coastguard Workermsgstr ""
7838*6a54128fSAndroid Build Coastguard Worker
7839*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:151
7840*6a54128fSAndroid Build Coastguard Workermsgid "MMP: e2fsck being run"
7841*6a54128fSAndroid Build Coastguard Workermsgstr ""
7842*6a54128fSAndroid Build Coastguard Worker
7843*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:152
7844*6a54128fSAndroid Build Coastguard Workermsgid "MMP: block number beyond filesystem range"
7845*6a54128fSAndroid Build Coastguard Workermsgstr ""
7846*6a54128fSAndroid Build Coastguard Worker
7847*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:153
7848*6a54128fSAndroid Build Coastguard Workermsgid "MMP: undergoing an unknown operation"
7849*6a54128fSAndroid Build Coastguard Workermsgstr ""
7850*6a54128fSAndroid Build Coastguard Worker
7851*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:154
7852*6a54128fSAndroid Build Coastguard Workermsgid "MMP: filesystem still in use"
7853*6a54128fSAndroid Build Coastguard Workermsgstr ""
7854*6a54128fSAndroid Build Coastguard Worker
7855*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:155
7856*6a54128fSAndroid Build Coastguard Workermsgid "MMP: open with O_DIRECT failed"
7857*6a54128fSAndroid Build Coastguard Workermsgstr ""
7858*6a54128fSAndroid Build Coastguard Worker
7859*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:156
7860*6a54128fSAndroid Build Coastguard Workermsgid "Block group descriptor size incorrect"
7861*6a54128fSAndroid Build Coastguard Workermsgstr ""
7862*6a54128fSAndroid Build Coastguard Worker
7863*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:157
7864*6a54128fSAndroid Build Coastguard Workermsgid "Inode checksum does not match inode"
7865*6a54128fSAndroid Build Coastguard Workermsgstr ""
7866*6a54128fSAndroid Build Coastguard Worker
7867*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:158
7868*6a54128fSAndroid Build Coastguard Workermsgid "Inode bitmap checksum does not match bitmap"
7869*6a54128fSAndroid Build Coastguard Workermsgstr ""
7870*6a54128fSAndroid Build Coastguard Worker
7871*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:159
7872*6a54128fSAndroid Build Coastguard Workermsgid "Extent block checksum does not match extent block"
7873*6a54128fSAndroid Build Coastguard Workermsgstr ""
7874*6a54128fSAndroid Build Coastguard Worker
7875*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:160
7876*6a54128fSAndroid Build Coastguard Workermsgid "Directory block does not have space for checksum"
7877*6a54128fSAndroid Build Coastguard Workermsgstr ""
7878*6a54128fSAndroid Build Coastguard Worker
7879*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:161
7880*6a54128fSAndroid Build Coastguard Workermsgid "Directory block checksum does not match directory block"
7881*6a54128fSAndroid Build Coastguard Workermsgstr ""
7882*6a54128fSAndroid Build Coastguard Worker
7883*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:162
7884*6a54128fSAndroid Build Coastguard Workermsgid "Extended attribute block checksum does not match block"
7885*6a54128fSAndroid Build Coastguard Workermsgstr ""
7886*6a54128fSAndroid Build Coastguard Worker
7887*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:163
7888*6a54128fSAndroid Build Coastguard Workermsgid "Superblock checksum does not match superblock"
7889*6a54128fSAndroid Build Coastguard Workermsgstr ""
7890*6a54128fSAndroid Build Coastguard Worker
7891*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:164
7892*6a54128fSAndroid Build Coastguard Workermsgid "Unknown checksum algorithm"
7893*6a54128fSAndroid Build Coastguard Workermsgstr ""
7894*6a54128fSAndroid Build Coastguard Worker
7895*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:165
7896*6a54128fSAndroid Build Coastguard Workermsgid "MMP block checksum does not match"
7897*6a54128fSAndroid Build Coastguard Workermsgstr ""
7898*6a54128fSAndroid Build Coastguard Worker
7899*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:166
7900*6a54128fSAndroid Build Coastguard Workermsgid "Ext2 file already exists"
7901*6a54128fSAndroid Build Coastguard Workermsgstr ""
7902*6a54128fSAndroid Build Coastguard Worker
7903*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:167
7904*6a54128fSAndroid Build Coastguard Workermsgid "Block bitmap checksum does not match bitmap"
7905*6a54128fSAndroid Build Coastguard Workermsgstr ""
7906*6a54128fSAndroid Build Coastguard Worker
7907*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:168
7908*6a54128fSAndroid Build Coastguard Workermsgid "Cannot iterate data blocks of an inode containing inline data"
7909*6a54128fSAndroid Build Coastguard Workermsgstr ""
7910*6a54128fSAndroid Build Coastguard Worker
7911*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:169
7912*6a54128fSAndroid Build Coastguard Workermsgid "Extended attribute has an invalid name length"
7913*6a54128fSAndroid Build Coastguard Workermsgstr ""
7914*6a54128fSAndroid Build Coastguard Worker
7915*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:170
7916*6a54128fSAndroid Build Coastguard Workermsgid "Extended attribute has an invalid value length"
7917*6a54128fSAndroid Build Coastguard Workermsgstr ""
7918*6a54128fSAndroid Build Coastguard Worker
7919*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:171
7920*6a54128fSAndroid Build Coastguard Workermsgid "Extended attribute has an incorrect hash"
7921*6a54128fSAndroid Build Coastguard Workermsgstr ""
7922*6a54128fSAndroid Build Coastguard Worker
7923*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:172
7924*6a54128fSAndroid Build Coastguard Workermsgid "Extended attribute block has a bad header"
7925*6a54128fSAndroid Build Coastguard Workermsgstr ""
7926*6a54128fSAndroid Build Coastguard Worker
7927*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:173
7928*6a54128fSAndroid Build Coastguard Workermsgid "Extended attribute key not found"
7929*6a54128fSAndroid Build Coastguard Workermsgstr ""
7930*6a54128fSAndroid Build Coastguard Worker
7931*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:174
7932*6a54128fSAndroid Build Coastguard Workermsgid "Insufficient space to store extended attribute data"
7933*6a54128fSAndroid Build Coastguard Workermsgstr ""
7934*6a54128fSAndroid Build Coastguard Worker
7935*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:175
7936*6a54128fSAndroid Build Coastguard Workermsgid "Filesystem is missing ext_attr or inline_data feature"
7937*6a54128fSAndroid Build Coastguard Workermsgstr ""
7938*6a54128fSAndroid Build Coastguard Worker
7939*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:176
7940*6a54128fSAndroid Build Coastguard Workermsgid "Inode doesn't have inline data"
7941*6a54128fSAndroid Build Coastguard Workermsgstr ""
7942*6a54128fSAndroid Build Coastguard Worker
7943*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:177
7944*6a54128fSAndroid Build Coastguard Workermsgid "No block for an inode with inline data"
7945*6a54128fSAndroid Build Coastguard Workermsgstr ""
7946*6a54128fSAndroid Build Coastguard Worker
7947*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:178
7948*6a54128fSAndroid Build Coastguard Workermsgid "No free space in inline data"
7949*6a54128fSAndroid Build Coastguard Workermsgstr ""
7950*6a54128fSAndroid Build Coastguard Worker
7951*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:179
7952*6a54128fSAndroid Build Coastguard Workermsgid "Wrong magic number for extended attribute structure"
7953*6a54128fSAndroid Build Coastguard Workermsgstr ""
7954*6a54128fSAndroid Build Coastguard Worker
7955*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:180
7956*6a54128fSAndroid Build Coastguard Workermsgid "Inode seems to contain garbage"
7957*6a54128fSAndroid Build Coastguard Workermsgstr ""
7958*6a54128fSAndroid Build Coastguard Worker
7959*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:181
7960*6a54128fSAndroid Build Coastguard Workermsgid "Extended attribute has an invalid value offset"
7961*6a54128fSAndroid Build Coastguard Workermsgstr ""
7962*6a54128fSAndroid Build Coastguard Worker
7963*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:182
7964*6a54128fSAndroid Build Coastguard Workermsgid "Journal flags inconsistent"
7965*6a54128fSAndroid Build Coastguard Workermsgstr ""
7966*6a54128fSAndroid Build Coastguard Worker
7967*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:183
7968*6a54128fSAndroid Build Coastguard Workermsgid "Undo file corrupt"
7969*6a54128fSAndroid Build Coastguard Workermsgstr ""
7970*6a54128fSAndroid Build Coastguard Worker
7971*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:184
7972*6a54128fSAndroid Build Coastguard Workermsgid "Wrong undo file for this filesystem"
7973*6a54128fSAndroid Build Coastguard Workermsgstr ""
7974*6a54128fSAndroid Build Coastguard Worker
7975*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:185
7976*6a54128fSAndroid Build Coastguard Workermsgid "File system is corrupted"
7977*6a54128fSAndroid Build Coastguard Workermsgstr ""
7978*6a54128fSAndroid Build Coastguard Worker
7979*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:186
7980*6a54128fSAndroid Build Coastguard Workermsgid "Bad CRC detected in file system"
7981*6a54128fSAndroid Build Coastguard Workermsgstr ""
7982*6a54128fSAndroid Build Coastguard Worker
7983*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:187
7984*6a54128fSAndroid Build Coastguard Workermsgid "The journal superblock is corrupt"
7985*6a54128fSAndroid Build Coastguard Workermsgstr ""
7986*6a54128fSAndroid Build Coastguard Worker
7987*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:188
7988*6a54128fSAndroid Build Coastguard Workermsgid "Inode is corrupted"
7989*6a54128fSAndroid Build Coastguard Workermsgstr ""
7990*6a54128fSAndroid Build Coastguard Worker
7991*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:189
7992*6a54128fSAndroid Build Coastguard Workermsgid "Inode containing extended attribute value is corrupted"
7993*6a54128fSAndroid Build Coastguard Workermsgstr ""
7994*6a54128fSAndroid Build Coastguard Worker
7995*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:190
7996*6a54128fSAndroid Build Coastguard Workermsgid "Group descriptors not loaded"
7997*6a54128fSAndroid Build Coastguard Workermsgstr ""
7998*6a54128fSAndroid Build Coastguard Worker
7999*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:191
8000*6a54128fSAndroid Build Coastguard Workermsgid "The internal ext2_filsys data structure appears to be corrupted"
8001*6a54128fSAndroid Build Coastguard Workermsgstr ""
8002*6a54128fSAndroid Build Coastguard Worker
8003*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:192
8004*6a54128fSAndroid Build Coastguard Workermsgid "Found cyclic loop in extent tree"
8005*6a54128fSAndroid Build Coastguard Workermsgstr ""
8006*6a54128fSAndroid Build Coastguard Worker
8007*6a54128fSAndroid Build Coastguard Worker#: lib/ext2fs/ext2_err.c:193
8008*6a54128fSAndroid Build Coastguard Workermsgid "Operation not supported on an external journal"
8009*6a54128fSAndroid Build Coastguard Workermsgstr ""
8010*6a54128fSAndroid Build Coastguard Worker
8011*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:11
8012*6a54128fSAndroid Build Coastguard Workermsgid "Profile version 0.0"
8013*6a54128fSAndroid Build Coastguard Workermsgstr ""
8014*6a54128fSAndroid Build Coastguard Worker
8015*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:12
8016*6a54128fSAndroid Build Coastguard Workermsgid "Bad magic value in profile_node"
8017*6a54128fSAndroid Build Coastguard Workermsgstr ""
8018*6a54128fSAndroid Build Coastguard Worker
8019*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:13
8020*6a54128fSAndroid Build Coastguard Workermsgid "Profile section not found"
8021*6a54128fSAndroid Build Coastguard Workermsgstr ""
8022*6a54128fSAndroid Build Coastguard Worker
8023*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:14
8024*6a54128fSAndroid Build Coastguard Workermsgid "Profile relation not found"
8025*6a54128fSAndroid Build Coastguard Workermsgstr ""
8026*6a54128fSAndroid Build Coastguard Worker
8027*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:15
8028*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to add a relation to node which is not a section"
8029*6a54128fSAndroid Build Coastguard Workermsgstr ""
8030*6a54128fSAndroid Build Coastguard Worker
8031*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:16
8032*6a54128fSAndroid Build Coastguard Workermsgid "A profile section header has a non-zero value"
8033*6a54128fSAndroid Build Coastguard Workermsgstr ""
8034*6a54128fSAndroid Build Coastguard Worker
8035*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:17
8036*6a54128fSAndroid Build Coastguard Workermsgid "Bad linked list in profile structures"
8037*6a54128fSAndroid Build Coastguard Workermsgstr ""
8038*6a54128fSAndroid Build Coastguard Worker
8039*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:18
8040*6a54128fSAndroid Build Coastguard Workermsgid "Bad group level in profile structures"
8041*6a54128fSAndroid Build Coastguard Workermsgstr ""
8042*6a54128fSAndroid Build Coastguard Worker
8043*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:19
8044*6a54128fSAndroid Build Coastguard Workermsgid "Bad parent pointer in profile structures"
8045*6a54128fSAndroid Build Coastguard Workermsgstr ""
8046*6a54128fSAndroid Build Coastguard Worker
8047*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:20
8048*6a54128fSAndroid Build Coastguard Workermsgid "Bad magic value in profile iterator"
8049*6a54128fSAndroid Build Coastguard Workermsgstr ""
8050*6a54128fSAndroid Build Coastguard Worker
8051*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:21
8052*6a54128fSAndroid Build Coastguard Workermsgid "Can't set value on section node"
8053*6a54128fSAndroid Build Coastguard Workermsgstr ""
8054*6a54128fSAndroid Build Coastguard Worker
8055*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:22
8056*6a54128fSAndroid Build Coastguard Workermsgid "Invalid argument passed to profile library"
8057*6a54128fSAndroid Build Coastguard Workermsgstr ""
8058*6a54128fSAndroid Build Coastguard Worker
8059*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:23
8060*6a54128fSAndroid Build Coastguard Workermsgid "Attempt to modify read-only profile"
8061*6a54128fSAndroid Build Coastguard Workermsgstr ""
8062*6a54128fSAndroid Build Coastguard Worker
8063*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:24
8064*6a54128fSAndroid Build Coastguard Workermsgid "Profile section header not at top level"
8065*6a54128fSAndroid Build Coastguard Workermsgstr ""
8066*6a54128fSAndroid Build Coastguard Worker
8067*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:25
8068*6a54128fSAndroid Build Coastguard Workermsgid "Syntax error in profile section header"
8069*6a54128fSAndroid Build Coastguard Workermsgstr ""
8070*6a54128fSAndroid Build Coastguard Worker
8071*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:26
8072*6a54128fSAndroid Build Coastguard Workermsgid "Syntax error in profile relation"
8073*6a54128fSAndroid Build Coastguard Workermsgstr ""
8074*6a54128fSAndroid Build Coastguard Worker
8075*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:27
8076*6a54128fSAndroid Build Coastguard Workermsgid "Extra closing brace in profile"
8077*6a54128fSAndroid Build Coastguard Workermsgstr ""
8078*6a54128fSAndroid Build Coastguard Worker
8079*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:28
8080*6a54128fSAndroid Build Coastguard Workermsgid "Missing open brace in profile"
8081*6a54128fSAndroid Build Coastguard Workermsgstr ""
8082*6a54128fSAndroid Build Coastguard Worker
8083*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:29
8084*6a54128fSAndroid Build Coastguard Workermsgid "Bad magic value in profile_t"
8085*6a54128fSAndroid Build Coastguard Workermsgstr ""
8086*6a54128fSAndroid Build Coastguard Worker
8087*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:30
8088*6a54128fSAndroid Build Coastguard Workermsgid "Bad magic value in profile_section_t"
8089*6a54128fSAndroid Build Coastguard Workermsgstr ""
8090*6a54128fSAndroid Build Coastguard Worker
8091*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:31
8092*6a54128fSAndroid Build Coastguard Workermsgid "Iteration through all top level section not supported"
8093*6a54128fSAndroid Build Coastguard Workermsgstr ""
8094*6a54128fSAndroid Build Coastguard Worker
8095*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:32
8096*6a54128fSAndroid Build Coastguard Workermsgid "Invalid profile_section object"
8097*6a54128fSAndroid Build Coastguard Workermsgstr ""
8098*6a54128fSAndroid Build Coastguard Worker
8099*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:33
8100*6a54128fSAndroid Build Coastguard Workermsgid "No more sections"
8101*6a54128fSAndroid Build Coastguard Workermsgstr ""
8102*6a54128fSAndroid Build Coastguard Worker
8103*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:34
8104*6a54128fSAndroid Build Coastguard Workermsgid "Bad nameset passed to query routine"
8105*6a54128fSAndroid Build Coastguard Workermsgstr ""
8106*6a54128fSAndroid Build Coastguard Worker
8107*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:35
8108*6a54128fSAndroid Build Coastguard Workermsgid "No profile file open"
8109*6a54128fSAndroid Build Coastguard Workermsgstr ""
8110*6a54128fSAndroid Build Coastguard Worker
8111*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:36
8112*6a54128fSAndroid Build Coastguard Workermsgid "Bad magic value in profile_file_t"
8113*6a54128fSAndroid Build Coastguard Workermsgstr ""
8114*6a54128fSAndroid Build Coastguard Worker
8115*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:37
8116*6a54128fSAndroid Build Coastguard Workermsgid "Couldn't open profile file"
8117*6a54128fSAndroid Build Coastguard Workermsgstr ""
8118*6a54128fSAndroid Build Coastguard Worker
8119*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:38
8120*6a54128fSAndroid Build Coastguard Workermsgid "Section already exists"
8121*6a54128fSAndroid Build Coastguard Workermsgstr ""
8122*6a54128fSAndroid Build Coastguard Worker
8123*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:39
8124*6a54128fSAndroid Build Coastguard Workermsgid "Invalid boolean value"
8125*6a54128fSAndroid Build Coastguard Workermsgstr ""
8126*6a54128fSAndroid Build Coastguard Worker
8127*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:40
8128*6a54128fSAndroid Build Coastguard Workermsgid "Invalid integer value"
8129*6a54128fSAndroid Build Coastguard Workermsgstr ""
8130*6a54128fSAndroid Build Coastguard Worker
8131*6a54128fSAndroid Build Coastguard Worker#: lib/support/prof_err.c:41
8132*6a54128fSAndroid Build Coastguard Workermsgid "Bad magic value in profile_file_data_t"
8133*6a54128fSAndroid Build Coastguard Workermsgstr ""
8134*6a54128fSAndroid Build Coastguard Worker
8135*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:114
8136*6a54128fSAndroid Build Coastguard Worker#, c-format
8137*6a54128fSAndroid Build Coastguard Workermsgid "\tlast mounted on %.*s on %s"
8138*6a54128fSAndroid Build Coastguard Workermsgstr ""
8139*6a54128fSAndroid Build Coastguard Worker
8140*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:117
8141*6a54128fSAndroid Build Coastguard Worker#, c-format
8142*6a54128fSAndroid Build Coastguard Workermsgid "\tlast mounted on %s"
8143*6a54128fSAndroid Build Coastguard Workermsgstr ""
8144*6a54128fSAndroid Build Coastguard Worker
8145*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:120
8146*6a54128fSAndroid Build Coastguard Worker#, c-format
8147*6a54128fSAndroid Build Coastguard Workermsgid "\tcreated on %s"
8148*6a54128fSAndroid Build Coastguard Workermsgstr ""
8149*6a54128fSAndroid Build Coastguard Worker
8150*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:123
8151*6a54128fSAndroid Build Coastguard Worker#, c-format
8152*6a54128fSAndroid Build Coastguard Workermsgid "\tlast modified on %s"
8153*6a54128fSAndroid Build Coastguard Workermsgstr ""
8154*6a54128fSAndroid Build Coastguard Worker
8155*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:157
8156*6a54128fSAndroid Build Coastguard Worker#, c-format
8157*6a54128fSAndroid Build Coastguard Workermsgid "Found a %s partition table in %s\n"
8158*6a54128fSAndroid Build Coastguard Workermsgstr ""
8159*6a54128fSAndroid Build Coastguard Worker
8160*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:198
8161*6a54128fSAndroid Build Coastguard Worker#, c-format
8162*6a54128fSAndroid Build Coastguard Workermsgid "Could not open %s: %s\n"
8163*6a54128fSAndroid Build Coastguard Workermsgstr ""
8164*6a54128fSAndroid Build Coastguard Worker
8165*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:201
8166*6a54128fSAndroid Build Coastguard Workermsgid ""
8167*6a54128fSAndroid Build Coastguard Worker"\n"
8168*6a54128fSAndroid Build Coastguard Worker"The device apparently does not exist; did you specify it correctly?\n"
8169*6a54128fSAndroid Build Coastguard Workermsgstr ""
8170*6a54128fSAndroid Build Coastguard Worker
8171*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:223
8172*6a54128fSAndroid Build Coastguard Worker#, c-format
8173*6a54128fSAndroid Build Coastguard Workermsgid "%s is not a block special device.\n"
8174*6a54128fSAndroid Build Coastguard Workermsgstr ""
8175*6a54128fSAndroid Build Coastguard Worker
8176*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:245
8177*6a54128fSAndroid Build Coastguard Worker#, c-format
8178*6a54128fSAndroid Build Coastguard Workermsgid "%s contains a %s file system labelled '%s'\n"
8179*6a54128fSAndroid Build Coastguard Workermsgstr ""
8180*6a54128fSAndroid Build Coastguard Worker
8181*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:248
8182*6a54128fSAndroid Build Coastguard Worker#, c-format
8183*6a54128fSAndroid Build Coastguard Workermsgid "%s contains a %s file system\n"
8184*6a54128fSAndroid Build Coastguard Workermsgstr ""
8185*6a54128fSAndroid Build Coastguard Worker
8186*6a54128fSAndroid Build Coastguard Worker#: lib/support/plausible.c:272
8187*6a54128fSAndroid Build Coastguard Worker#, c-format
8188*6a54128fSAndroid Build Coastguard Workermsgid "%s contains `%s' data\n"
8189*6a54128fSAndroid Build Coastguard Workermsgstr ""
8190