blob: 3c90b9292485ba517d35fb252a78a6533b54db94 [file] [log] [blame]
Theodore Ts'of722c132009-04-21 22:09:01 -04001# Chinese (simplified) translation for e2fsprogs.
2# This file is distributed under the same license as the e2fsprogs package.
Tianze Wang57d69272016-08-31 23:14:17 -04003# Dark Raven <drdarkraven@gmail.com>, 2009.
4# zwpwjwtz <zwpwjwtz@126.com>, 2015.
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05005# Mingye Wang (Arthur2e5) <arthur200126@gmail.com>, 2016.
Theodore Ts'of722c132009-04-21 22:09:01 -04006#
7#. The strings in e2fsck's problem.c can be very hard to translate,
8#. since the strings are expanded in two different ways. First of all,
9#. there is an @-expansion, where strings like "@i" are expanded to
10#. "inode", and so on. In order to make it easier for translators, the
11#. e2fsprogs po template file has been enhanced with comments that show
12#. the @-expansion, for the strings in the problem.c file.
13#.
14#. Translators are free to use the @-expansion facility if they so
15#. choose, by providing translations for strings in e2fsck/message.c.
16#. These translation can completely replace an expansion; for example,
17#. if "bblock" (which indicated that "@b" would be expanded to "block")
18#. is translated as "ddatenverlust", then "@d" will be expanded to
19#. "datenverlust". Alternatively, translators can simply not use the
20#. @-expansion facility at all.
21#.
22#. The second expansion which is done for e2fsck's problem.c messages is
23#. a dynamic %-expansion, which expands %i as an inode number, and so
24#. on. A table of these expansions can be found below. Note that
25#. %-expressions that begin with "%D" and "%I" are two-character
26#. expansions; so for example, "%Iu" expands to the inode's user id
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040027#. ownership field (inode->i_uid). Also the "%B" expansion is special:
28#. it can expand to either the string "indirect block" (possibly preceded
29#. by the word "double" or "triple"), or the string "block #" immediately
30#. followed by an integer indicating a block sequence number.
Theodore Ts'of722c132009-04-21 22:09:01 -040031#.
32#. %b <blk> block number
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040033#. %B "indirect block" | "block #"<blkcount> string | string+integer
Theodore Ts'of722c132009-04-21 22:09:01 -040034#. %c <blk2> block number
35#. %Di <dirent> -> ino inode number
36#. %Dn <dirent> -> name string
37#. %Dr <dirent> -> rec_len
38#. %Dl <dirent> -> name_len
39#. %Dt <dirent> -> filetype
40#. %d <dir> inode number
41#. %g <group> integer
42#. %i <ino> inode number
43#. %Is <inode> -> i_size
44#. %IS <inode> -> i_extra_isize
45#. %Ib <inode> -> i_blocks
46#. %Il <inode> -> i_links_count
47#. %Im <inode> -> i_mode
48#. %IM <inode> -> i_mtime
49#. %IF <inode> -> i_faddr
50#. %If <inode> -> i_file_acl
Theodore Ts'o899425b2018-02-27 22:25:04 -050051#. %Id <inode> -> i_size_high
Theodore Ts'of722c132009-04-21 22:09:01 -040052#. %Iu <inode> -> i_uid
53#. %Ig <inode> -> i_gid
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040054#. %It <str> file type
Theodore Ts'of722c132009-04-21 22:09:01 -040055#. %j <ino2> inode number
56#. %m <com_err error message>
57#. %N <num>
58#. %p ext2fs_get_pathname of directory <ino>
59#. %P ext2fs_get_pathname of <dirent>->ino with <ino2> as
60#. the containing directory. (If dirent is NULL
61#. then return the pathname of directory <ino2>)
62#. %q ext2fs_get_pathname of directory <dir>
63#. %Q ext2fs_get_pathname of directory <ino> with <dir> as
64#. the containing directory.
65#. %s <str> miscellaneous string
66#. %S backup superblock
67#. %X <num> hexadecimal format
68#.
69msgid ""
70msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -040071"Project-Id-Version: e2fsprogs-1.43.1\n"
Theodore Ts'of722c132009-04-21 22:09:01 -040072"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
Theodore Ts'o40e66e22018-08-18 21:14:56 -040073"POT-Creation-Date: 2018-08-18 21:03-0400\n"
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -050074"PO-Revision-Date: 2016-11-24 23:49-0500\n"
75"Last-Translator: Mingye Wang (Arthur2e5) <arthur200126@gmail.com>\n"
Dark Raven3be22a82010-04-19 16:59:03 -040076"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -040077"Language: zh_CN\n"
Theodore Ts'of722c132009-04-21 22:09:01 -040078"MIME-Version: 1.0\n"
79"Content-Type: text/plain; charset=UTF-8\n"
80"Content-Transfer-Encoding: 8bit\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -050081"X-Bugs: Report translation errors to the Language-Team address.\n"
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -050082"X-Generator: Poedit 1.8.11\n"
Tianze Wang57d69272016-08-31 23:14:17 -040083"X-Poedit-Bookmarks: -1,591,-1,-1,-1,-1,-1,-1,-1,-1\n"
84"Plural-Forms: nplurals=1; plural=0;\n"
Theodore Ts'of722c132009-04-21 22:09:01 -040085
Theodore Ts'o899425b2018-02-27 22:25:04 -050086#: e2fsck/badblocks.c:23 misc/mke2fs.c:220
Theodore Ts'of722c132009-04-21 22:09:01 -040087#, c-format
88msgid "Bad block %u out of range; ignored.\n"
Tianze Wang57d69272016-08-31 23:14:17 -040089msgstr "坏块 %u 超出范围;已忽略。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -040090
Eric Sandeen032eafe2012-07-28 17:48:36 -040091#: e2fsck/badblocks.c:46
Theodore Ts'of722c132009-04-21 22:09:01 -040092msgid "while sanity checking the bad blocks inode"
Tianze Wang57d69272016-08-31 23:14:17 -040093msgstr "进行坏块inode的健全性检查时"
Theodore Ts'of722c132009-04-21 22:09:01 -040094
Eric Sandeen032eafe2012-07-28 17:48:36 -040095#: e2fsck/badblocks.c:58
Theodore Ts'of722c132009-04-21 22:09:01 -040096msgid "while reading the bad blocks inode"
Tianze Wang57d69272016-08-31 23:14:17 -040097msgstr "读取坏块inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -040098
Theodore Ts'o40e66e22018-08-18 21:14:56 -040099#: e2fsck/badblocks.c:72 e2fsck/scantest.c:107 e2fsck/unix.c:1550
100#: e2fsck/unix.c:1664 misc/badblocks.c:1251 misc/badblocks.c:1259
101#: misc/badblocks.c:1273 misc/badblocks.c:1285 misc/dumpe2fs.c:431
102#: misc/dumpe2fs.c:688 misc/dumpe2fs.c:692 misc/e2image.c:1404
103#: misc/e2image.c:1588 misc/e2image.c:1609 misc/mke2fs.c:236
104#: misc/tune2fs.c:2837 misc/tune2fs.c:2931 resize/main.c:414
Theodore Ts'of722c132009-04-21 22:09:01 -0400105#, c-format
106msgid "while trying to open %s"
Tianze Wang57d69272016-08-31 23:14:17 -0400107msgstr "尝试打开 %s 时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400108
Eric Sandeen032eafe2012-07-28 17:48:36 -0400109#: e2fsck/badblocks.c:83
Dark Raven3be22a82010-04-19 16:59:03 -0400110#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400111msgid "while trying popen '%s'"
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -0500112msgstr "尝试管道执行 %s 时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400113
Theodore Ts'o899425b2018-02-27 22:25:04 -0500114#: e2fsck/badblocks.c:94 misc/mke2fs.c:243
Theodore Ts'of722c132009-04-21 22:09:01 -0400115msgid "while reading in list of bad blocks from file"
Tianze Wang57d69272016-08-31 23:14:17 -0400116msgstr "从文件中读取坏块表时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400117
Eric Sandeen032eafe2012-07-28 17:48:36 -0400118#: e2fsck/badblocks.c:105
Theodore Ts'of722c132009-04-21 22:09:01 -0400119msgid "while updating bad block inode"
Tianze Wang57d69272016-08-31 23:14:17 -0400120msgstr "更新坏块inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400121
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400122#: e2fsck/badblocks.c:133
Theodore Ts'of722c132009-04-21 22:09:01 -0400123#, c-format
124msgid "Warning: illegal block %u found in bad block inode. Cleared.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400125msgstr "警告:在坏块inode中发现非法的块%u。已清除。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400126
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400127#: e2fsck/dirinfo.c:331
128#, fuzzy
129msgid "while freeing dir_info tdb file"
130msgstr "读取坏撤销文件时"
131
Eric Sandeen032eafe2012-07-28 17:48:36 -0400132#: e2fsck/ehandler.c:55
Tianze Wang57d69272016-08-31 23:14:17 -0400133#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400134msgid "Error reading block %lu (%s) while %s. "
Tianze Wang57d69272016-08-31 23:14:17 -0400135msgstr "%3$s 时读取块 %1$lu(%2$s)错误。 "
Theodore Ts'of722c132009-04-21 22:09:01 -0400136
Eric Sandeen032eafe2012-07-28 17:48:36 -0400137#: e2fsck/ehandler.c:58
Theodore Ts'of722c132009-04-21 22:09:01 -0400138#, c-format
139msgid "Error reading block %lu (%s). "
Tianze Wang57d69272016-08-31 23:14:17 -0400140msgstr "读取块 %lu(%s)错误。 "
Theodore Ts'of722c132009-04-21 22:09:01 -0400141
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400142#: e2fsck/ehandler.c:66 e2fsck/ehandler.c:115
Theodore Ts'of722c132009-04-21 22:09:01 -0400143msgid "Ignore error"
144msgstr "忽略错误"
145
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400146#: e2fsck/ehandler.c:67
Theodore Ts'of722c132009-04-21 22:09:01 -0400147msgid "Force rewrite"
148msgstr "强制覆盖"
149
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400150#: e2fsck/ehandler.c:109
Tianze Wang57d69272016-08-31 23:14:17 -0400151#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400152msgid "Error writing block %lu (%s) while %s. "
Tianze Wang57d69272016-08-31 23:14:17 -0400153msgstr "%3$s 时写入块 %1$lu (%2$s)出错。 "
Theodore Ts'of722c132009-04-21 22:09:01 -0400154
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400155#: e2fsck/ehandler.c:112
Theodore Ts'of722c132009-04-21 22:09:01 -0400156#, c-format
157msgid "Error writing block %lu (%s). "
Tianze Wang57d69272016-08-31 23:14:17 -0400158msgstr "写块 %lu(%s)出错。 "
Theodore Ts'of722c132009-04-21 22:09:01 -0400159
Eric Sandeen032eafe2012-07-28 17:48:36 -0400160#: e2fsck/emptydir.c:57
Theodore Ts'of722c132009-04-21 22:09:01 -0400161msgid "empty dirblocks"
Tianze Wang57d69272016-08-31 23:14:17 -0400162msgstr "空目录块"
Theodore Ts'of722c132009-04-21 22:09:01 -0400163
Eric Sandeen032eafe2012-07-28 17:48:36 -0400164#: e2fsck/emptydir.c:62
Theodore Ts'of722c132009-04-21 22:09:01 -0400165msgid "empty dir map"
166msgstr "空ACL映射"
167
Eric Sandeen032eafe2012-07-28 17:48:36 -0400168#: e2fsck/emptydir.c:98
Theodore Ts'of722c132009-04-21 22:09:01 -0400169#, c-format
170msgid "Empty directory block %u (#%d) in inode %u\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400171msgstr "空目录块 %u(#%d)于 inode %u 中\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400172
Eric Sandeen032eafe2012-07-28 17:48:36 -0400173#: e2fsck/extend.c:22
Theodore Ts'of722c132009-04-21 22:09:01 -0400174#, c-format
175msgid "%s: %s filename nblocks blocksize\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400176msgstr "%s:%s 文件名 块数 块大小\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400177
Eric Sandeen032eafe2012-07-28 17:48:36 -0400178#: e2fsck/extend.c:44
Theodore Ts'of722c132009-04-21 22:09:01 -0400179#, c-format
180msgid "Illegal number of blocks!\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400181msgstr "非法的块数量!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400182
Eric Sandeen032eafe2012-07-28 17:48:36 -0400183#: e2fsck/extend.c:50
Theodore Ts'of722c132009-04-21 22:09:01 -0400184#, c-format
185msgid "Couldn't allocate block buffer (size=%d)\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400186msgstr "无法为块缓存分配内存(大小=%d)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400187
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400188#: e2fsck/extents.c:42
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400189msgid "extent rebuild inode map"
Tianze Wang57d69272016-08-31 23:14:17 -0400190msgstr "extent 重建 inode 映射"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400191
Eric Sandeen032eafe2012-07-28 17:48:36 -0400192#: e2fsck/flushb.c:35
Dark Raven3be22a82010-04-19 16:59:03 -0400193#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400194msgid "Usage: %s disk\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400195msgstr "用法:%s 磁盘名\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400196
Eric Sandeen032eafe2012-07-28 17:48:36 -0400197#: e2fsck/flushb.c:64
Theodore Ts'of722c132009-04-21 22:09:01 -0400198#, c-format
199msgid "BLKFLSBUF ioctl not supported! Can't flush buffers.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400200msgstr "不支持对BLKFLSBUF进行 ioctl 调用! 无法刷新缓存。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400201
Eric Sandeen032eafe2012-07-28 17:48:36 -0400202#: e2fsck/iscan.c:44
Theodore Ts'of722c132009-04-21 22:09:01 -0400203#, c-format
204msgid "Usage: %s [-F] [-I inode_buffer_blocks] device\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400205msgstr "用法:%s [-F] [-I inode缓冲块] 设备\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400206
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400207#: e2fsck/iscan.c:81 e2fsck/unix.c:1075
Tianze Wang57d69272016-08-31 23:14:17 -0400208#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400209msgid "while opening %s for flushing"
Tianze Wang57d69272016-08-31 23:14:17 -0400210msgstr "打开并刷新 %s 时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400211
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400212#: e2fsck/iscan.c:86 e2fsck/unix.c:1081 resize/main.c:383
Tianze Wang57d69272016-08-31 23:14:17 -0400213#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400214msgid "while trying to flush %s"
Tianze Wang57d69272016-08-31 23:14:17 -0400215msgstr "尝试刷新 %s 时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400216
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400217#: e2fsck/iscan.c:110
Tianze Wang57d69272016-08-31 23:14:17 -0400218#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400219msgid "while trying to open '%s'"
Tianze Wang57d69272016-08-31 23:14:17 -0400220msgstr "尝试打开 “%s” 时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400221
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400222#: e2fsck/iscan.c:119 e2fsck/scantest.c:114 misc/e2image.c:1297
Theodore Ts'of722c132009-04-21 22:09:01 -0400223msgid "while opening inode scan"
Tianze Wang57d69272016-08-31 23:14:17 -0400224msgstr "进行inode扫描时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400225
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400226#: e2fsck/iscan.c:127 misc/e2image.c:1316
Theodore Ts'of722c132009-04-21 22:09:01 -0400227msgid "while getting next inode"
Tianze Wang57d69272016-08-31 23:14:17 -0400228msgstr "获取下一个inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400229
Eric Sandeen032eafe2012-07-28 17:48:36 -0400230#: e2fsck/iscan.c:136
Theodore Ts'of722c132009-04-21 22:09:01 -0400231#, c-format
232msgid "%u inodes scanned.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400233msgstr "已扫描 %u 个inode。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400234
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400235#: e2fsck/journal.c:597
Theodore Ts'of722c132009-04-21 22:09:01 -0400236msgid "reading journal superblock\n"
237msgstr "读取日志超级块\n"
238
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400239#: e2fsck/journal.c:670
Theodore Ts'of722c132009-04-21 22:09:01 -0400240#, c-format
241msgid "%s: no valid journal superblock found\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400242msgstr "%s: 没有发现日志超级块\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400243
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400244#: e2fsck/journal.c:679
Dark Raven3be22a82010-04-19 16:59:03 -0400245#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400246msgid "%s: journal too short\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400247msgstr "%s: 日志过短\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400248
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400249#: e2fsck/journal.c:972 misc/fuse2fs.c:3786
Theodore Ts'of722c132009-04-21 22:09:01 -0400250#, c-format
251msgid "%s: recovering journal\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400252msgstr "%s:正在修复日志\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400253
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400254#: e2fsck/journal.c:974
Theodore Ts'of722c132009-04-21 22:09:01 -0400255#, c-format
256msgid "%s: won't do journal recovery while read-only\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400257msgstr "%s:使用只读模式时不会进行日志修复\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400258
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400259#: e2fsck/journal.c:1001
Theodore Ts'of722c132009-04-21 22:09:01 -0400260#, c-format
261msgid "while trying to re-open %s"
Tianze Wang57d69272016-08-31 23:14:17 -0400262msgstr "尝试重新打开 %s 时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400263
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400264#: e2fsck/message.c:116
Theodore Ts'of722c132009-04-21 22:09:01 -0400265msgid "aextended attribute"
266msgstr "a扩展属性"
267
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400268#: e2fsck/message.c:117
Theodore Ts'of722c132009-04-21 22:09:01 -0400269msgid "Aerror allocating"
270msgstr "A分配出错"
271
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400272#: e2fsck/message.c:118
Theodore Ts'of722c132009-04-21 22:09:01 -0400273msgid "bblock"
274msgstr "b块"
275
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400276#: e2fsck/message.c:119
Theodore Ts'of722c132009-04-21 22:09:01 -0400277msgid "Bbitmap"
278msgstr "B位图"
279
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400280#: e2fsck/message.c:120
Theodore Ts'of722c132009-04-21 22:09:01 -0400281msgid "ccompress"
282msgstr "c压缩"
283
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400284#: e2fsck/message.c:121
Theodore Ts'of722c132009-04-21 22:09:01 -0400285msgid "Cconflicts with some other fs @b"
286msgstr "C与其他文件系统@b冲突"
287
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400288#: e2fsck/message.c:122
Theodore Ts'of722c132009-04-21 22:09:01 -0400289msgid "ddirectory"
290msgstr "d目录"
291
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400292#: e2fsck/message.c:123
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400293msgid "Ddeleted"
294msgstr "D删除"
295
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400296#: e2fsck/message.c:124
Theodore Ts'of722c132009-04-21 22:09:01 -0400297msgid "eentry"
Tianze Wang57d69272016-08-31 23:14:17 -0400298msgstr "e项"
Theodore Ts'of722c132009-04-21 22:09:01 -0400299
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400300#: e2fsck/message.c:125
Theodore Ts'of722c132009-04-21 22:09:01 -0400301msgid "E@e '%Dn' in %p (%i)"
Tianze Wang57d69272016-08-31 23:14:17 -0400302msgstr "E%p(%i)中的@e “%Dn”"
Theodore Ts'of722c132009-04-21 22:09:01 -0400303
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400304#: e2fsck/message.c:126
Theodore Ts'of722c132009-04-21 22:09:01 -0400305msgid "ffilesystem"
306msgstr "f文件系统"
307
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400308#: e2fsck/message.c:127
Theodore Ts'of722c132009-04-21 22:09:01 -0400309msgid "Ffor @i %i (%Q) is"
Tianze Wang57d69272016-08-31 23:14:17 -0400310msgstr "F关于@i %i (%Q)为"
Theodore Ts'of722c132009-04-21 22:09:01 -0400311
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400312#: e2fsck/message.c:128
Theodore Ts'of722c132009-04-21 22:09:01 -0400313msgid "ggroup"
Tianze Wang57d69272016-08-31 23:14:17 -0400314msgstr "g组"
Theodore Ts'of722c132009-04-21 22:09:01 -0400315
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400316#: e2fsck/message.c:129
Theodore Ts'of722c132009-04-21 22:09:01 -0400317msgid "hHTREE @d @i"
318msgstr "hHTREE@d@i"
319
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400320#: e2fsck/message.c:130
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400321msgid "iinode"
322msgstr "iinode"
323
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400324#: e2fsck/message.c:131
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400325msgid "Iillegal"
326msgstr "I非法的"
327
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400328#: e2fsck/message.c:132
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400329msgid "jjournal"
330msgstr "j日志"
331
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400332#: e2fsck/message.c:133
Theodore Ts'of722c132009-04-21 22:09:01 -0400333msgid "llost+found"
334msgstr "llost+found"
335
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400336#: e2fsck/message.c:134
Theodore Ts'of722c132009-04-21 22:09:01 -0400337msgid "Lis a link"
338msgstr "L是一个链接"
339
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400340#: e2fsck/message.c:135
Theodore Ts'of722c132009-04-21 22:09:01 -0400341msgid "mmultiply-claimed"
Tianze Wang57d69272016-08-31 23:14:17 -0400342msgstr "m重复引用的"
Theodore Ts'of722c132009-04-21 22:09:01 -0400343
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400344#: e2fsck/message.c:136
Theodore Ts'of722c132009-04-21 22:09:01 -0400345msgid "ninvalid"
346msgstr "n无效的"
347
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400348#: e2fsck/message.c:137
Theodore Ts'of722c132009-04-21 22:09:01 -0400349msgid "oorphaned"
Tianze Wang57d69272016-08-31 23:14:17 -0400350msgstr "o孤立的"
Theodore Ts'of722c132009-04-21 22:09:01 -0400351
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400352#: e2fsck/message.c:138
Theodore Ts'of722c132009-04-21 22:09:01 -0400353msgid "pproblem in"
Tianze Wang57d69272016-08-31 23:14:17 -0400354msgstr "p问题出于"
Theodore Ts'of722c132009-04-21 22:09:01 -0400355
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400356#: e2fsck/message.c:139
Eric Sandeen032eafe2012-07-28 17:48:36 -0400357msgid "qquota"
Tianze Wang57d69272016-08-31 23:14:17 -0400358msgstr "q配额"
Eric Sandeen032eafe2012-07-28 17:48:36 -0400359
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400360#: e2fsck/message.c:140
Theodore Ts'of722c132009-04-21 22:09:01 -0400361msgid "rroot @i"
362msgstr "r根@i"
363
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400364#: e2fsck/message.c:141
Theodore Ts'of722c132009-04-21 22:09:01 -0400365msgid "sshould be"
366msgstr "s应为"
367
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400368#: e2fsck/message.c:142
Theodore Ts'of722c132009-04-21 22:09:01 -0400369msgid "Ssuper@b"
370msgstr "S超级@b"
371
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400372#: e2fsck/message.c:143
Theodore Ts'of722c132009-04-21 22:09:01 -0400373msgid "uunattached"
Tianze Wang57d69272016-08-31 23:14:17 -0400374msgstr "u独立的"
Theodore Ts'of722c132009-04-21 22:09:01 -0400375
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400376#: e2fsck/message.c:144
Theodore Ts'of722c132009-04-21 22:09:01 -0400377msgid "vdevice"
378msgstr "v设备"
379
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400380#: e2fsck/message.c:145
Theodore Ts'of722c132009-04-21 22:09:01 -0400381msgid "xextent"
Tianze Wang57d69272016-08-31 23:14:17 -0400382msgstr "xextent"
Theodore Ts'of722c132009-04-21 22:09:01 -0400383
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400384#: e2fsck/message.c:146
Theodore Ts'of722c132009-04-21 22:09:01 -0400385msgid "zzero-length"
386msgstr "z零长度"
387
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400388#: e2fsck/message.c:157
Theodore Ts'of722c132009-04-21 22:09:01 -0400389msgid "<The NULL inode>"
390msgstr "<空的 inode>"
391
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400392#: e2fsck/message.c:158
Theodore Ts'of722c132009-04-21 22:09:01 -0400393msgid "<The bad blocks inode>"
394msgstr "<坏块 inode>"
395
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400396#: e2fsck/message.c:160
Eric Sandeen032eafe2012-07-28 17:48:36 -0400397msgid "<The user quota inode>"
Tianze Wang57d69272016-08-31 23:14:17 -0400398msgstr "<用户配额inode>"
Theodore Ts'of722c132009-04-21 22:09:01 -0400399
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400400#: e2fsck/message.c:161
Eric Sandeen032eafe2012-07-28 17:48:36 -0400401msgid "<The group quota inode>"
Tianze Wang57d69272016-08-31 23:14:17 -0400402msgstr "<组配额inode>"
Theodore Ts'of722c132009-04-21 22:09:01 -0400403
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400404#: e2fsck/message.c:162
Eric Sandeen032eafe2012-07-28 17:48:36 -0400405msgid "<The boot loader inode>"
406msgstr "<启动器 inode>"
407
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400408#: e2fsck/message.c:163
Eric Sandeen032eafe2012-07-28 17:48:36 -0400409msgid "<The undelete directory inode>"
410msgstr "<未删除的目录 inode>"
411
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400412#: e2fsck/message.c:164
Eric Sandeen032eafe2012-07-28 17:48:36 -0400413msgid "<The group descriptor inode>"
414msgstr "<组描述符inode>"
415
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400416#: e2fsck/message.c:165
Theodore Ts'of722c132009-04-21 22:09:01 -0400417msgid "<The journal inode>"
418msgstr "<日志 inode>"
419
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400420#: e2fsck/message.c:166
Theodore Ts'of722c132009-04-21 22:09:01 -0400421msgid "<Reserved inode 9>"
422msgstr "<保留的 inode 9>"
423
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400424#: e2fsck/message.c:167
Theodore Ts'of722c132009-04-21 22:09:01 -0400425msgid "<Reserved inode 10>"
426msgstr "<保留的 inode 10>"
427
Theodore Ts'o899425b2018-02-27 22:25:04 -0500428#: e2fsck/message.c:327
Theodore Ts'of722c132009-04-21 22:09:01 -0400429msgid "regular file"
430msgstr "一般文件"
431
Theodore Ts'o899425b2018-02-27 22:25:04 -0500432#: e2fsck/message.c:329
Theodore Ts'of722c132009-04-21 22:09:01 -0400433msgid "directory"
434msgstr "文件夹"
435
Theodore Ts'o899425b2018-02-27 22:25:04 -0500436#: e2fsck/message.c:331
Theodore Ts'of722c132009-04-21 22:09:01 -0400437msgid "character device"
438msgstr "字符设备"
439
Theodore Ts'o899425b2018-02-27 22:25:04 -0500440#: e2fsck/message.c:333
Theodore Ts'of722c132009-04-21 22:09:01 -0400441msgid "block device"
442msgstr "块设备"
443
Theodore Ts'o899425b2018-02-27 22:25:04 -0500444#: e2fsck/message.c:335
Theodore Ts'of722c132009-04-21 22:09:01 -0400445msgid "named pipe"
446msgstr "命名管道"
447
Theodore Ts'o899425b2018-02-27 22:25:04 -0500448#: e2fsck/message.c:337
Theodore Ts'of722c132009-04-21 22:09:01 -0400449msgid "symbolic link"
450msgstr "符号链接"
451
Theodore Ts'o899425b2018-02-27 22:25:04 -0500452#: e2fsck/message.c:339 misc/uuidd.c:162
Theodore Ts'of722c132009-04-21 22:09:01 -0400453msgid "socket"
454msgstr "套接字"
455
Theodore Ts'o899425b2018-02-27 22:25:04 -0500456#: e2fsck/message.c:341
Dark Raven3be22a82010-04-19 16:59:03 -0400457#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400458msgid "unknown file type with mode 0%o"
459msgstr "模式为 0%o 的未知文件类型"
460
Theodore Ts'o899425b2018-02-27 22:25:04 -0500461#: e2fsck/message.c:412
Dark Raven3be22a82010-04-19 16:59:03 -0400462msgid "indirect block"
Tianze Wang57d69272016-08-31 23:14:17 -0400463msgstr "链接块"
Dark Raven3be22a82010-04-19 16:59:03 -0400464
Theodore Ts'o899425b2018-02-27 22:25:04 -0500465#: e2fsck/message.c:414
Dark Raven3be22a82010-04-19 16:59:03 -0400466msgid "double indirect block"
Tianze Wang57d69272016-08-31 23:14:17 -0400467msgstr "二次链接块"
Dark Raven3be22a82010-04-19 16:59:03 -0400468
Theodore Ts'o899425b2018-02-27 22:25:04 -0500469#: e2fsck/message.c:416
Dark Raven3be22a82010-04-19 16:59:03 -0400470msgid "triple indirect block"
Tianze Wang57d69272016-08-31 23:14:17 -0400471msgstr "三次链接块"
Dark Raven3be22a82010-04-19 16:59:03 -0400472
Theodore Ts'o899425b2018-02-27 22:25:04 -0500473#: e2fsck/message.c:418
Dark Raven3be22a82010-04-19 16:59:03 -0400474msgid "translator block"
Tianze Wang57d69272016-08-31 23:14:17 -0400475msgstr "翻译块"
Dark Raven3be22a82010-04-19 16:59:03 -0400476
Theodore Ts'o899425b2018-02-27 22:25:04 -0500477#: e2fsck/message.c:420
Dark Raven3be22a82010-04-19 16:59:03 -0400478msgid "block #"
479msgstr "块 #"
480
Theodore Ts'o899425b2018-02-27 22:25:04 -0500481#: e2fsck/message.c:482
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400482msgid "user"
483msgstr ""
484
Theodore Ts'o899425b2018-02-27 22:25:04 -0500485#: e2fsck/message.c:485
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400486#, fuzzy
487msgid "group"
488msgstr "g组"
489
Theodore Ts'o899425b2018-02-27 22:25:04 -0500490#: e2fsck/message.c:488
Theodore Ts'o21725192017-08-23 19:46:04 -0400491msgid "project"
492msgstr ""
493
Theodore Ts'o899425b2018-02-27 22:25:04 -0500494#: e2fsck/message.c:491
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -0400495#, fuzzy
496msgid "unknown quota type"
497msgstr "未知操作系统 - %s"
498
Eric Sandeen032eafe2012-07-28 17:48:36 -0400499#: e2fsck/pass1b.c:222
Theodore Ts'of722c132009-04-21 22:09:01 -0400500msgid "multiply claimed inode map"
Tianze Wang57d69272016-08-31 23:14:17 -0400501msgstr "重叠块映射"
Theodore Ts'of722c132009-04-21 22:09:01 -0400502
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400503#: e2fsck/pass1b.c:672 e2fsck/pass1b.c:826
Tianze Wang57d69272016-08-31 23:14:17 -0400504#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -0400505msgid "internal error: can't find dup_blk for %llu\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400506msgstr "内部错误:无法找到 %llu 的dup_blk信息\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400507
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400508#: e2fsck/pass1b.c:952
Theodore Ts'of722c132009-04-21 22:09:01 -0400509msgid "returned from clone_file_block"
Tianze Wang57d69272016-08-31 23:14:17 -0400510msgstr "从clone_file_block返回"
Theodore Ts'of722c132009-04-21 22:09:01 -0400511
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400512#: e2fsck/pass1b.c:976
Tianze Wang57d69272016-08-31 23:14:17 -0400513#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -0400514msgid "internal error: couldn't lookup EA block record for %llu"
Tianze Wang57d69272016-08-31 23:14:17 -0400515msgstr "内部错误:无法查找 %llu 的EA块记录"
Theodore Ts'of722c132009-04-21 22:09:01 -0400516
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400517#: e2fsck/pass1b.c:988
Theodore Ts'of722c132009-04-21 22:09:01 -0400518#, c-format
519msgid "internal error: couldn't lookup EA inode record for %u"
Tianze Wang57d69272016-08-31 23:14:17 -0400520msgstr "内部错误:无法查找 %u 的EA inode块记录"
Theodore Ts'of722c132009-04-21 22:09:01 -0400521
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500522#: e2fsck/pass1.c:356
Theodore Ts'o899425b2018-02-27 22:25:04 -0500523#, c-format
524msgid "while hashing entry with e_value_inum = %u"
525msgstr ""
526
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400527#: e2fsck/pass1.c:774 e2fsck/pass2.c:1005
Theodore Ts'of722c132009-04-21 22:09:01 -0400528msgid "reading directory block"
529msgstr "正在读取目录块"
530
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400531#: e2fsck/pass1.c:1223
Theodore Ts'of722c132009-04-21 22:09:01 -0400532msgid "in-use inode map"
533msgstr "使用中的inode映射"
534
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400535#: e2fsck/pass1.c:1234
Theodore Ts'of722c132009-04-21 22:09:01 -0400536msgid "directory inode map"
537msgstr "目录inode映射"
538
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400539#: e2fsck/pass1.c:1244
Theodore Ts'of722c132009-04-21 22:09:01 -0400540msgid "regular file inode map"
541msgstr "普通文件inode映射"
542
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400543#: e2fsck/pass1.c:1253 misc/e2image.c:1272
Theodore Ts'of722c132009-04-21 22:09:01 -0400544msgid "in-use block map"
545msgstr "使用中的块映射"
546
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400547#: e2fsck/pass1.c:1262
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400548msgid "metadata block map"
Tianze Wang57d69272016-08-31 23:14:17 -0400549msgstr "元数据块映射"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400550
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400551#: e2fsck/pass1.c:1324
Theodore Ts'of722c132009-04-21 22:09:01 -0400552msgid "opening inode scan"
Tianze Wang57d69272016-08-31 23:14:17 -0400553msgstr "开始 inode 扫描"
Theodore Ts'of722c132009-04-21 22:09:01 -0400554
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400555#: e2fsck/pass1.c:1362
Theodore Ts'of722c132009-04-21 22:09:01 -0400556msgid "getting next inode from scan"
Tianze Wang57d69272016-08-31 23:14:17 -0400557msgstr "从扫描进度中获取下一个 inode"
Theodore Ts'of722c132009-04-21 22:09:01 -0400558
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500559#: e2fsck/pass1.c:2066
Theodore Ts'of722c132009-04-21 22:09:01 -0400560msgid "Pass 1"
Tianze Wang57d69272016-08-31 23:14:17 -0400561msgstr "第 1 步"
Theodore Ts'of722c132009-04-21 22:09:01 -0400562
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500563#: e2fsck/pass1.c:2127
Dark Raven3be22a82010-04-19 16:59:03 -0400564#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -0400565msgid "reading indirect blocks of inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -0400566msgstr "读取inode为 %u 的链接块时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400567
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500568#: e2fsck/pass1.c:2178
Theodore Ts'of722c132009-04-21 22:09:01 -0400569msgid "bad inode map"
Tianze Wang57d69272016-08-31 23:14:17 -0400570msgstr "坏块映射"
Theodore Ts'of722c132009-04-21 22:09:01 -0400571
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500572#: e2fsck/pass1.c:2218
Theodore Ts'of722c132009-04-21 22:09:01 -0400573msgid "inode in bad block map"
Tianze Wang57d69272016-08-31 23:14:17 -0400574msgstr "更新坏块映射时"
Theodore Ts'of722c132009-04-21 22:09:01 -0400575
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500576#: e2fsck/pass1.c:2238
Theodore Ts'of722c132009-04-21 22:09:01 -0400577msgid "imagic inode map"
Tianze Wang57d69272016-08-31 23:14:17 -0400578msgstr "inode的imagic映射"
Theodore Ts'of722c132009-04-21 22:09:01 -0400579
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400580#: e2fsck/pass1.c:2269
Theodore Ts'of722c132009-04-21 22:09:01 -0400581msgid "multiply claimed block map"
Tianze Wang57d69272016-08-31 23:14:17 -0400582msgstr "重叠块映射"
Theodore Ts'of722c132009-04-21 22:09:01 -0400583
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400584#: e2fsck/pass1.c:2394
Theodore Ts'of722c132009-04-21 22:09:01 -0400585msgid "ext attr block map"
Tianze Wang57d69272016-08-31 23:14:17 -0400586msgstr "扩展属性块映射"
Theodore Ts'of722c132009-04-21 22:09:01 -0400587
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500588#: e2fsck/pass1.c:3637
Theodore Ts'of722c132009-04-21 22:09:01 -0400589#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -0400590msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400591msgstr "%6lu(%c):应为 %6lu 但实际为 %6lu (块 %lld)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400592
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500593#: e2fsck/pass1.c:4054
Theodore Ts'of722c132009-04-21 22:09:01 -0400594msgid "block bitmap"
595msgstr "块位图"
596
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500597#: e2fsck/pass1.c:4060
Theodore Ts'of722c132009-04-21 22:09:01 -0400598msgid "inode bitmap"
599msgstr "inode 位图"
600
Theodore Ts'oc8c41d42018-03-04 16:30:46 -0500601#: e2fsck/pass1.c:4066
Theodore Ts'of722c132009-04-21 22:09:01 -0400602msgid "inode table"
603msgstr "inode表"
604
Theodore Ts'o899425b2018-02-27 22:25:04 -0500605#: e2fsck/pass2.c:307
Theodore Ts'of722c132009-04-21 22:09:01 -0400606msgid "Pass 2"
Tianze Wang57d69272016-08-31 23:14:17 -0400607msgstr "第 2 步"
Theodore Ts'of722c132009-04-21 22:09:01 -0400608
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400609#: e2fsck/pass2.c:1077 e2fsck/pass2.c:1244
Theodore Ts'of722c132009-04-21 22:09:01 -0400610msgid "Can not continue."
Tianze Wang57d69272016-08-31 23:14:17 -0400611msgstr "无法继续。"
Theodore Ts'of722c132009-04-21 22:09:01 -0400612
Eric Sandeen032eafe2012-07-28 17:48:36 -0400613#: e2fsck/pass3.c:77
Theodore Ts'of722c132009-04-21 22:09:01 -0400614msgid "inode done bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -0400615msgstr "已完成的inode位图"
Theodore Ts'of722c132009-04-21 22:09:01 -0400616
Eric Sandeen032eafe2012-07-28 17:48:36 -0400617#: e2fsck/pass3.c:86
Theodore Ts'of722c132009-04-21 22:09:01 -0400618msgid "Peak memory"
Dark Raven3be22a82010-04-19 16:59:03 -0400619msgstr "内存峰值"
Theodore Ts'of722c132009-04-21 22:09:01 -0400620
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400621#: e2fsck/pass3.c:149
Theodore Ts'of722c132009-04-21 22:09:01 -0400622msgid "Pass 3"
Tianze Wang57d69272016-08-31 23:14:17 -0400623msgstr "第 3 步"
Theodore Ts'of722c132009-04-21 22:09:01 -0400624
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400625#: e2fsck/pass3.c:344
Theodore Ts'of722c132009-04-21 22:09:01 -0400626msgid "inode loop detection bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -0400627msgstr "循环inode检测位图"
Theodore Ts'of722c132009-04-21 22:09:01 -0400628
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400629#: e2fsck/pass4.c:277
Theodore Ts'of722c132009-04-21 22:09:01 -0400630msgid "Pass 4"
Tianze Wang57d69272016-08-31 23:14:17 -0400631msgstr "第 4 步"
Theodore Ts'of722c132009-04-21 22:09:01 -0400632
Theodore Ts'o899425b2018-02-27 22:25:04 -0500633#: e2fsck/pass5.c:79
Theodore Ts'of722c132009-04-21 22:09:01 -0400634msgid "Pass 5"
Tianze Wang57d69272016-08-31 23:14:17 -0400635msgstr "第 5 步"
Theodore Ts'of722c132009-04-21 22:09:01 -0400636
Theodore Ts'o899425b2018-02-27 22:25:04 -0500637#: e2fsck/pass5.c:102
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400638msgid "check_inode_bitmap_checksum: Memory allocation error"
Tianze Wang57d69272016-08-31 23:14:17 -0400639msgstr "check_inode_bitmap_checksum:内存分配出错"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400640
Theodore Ts'o899425b2018-02-27 22:25:04 -0500641#: e2fsck/pass5.c:156
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400642msgid "check_block_bitmap_checksum: Memory allocation error"
Tianze Wang57d69272016-08-31 23:14:17 -0400643msgstr "check_block_bitmap_checksum:内存分配出错"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -0400644
Eric Sandeen032eafe2012-07-28 17:48:36 -0400645#: e2fsck/problem.c:51
Theodore Ts'of722c132009-04-21 22:09:01 -0400646msgid "(no prompt)"
Tianze Wang57d69272016-08-31 23:14:17 -0400647msgstr "(没有提示)"
Theodore Ts'of722c132009-04-21 22:09:01 -0400648
Eric Sandeen032eafe2012-07-28 17:48:36 -0400649#: e2fsck/problem.c:52
Theodore Ts'of722c132009-04-21 22:09:01 -0400650msgid "Fix"
651msgstr "处理"
652
Eric Sandeen032eafe2012-07-28 17:48:36 -0400653#: e2fsck/problem.c:53
Theodore Ts'of722c132009-04-21 22:09:01 -0400654msgid "Clear"
655msgstr "清除"
656
Eric Sandeen032eafe2012-07-28 17:48:36 -0400657#: e2fsck/problem.c:54
Theodore Ts'of722c132009-04-21 22:09:01 -0400658msgid "Relocate"
659msgstr "重定位"
660
Eric Sandeen032eafe2012-07-28 17:48:36 -0400661#: e2fsck/problem.c:55
Theodore Ts'of722c132009-04-21 22:09:01 -0400662msgid "Allocate"
663msgstr "分配"
664
Eric Sandeen032eafe2012-07-28 17:48:36 -0400665#: e2fsck/problem.c:56
Theodore Ts'of722c132009-04-21 22:09:01 -0400666msgid "Expand"
667msgstr "扩充"
668
Eric Sandeen032eafe2012-07-28 17:48:36 -0400669#: e2fsck/problem.c:57
Theodore Ts'of722c132009-04-21 22:09:01 -0400670msgid "Connect to /lost+found"
671msgstr "连接到 /lost+found"
672
Eric Sandeen032eafe2012-07-28 17:48:36 -0400673#: e2fsck/problem.c:58
Theodore Ts'of722c132009-04-21 22:09:01 -0400674msgid "Create"
675msgstr "创建"
676
Eric Sandeen032eafe2012-07-28 17:48:36 -0400677#: e2fsck/problem.c:59
Theodore Ts'of722c132009-04-21 22:09:01 -0400678msgid "Salvage"
679msgstr "修复"
680
Eric Sandeen032eafe2012-07-28 17:48:36 -0400681#: e2fsck/problem.c:60
Theodore Ts'of722c132009-04-21 22:09:01 -0400682msgid "Truncate"
683msgstr "截断"
684
Eric Sandeen032eafe2012-07-28 17:48:36 -0400685#: e2fsck/problem.c:61
Theodore Ts'of722c132009-04-21 22:09:01 -0400686msgid "Clear inode"
Tianze Wang57d69272016-08-31 23:14:17 -0400687msgstr "清除inode"
Theodore Ts'of722c132009-04-21 22:09:01 -0400688
Eric Sandeen032eafe2012-07-28 17:48:36 -0400689#: e2fsck/problem.c:62
Theodore Ts'of722c132009-04-21 22:09:01 -0400690msgid "Abort"
691msgstr "中断"
692
Eric Sandeen032eafe2012-07-28 17:48:36 -0400693#: e2fsck/problem.c:63
Theodore Ts'of722c132009-04-21 22:09:01 -0400694msgid "Split"
Tianze Wang57d69272016-08-31 23:14:17 -0400695msgstr "分割"
Theodore Ts'of722c132009-04-21 22:09:01 -0400696
Eric Sandeen032eafe2012-07-28 17:48:36 -0400697#: e2fsck/problem.c:64
Theodore Ts'of722c132009-04-21 22:09:01 -0400698msgid "Continue"
699msgstr "继续"
700
Eric Sandeen032eafe2012-07-28 17:48:36 -0400701#: e2fsck/problem.c:65
Theodore Ts'of722c132009-04-21 22:09:01 -0400702msgid "Clone multiply-claimed blocks"
Tianze Wang57d69272016-08-31 23:14:17 -0400703msgstr "克隆重叠块"
Theodore Ts'of722c132009-04-21 22:09:01 -0400704
Eric Sandeen032eafe2012-07-28 17:48:36 -0400705#: e2fsck/problem.c:66
Theodore Ts'of722c132009-04-21 22:09:01 -0400706msgid "Delete file"
707msgstr "删除文件"
708
Eric Sandeen032eafe2012-07-28 17:48:36 -0400709#: e2fsck/problem.c:67
Theodore Ts'of722c132009-04-21 22:09:01 -0400710msgid "Suppress messages"
711msgstr "不显示消息"
712
Eric Sandeen032eafe2012-07-28 17:48:36 -0400713#: e2fsck/problem.c:68
Theodore Ts'of722c132009-04-21 22:09:01 -0400714msgid "Unlink"
715msgstr "解除链接"
716
Eric Sandeen032eafe2012-07-28 17:48:36 -0400717#: e2fsck/problem.c:69
Theodore Ts'of722c132009-04-21 22:09:01 -0400718msgid "Clear HTree index"
Tianze Wang57d69272016-08-31 23:14:17 -0400719msgstr "清除HTree索引"
Theodore Ts'of722c132009-04-21 22:09:01 -0400720
Eric Sandeen032eafe2012-07-28 17:48:36 -0400721#: e2fsck/problem.c:70
Theodore Ts'of722c132009-04-21 22:09:01 -0400722msgid "Recreate"
723msgstr "重建"
724
Eric Sandeen032eafe2012-07-28 17:48:36 -0400725#: e2fsck/problem.c:79
Theodore Ts'of722c132009-04-21 22:09:01 -0400726msgid "(NONE)"
Tianze Wang57d69272016-08-31 23:14:17 -0400727msgstr "(空)"
Theodore Ts'of722c132009-04-21 22:09:01 -0400728
Eric Sandeen032eafe2012-07-28 17:48:36 -0400729#: e2fsck/problem.c:80
Theodore Ts'of722c132009-04-21 22:09:01 -0400730msgid "FIXED"
731msgstr "已处理"
732
Eric Sandeen032eafe2012-07-28 17:48:36 -0400733#: e2fsck/problem.c:81
Theodore Ts'of722c132009-04-21 22:09:01 -0400734msgid "CLEARED"
735msgstr "已清除"
736
Eric Sandeen032eafe2012-07-28 17:48:36 -0400737#: e2fsck/problem.c:82
Theodore Ts'of722c132009-04-21 22:09:01 -0400738msgid "RELOCATED"
739msgstr "已重定位"
740
Eric Sandeen032eafe2012-07-28 17:48:36 -0400741#: e2fsck/problem.c:83
Theodore Ts'of722c132009-04-21 22:09:01 -0400742msgid "ALLOCATED"
743msgstr "已分配"
744
Eric Sandeen032eafe2012-07-28 17:48:36 -0400745#: e2fsck/problem.c:84
Theodore Ts'of722c132009-04-21 22:09:01 -0400746msgid "EXPANDED"
747msgstr "已扩充"
748
Eric Sandeen032eafe2012-07-28 17:48:36 -0400749#: e2fsck/problem.c:85
Theodore Ts'of722c132009-04-21 22:09:01 -0400750msgid "RECONNECTED"
751msgstr "已重新连接"
752
Eric Sandeen032eafe2012-07-28 17:48:36 -0400753#: e2fsck/problem.c:86
Theodore Ts'of722c132009-04-21 22:09:01 -0400754msgid "CREATED"
755msgstr "已创建"
756
Eric Sandeen032eafe2012-07-28 17:48:36 -0400757#: e2fsck/problem.c:87
Theodore Ts'of722c132009-04-21 22:09:01 -0400758msgid "SALVAGED"
759msgstr "已修复"
760
Eric Sandeen032eafe2012-07-28 17:48:36 -0400761#: e2fsck/problem.c:88
Theodore Ts'of722c132009-04-21 22:09:01 -0400762msgid "TRUNCATED"
Tianze Wang57d69272016-08-31 23:14:17 -0400763msgstr "截断"
Theodore Ts'of722c132009-04-21 22:09:01 -0400764
Eric Sandeen032eafe2012-07-28 17:48:36 -0400765#: e2fsck/problem.c:89
Theodore Ts'of722c132009-04-21 22:09:01 -0400766msgid "INODE CLEARED"
767msgstr "INODE 已清除"
768
Eric Sandeen032eafe2012-07-28 17:48:36 -0400769#: e2fsck/problem.c:90
Theodore Ts'of722c132009-04-21 22:09:01 -0400770msgid "ABORTED"
771msgstr "已中断"
772
Eric Sandeen032eafe2012-07-28 17:48:36 -0400773#: e2fsck/problem.c:91
Theodore Ts'of722c132009-04-21 22:09:01 -0400774msgid "SPLIT"
Tianze Wang57d69272016-08-31 23:14:17 -0400775msgstr "分割"
Theodore Ts'of722c132009-04-21 22:09:01 -0400776
Eric Sandeen032eafe2012-07-28 17:48:36 -0400777#: e2fsck/problem.c:92
Theodore Ts'of722c132009-04-21 22:09:01 -0400778msgid "CONTINUING"
779msgstr "继续"
780
Eric Sandeen032eafe2012-07-28 17:48:36 -0400781#: e2fsck/problem.c:93
Theodore Ts'of722c132009-04-21 22:09:01 -0400782msgid "MULTIPLY-CLAIMED BLOCKS CLONED"
Tianze Wang57d69272016-08-31 23:14:17 -0400783msgstr "重叠块已克隆"
Theodore Ts'of722c132009-04-21 22:09:01 -0400784
Eric Sandeen032eafe2012-07-28 17:48:36 -0400785#: e2fsck/problem.c:94
Theodore Ts'of722c132009-04-21 22:09:01 -0400786msgid "FILE DELETED"
787msgstr "文件已删除"
788
Eric Sandeen032eafe2012-07-28 17:48:36 -0400789#: e2fsck/problem.c:95
Theodore Ts'of722c132009-04-21 22:09:01 -0400790msgid "SUPPRESSED"
791msgstr "禁止"
792
Eric Sandeen032eafe2012-07-28 17:48:36 -0400793#: e2fsck/problem.c:96
Theodore Ts'of722c132009-04-21 22:09:01 -0400794msgid "UNLINKED"
Tianze Wang57d69272016-08-31 23:14:17 -0400795msgstr "已解除链接"
Theodore Ts'of722c132009-04-21 22:09:01 -0400796
Eric Sandeen032eafe2012-07-28 17:48:36 -0400797#: e2fsck/problem.c:97
Theodore Ts'of722c132009-04-21 22:09:01 -0400798msgid "HTREE INDEX CLEARED"
Tianze Wang57d69272016-08-31 23:14:17 -0400799msgstr "HTree索引已清除"
Theodore Ts'of722c132009-04-21 22:09:01 -0400800
Eric Sandeen032eafe2012-07-28 17:48:36 -0400801#: e2fsck/problem.c:98
Theodore Ts'of722c132009-04-21 22:09:01 -0400802msgid "WILL RECREATE"
803msgstr "将会重建"
804
805#. @-expanded: block bitmap for group %g is not in group. (block %b)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400806#: e2fsck/problem.c:112
Theodore Ts'of722c132009-04-21 22:09:01 -0400807msgid "@b @B for @g %g is not in @g. (@b %b)\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400808msgstr "@g %g 的@b@B并不在 @g 中。(@b %b)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400809
810#. @-expanded: inode bitmap for group %g is not in group. (block %b)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400811#: e2fsck/problem.c:116
Theodore Ts'of722c132009-04-21 22:09:01 -0400812msgid "@i @B for @g %g is not in @g. (@b %b)\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400813msgstr "@g %g 的@i@B 并不在 @g 中。(@b %b)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400814
815#. @-expanded: inode table for group %g is not in group. (block %b)\n
816#. @-expanded: WARNING: SEVERE DATA LOSS POSSIBLE.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400817#: e2fsck/problem.c:121
Theodore Ts'of722c132009-04-21 22:09:01 -0400818msgid ""
819"@i table for @g %g is not in @g. (@b %b)\n"
820"WARNING: SEVERE DATA LOSS POSSIBLE.\n"
821msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -0400822"@g %g 的@i表并不在 @g 中。(@b %b)\n"
823"警告:这可能导致严重的数据丢失。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400824
825#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400826#. @-expanded: The superblock could not be read or does not describe a valid ext2/ext3/ext4\n
827#. @-expanded: filesystem. If the device is valid and it really contains an ext2/ext3/ext4\n
Theodore Ts'of722c132009-04-21 22:09:01 -0400828#. @-expanded: filesystem (and not swap or ufs or something else), then the superblock\n
829#. @-expanded: is corrupt, and you might try running e2fsck with an alternate superblock:\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400830#. @-expanded: e2fsck -b 8193 <device>\n
831#. @-expanded: or\n
832#. @-expanded: e2fsck -b 32768 <device>\n
Theodore Ts'of722c132009-04-21 22:09:01 -0400833#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400834#: e2fsck/problem.c:127
Theodore Ts'of722c132009-04-21 22:09:01 -0400835msgid ""
836"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400837"The @S could not be read or does not describe a valid ext2/ext3/ext4\n"
838"@f. If the @v is valid and it really contains an ext2/ext3/ext4\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400839"@f (and not swap or ufs or something else), then the @S\n"
840"is corrupt, and you might try running e2fsck with an alternate @S:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400841" e2fsck -b 8193 <@v>\n"
842" or\n"
843" e2fsck -b 32768 <@v>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400844"\n"
845msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -0400846"\n"
847"@S无法被读取,或它未能正确地描述一个有效的ext2/ext3/ext4@f。\n"
848"如果@v有效并确实为ext2/ext3/ext4@f (而非swap或ufs等格式),\n"
849"这说明@S已经损坏,你可能需要指定备选@S来运行e2fsck:\n"
850" e2fsck -b 8193 <@v>\n"
851" 或\n"
852" e2fsck -b 32768 <@v>\n"
853"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400854
855#. @-expanded: The filesystem size (according to the superblock) is %b blocks\n
856#. @-expanded: The physical size of the device is %c blocks\n
857#. @-expanded: Either the superblock or the partition table is likely to be corrupt!\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400858#: e2fsck/problem.c:138
Theodore Ts'of722c132009-04-21 22:09:01 -0400859msgid ""
860"The @f size (according to the @S) is %b @bs\n"
861"The physical size of the @v is %c @bs\n"
862"Either the @S or the partition table is likely to be corrupt!\n"
863msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -0400864"根据@S,@f的大小应为 %b @bs\n"
865"但@v的实际大小是 %c @bs\n"
866"@S或分区表可能已经损坏!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400867
868#. @-expanded: superblock block_size = %b, fragsize = %c.\n
869#. @-expanded: This version of e2fsck does not support fragment sizes different\n
870#. @-expanded: from the block size.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400871#: e2fsck/problem.c:145
Theodore Ts'of722c132009-04-21 22:09:01 -0400872msgid ""
873"@S @b_size = %b, fragsize = %c.\n"
874"This version of e2fsck does not support fragment sizes different\n"
875"from the @b size.\n"
876msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -0400877"@S@b大小 = %b,碎片大小 = %c。\n"
878"此版本的e2fsck不允许碎片大小与\n"
879"@b大小不同。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400880
881#. @-expanded: superblock blocks_per_group = %b, should have been %c\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400882#: e2fsck/problem.c:152
Theodore Ts'of722c132009-04-21 22:09:01 -0400883msgid "@S @bs_per_group = %b, should have been %c\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400884msgstr "每组的@S@b数 = %b,应当为 %c。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400885
886#. @-expanded: superblock first_data_block = %b, should have been %c\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400887#: e2fsck/problem.c:157
Theodore Ts'of722c132009-04-21 22:09:01 -0400888msgid "@S first_data_@b = %b, should have been %c\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400889msgstr "@S的第一个数据块 = %b,应当为 %c\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400890
891#. @-expanded: filesystem did not have a UUID; generating one.\n
892#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400893#: e2fsck/problem.c:162
Theodore Ts'of722c132009-04-21 22:09:01 -0400894msgid ""
895"@f did not have a UUID; generating one.\n"
896"\n"
897msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -0400898"@f没有UUID;正在创建新的UUID。\n"
Dark Ravenc4755342011-01-26 18:54:25 -0500899"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400900
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400901#: e2fsck/problem.c:167
Theodore Ts'of722c132009-04-21 22:09:01 -0400902#, c-format
903msgid ""
904"Note: if several inode or block bitmap blocks or part\n"
905"of the inode table require relocation, you may wish to try\n"
906"running e2fsck with the '-b %S' option first. The problem\n"
907"may lie only with the primary block group descriptors, and\n"
908"the backup block group descriptors may be OK.\n"
909"\n"
910msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -0400911"注意:如果有数个inode、块位图或inode表\n"
912"需要重定位,你可以用“-b %S”选项运行\n"
913"e2fsck。如果问题出在组描述符的主块,\n"
914"那么可以尝试它们的备份块。\n"
915"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400916
917#. @-expanded: Corruption found in superblock. (%s = %N).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400918#: e2fsck/problem.c:176
Theodore Ts'of722c132009-04-21 22:09:01 -0400919msgid "Corruption found in @S. (%s = %N).\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400920msgstr "在@S中发现错误。(%s = %N)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400921
922#. @-expanded: Error determining size of the physical device: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400923#: e2fsck/problem.c:181
Theodore Ts'of722c132009-04-21 22:09:01 -0400924#, c-format
925msgid "Error determining size of the physical @v: %m\n"
926msgstr "决定物理@v的大小出错 %m\n"
927
928#. @-expanded: inode count in superblock is %i, should be %j.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400929#: e2fsck/problem.c:186
Theodore Ts'of722c132009-04-21 22:09:01 -0400930msgid "@i count in @S is %i, @s %j.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400931msgstr "@S中的@i个数为 %i,@s %j。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400932
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400933#: e2fsck/problem.c:190
Theodore Ts'of722c132009-04-21 22:09:01 -0400934msgid "The Hurd does not support the filetype feature.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400935msgstr "Hurd内核不支持文件类型\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400936
Theodore Ts'o930e2812009-06-29 15:08:12 -0400937#. @-expanded: superblock has an invalid journal (inode %i).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400938#: e2fsck/problem.c:195
Dark Raven3be22a82010-04-19 16:59:03 -0400939#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -0400940msgid "@S has an @n @j (@i %i).\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400941msgstr "@S含有一个@n@j(@i %i)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400942
943#. @-expanded: External journal has multiple filesystem users (unsupported).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400944#: e2fsck/problem.c:200
Theodore Ts'of722c132009-04-21 22:09:01 -0400945msgid "External @j has multiple @f users (unsupported).\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400946msgstr "外部@j含有多个@f用户(不支持此特性)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400947
948#. @-expanded: Can't find external journal\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400949#: e2fsck/problem.c:205
Theodore Ts'of722c132009-04-21 22:09:01 -0400950msgid "Can't find external @j\n"
951msgstr "无法找到外部@j\n"
952
953#. @-expanded: External journal has bad superblock\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400954#: e2fsck/problem.c:210
Theodore Ts'of722c132009-04-21 22:09:01 -0400955msgid "External @j has bad @S\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400956msgstr "外部@j有坏@S\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400957
958#. @-expanded: External journal does not support this filesystem\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400959#: e2fsck/problem.c:215
Theodore Ts'of722c132009-04-21 22:09:01 -0400960msgid "External @j does not support this @f\n"
Dark Ravenc4755342011-01-26 18:54:25 -0500961msgstr "外部@j不支持此@f\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400962
Theodore Ts'o930e2812009-06-29 15:08:12 -0400963#. @-expanded: filesystem journal superblock is unknown type %N (unsupported).\n
Theodore Ts'of722c132009-04-21 22:09:01 -0400964#. @-expanded: It is likely that your copy of e2fsck is old and/or doesn't support this journal
965#. @-expanded: format.\n
966#. @-expanded: It is also possible the journal superblock is corrupt.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400967#: e2fsck/problem.c:220
Theodore Ts'of722c132009-04-21 22:09:01 -0400968msgid ""
Theodore Ts'o930e2812009-06-29 15:08:12 -0400969"@f @j @S is unknown type %N (unsupported).\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -0500970"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
971"format.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400972"It is also possible the @j @S is corrupt.\n"
973msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -0400974"@f@j@S为未知类型 %N(不支持此特性)。\n"
975"可能你的e2fsck版本太低,不支持这种@j的格式。\n"
976"也有可能@j@S已经损坏。\n"
977"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400978
Theodore Ts'o930e2812009-06-29 15:08:12 -0400979#. @-expanded: journal superblock is corrupt.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400980#: e2fsck/problem.c:228
Theodore Ts'o930e2812009-06-29 15:08:12 -0400981msgid "@j @S is corrupt.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400982msgstr "@j@S被损坏。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400983
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400984#. @-expanded: superblock has_journal flag is clear, but a journal is present.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400985#: e2fsck/problem.c:233
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400986msgid "@S has_@j flag is clear, but a @j is present.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400987msgstr "@S不具有has_journal标志,但发现了@j。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400988
Theodore Ts'o930e2812009-06-29 15:08:12 -0400989#. @-expanded: superblock needs_recovery flag is set, but no journal is present.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400990#: e2fsck/problem.c:238
Theodore Ts'o930e2812009-06-29 15:08:12 -0400991msgid "@S needs_recovery flag is set, but no @j is present.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400992msgstr "@S被设置了needs_recovery标志,但找不到相应的@j。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400993
Theodore Ts'o930e2812009-06-29 15:08:12 -0400994#. @-expanded: superblock needs_recovery flag is clear, but journal has data.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -0400995#: e2fsck/problem.c:243
Theodore Ts'o930e2812009-06-29 15:08:12 -0400996msgid "@S needs_recovery flag is clear, but @j has data.\n"
Tianze Wang57d69272016-08-31 23:14:17 -0400997msgstr "@S不具有的恢复标志,然而在@j中找到了恢复数据。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -0400998
999#. @-expanded: Clear journal
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001000#: e2fsck/problem.c:248
Theodore Ts'of722c132009-04-21 22:09:01 -04001001msgid "Clear @j"
1002msgstr "清除@j"
1003
Theodore Ts'o930e2812009-06-29 15:08:12 -04001004#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001005#: e2fsck/problem.c:253 e2fsck/problem.c:764
Theodore Ts'o930e2812009-06-29 15:08:12 -04001006msgid "@f has feature flag(s) set, but is a revision 0 @f. "
Tianze Wang57d69272016-08-31 23:14:17 -04001007msgstr "@f被设置了特性标志,但特性版本号为0。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001008
1009#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001010#: e2fsck/problem.c:258
Theodore Ts'of722c132009-04-21 22:09:01 -04001011msgid "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001012msgstr "@s@o@i %i(uid=%lu,gid=%lg,mode=%lm,size=%ls)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001013
Dark Raven3be22a82010-04-19 16:59:03 -04001014#. @-expanded: illegal %B (%b) found in orphaned inode %i.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001015#: e2fsck/problem.c:263
Dark Raven3be22a82010-04-19 16:59:03 -04001016msgid "@I %B (%b) found in @o @i %i.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001017msgstr "@o@i %i 中发现 @I %B(%b)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001018
Dark Raven3be22a82010-04-19 16:59:03 -04001019#. @-expanded: Already cleared %B (%b) found in orphaned inode %i.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001020#: e2fsck/problem.c:268
Dark Raven3be22a82010-04-19 16:59:03 -04001021msgid "Already cleared %B (%b) found in @o @i %i.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001022msgstr "@o@i %i 中发现已清除的 %B(%b)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001023
1024#. @-expanded: illegal orphaned inode %i in superblock.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001025#: e2fsck/problem.c:273
Theodore Ts'of722c132009-04-21 22:09:01 -04001026#, c-format
1027msgid "@I @o @i %i in @S.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001028msgstr "@S中有@I@o@i %i。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001029
1030#. @-expanded: illegal inode %i in orphaned inode list.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001031#: e2fsck/problem.c:278
Theodore Ts'of722c132009-04-21 22:09:01 -04001032#, c-format
1033msgid "@I @i %i in @o @i list.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001034msgstr "@o@i中发现@I@i %i。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001035
Theodore Ts'o930e2812009-06-29 15:08:12 -04001036#. @-expanded: journal superblock has an unknown read-only feature flag set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001037#: e2fsck/problem.c:283
Theodore Ts'o930e2812009-06-29 15:08:12 -04001038msgid "@j @S has an unknown read-only feature flag set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001039msgstr "@j@S被设置了未知的只读属性标签。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001040
Theodore Ts'o930e2812009-06-29 15:08:12 -04001041#. @-expanded: journal superblock has an unknown incompatible feature flag set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001042#: e2fsck/problem.c:288
Theodore Ts'o930e2812009-06-29 15:08:12 -04001043msgid "@j @S has an unknown incompatible feature flag set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001044msgstr "@j@S被设置了未知的不兼容属性标签。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001045
1046#. @-expanded: journal version not supported by this e2fsck.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001047#: e2fsck/problem.c:293
Theodore Ts'of722c132009-04-21 22:09:01 -04001048msgid "@j version not supported by this e2fsck.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001049msgstr "e2fsck不支持此@j版本。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001050
1051#. @-expanded: Moving journal from /%s to hidden inode.\n
1052#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001053#: e2fsck/problem.c:298
Theodore Ts'of722c132009-04-21 22:09:01 -04001054#, c-format
1055msgid ""
1056"Moving @j from /%s to hidden @i.\n"
1057"\n"
1058msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001059"将@j从 /%s 移动到隐藏的@i。\n"
1060"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001061
1062#. @-expanded: Error moving journal: %m\n
1063#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001064#: e2fsck/problem.c:303
Dark Raven3be22a82010-04-19 16:59:03 -04001065#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04001066msgid ""
1067"Error moving @j: %m\n"
1068"\n"
1069msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001070"移动@j出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001071"\n"
1072
1073#. @-expanded: Found invalid V2 journal superblock fields (from V1 journal).\n
1074#. @-expanded: Clearing fields beyond the V1 journal superblock...\n
1075#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001076#: e2fsck/problem.c:308
Theodore Ts'of722c132009-04-21 22:09:01 -04001077msgid ""
1078"Found @n V2 @j @S fields (from V1 @j).\n"
1079"Clearing fields beyond the V1 @j @S...\n"
1080"\n"
1081msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001082"在V1@j中发现@nV2@j@S区域。\n"
1083"正在清除V1@j@S以外的区域...\n"
1084"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001085
Theodore Ts'o930e2812009-06-29 15:08:12 -04001086#. @-expanded: Run journal anyway
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001087#: e2fsck/problem.c:314
Theodore Ts'o930e2812009-06-29 15:08:12 -04001088msgid "Run @j anyway"
1089msgstr "强制@j"
1090
1091#. @-expanded: Recovery flag not set in backup superblock, so running journal anyway.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001092#: e2fsck/problem.c:319
Theodore Ts'o930e2812009-06-29 15:08:12 -04001093msgid "Recovery flag not set in backup @S, so running @j anyway.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001094msgstr "备份@S中未设置恢复标志,继续处理日志。\n"
Theodore Ts'o930e2812009-06-29 15:08:12 -04001095
Theodore Ts'of722c132009-04-21 22:09:01 -04001096#. @-expanded: Backing up journal inode block information.\n
1097#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001098#: e2fsck/problem.c:324
Theodore Ts'of722c132009-04-21 22:09:01 -04001099msgid ""
1100"Backing up @j @i @b information.\n"
1101"\n"
1102msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001103"正在备份@j@i@b的信息。\n"
1104"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001105
1106#. @-expanded: filesystem does not have resize_inode enabled, but s_reserved_gdt_blocks\n
1107#. @-expanded: is %N; should be zero.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001108#: e2fsck/problem.c:330
Theodore Ts'of722c132009-04-21 22:09:01 -04001109msgid ""
1110"@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
1111"is %N; @s zero. "
1112msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001113"@f不支持更改@i大小,故s_reserved_gdt_blocks应为0\n"
1114"(但实际为%N)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001115
1116#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001117#: e2fsck/problem.c:336
Theodore Ts'of722c132009-04-21 22:09:01 -04001118msgid "Resize_@i not enabled, but the resize @i is non-zero. "
Tianze Wang57d69272016-08-31 23:14:17 -04001119msgstr "不支持更改@i大小,但所给的变更值非零。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001120
1121#. @-expanded: Resize inode not valid.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001122#: e2fsck/problem.c:341
Theodore Ts'of722c132009-04-21 22:09:01 -04001123msgid "Resize @i not valid. "
Tianze Wang57d69272016-08-31 23:14:17 -04001124msgstr "改变@i大小的值无效。"
Theodore Ts'of722c132009-04-21 22:09:01 -04001125
Dark Raven3be22a82010-04-19 16:59:03 -04001126#. @-expanded: superblock last mount time (%t,\n
1127#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001128#: e2fsck/problem.c:346
Dark Raven3be22a82010-04-19 16:59:03 -04001129msgid ""
1130"@S last mount time (%t,\n"
1131"\tnow = %T) is in the future.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001132msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001133"@S上一次的挂载时间(%t,\n"
1134"\t当前:%T)在未来。 \n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001135
Dark Raven3be22a82010-04-19 16:59:03 -04001136#. @-expanded: superblock last write time (%t,\n
1137#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001138#: e2fsck/problem.c:351
Dark Raven3be22a82010-04-19 16:59:03 -04001139msgid ""
1140"@S last write time (%t,\n"
1141"\tnow = %T) is in the future.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001142msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001143"@S上一次的写入时间(%t,\n"
1144"\t当前:%T)在未来。 \n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001145
1146#. @-expanded: superblock hint for external superblock should be %X.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001147#: e2fsck/problem.c:356
Theodore Ts'of722c132009-04-21 22:09:01 -04001148#, c-format
1149msgid "@S hint for external superblock @s %X. "
Tianze Wang57d69272016-08-31 23:14:17 -04001150msgstr "外部超级块的@S标记@s %X。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001151
1152#. @-expanded: Adding dirhash hint to filesystem.\n
1153#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001154#: e2fsck/problem.c:361
Theodore Ts'of722c132009-04-21 22:09:01 -04001155msgid ""
1156"Adding dirhash hint to @f.\n"
1157"\n"
1158msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001159"正在将dirhash标记添加到@f。\n"
1160"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001161
Eric Sandeen032eafe2012-07-28 17:48:36 -04001162#. @-expanded: group descriptor %g checksum is %04x, should be %04y.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001163#: e2fsck/problem.c:366
Eric Sandeen032eafe2012-07-28 17:48:36 -04001164msgid "@g descriptor %g checksum is %04x, should be %04y. "
Tianze Wang57d69272016-08-31 23:14:17 -04001165msgstr "@g描述符 %g 的校验值为%04x,应当为 %04y。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001166
1167#. @-expanded: group descriptor %g marked uninitialized without feature set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001168#: e2fsck/problem.c:371
Theodore Ts'of722c132009-04-21 22:09:01 -04001169#, c-format
1170msgid "@g descriptor %g marked uninitialized without feature set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001171msgstr "@g描述符 %g被标记为未初始化,并且没有设定特性。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001172
Theodore Ts'of722c132009-04-21 22:09:01 -04001173#. @-expanded: group descriptor %g has invalid unused inodes count %b.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001174#: e2fsck/problem.c:376
Theodore Ts'of722c132009-04-21 22:09:01 -04001175msgid "@g descriptor %g has invalid unused inodes count %b. "
Tianze Wang57d69272016-08-31 23:14:17 -04001176msgstr "@g描述符 %g 中的未使用inode数 %b 为无效值。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001177
1178#. @-expanded: Last group block bitmap uninitialized.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001179#: e2fsck/problem.c:381
Theodore Ts'of722c132009-04-21 22:09:01 -04001180msgid "Last @g @b @B uninitialized. "
Tianze Wang57d69272016-08-31 23:14:17 -04001181msgstr "最后一个@g的@b@B未初始化。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001182
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001183#: e2fsck/problem.c:386
Theodore Ts'of722c132009-04-21 22:09:01 -04001184#, c-format
1185msgid "Journal transaction %i was corrupt, replay was aborted.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001186msgstr "日志事务 %i 损坏,撤销过程已终止。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001187
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001188#: e2fsck/problem.c:391
Theodore Ts'o930e2812009-06-29 15:08:12 -04001189msgid "The test_fs flag is set (and ext4 is available). "
Tianze Wang57d69272016-08-31 23:14:17 -04001190msgstr "设置了 test_fs 标志(并且ext4可用)。 "
Theodore Ts'o930e2812009-06-29 15:08:12 -04001191
Dark Raven3be22a82010-04-19 16:59:03 -04001192#. @-expanded: superblock last mount time is in the future.\n
1193#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001194#. @-expanded: set)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001195#: e2fsck/problem.c:396
Dark Raven3be22a82010-04-19 16:59:03 -04001196msgid ""
1197"@S last mount time is in the future.\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001198"\t(by less than a day, probably due to the hardware clock being incorrectly "
1199"set)\n"
Dark Raven3be22a82010-04-19 16:59:03 -04001200msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001201"@S上一次挂载时间在未来。\n"
1202"\t(相差不到一天,可能是硬件时钟设定错误所致)\n"
Dark Raven3be22a82010-04-19 16:59:03 -04001203
1204#. @-expanded: superblock last write time is in the future.\n
1205#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001206#. @-expanded: set)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001207#: e2fsck/problem.c:402
Dark Raven3be22a82010-04-19 16:59:03 -04001208msgid ""
1209"@S last write time is in the future.\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001210"\t(by less than a day, probably due to the hardware clock being incorrectly "
1211"set)\n"
Dark Raven3be22a82010-04-19 16:59:03 -04001212msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001213"@S上一次写入时间在未来。\n"
1214"\t(相差不到一天,可能是硬件时钟设定错误所致)\n"
Dark Raven3be22a82010-04-19 16:59:03 -04001215
1216#. @-expanded: One or more block group descriptor checksums are invalid.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001217#: e2fsck/problem.c:408
Dark Raven3be22a82010-04-19 16:59:03 -04001218msgid "One or more @b @g descriptor checksums are invalid. "
Tianze Wang57d69272016-08-31 23:14:17 -04001219msgstr "一个或多个@b@g描述符的校验值无效。 "
Dark Raven3be22a82010-04-19 16:59:03 -04001220
Eric Sandeen032eafe2012-07-28 17:48:36 -04001221#. @-expanded: Setting free inodes count to %j (was %i)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001222#: e2fsck/problem.c:413
Eric Sandeen032eafe2012-07-28 17:48:36 -04001223msgid "Setting free @is count to %j (was %i)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001224msgstr "设置未使用的@i数为 %j(曾为%i)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04001225
1226#. @-expanded: Setting free blocks count to %c (was %b)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001227#: e2fsck/problem.c:418
Eric Sandeen032eafe2012-07-28 17:48:36 -04001228msgid "Setting free @bs count to %c (was %b)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001229msgstr "设置未使用的@b数为 %c(曾为%b)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04001230
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001231#. @-expanded: Hiding %U quota inode %i (%Q).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001232#: e2fsck/problem.c:423
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001233#, fuzzy
1234msgid "Hiding %U @q @i %i (%Q).\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04001235msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001236"将@q@i %i(%Q)标记为隐藏的。\n"
1237"\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04001238
1239#. @-expanded: superblock has invalid MMP block.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001240#: e2fsck/problem.c:428
Eric Sandeen032eafe2012-07-28 17:48:36 -04001241msgid "@S has invalid MMP block. "
Tianze Wang57d69272016-08-31 23:14:17 -04001242msgstr "@S含有无效的MMP块。 "
Eric Sandeen032eafe2012-07-28 17:48:36 -04001243
1244#. @-expanded: superblock has invalid MMP magic.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001245#: e2fsck/problem.c:433
Eric Sandeen032eafe2012-07-28 17:48:36 -04001246msgid "@S has invalid MMP magic. "
Tianze Wang57d69272016-08-31 23:14:17 -04001247msgstr "@S含有无效的MMP幻数。 "
Eric Sandeen032eafe2012-07-28 17:48:36 -04001248
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001249#: e2fsck/problem.c:438
Eric Sandeen032eafe2012-07-28 17:48:36 -04001250#, c-format
1251msgid "ext2fs_open2: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001252msgstr "ext2fs_open2: %m\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04001253
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001254#: e2fsck/problem.c:443
Eric Sandeen032eafe2012-07-28 17:48:36 -04001255#, c-format
1256msgid "ext2fs_check_desc: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001257msgstr "ext2fs_check_desc: %m\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04001258
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001259#. @-expanded: superblock metadata_csum supersedes uninit_bg; both feature bits cannot be set
1260#. @-expanded: simultaneously.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001261#: e2fsck/problem.c:449
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001262msgid ""
1263"@S metadata_csum supersedes uninit_bg; both feature bits cannot be set "
1264"simultaneously."
1265msgstr ""
1266"@S 的 metadata_csum 特性将取代 uninit_bg 特性,因此不能同时将二者开启。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001267
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001268#. @-expanded: superblock MMP block checksum does not match.
1269#: e2fsck/problem.c:455
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001270#, fuzzy
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001271msgid "@S MMP @b checksum does not match. "
Tianze Wang57d69272016-08-31 23:14:17 -04001272msgstr "@S MMP块校验值与MMP块自身不符。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001273
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001274#. @-expanded: superblock 64bit filesystem needs extents to access the whole disk.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001275#: e2fsck/problem.c:460
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001276#, fuzzy
1277msgid "@S 64bit @f needs extents to access the whole disk. "
Tianze Wang57d69272016-08-31 23:14:17 -04001278msgstr "64位文件系统的@S需要extent来访问整个磁盘。 "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001279
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001280#: e2fsck/problem.c:465
Theodore Ts'obd386982015-05-17 20:34:58 -04001281msgid "First_meta_bg is too big. (%N, max value %g). "
Tianze Wang57d69272016-08-31 23:14:17 -04001282msgstr "第一个meta_bg太大。(%N,最大值 %g)"
Theodore Ts'obd386982015-05-17 20:34:58 -04001283
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001284#. @-expanded: External journal superblock checksum does not match superblock.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001285#: e2fsck/problem.c:470
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001286msgid "External @j @S checksum does not match @S. "
Tianze Wang57d69272016-08-31 23:14:17 -04001287msgstr "外部@j@S校验值与@S自身不符"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001288
1289#. @-expanded: superblock metadata_csum_seed is not necessary without metadata_csum.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001290#: e2fsck/problem.c:475
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001291msgid "@S metadata_csum_seed is not necessary without metadata_csum."
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001292msgstr ""
1293"只有同时开启了@S的 metadata_csum 特性,metadata_csum_seed 特性才有意义。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001294
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001295#: e2fsck/problem.c:480
Theodore Ts'o48203a32016-06-08 15:45:26 -04001296#, c-format
1297msgid "Error initializing quota context in support library: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001298msgstr "初始化支持库中的引用上下文时出错:%m\n"
Theodore Ts'o48203a32016-06-08 15:45:26 -04001299
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001300#. @-expanded: Bad required extra isize in superblock (%N).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001301#: e2fsck/problem.c:485
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001302msgid "Bad required extra isize in @S (%N). "
1303msgstr ""
1304
1305#. @-expanded: Bad desired extra isize in superblock (%N).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001306#: e2fsck/problem.c:490
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001307msgid "Bad desired extra isize in @S (%N). "
1308msgstr ""
1309
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001310#. @-expanded: Invalid %U quota inode %i.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001311#: e2fsck/problem.c:495
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001312#, fuzzy
1313msgid "Invalid %U @q @i %i. "
1314msgstr "@u@z@i %i。 "
1315
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001316#. @-expanded: superblock would have too many inodes (%N).\n
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001317#: e2fsck/problem.c:500
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001318msgid "@S would have too many inodes (%N).\n"
1319msgstr ""
1320
1321#. @-expanded: Resize_inode and meta_bg features are enabled. Those features are\n
1322#. @-expanded: not compatible. Resize inode should be disabled.
1323#: e2fsck/problem.c:505
1324msgid ""
1325"Resize_@i and meta_bg features are enabled. Those features are\n"
1326"not compatible. Resize @i should be disabled. "
1327msgstr ""
1328
1329#. @-expanded: Pass 1: Checking inodes, blocks, and sizes\n
1330#: e2fsck/problem.c:513
Theodore Ts'of722c132009-04-21 22:09:01 -04001331msgid "Pass 1: Checking @is, @bs, and sizes\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001332msgstr "第 1 步:检查@i、@b和大小\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001333
1334#. @-expanded: root inode is not a directory.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001335#: e2fsck/problem.c:517
Theodore Ts'of722c132009-04-21 22:09:01 -04001336msgid "@r is not a @d. "
Tianze Wang57d69272016-08-31 23:14:17 -04001337msgstr "@r不是一个@d。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001338
1339#. @-expanded: root inode has dtime set (probably due to old mke2fs).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001340#: e2fsck/problem.c:522
Theodore Ts'of722c132009-04-21 22:09:01 -04001341msgid "@r has dtime set (probably due to old mke2fs). "
Tianze Wang57d69272016-08-31 23:14:17 -04001342msgstr "@r被设置了删除时间(可能由老版本的mke2fs导致)。"
Theodore Ts'of722c132009-04-21 22:09:01 -04001343
1344#. @-expanded: Reserved inode %i (%Q) has invalid mode.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001345#: e2fsck/problem.c:527
Theodore Ts'of722c132009-04-21 22:09:01 -04001346msgid "Reserved @i %i (%Q) has @n mode. "
Tianze Wang57d69272016-08-31 23:14:17 -04001347msgstr "保留的@i %i(%Q)的模式无效。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001348
1349#. @-expanded: deleted inode %i has zero dtime.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001350#: e2fsck/problem.c:532
Theodore Ts'of722c132009-04-21 22:09:01 -04001351#, c-format
1352msgid "@D @i %i has zero dtime. "
Tianze Wang57d69272016-08-31 23:14:17 -04001353msgstr "@D@i %i 的删除时间为零。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001354
1355#. @-expanded: inode %i is in use, but has dtime set.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001356#: e2fsck/problem.c:537
Theodore Ts'of722c132009-04-21 22:09:01 -04001357#, c-format
1358msgid "@i %i is in use, but has dtime set. "
Tianze Wang57d69272016-08-31 23:14:17 -04001359msgstr "使用中的@i %i 被设置了删除时间。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001360
1361#. @-expanded: inode %i is a zero-length directory.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001362#: e2fsck/problem.c:542
Theodore Ts'of722c132009-04-21 22:09:01 -04001363#, c-format
1364msgid "@i %i is a @z @d. "
Tianze Wang57d69272016-08-31 23:14:17 -04001365msgstr "@i %i 为@z@d。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001366
1367#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001368#: e2fsck/problem.c:547
Theodore Ts'of722c132009-04-21 22:09:01 -04001369msgid "@g %g's @b @B at %b @C.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001370msgstr "位于 %b 的@g %g的@b@B@C。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001371
1372#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001373#: e2fsck/problem.c:552
Theodore Ts'of722c132009-04-21 22:09:01 -04001374msgid "@g %g's @i @B at %b @C.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001375msgstr "位于 %b 的@g %g的@i@B@C。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001376
1377#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001378#: e2fsck/problem.c:557
Theodore Ts'of722c132009-04-21 22:09:01 -04001379msgid "@g %g's @i table at %b @C.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001380msgstr "位于 %b 的@g %g的@i表@C。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001381
1382#. @-expanded: group %g's block bitmap (%b) is bad.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001383#: e2fsck/problem.c:562
Theodore Ts'of722c132009-04-21 22:09:01 -04001384msgid "@g %g's @b @B (%b) is bad. "
Tianze Wang57d69272016-08-31 23:14:17 -04001385msgstr "@g %g 的@b@B无效。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001386
1387#. @-expanded: group %g's inode bitmap (%b) is bad.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001388#: e2fsck/problem.c:567
Theodore Ts'of722c132009-04-21 22:09:01 -04001389msgid "@g %g's @i @B (%b) is bad. "
Tianze Wang57d69272016-08-31 23:14:17 -04001390msgstr "@g %g 的@i@B无效。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001391
1392#. @-expanded: inode %i, i_size is %Is, should be %N.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001393#: e2fsck/problem.c:572
Theodore Ts'of722c132009-04-21 22:09:01 -04001394msgid "@i %i, i_size is %Is, @s %N. "
Tianze Wang57d69272016-08-31 23:14:17 -04001395msgstr "@i %i的大小为 %ls,@s %N。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001396
1397#. @-expanded: inode %i, i_blocks is %Ib, should be %N.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001398#: e2fsck/problem.c:577
Theodore Ts'of722c132009-04-21 22:09:01 -04001399msgid "@i %i, i_@bs is %Ib, @s %N. "
Tianze Wang57d69272016-08-31 23:14:17 -04001400msgstr "@i %i的i_blocks为 %ls,@s %N。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001401
Dark Raven3be22a82010-04-19 16:59:03 -04001402#. @-expanded: illegal %B (%b) in inode %i.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001403#: e2fsck/problem.c:582
Dark Raven3be22a82010-04-19 16:59:03 -04001404msgid "@I %B (%b) in @i %i. "
Tianze Wang57d69272016-08-31 23:14:17 -04001405msgstr "@I %B(%b)于@i %i。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001406
Dark Raven3be22a82010-04-19 16:59:03 -04001407#. @-expanded: %B (%b) overlaps filesystem metadata in inode %i.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001408#: e2fsck/problem.c:587
Dark Raven3be22a82010-04-19 16:59:03 -04001409msgid "%B (%b) overlaps @f metadata in @i %i. "
Tianze Wang57d69272016-08-31 23:14:17 -04001410msgstr "%B(%b)与@i %i 记录元数据的位置重叠。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001411
1412#. @-expanded: inode %i has illegal block(s).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001413#: e2fsck/problem.c:592
Theodore Ts'of722c132009-04-21 22:09:01 -04001414#, c-format
1415msgid "@i %i has illegal @b(s). "
Tianze Wang57d69272016-08-31 23:14:17 -04001416msgstr "@i %i 中包含非法@b。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001417
1418#. @-expanded: Too many illegal blocks in inode %i.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001419#: e2fsck/problem.c:597
Dark Raven3be22a82010-04-19 16:59:03 -04001420#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04001421msgid "Too many illegal @bs in @i %i.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001422msgstr "@i %i 中包含了过多的非法@b。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001423
Dark Raven3be22a82010-04-19 16:59:03 -04001424#. @-expanded: illegal %B (%b) in bad block inode.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001425#: e2fsck/problem.c:602
Dark Raven3be22a82010-04-19 16:59:03 -04001426msgid "@I %B (%b) in bad @b @i. "
Tianze Wang57d69272016-08-31 23:14:17 -04001427msgstr "@I %B(%b)于坏@b@i。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001428
1429#. @-expanded: Bad block inode has illegal block(s).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001430#: e2fsck/problem.c:607
Theodore Ts'of722c132009-04-21 22:09:01 -04001431msgid "Bad @b @i has illegal @b(s). "
Tianze Wang57d69272016-08-31 23:14:17 -04001432msgstr "坏@b@i含有无效的@b。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001433
1434#. @-expanded: Duplicate or bad block in use!\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001435#: e2fsck/problem.c:612
Theodore Ts'of722c132009-04-21 22:09:01 -04001436msgid "Duplicate or bad @b in use!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001437msgstr "使用了重复@b或坏@b!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001438
1439#. @-expanded: Bad block %b used as bad block inode indirect block.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001440#: e2fsck/problem.c:617
Theodore Ts'of722c132009-04-21 22:09:01 -04001441msgid "Bad @b %b used as bad @b @i indirect @b. "
Tianze Wang57d69272016-08-31 23:14:17 -04001442msgstr "坏@b %b 被用作坏@b@i的链接@b。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001443
1444#. @-expanded: \n
1445#. @-expanded: The bad block inode has probably been corrupted. You probably\n
1446#. @-expanded: should stop now and run e2fsck -c to scan for bad blocks\n
1447#. @-expanded: in the filesystem.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001448#: e2fsck/problem.c:622
Theodore Ts'of722c132009-04-21 22:09:01 -04001449msgid ""
1450"\n"
1451"The bad @b @i has probably been corrupted. You probably\n"
1452"should stop now and run e2fsck -c to scan for bad blocks\n"
1453"in the @f.\n"
1454msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001455"\n"
1456"坏@b@i可能已经损坏。你可能需要立刻停止执行此任务,\n"
1457"并运行e2fsck -c来扫描@f中的坏块。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001458
1459#. @-expanded: \n
1460#. @-expanded: If the block is really bad, the filesystem can not be fixed.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001461#: e2fsck/problem.c:629
Theodore Ts'of722c132009-04-21 22:09:01 -04001462msgid ""
1463"\n"
1464"If the @b is really bad, the @f can not be fixed.\n"
1465msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001466"\n"
1467"如果该@b确实为坏@b,则文件系统将无法被修复。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001468
1469#. @-expanded: You can remove this block from the bad block list and hope\n
1470#. @-expanded: that the block is really OK. But there are no guarantees.\n
1471#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001472#: e2fsck/problem.c:634
Theodore Ts'of722c132009-04-21 22:09:01 -04001473msgid ""
1474"You can remove this @b from the bad @b list and hope\n"
1475"that the @b is really OK. But there are no guarantees.\n"
1476"\n"
1477msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001478"你可以将该@b从坏@b列表中移除,并期望\n"
1479"它能够正常表现。但我们并不提供任何保证。\n"
1480"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001481
1482#. @-expanded: The primary superblock (%b) is on the bad block list.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001483#: e2fsck/problem.c:640
Theodore Ts'of722c132009-04-21 22:09:01 -04001484msgid "The primary @S (%b) is on the bad @b list.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001485msgstr "主@S(%b)位于坏@b列表中。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001486
1487#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001488#: e2fsck/problem.c:645
Theodore Ts'of722c132009-04-21 22:09:01 -04001489msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001490msgstr "主@g描述符中的块 %b 位于坏@b列表中\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001491
1492#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001493#: e2fsck/problem.c:651
Theodore Ts'of722c132009-04-21 22:09:01 -04001494msgid "Warning: Group %g's @S (%b) is bad.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001495msgstr "警告:组 %g 的@S(%b)为坏块。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001496
1497#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001498#: e2fsck/problem.c:657
Theodore Ts'of722c132009-04-21 22:09:01 -04001499msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
1500msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001501"警告:组 %g 描述符的备份含有一个坏@b(%b)。\n"
1502"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001503
1504#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001505#: e2fsck/problem.c:663
Theodore Ts'of722c132009-04-21 22:09:01 -04001506msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001507msgstr "检测到@b #%b 为坏@b,但原因未知(可能是程序错误导致的)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001508
1509#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001510#: e2fsck/problem.c:669
Theodore Ts'of722c132009-04-21 22:09:01 -04001511msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001512msgstr "在@b@g %g 中为 %s 分配 %N 个连续的@b时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001513
1514#. @-expanded: error allocating block buffer for relocating %s\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001515#: e2fsck/problem.c:674
Theodore Ts'of722c132009-04-21 22:09:01 -04001516#, c-format
1517msgid "@A @b buffer for relocating %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001518msgstr "重定位 %s 时分配@b缓存出错\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001519
1520#. @-expanded: Relocating group %g's %s from %b to %c...\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001521#: e2fsck/problem.c:679
Theodore Ts'of722c132009-04-21 22:09:01 -04001522msgid "Relocating @g %g's %s from %b to %c...\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001523msgstr "正在将@g %g 的 %s 从 %b 重定位至 %c...\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001524
1525#. @-expanded: Relocating group %g's %s to %c...\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001526#: e2fsck/problem.c:684
Theodore Ts'of722c132009-04-21 22:09:01 -04001527#, c-format
1528msgid "Relocating @g %g's %s to %c...\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001529msgstr "正在将@g %g 的 %s 重定位至 %c...\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001530
1531#. @-expanded: Warning: could not read block %b of %s: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001532#: e2fsck/problem.c:689
Theodore Ts'of722c132009-04-21 22:09:01 -04001533msgid "Warning: could not read @b %b of %s: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001534msgstr "警告:无法从%s中读取@b %b:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001535
1536#. @-expanded: Warning: could not write block %b for %s: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001537#: e2fsck/problem.c:694
Theodore Ts'of722c132009-04-21 22:09:01 -04001538msgid "Warning: could not write @b %b for %s: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001539msgstr "警告:无法向%s中写入@b %b:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001540
1541#. @-expanded: error allocating inode bitmap (%N): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001542#: e2fsck/problem.c:699 e2fsck/problem.c:1776
Theodore Ts'of722c132009-04-21 22:09:01 -04001543msgid "@A @i @B (%N): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001544msgstr "分配@i@B(%N)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001545
1546#. @-expanded: error allocating block bitmap (%N): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001547#: e2fsck/problem.c:704
Theodore Ts'of722c132009-04-21 22:09:01 -04001548msgid "@A @b @B (%N): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001549msgstr "分配@b@B(%N)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001550
1551#. @-expanded: error allocating icount link information: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001552#: e2fsck/problem.c:709
Theodore Ts'of722c132009-04-21 22:09:01 -04001553#, c-format
1554msgid "@A icount link information: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001555msgstr "分配icount链接信息时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001556
1557#. @-expanded: error allocating directory block array: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001558#: e2fsck/problem.c:714
Theodore Ts'of722c132009-04-21 22:09:01 -04001559#, c-format
1560msgid "@A @d @b array: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001561msgstr "分配@d@b数组时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001562
1563#. @-expanded: Error while scanning inodes (%i): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001564#: e2fsck/problem.c:719
Theodore Ts'of722c132009-04-21 22:09:01 -04001565#, c-format
1566msgid "Error while scanning @is (%i): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001567msgstr "扫描@i(%i)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001568
1569#. @-expanded: Error while iterating over blocks in inode %i: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001570#: e2fsck/problem.c:724
Theodore Ts'of722c132009-04-21 22:09:01 -04001571#, c-format
1572msgid "Error while iterating over @bs in @i %i: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001573msgstr "迭代@i %i 中的@b时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001574
1575#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001576#: e2fsck/problem.c:729
Theodore Ts'of722c132009-04-21 22:09:01 -04001577msgid "Error storing @i count information (@i=%i, count=%N): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001578msgstr "写入@i计数信息时出错(@i %i,计数=%N):%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001579
1580#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001581#: e2fsck/problem.c:734
Theodore Ts'of722c132009-04-21 22:09:01 -04001582msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001583msgstr "写入@d@b信息时出错(@i %i,@b %b,数量=%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001584
1585#. @-expanded: Error reading inode %i: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001586#: e2fsck/problem.c:740
Theodore Ts'of722c132009-04-21 22:09:01 -04001587#, c-format
1588msgid "Error reading @i %i: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001589msgstr "读取@i %i出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001590
1591#. @-expanded: inode %i has imagic flag set.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001592#: e2fsck/problem.c:748
Theodore Ts'of722c132009-04-21 22:09:01 -04001593#, c-format
1594msgid "@i %i has imagic flag set. "
Tianze Wang57d69272016-08-31 23:14:17 -04001595msgstr "@i %i 被设置了imagic标志。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001596
1597#. @-expanded: Special (device/socket/fifo/symlink) file (inode %i) has immutable\n
1598#. @-expanded: or append-only flag set.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001599#: e2fsck/problem.c:753
Theodore Ts'of722c132009-04-21 22:09:01 -04001600#, c-format
1601msgid ""
1602"Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
1603"or append-only flag set. "
1604msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001605"特殊文件(@v/套接字/队列/ 符号链接)(@i %i)由chattr设置了 i\n"
1606"(保护)或 a(仅追加) 标志。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001607
Theodore Ts'of722c132009-04-21 22:09:01 -04001608#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001609#: e2fsck/problem.c:759
Theodore Ts'of722c132009-04-21 22:09:01 -04001610#, c-format
1611msgid "Special (@v/socket/fifo) @i %i has non-zero size. "
Tianze Wang57d69272016-08-31 23:14:17 -04001612msgstr "特殊文件(@v/套接字/队列)@i %i 为非零大小。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001613
1614#. @-expanded: journal inode is not in use, but contains data.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001615#: e2fsck/problem.c:769
Theodore Ts'of722c132009-04-21 22:09:01 -04001616msgid "@j @i is not in use, but contains data. "
Tianze Wang57d69272016-08-31 23:14:17 -04001617msgstr "@j @i 未被使用,但含有数据。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001618
1619#. @-expanded: journal is not regular file.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001620#: e2fsck/problem.c:774
Theodore Ts'of722c132009-04-21 22:09:01 -04001621msgid "@j is not regular file. "
Tianze Wang57d69272016-08-31 23:14:17 -04001622msgstr "@j不是普通文件。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001623
1624#. @-expanded: inode %i was part of the orphaned inode list.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001625#: e2fsck/problem.c:779
Theodore Ts'of722c132009-04-21 22:09:01 -04001626#, c-format
1627msgid "@i %i was part of the @o @i list. "
Tianze Wang57d69272016-08-31 23:14:17 -04001628msgstr "@i %i 位于@o@i列表中。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001629
1630#. @-expanded: inodes that were part of a corrupted orphan linked list found.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001631#: e2fsck/problem.c:785
Theodore Ts'of722c132009-04-21 22:09:01 -04001632msgid "@is that were part of a corrupted orphan linked list found. "
Tianze Wang57d69272016-08-31 23:14:17 -04001633msgstr "发现了可能属于损坏的孤立链接表的@i。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001634
1635#. @-expanded: error allocating refcount structure (%N): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001636#: e2fsck/problem.c:790
Theodore Ts'of722c132009-04-21 22:09:01 -04001637msgid "@A refcount structure (%N): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001638msgstr "分配refcount结构体(%N)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001639
1640#. @-expanded: Error reading extended attribute block %b for inode %i.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001641#: e2fsck/problem.c:795
Theodore Ts'of722c132009-04-21 22:09:01 -04001642msgid "Error reading @a @b %b for @i %i. "
Tianze Wang57d69272016-08-31 23:14:17 -04001643msgstr "读取@i %i 的@a@b %b 时出错。"
Theodore Ts'of722c132009-04-21 22:09:01 -04001644
1645#. @-expanded: inode %i has a bad extended attribute block %b.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001646#: e2fsck/problem.c:800
Theodore Ts'of722c132009-04-21 22:09:01 -04001647msgid "@i %i has a bad @a @b %b. "
Tianze Wang57d69272016-08-31 23:14:17 -04001648msgstr "@i %i 有一个 @a@b %b。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001649
1650#. @-expanded: Error reading extended attribute block %b (%m).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001651#: e2fsck/problem.c:805
Theodore Ts'of722c132009-04-21 22:09:01 -04001652msgid "Error reading @a @b %b (%m). "
Tianze Wang57d69272016-08-31 23:14:17 -04001653msgstr "读取@a@b %b 时出错(%m)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001654
Dark Raven3be22a82010-04-19 16:59:03 -04001655#. @-expanded: extended attribute block %b has reference count %r, should be %N.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001656#: e2fsck/problem.c:810
Dark Raven3be22a82010-04-19 16:59:03 -04001657msgid "@a @b %b has reference count %r, @s %N. "
Tianze Wang57d69272016-08-31 23:14:17 -04001658msgstr "@a@b %b 的引用计数为 %r,@s %N。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001659
1660#. @-expanded: Error writing extended attribute block %b (%m).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001661#: e2fsck/problem.c:815
Theodore Ts'of722c132009-04-21 22:09:01 -04001662msgid "Error writing @a @b %b (%m). "
Tianze Wang57d69272016-08-31 23:14:17 -04001663msgstr "写入@a@b %b 时出错(%m)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001664
1665#. @-expanded: extended attribute block %b has h_blocks > 1.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001666#: e2fsck/problem.c:820
Theodore Ts'of722c132009-04-21 22:09:01 -04001667msgid "@a @b %b has h_@bs > 1. "
Tianze Wang57d69272016-08-31 23:14:17 -04001668msgstr "@a@b %b 的h_blocks >1。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001669
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001670#. @-expanded: error allocating extended attribute region allocation structure.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001671#: e2fsck/problem.c:825
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001672msgid "@A @a region allocation structure. "
Tianze Wang57d69272016-08-31 23:14:17 -04001673msgstr "构建外部属性区域的分配结构体时出错。"
Theodore Ts'of722c132009-04-21 22:09:01 -04001674
1675#. @-expanded: extended attribute block %b is corrupt (allocation collision).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001676#: e2fsck/problem.c:830
Theodore Ts'of722c132009-04-21 22:09:01 -04001677msgid "@a @b %b is corrupt (allocation collision). "
Tianze Wang57d69272016-08-31 23:14:17 -04001678msgstr "@a@b %b 已损坏(分配冲突)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001679
1680#. @-expanded: extended attribute block %b is corrupt (invalid name).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001681#: e2fsck/problem.c:835
Theodore Ts'of722c132009-04-21 22:09:01 -04001682msgid "@a @b %b is corrupt (@n name). "
Tianze Wang57d69272016-08-31 23:14:17 -04001683msgstr "@a@b %b 已损坏(@n名称)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001684
1685#. @-expanded: extended attribute block %b is corrupt (invalid value).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001686#: e2fsck/problem.c:840
Theodore Ts'of722c132009-04-21 22:09:01 -04001687msgid "@a @b %b is corrupt (@n value). "
Tianze Wang57d69272016-08-31 23:14:17 -04001688msgstr "@a@b %b 已损坏(@n值)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001689
1690#. @-expanded: inode %i is too big.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001691#: e2fsck/problem.c:845
Theodore Ts'of722c132009-04-21 22:09:01 -04001692#, c-format
1693msgid "@i %i is too big. "
Tianze Wang57d69272016-08-31 23:14:17 -04001694msgstr "@i %i 过大。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001695
Dark Raven3be22a82010-04-19 16:59:03 -04001696#. @-expanded: %B (%b) causes directory to be too big.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001697#: e2fsck/problem.c:849
Dark Raven3be22a82010-04-19 16:59:03 -04001698msgid "%B (%b) causes @d to be too big. "
Tianze Wang57d69272016-08-31 23:14:17 -04001699msgstr "%B(%b)造成@d过大。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001700
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001701#: e2fsck/problem.c:854
Dark Raven3be22a82010-04-19 16:59:03 -04001702msgid "%B (%b) causes file to be too big. "
Tianze Wang57d69272016-08-31 23:14:17 -04001703msgstr "%B(%b)造成文件过大。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001704
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001705#: e2fsck/problem.c:859
Dark Raven3be22a82010-04-19 16:59:03 -04001706msgid "%B (%b) causes symlink to be too big. "
Tianze Wang57d69272016-08-31 23:14:17 -04001707msgstr "%B(%b)造成符号链接过大。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001708
1709#. @-expanded: inode %i has INDEX_FL flag set on filesystem without htree support.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001710#: e2fsck/problem.c:864
Theodore Ts'of722c132009-04-21 22:09:01 -04001711#, c-format
1712msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001713msgstr "@i %i 被设置了INDEX_FL标志,但文件系统不支持htree。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001714
1715#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001716#: e2fsck/problem.c:869
Theodore Ts'of722c132009-04-21 22:09:01 -04001717#, c-format
1718msgid "@i %i has INDEX_FL flag set but is not a @d.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001719msgstr "@i %i 被设置了INDEX_FL标志,但它并非目录。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001720
1721#. @-expanded: HTREE directory inode %i has an invalid root node.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001722#: e2fsck/problem.c:874
Theodore Ts'of722c132009-04-21 22:09:01 -04001723#, c-format
1724msgid "@h %i has an @n root node.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001725msgstr "@h %i 有一个@n根节点。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001726
1727#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001728#: e2fsck/problem.c:879
Theodore Ts'of722c132009-04-21 22:09:01 -04001729msgid "@h %i has an unsupported hash version (%N)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001730msgstr "@h %i 有一个无效的hash版本(%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001731
1732#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001733#: e2fsck/problem.c:884
Theodore Ts'of722c132009-04-21 22:09:01 -04001734#, c-format
1735msgid "@h %i uses an incompatible htree root node flag.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001736msgstr "@h %i 使用了一个不兼容的htree根节点标志。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001737
1738#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001739#: e2fsck/problem.c:889
Theodore Ts'of722c132009-04-21 22:09:01 -04001740msgid "@h %i has a tree depth (%N) which is too big\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001741msgstr "@h %i 树的深度过大(%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001742
1743#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
1744#. @-expanded: filesystem metadata.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001745#: e2fsck/problem.c:895
Theodore Ts'of722c132009-04-21 22:09:01 -04001746msgid ""
1747"Bad @b @i has an indirect @b (%b) that conflicts with\n"
1748"@f metadata. "
Tianze Wang57d69272016-08-31 23:14:17 -04001749msgstr "坏@b@i含有一个与@f元数据冲突的连接@b(%b)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001750
1751#. @-expanded: Resize inode (re)creation failed: %m.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001752#: e2fsck/problem.c:901
Theodore Ts'of722c132009-04-21 22:09:01 -04001753#, c-format
1754msgid "Resize @i (re)creation failed: %m."
Tianze Wang57d69272016-08-31 23:14:17 -04001755msgstr "改变@i大小失败:%m。"
Theodore Ts'of722c132009-04-21 22:09:01 -04001756
1757#. @-expanded: inode %i has a extra size (%IS) which is invalid\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001758#: e2fsck/problem.c:906
Theodore Ts'of722c132009-04-21 22:09:01 -04001759msgid "@i %i has a extra size (%IS) which is @n\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001760msgstr "@i %i 有一个额外的大小 %lS(@n值)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001761
1762#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001763#: e2fsck/problem.c:911
Theodore Ts'of722c132009-04-21 22:09:01 -04001764msgid "@a in @i %i has a namelen (%N) which is @n\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001765msgstr "@i %i 中的@a有一个名称长度%lS(@n值)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001766
Theodore Ts'of722c132009-04-21 22:09:01 -04001767#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001768#: e2fsck/problem.c:916
Theodore Ts'of722c132009-04-21 22:09:01 -04001769msgid "@a in @i %i has a value offset (%N) which is @n\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001770msgstr "@i %i 中的@a含有一个@n的偏移量(%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001771
1772#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001773#: e2fsck/problem.c:921
Theodore Ts'of722c132009-04-21 22:09:01 -04001774msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001775msgstr "@i %i 中的@a含有一个@n的数值块(%N),应当为0\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001776
Theodore Ts'o930e2812009-06-29 15:08:12 -04001777#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001778#: e2fsck/problem.c:926
Theodore Ts'o930e2812009-06-29 15:08:12 -04001779msgid "@a in @i %i has a value size (%N) which is @n\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001780msgstr "@i %i 中的@a含有一个@n的大小(%N)\n"
Theodore Ts'o930e2812009-06-29 15:08:12 -04001781
Theodore Ts'of722c132009-04-21 22:09:01 -04001782#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001783#: e2fsck/problem.c:931
Theodore Ts'of722c132009-04-21 22:09:01 -04001784msgid "@a in @i %i has a hash (%N) which is @n\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001785msgstr "@i %i 中的@a有一个@nhash值(%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001786
1787#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001788#: e2fsck/problem.c:936
Theodore Ts'of722c132009-04-21 22:09:01 -04001789msgid "@i %i is a %It but it looks like it is really a directory.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001790msgstr "@i %i 是一个@lt,但它实际上可能是一个目录。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001791
1792#. @-expanded: Error while reading over extent tree in inode %i: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001793#: e2fsck/problem.c:941
Theodore Ts'of722c132009-04-21 22:09:01 -04001794#, c-format
1795msgid "Error while reading over @x tree in @i %i: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001796msgstr "读取@i %i 中的@x树时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001797
Theodore Ts'o930e2812009-06-29 15:08:12 -04001798#. @-expanded: Failed to iterate extents in inode %i\n
1799#. @-expanded: \t(op %s, blk %b, lblk %c): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001800#: e2fsck/problem.c:946
Theodore Ts'o930e2812009-06-29 15:08:12 -04001801msgid ""
1802"Failed to iterate extents in @i %i\n"
1803"\t(op %s, blk %b, lblk %c): %m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001804msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001805"递归@i %i 中的extent失败\n"
1806"\t(选项 %s,块 %b,lblk %c):%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001807
1808#. @-expanded: inode %i has an invalid extent\n
1809#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001810#: e2fsck/problem.c:952
Theodore Ts'of722c132009-04-21 22:09:01 -04001811msgid ""
1812"@i %i has an @n extent\n"
1813"\t(logical @b %c, @n physical @b %b, len %N)\n"
1814msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001815"@i %i 有一个@nextent\n"
1816"\t(逻辑块 %c,@n物理块@b %b,长度 %N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001817
1818#. @-expanded: inode %i has an invalid extent\n
1819#. @-expanded: \t(logical block %c, physical block %b, invalid len %N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001820#: e2fsck/problem.c:957
Theodore Ts'of722c132009-04-21 22:09:01 -04001821msgid ""
1822"@i %i has an @n extent\n"
1823"\t(logical @b %c, physical @b %b, @n len %N)\n"
1824msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001825"@i %i 有一个@nextent\n"
1826"\t(逻辑块 %c,物理块@b %b,长度 %N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001827
1828#. @-expanded: inode %i has EXTENTS_FL flag set on filesystem without extents support.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001829#: e2fsck/problem.c:962
Theodore Ts'of722c132009-04-21 22:09:01 -04001830#, c-format
1831msgid "@i %i has EXTENTS_FL flag set on @f without extents support.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001832msgstr "@i %i 被设置了EXTENTS_FL标志,但文件系统不支持extent。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001833
1834#. @-expanded: inode %i is in extent format, but superblock is missing EXTENTS feature\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001835#: e2fsck/problem.c:967
Theodore Ts'of722c132009-04-21 22:09:01 -04001836#, c-format
1837msgid "@i %i is in extent format, but @S is missing EXTENTS feature\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001838msgstr "@i %i 为extent格式,但@S不具有EXTENTS特性\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001839
1840#. @-expanded: inode %i missing EXTENT_FL, but is in extents format\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001841#: e2fsck/problem.c:972
Theodore Ts'of722c132009-04-21 22:09:01 -04001842#, c-format
1843msgid "@i %i missing EXTENT_FL, but is in extents format\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001844msgstr "@i %i 不具有EXTENT_FL标志,但却为EXTENTS格式\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001845
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001846#: e2fsck/problem.c:977
Theodore Ts'of722c132009-04-21 22:09:01 -04001847#, c-format
1848msgid "Fast symlink %i has EXTENT_FL set. "
Tianze Wang57d69272016-08-31 23:14:17 -04001849msgstr "直接符号链接 %i 被设置了EXTENT_FL标志。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04001850
1851#. @-expanded: inode %i has out of order extents\n
1852#. @-expanded: \t(invalid logical block %c, physical block %b, len %N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001853#: e2fsck/problem.c:982
Theodore Ts'of722c132009-04-21 22:09:01 -04001854msgid ""
1855"@i %i has out of order extents\n"
1856"\t(@n logical @b %c, physical @b %b, len %N)\n"
1857msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001858"@i %i 含有乱序的extent\n"
1859"\t(@n 逻辑@b %c,物理@b %b,长度 %N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04001860
Theodore Ts'o930e2812009-06-29 15:08:12 -04001861#. @-expanded: inode %i has an invalid extent node (blk %b, lblk %c)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001862#: e2fsck/problem.c:986
Theodore Ts'o930e2812009-06-29 15:08:12 -04001863msgid "@i %i has an invalid extent node (blk %b, lblk %c)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001864msgstr "@i %i 是一个无效的extent节点(块 %b,lblk %c)\n"
Theodore Ts'o930e2812009-06-29 15:08:12 -04001865
Eric Sandeen032eafe2012-07-28 17:48:36 -04001866#. @-expanded: Error converting subcluster block bitmap: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001867#: e2fsck/problem.c:991
Tianze Wang57d69272016-08-31 23:14:17 -04001868#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04001869msgid "Error converting subcluster @b @B: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001870msgstr "转换子簇的@d@b时出错:%m\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04001871
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001872#. @-expanded: quota inode is not a regular file.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001873#: e2fsck/problem.c:996
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04001874#, fuzzy
1875msgid "@q @i is not a regular file. "
Tianze Wang57d69272016-08-31 23:14:17 -04001876msgstr "@q@i不是普通文件。 "
Eric Sandeen032eafe2012-07-28 17:48:36 -04001877
1878#. @-expanded: quota inode is not in use, but contains data.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001879#: e2fsck/problem.c:1001
Eric Sandeen032eafe2012-07-28 17:48:36 -04001880msgid "@q @i is not in use, but contains data. "
Tianze Wang57d69272016-08-31 23:14:17 -04001881msgstr "@q @i 未被使用,但含有数据。 "
Eric Sandeen032eafe2012-07-28 17:48:36 -04001882
1883#. @-expanded: quota inode is visible to the user.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001884#: e2fsck/problem.c:1006
Eric Sandeen032eafe2012-07-28 17:48:36 -04001885msgid "@q @i is visible to the user. "
Tianze Wang57d69272016-08-31 23:14:17 -04001886msgstr "使用中的@q@i被对用户可见。 "
Eric Sandeen032eafe2012-07-28 17:48:36 -04001887
1888#. @-expanded: The bad block inode looks invalid.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001889#: e2fsck/problem.c:1011
Eric Sandeen032eafe2012-07-28 17:48:36 -04001890msgid "The bad @b @i looks @n. "
Tianze Wang57d69272016-08-31 23:14:17 -04001891msgstr "坏@b@i似乎是@n。 "
Eric Sandeen032eafe2012-07-28 17:48:36 -04001892
1893#. @-expanded: inode %i has zero length extent\n
1894#. @-expanded: \t(invalid logical block %c, physical block %b)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001895#: e2fsck/problem.c:1016
Eric Sandeen032eafe2012-07-28 17:48:36 -04001896msgid ""
1897"@i %i has zero length extent\n"
1898"\t(@n logical @b %c, physical @b %b)\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04001899msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001900"@i %i 含有零长度的extent\n"
1901"\t(@n 逻辑@b %c,物理@b %b)\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04001902
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001903#. @-expanded: inode %i seems to contain garbage.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001904#: e2fsck/problem.c:1021
Tianze Wang57d69272016-08-31 23:14:17 -04001905#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001906msgid "@i %i seems to contain garbage. "
Tianze Wang57d69272016-08-31 23:14:17 -04001907msgstr "@i %i 含有无效数据。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001908
1909#. @-expanded: inode %i passes checks, but checksum does not match inode.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001910#: e2fsck/problem.c:1026
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001911#, c-format
1912msgid "@i %i passes checks, but checksum does not match @i. "
Tianze Wang57d69272016-08-31 23:14:17 -04001913msgstr "@i %i 通过检验,但其校验值与自身不符。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001914
1915#. @-expanded: inode %i extended attribute is corrupt (allocation collision).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001916#: e2fsck/problem.c:1031
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001917#, c-format
1918msgid "@i %i @a is corrupt (allocation collision). "
Tianze Wang57d69272016-08-31 23:14:17 -04001919msgstr "@i %i @a 已损坏(分配冲突)。 "
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001920
1921#. @-expanded: inode %i extent block passes checks, but checksum does not match extent\n
1922#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001923#: e2fsck/problem.c:1039
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001924msgid ""
1925"@i %i extent block passes checks, but checksum does not match extent\n"
1926"\t(logical @b %c, physical @b %b, len %N)\n"
1927msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001928"@i %i 外部块通过检验,但其校验值与自身不符\n"
1929"\t(逻辑@b %c,物理@b %b,长度 %N)\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001930
1931#. @-expanded: inode %i extended attribute block %b passes checks, but checksum does not match block.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001932#: e2fsck/problem.c:1048
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001933msgid "@i %i @a @b %b passes checks, but checksum does not match @b. "
Tianze Wang57d69272016-08-31 23:14:17 -04001934msgstr "@i %i 的@a @b %b 通过检验,但其校验值与自身不符。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001935
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001936#. @-expanded: Interior extent node level %N of inode %i:\n
1937#. @-expanded: Logical start %b does not match logical start %c at next level.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001938#: e2fsck/problem.c:1053
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001939msgid ""
1940"Interior @x node level %N of @i %i:\n"
1941"Logical start %b does not match logical start %c at next level. "
1942msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001943"@i %i 的子@x节点等级 %N:\n"
1944"逻辑起始位点 %b 与下一等级的逻辑起始位点 %c 不匹配。 "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001945
1946#. @-expanded: inode %i, end of extent exceeds allowed value\n
1947#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001948#: e2fsck/problem.c:1059
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001949msgid ""
1950"@i %i, end of extent exceeds allowed value\n"
1951"\t(logical @b %c, physical @b %b, len %N)\n"
1952msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001953"@i %i,extent结尾超过了允许范围\n"
1954"\t(逻辑@b %c,物理块@b %b,长度 %N)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001955
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001956#. @-expanded: inode %i has inline data, but superblock is missing INLINE_DATA feature\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001957#: e2fsck/problem.c:1064
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001958#, c-format
1959msgid "@i %i has inline data, but @S is missing INLINE_DATA feature\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001960msgstr "@i %i 含有内联数据,但@S不具有 INLINE_DATA 特性\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001961
1962#. @-expanded: inode %i has INLINE_DATA_FL flag on filesystem without inline data support.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001963#: e2fsck/problem.c:1069
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001964#, c-format
1965msgid "@i %i has INLINE_DATA_FL flag on @f without inline data support.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001966msgstr "@i %i 被设置了 INLINE_DATA_FL 标志,但文件系统不支持内联数据。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001967
1968#. @-expanded: inode %i block %b conflicts with critical metadata, skipping block checks.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001969#: e2fsck/problem.c:1076
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05001970msgid ""
1971"@i %i block %b conflicts with critical metadata, skipping block checks.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04001972msgstr "@i %i 块 %b 与关键元数据冲突,跳过对块的检查。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001973
Theodore Ts'obd386982015-05-17 20:34:58 -04001974#. @-expanded: directory inode %i block %b should be at block %c.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001975#: e2fsck/problem.c:1081
Theodore Ts'obd386982015-05-17 20:34:58 -04001976msgid "@d @i %i @b %b should be at @b %c. "
Tianze Wang57d69272016-08-31 23:14:17 -04001977msgstr "@d@i %i @b %b 应为@b %c。 "
Theodore Ts'obd386982015-05-17 20:34:58 -04001978
1979#. @-expanded: directory inode %i has extent marked uninitialized at block %c.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001980#: e2fsck/problem.c:1086
Tianze Wang57d69272016-08-31 23:14:17 -04001981#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04001982msgid "@d @i %i has @x marked uninitialized at @b %c. "
Tianze Wang57d69272016-08-31 23:14:17 -04001983msgstr "@d@i %i 含有被标记为未初始化的@x,位于@b %c。 "
Theodore Ts'obd386982015-05-17 20:34:58 -04001984
1985#. @-expanded: inode %i logical block %b (physical block %c) violates cluster allocation rules.\n
1986#. @-expanded: Will fix in pass 1B.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001987#: e2fsck/problem.c:1091
Theodore Ts'obd386982015-05-17 20:34:58 -04001988msgid ""
1989"@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\n"
1990"Will fix in pass 1B.\n"
1991msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04001992"@i %i 逻辑@b %b(物理@b %c)违反了块分配原则。\n"
1993"将会在第 1B 步中进行修复。\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001994
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001995#. @-expanded: inode %i has INLINE_DATA_FL flag but extended attribute not found.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04001996#: e2fsck/problem.c:1096
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04001997#, c-format
1998msgid "@i %i has INLINE_DATA_FL flag but @a not found. "
Tianze Wang57d69272016-08-31 23:14:17 -04001999msgstr "@i %i 被设置了INDEX_DATA_FL标志,但找不到相应的@a。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002000
2001#. @-expanded: Special (device/socket/fifo) file (inode %i) has extents\n
2002#. @-expanded: or inline-data flag set.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002003#: e2fsck/problem.c:1102
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002004#, c-format
2005msgid ""
2006"Special (@v/socket/fifo) file (@i %i) has extents\n"
2007"or inline-data flag set. "
2008msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002009"特殊文件(@v/套接字/队列)(@i %i)被设置了\n"
2010"extents 或内联数据标志。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002011
2012#. @-expanded: inode %i has extent header but inline data flag is set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002013#: e2fsck/problem.c:1108
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002014#, c-format
2015msgid "@i %i has @x header but inline data flag is set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002016msgstr "@i %i 含有@x头部,但被设置了内联数据标志。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002017
2018#. @-expanded: inode %i seems to have inline data but extent flag is set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002019#: e2fsck/problem.c:1113
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002020#, c-format
2021msgid "@i %i seems to have inline data but @x flag is set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002022msgstr "@i %i 似乎含有内联数据,但被设置了@x标志。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002023
2024#. @-expanded: inode %i seems to have block map but inline data and extent flags set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002025#: e2fsck/problem.c:1118
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002026#, c-format
2027msgid "@i %i seems to have @b map but inline data and @x flags set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002028msgstr "@i %i 似乎含有@b位图,但被设置了内联数据标志和@x标志。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002029
2030#. @-expanded: inode %i has inline data and extent flags set but i_block contains junk.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002031#: e2fsck/problem.c:1123
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002032#, c-format
2033msgid "@i %i has inline data and @x flags set but i_block contains junk.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002034msgstr "@i %i 含有内联数据且被设置了@x标志,但 i_block 中含有无效数据。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002035
2036#. @-expanded: Bad block list says the bad block list inode is bad.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002037#: e2fsck/problem.c:1128
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002038msgid "Bad block list says the bad block list @i is bad. "
Tianze Wang57d69272016-08-31 23:14:17 -04002039msgstr "坏块列表中的数据表明,坏块列表@i 已损坏。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002040
2041#. @-expanded: error allocating extent region allocation structure.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002042#: e2fsck/problem.c:1133
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002043msgid "@A @x region allocation structure. "
Tianze Wang57d69272016-08-31 23:14:17 -04002044msgstr "构建extent区域的分配结构体时出错。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002045
2046#. @-expanded: inode %i has a duplicate extent mapping\n
2047#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002048#: e2fsck/problem.c:1138
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002049msgid ""
2050"@i %i has a duplicate @x mapping\n"
2051"\t(logical @b %c, @n physical @b %b, len %N)\n"
2052msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002053"@i %i 含有重复的@x映射\n"
2054"\t(逻辑块 %c,@n物理块@b %b,长度 %N)\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002055
2056#. @-expanded: error allocating memory for encrypted directory list\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002057#: e2fsck/problem.c:1143
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002058msgid "@A memory for encrypted @d list\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002059msgstr "为加密@d列表分配内存时出错\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002060
2061#. @-expanded: inode %i extent tree could be more shallow (%b; could be <= %c)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002062#: e2fsck/problem.c:1148
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002063msgid "@i %i @x tree could be more shallow (%b; could be <= %c)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002064msgstr "@i %i @x树的深度可以更小(当前为%b;可以 <= %c)\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002065
2066#. @-expanded: inode %i on bigalloc filesystem cannot be block mapped.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002067#: e2fsck/problem.c:1153
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002068#, c-format
2069msgid "@i %i on bigalloc @f cannot be @b mapped. "
Tianze Wang57d69272016-08-31 23:14:17 -04002070msgstr "位于 bigalloc @f 的@i %i on bigalloc @f 无法被@b映射。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002071
2072#. @-expanded: inode %i has corrupt extent header.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002073#: e2fsck/problem.c:1158
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002074#, c-format
2075msgid "@i %i has corrupt @x header. "
Tianze Wang57d69272016-08-31 23:14:17 -04002076msgstr "@i %i 含有损坏的@x头部。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002077
2078#. @-expanded: Timestamp(s) on inode %i beyond 2310-04-04 are likely pre-1970.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002079#: e2fsck/problem.c:1163
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002080#, c-format
2081msgid "Timestamp(s) on @i %i beyond 2310-04-04 are likely pre-1970.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002082msgstr "@i %i 的时间戳超过了 2310-04-04,可能应为 1970 年之前。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002083
Theodore Ts'o899425b2018-02-27 22:25:04 -05002084#. @-expanded: inode %i has illegal extended attribute value inode %N.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002085#: e2fsck/problem.c:1168
Theodore Ts'o899425b2018-02-27 22:25:04 -05002086#, fuzzy
2087msgid "@i %i has @I @a value @i %N.\n"
2088msgstr "@i %i 有一个 @a@b %b。 "
2089
2090#. @-expanded: inode %i has invalid extended attribute. EA inode %N missing EA_INODE flag.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002091#: e2fsck/problem.c:1174
Theodore Ts'o899425b2018-02-27 22:25:04 -05002092#, fuzzy
2093msgid "@i %i has @n @a. EA @i %N missing EA_INODE flag.\n"
2094msgstr "@i %i 含有内联数据,但@S不具有 INLINE_DATA 特性\n"
2095
2096#. @-expanded: EA inode %N for parent inode %i missing EA_INODE flag.\n
2097#. @-expanded:
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002098#: e2fsck/problem.c:1179
Theodore Ts'o899425b2018-02-27 22:25:04 -05002099msgid ""
2100"EA @i %N for parent @i %i missing EA_INODE flag.\n"
2101" "
2102msgstr ""
2103
Theodore Ts'of722c132009-04-21 22:09:01 -04002104#. @-expanded: \n
2105#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
2106#. @-expanded: Pass 1B: Rescanning for multiply-claimed blocks\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002107#: e2fsck/problem.c:1187
Theodore Ts'of722c132009-04-21 22:09:01 -04002108msgid ""
2109"\n"
2110"Running additional passes to resolve @bs claimed by more than one @i...\n"
2111"Pass 1B: Rescanning for @m @bs\n"
2112msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002113"\n"
2114"执行额外的步骤来处理被多个@i引用的@b...\n"
2115"第 1B 步:重新扫描@m @b\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002116
2117#. @-expanded: multiply-claimed block(s) in inode %i:
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002118#: e2fsck/problem.c:1193
Theodore Ts'of722c132009-04-21 22:09:01 -04002119#, c-format
2120msgid "@m @b(s) in @i %i:"
Tianze Wang57d69272016-08-31 23:14:17 -04002121msgstr "@m@b位于@i %i:"
Theodore Ts'of722c132009-04-21 22:09:01 -04002122
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002123#: e2fsck/problem.c:1208
Theodore Ts'of722c132009-04-21 22:09:01 -04002124#, c-format
2125msgid "Error while scanning inodes (%i): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002126msgstr "扫描Inode(%i\\)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002127
2128#. @-expanded: error allocating inode bitmap (inode_dup_map): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002129#: e2fsck/problem.c:1213
Theodore Ts'of722c132009-04-21 22:09:01 -04002130#, c-format
2131msgid "@A @i @B (@i_dup_map): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002132msgstr "分配@i@B时出错(inode_dup_map):%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002133
2134#. @-expanded: Error while iterating over blocks in inode %i (%s): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002135#: e2fsck/problem.c:1218
Theodore Ts'of722c132009-04-21 22:09:01 -04002136#, c-format
2137msgid "Error while iterating over @bs in @i %i (%s): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002138msgstr "迭代@i %i中的@b时出错(%s):%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002139
2140#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002141#: e2fsck/problem.c:1223 e2fsck/problem.c:1585
Theodore Ts'of722c132009-04-21 22:09:01 -04002142msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002143msgstr "为@aB %b(@i %i)调整refcount时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002144
2145#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002146#: e2fsck/problem.c:1233
Theodore Ts'of722c132009-04-21 22:09:01 -04002147msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002148msgstr "第 1C 步:扫描含有@m@b的目录@i\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002149
2150#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002151#: e2fsck/problem.c:1239
Theodore Ts'of722c132009-04-21 22:09:01 -04002152msgid "Pass 1D: Reconciling @m @bs\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002153msgstr "第 1C 步:调整@m@b\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002154
2155#. @-expanded: File %Q (inode #%i, mod time %IM) \n
Dark Raven3be22a82010-04-19 16:59:03 -04002156#. @-expanded: has %r multiply-claimed block(s), shared with %N file(s):\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002157#: e2fsck/problem.c:1244
Theodore Ts'of722c132009-04-21 22:09:01 -04002158msgid ""
2159"File %Q (@i #%i, mod time %IM) \n"
Dark Raven3be22a82010-04-19 16:59:03 -04002160" has %r @m @b(s), shared with %N file(s):\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002161msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002162"文件 %Q(@i #%i,修改时间 %IM)\n"
2163"与 %N 个文件共享 %r 个@m@b\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002164
2165#. @-expanded: \t%Q (inode #%i, mod time %IM)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002166#: e2fsck/problem.c:1250
Theodore Ts'of722c132009-04-21 22:09:01 -04002167msgid "\t%Q (@i #%i, mod time %IM)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002168msgstr "\t%Q(@i #%i,修改时间 %IM)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002169
2170#. @-expanded: \t<filesystem metadata>\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002171#: e2fsck/problem.c:1255
Theodore Ts'of722c132009-04-21 22:09:01 -04002172msgid "\t<@f metadata>\n"
2173msgstr "\t<@f元数据>\n"
2174
2175#. @-expanded: (There are %N inodes containing multiply-claimed blocks.)\n
2176#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002177#: e2fsck/problem.c:1260
Theodore Ts'of722c132009-04-21 22:09:01 -04002178msgid ""
2179"(There are %N @is containing @m @bs.)\n"
2180"\n"
2181msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002182"(共有 %N 含有@m@b的@i)\n"
2183"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002184
2185#. @-expanded: multiply-claimed blocks already reassigned or cloned.\n
2186#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002187#: e2fsck/problem.c:1265
Theodore Ts'of722c132009-04-21 22:09:01 -04002188msgid ""
2189"@m @bs already reassigned or cloned.\n"
2190"\n"
2191msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002192"@m@b已被重新分配或克隆。\n"
2193"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002194
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002195#: e2fsck/problem.c:1278
Theodore Ts'of722c132009-04-21 22:09:01 -04002196#, c-format
2197msgid "Couldn't clone file: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002198msgstr "无法克隆文件:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002199
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002200#. @-expanded: Pass 1E: Optimizing extent trees\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002201#: e2fsck/problem.c:1284
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002202msgid "Pass 1E: Optimizing @x trees\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002203msgstr "第 1E 步:优化@x树\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002204
2205#. @-expanded: Failed to optimize extent tree %p (%i): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002206#: e2fsck/problem.c:1289
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002207#, c-format
2208msgid "Failed to optimize @x tree %p (%i): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002209msgstr "优化@x树 %p(%i)失败:%m\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002210
2211#. @-expanded: Optimizing extent trees:
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002212#: e2fsck/problem.c:1294
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002213msgid "Optimizing @x trees: "
Tianze Wang57d69272016-08-31 23:14:17 -04002214msgstr "优化@x树:"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002215
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002216#: e2fsck/problem.c:1309
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002217msgid "Internal error: max extent tree depth too large (%b; expected=%c).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002218msgstr "内部错误:extent树的最大深度过大(当前为 %b;应为 %c)。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002219
2220#. @-expanded: inode %i extent tree (at level %b) could be shorter.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002221#: e2fsck/problem.c:1314
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002222msgid "@i %i @x tree (at level %b) could be shorter. "
Tianze Wang57d69272016-08-31 23:14:17 -04002223msgstr "@i %i 的@x树(位于第 %b 层)的深度可以更小。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002224
2225#. @-expanded: inode %i extent tree (at level %b) could be narrower.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002226#: e2fsck/problem.c:1319
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002227msgid "@i %i @x tree (at level %b) could be narrower. "
Tianze Wang57d69272016-08-31 23:14:17 -04002228msgstr "@i %i 的@x树(位于第 %b 层)可以更窄。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002229
Theodore Ts'of722c132009-04-21 22:09:01 -04002230#. @-expanded: Pass 2: Checking directory structure\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002231#: e2fsck/problem.c:1326
Theodore Ts'of722c132009-04-21 22:09:01 -04002232msgid "Pass 2: Checking @d structure\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002233msgstr "第 2 步:检查目录结构\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002234
2235#. @-expanded: invalid inode number for '.' in directory inode %i.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002236#: e2fsck/problem.c:1331
Theodore Ts'of722c132009-04-21 22:09:01 -04002237#, c-format
2238msgid "@n @i number for '.' in @d @i %i.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002239msgstr "@d@i %i 中“.”的@n@i编号无效。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002240
2241#. @-expanded: entry '%Dn' in %p (%i) has invalid inode #: %Di.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002242#: e2fsck/problem.c:1336
Theodore Ts'of722c132009-04-21 22:09:01 -04002243msgid "@E has @n @i #: %Di.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002244msgstr "@E含有@n@i #:%Di\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002245
2246#. @-expanded: entry '%Dn' in %p (%i) has deleted/unused inode %Di.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002247#: e2fsck/problem.c:1341
Theodore Ts'of722c132009-04-21 22:09:01 -04002248msgid "@E has @D/unused @i %Di. "
Tianze Wang57d69272016-08-31 23:14:17 -04002249msgstr "@E含有@D或未使用的@ %Di。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002250
2251#. @-expanded: entry '%Dn' in %p (%i) is a link to '.'
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002252#: e2fsck/problem.c:1346
Theodore Ts'of722c132009-04-21 22:09:01 -04002253msgid "@E @L to '.' "
Tianze Wang57d69272016-08-31 23:14:17 -04002254msgstr "@E是一个指向“.”的链接"
Theodore Ts'of722c132009-04-21 22:09:01 -04002255
2256#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002257#: e2fsck/problem.c:1351
Theodore Ts'of722c132009-04-21 22:09:01 -04002258msgid "@E points to @i (%Di) located in a bad @b.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002259msgstr "@E指向位于坏@b的@i(%Di)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002260
2261#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002262#: e2fsck/problem.c:1356
Theodore Ts'of722c132009-04-21 22:09:01 -04002263msgid "@E @L to @d %P (%Di).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002264msgstr "@E是一个指向@d %P(%Di)的链接。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002265
2266#. @-expanded: entry '%Dn' in %p (%i) is a link to the root inode.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002267#: e2fsck/problem.c:1361
Theodore Ts'of722c132009-04-21 22:09:01 -04002268msgid "@E @L to the @r.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002269msgstr "@E是一个指向@r的链接。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002270
2271#. @-expanded: entry '%Dn' in %p (%i) has illegal characters in its name.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002272#: e2fsck/problem.c:1366
Theodore Ts'of722c132009-04-21 22:09:01 -04002273msgid "@E has illegal characters in its name.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002274msgstr "@E的名称中有无效字符。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002275
2276#. @-expanded: Missing '.' in directory inode %i.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002277#: e2fsck/problem.c:1371
Theodore Ts'of722c132009-04-21 22:09:01 -04002278#, c-format
2279msgid "Missing '.' in @d @i %i.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002280msgstr "@d@i %i 中缺少“.”。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002281
2282#. @-expanded: Missing '..' in directory inode %i.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002283#: e2fsck/problem.c:1376
Theodore Ts'of722c132009-04-21 22:09:01 -04002284#, c-format
2285msgid "Missing '..' in @d @i %i.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002286msgstr "@d@i %i 中缺少“..”。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002287
2288#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002289#: e2fsck/problem.c:1381
Theodore Ts'of722c132009-04-21 22:09:01 -04002290msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002291msgstr "@d@i %i 中的第一个@e“%Dn”(@i=%Di)@s“.”\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002292
2293#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002294#: e2fsck/problem.c:1386
Theodore Ts'of722c132009-04-21 22:09:01 -04002295msgid "Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002296msgstr "@d@i %i 中的第二个@e“%Dn”(@i=%Di)@s“..”\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002297
2298#. @-expanded: i_faddr for inode %i (%Q) is %IF, should be zero.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002299#: e2fsck/problem.c:1391
Theodore Ts'of722c132009-04-21 22:09:01 -04002300msgid "i_faddr @F %IF, @s zero.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002301msgstr "@i %i (%Q)的i_faddr为 %IF,@s0。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002302
2303#. @-expanded: i_file_acl for inode %i (%Q) is %If, should be zero.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002304#: e2fsck/problem.c:1396
Theodore Ts'of722c132009-04-21 22:09:01 -04002305msgid "i_file_acl @F %If, @s zero.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002306msgstr "@i %i (%Q)的i_file_acl为 %IF,@s0。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002307
Theodore Ts'o899425b2018-02-27 22:25:04 -05002308#. @-expanded: i_size_high for inode %i (%Q) is %Id, should be zero.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002309#: e2fsck/problem.c:1401
Theodore Ts'o899425b2018-02-27 22:25:04 -05002310#, fuzzy
2311msgid "i_size_high @F %Id, @s zero.\n"
2312msgstr "@i %i (%Q)的i_size为 %N,@s0。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002313
2314#. @-expanded: i_frag for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002315#: e2fsck/problem.c:1406
Theodore Ts'of722c132009-04-21 22:09:01 -04002316msgid "i_frag @F %N, @s zero.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002317msgstr "@i %i (%Q)的i_frag为 %N,@s0。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002318
2319#. @-expanded: i_fsize for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002320#: e2fsck/problem.c:1411
Theodore Ts'of722c132009-04-21 22:09:01 -04002321msgid "i_fsize @F %N, @s zero.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002322msgstr "@i %i (%Q)的i_size为 %N,@s0。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002323
2324#. @-expanded: inode %i (%Q) has invalid mode (%Im).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002325#: e2fsck/problem.c:1416
Theodore Ts'of722c132009-04-21 22:09:01 -04002326msgid "@i %i (%Q) has @n mode (%Im).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002327msgstr "@i %i(%Q)有@n模式 (%Im)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002328
Dark Raven3be22a82010-04-19 16:59:03 -04002329#. @-expanded: directory inode %i, %B, offset %N: directory corrupted\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002330#: e2fsck/problem.c:1421
Dark Raven3be22a82010-04-19 16:59:03 -04002331msgid "@d @i %i, %B, offset %N: @d corrupted\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002332msgstr "@d@i %i,%B,偏移量 %N:@d已损坏\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002333
Dark Raven3be22a82010-04-19 16:59:03 -04002334#. @-expanded: directory inode %i, %B, offset %N: filename too long\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002335#: e2fsck/problem.c:1426
Dark Raven3be22a82010-04-19 16:59:03 -04002336msgid "@d @i %i, %B, offset %N: filename too long\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002337msgstr "@d@i %i,%B,偏移量 %N:文件名过长\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002338
Dark Raven3be22a82010-04-19 16:59:03 -04002339#. @-expanded: directory inode %i has an unallocated %B.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002340#: e2fsck/problem.c:1431
Dark Raven3be22a82010-04-19 16:59:03 -04002341msgid "@d @i %i has an unallocated %B. "
Tianze Wang57d69272016-08-31 23:14:17 -04002342msgstr "@d@i %i 含有未分配的 %B。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002343
2344#. @-expanded: '.' directory entry in directory inode %i is not NULL terminated\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002345#: e2fsck/problem.c:1436
Theodore Ts'of722c132009-04-21 22:09:01 -04002346#, c-format
2347msgid "'.' @d @e in @d @i %i is not NULL terminated\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002348msgstr "@d@i %i 中的“.”@d@e 没有以NULL终止\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002349
2350#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002351#: e2fsck/problem.c:1441
Theodore Ts'of722c132009-04-21 22:09:01 -04002352#, c-format
2353msgid "'..' @d @e in @d @i %i is not NULL terminated\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002354msgstr "@d@i %i 中的“..”@d@e 没有以NULL终止\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002355
2356#. @-expanded: inode %i (%Q) is an illegal character device.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002357#: e2fsck/problem.c:1446
Theodore Ts'of722c132009-04-21 22:09:01 -04002358msgid "@i %i (%Q) is an @I character @v.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002359msgstr "@i %i(%Q)是一个@I的字符@v。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002360
2361#. @-expanded: inode %i (%Q) is an illegal block device.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002362#: e2fsck/problem.c:1451
Theodore Ts'of722c132009-04-21 22:09:01 -04002363msgid "@i %i (%Q) is an @I @b @v.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002364msgstr "@i %i(%Q)是一个@I的@b@v。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002365
2366#. @-expanded: entry '%Dn' in %p (%i) is duplicate '.' entry.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002367#: e2fsck/problem.c:1456
Theodore Ts'of722c132009-04-21 22:09:01 -04002368msgid "@E is duplicate '.' @e.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002369msgstr "@E为重复的“.”目录@e。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002370
2371#. @-expanded: entry '%Dn' in %p (%i) is duplicate '..' entry.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002372#: e2fsck/problem.c:1461
Theodore Ts'of722c132009-04-21 22:09:01 -04002373msgid "@E is duplicate '..' @e.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002374msgstr "@E为重复的“..”目录@e。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002375
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002376#: e2fsck/problem.c:1466 e2fsck/problem.c:1801
Theodore Ts'of722c132009-04-21 22:09:01 -04002377#, c-format
2378msgid "Internal error: couldn't find dir_info for %i.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002379msgstr "内部错误:无法找到 %i 的dir_info。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002380
2381#. @-expanded: entry '%Dn' in %p (%i) has rec_len of %Dr, should be %N.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002382#: e2fsck/problem.c:1471
Theodore Ts'of722c132009-04-21 22:09:01 -04002383msgid "@E has rec_len of %Dr, @s %N.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002384msgstr "@E的rec_len为 %Dr,@s %N。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002385
2386#. @-expanded: error allocating icount structure: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002387#: e2fsck/problem.c:1476
Theodore Ts'of722c132009-04-21 22:09:01 -04002388#, c-format
2389msgid "@A icount structure: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002390msgstr "分配icount结构体时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002391
2392#. @-expanded: Error iterating over directory blocks: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002393#: e2fsck/problem.c:1481
Theodore Ts'of722c132009-04-21 22:09:01 -04002394#, c-format
2395msgid "Error iterating over @d @bs: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002396msgstr "迭代@d@b时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002397
2398#. @-expanded: Error reading directory block %b (inode %i): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002399#: e2fsck/problem.c:1486
Theodore Ts'of722c132009-04-21 22:09:01 -04002400msgid "Error reading @d @b %b (@i %i): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002401msgstr "读取@d@b %b(@i %i)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002402
2403#. @-expanded: Error writing directory block %b (inode %i): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002404#: e2fsck/problem.c:1491
Theodore Ts'of722c132009-04-21 22:09:01 -04002405msgid "Error writing @d @b %b (@i %i): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002406msgstr "写入@d@b %b(@i %i)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002407
2408#. @-expanded: error allocating new directory block for inode %i (%s): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002409#: e2fsck/problem.c:1496
Theodore Ts'of722c132009-04-21 22:09:01 -04002410#, c-format
2411msgid "@A new @d @b for @i %i (%s): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002412msgstr "为@i %i(%s)分配新@d@b时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002413
2414#. @-expanded: Error deallocating inode %i: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002415#: e2fsck/problem.c:1501
Theodore Ts'of722c132009-04-21 22:09:01 -04002416#, c-format
2417msgid "Error deallocating @i %i: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002418msgstr "取消分配@i %i时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002419
2420#. @-expanded: directory entry for '.' in %p (%i) is big.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002421#: e2fsck/problem.c:1506
Theodore Ts'of722c132009-04-21 22:09:01 -04002422#, c-format
2423msgid "@d @e for '.' in %p (%i) is big.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002424msgstr "%p(%i)中“.”的@d@e太大。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002425
2426#. @-expanded: inode %i (%Q) is an illegal FIFO.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002427#: e2fsck/problem.c:1511
Theodore Ts'of722c132009-04-21 22:09:01 -04002428msgid "@i %i (%Q) is an @I FIFO.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002429msgstr "@i %i(%Q)是一个@I队列。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002430
2431#. @-expanded: inode %i (%Q) is an illegal socket.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002432#: e2fsck/problem.c:1516
Theodore Ts'of722c132009-04-21 22:09:01 -04002433msgid "@i %i (%Q) is an @I socket.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002434msgstr "@i %i(%Q)是一个@I套接字。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002435
2436#. @-expanded: Setting filetype for entry '%Dn' in %p (%i) to %N.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002437#: e2fsck/problem.c:1521
Theodore Ts'of722c132009-04-21 22:09:01 -04002438msgid "Setting filetype for @E to %N.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002439msgstr "将@E的文件类型设置为 %N。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002440
2441#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002442#: e2fsck/problem.c:1526
Theodore Ts'of722c132009-04-21 22:09:01 -04002443msgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002444msgstr "@E含有错误的文件类型(%Dt,@s %N)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002445
2446#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002447#: e2fsck/problem.c:1531
Theodore Ts'of722c132009-04-21 22:09:01 -04002448msgid "@E has filetype set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002449msgstr "@E被设置了文件类型。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002450
2451#. @-expanded: entry '%Dn' in %p (%i) has a zero-length name.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002452#: e2fsck/problem.c:1536
Theodore Ts'of722c132009-04-21 22:09:01 -04002453msgid "@E has a @z name.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002454msgstr "@E含有长度为零的名称。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002455
2456#. @-expanded: Symlink %Q (inode #%i) is invalid.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002457#: e2fsck/problem.c:1541
Theodore Ts'of722c132009-04-21 22:09:01 -04002458msgid "Symlink %Q (@i #%i) is @n.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002459msgstr "符号链接 %Q(@i #%i)无效。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002460
2461#. @-expanded: extended attribute block for inode %i (%Q) is invalid (%If).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002462#: e2fsck/problem.c:1546
Theodore Ts'of722c132009-04-21 22:09:01 -04002463msgid "@a @b @F @n (%If).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002464msgstr "@i %i 的@a@b无效(%lf)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002465
2466#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002467#: e2fsck/problem.c:1551
Theodore Ts'of722c132009-04-21 22:09:01 -04002468msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002469msgstr "@f含有大文件,但@S中未设置LARGE_FILE标志。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002470
Dark Raven3be22a82010-04-19 16:59:03 -04002471#. @-expanded: problem in HTREE directory inode %d: %B not referenced\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002472#: e2fsck/problem.c:1556
Dark Raven3be22a82010-04-19 16:59:03 -04002473msgid "@p @h %d: %B not referenced\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002474msgstr "@h %d 中发现问题:%B\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002475
Dark Raven3be22a82010-04-19 16:59:03 -04002476#. @-expanded: problem in HTREE directory inode %d: %B referenced twice\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002477#: e2fsck/problem.c:1561
Dark Raven3be22a82010-04-19 16:59:03 -04002478msgid "@p @h %d: %B referenced twice\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002479msgstr "@h %d 中发现问题:%B 被引用了两次\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002480
Dark Raven3be22a82010-04-19 16:59:03 -04002481#. @-expanded: problem in HTREE directory inode %d: %B has bad min hash\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002482#: e2fsck/problem.c:1566
Dark Raven3be22a82010-04-19 16:59:03 -04002483msgid "@p @h %d: %B has bad min hash\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002484msgstr "@h %d 中发现问题:%B 含有错误的最小hash值\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002485
Dark Raven3be22a82010-04-19 16:59:03 -04002486#. @-expanded: problem in HTREE directory inode %d: %B has bad max hash\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002487#: e2fsck/problem.c:1571
Dark Raven3be22a82010-04-19 16:59:03 -04002488msgid "@p @h %d: %B has bad max hash\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002489msgstr "@h %d 中发现问题:%B 含有错误的最大hash值\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002490
2491#. @-expanded: invalid HTREE directory inode %d (%q).
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002492#: e2fsck/problem.c:1576
Theodore Ts'of722c132009-04-21 22:09:01 -04002493msgid "@n @h %d (%q). "
Tianze Wang57d69272016-08-31 23:14:17 -04002494msgstr "@n@h %d(%q)。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002495
2496#. @-expanded: problem in HTREE directory inode %d (%q): bad block number %b.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002497#: e2fsck/problem.c:1580
Theodore Ts'of722c132009-04-21 22:09:01 -04002498msgid "@p @h %d (%q): bad @b number %b.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002499msgstr "@h %d(%q)中发现问题:@b编号 %b 无效。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002500
2501#. @-expanded: problem in HTREE directory inode %d: root node is invalid\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002502#: e2fsck/problem.c:1590
Theodore Ts'of722c132009-04-21 22:09:01 -04002503#, c-format
2504msgid "@p @h %d: root node is @n\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002505msgstr "@p@h %d:结点@n\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002506
Dark Raven3be22a82010-04-19 16:59:03 -04002507#. @-expanded: problem in HTREE directory inode %d: %B has invalid limit (%N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002508#: e2fsck/problem.c:1595
Dark Raven3be22a82010-04-19 16:59:03 -04002509msgid "@p @h %d: %B has @n limit (%N)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002510msgstr "@h %d 中发现问题:%B 含有@n限制(%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002511
Dark Raven3be22a82010-04-19 16:59:03 -04002512#. @-expanded: problem in HTREE directory inode %d: %B has invalid count (%N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002513#: e2fsck/problem.c:1600
Dark Raven3be22a82010-04-19 16:59:03 -04002514msgid "@p @h %d: %B has @n count (%N)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002515msgstr "@h %d 中发现问题:%B 含有@n计数(%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002516
Dark Raven3be22a82010-04-19 16:59:03 -04002517#. @-expanded: problem in HTREE directory inode %d: %B has an unordered hash table\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002518#: e2fsck/problem.c:1605
Dark Raven3be22a82010-04-19 16:59:03 -04002519msgid "@p @h %d: %B has an unordered hash table\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002520msgstr "@h %d 中发现问题:%B 含有未排序的hash表\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002521
Dark Raven3be22a82010-04-19 16:59:03 -04002522#. @-expanded: problem in HTREE directory inode %d: %B has invalid depth (%N)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002523#: e2fsck/problem.c:1610
Dark Raven3be22a82010-04-19 16:59:03 -04002524msgid "@p @h %d: %B has @n depth (%N)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002525msgstr "@h %d 中发现问题:%B 含有@n深度(%N)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002526
2527#. @-expanded: Duplicate entry '%Dn' in %p (%i) found.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002528#: e2fsck/problem.c:1615
Theodore Ts'of722c132009-04-21 22:09:01 -04002529msgid "Duplicate @E found. "
Tianze Wang57d69272016-08-31 23:14:17 -04002530msgstr "发现%p(%i)中有重复项“%Dn”。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002531
2532#. @-expanded: entry '%Dn' in %p (%i) has a non-unique filename.\n
2533#. @-expanded: Rename to %s
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002534#: e2fsck/problem.c:1620
Theodore Ts'of722c132009-04-21 22:09:01 -04002535#, no-c-format
2536msgid ""
2537"@E has a non-unique filename.\n"
2538"Rename to %s"
2539msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002540"@E含有一个非唯一的文件名。\n"
2541"已重命名为%s"
Theodore Ts'of722c132009-04-21 22:09:01 -04002542
2543#. @-expanded: Duplicate entry '%Dn' found.\n
2544#. @-expanded: \tMarking %p (%i) to be rebuilt.\n
2545#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002546#: e2fsck/problem.c:1625
Theodore Ts'of722c132009-04-21 22:09:01 -04002547msgid ""
2548"Duplicate @e '%Dn' found.\n"
2549"\tMarking %p (%i) to be rebuilt.\n"
2550"\n"
2551msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002552"发现了重复的@e”@Dn“。\n"
2553"\t将 %p(%i)标记为需要重建的。\n"
2554"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002555
2556#. @-expanded: i_blocks_hi for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002557#: e2fsck/problem.c:1630
Theodore Ts'of722c132009-04-21 22:09:01 -04002558msgid "i_blocks_hi @F %N, @s zero.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002559msgstr "@i %i(%Q)的i_blocks_hi为 %N,@s0。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002560
2561#. @-expanded: Unexpected block in HTREE directory inode %d (%q).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002562#: e2fsck/problem.c:1635
Theodore Ts'of722c132009-04-21 22:09:01 -04002563msgid "Unexpected @b in @h %d (%q).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002564msgstr "@h %d(%q)中有额外的@b。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002565
Theodore Ts'o930e2812009-06-29 15:08:12 -04002566#. @-expanded: entry '%Dn' in %p (%i) references inode %Di in group %g where _INODE_UNINIT is set.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002567#: e2fsck/problem.c:1639
Theodore Ts'o930e2812009-06-29 15:08:12 -04002568msgid "@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002569msgstr "@E引用了@g %g 中的@i %Di,但该@g被设置了_INODE_UNINIT标志。 \n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002570
Theodore Ts'o930e2812009-06-29 15:08:12 -04002571#. @-expanded: entry '%Dn' in %p (%i) references inode %Di found in group %g's unused inodes area.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002572#: e2fsck/problem.c:1644
Theodore Ts'o930e2812009-06-29 15:08:12 -04002573msgid "@E references @i %Di found in @g %g's unused inodes area.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002574msgstr "@E引用了@g %g 中的@i %Di,但该@i位于未使用inode区。 \n"
Theodore Ts'o930e2812009-06-29 15:08:12 -04002575
2576#. @-expanded: i_file_acl_hi for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002577#: e2fsck/problem.c:1649
Theodore Ts'o930e2812009-06-29 15:08:12 -04002578msgid "i_file_acl_hi @F %N, @s zero.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002579msgstr "@i %i (%Q)的i_file_acl_hi为 %N,@s0。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002580
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002581#. @-expanded: problem in HTREE directory inode %d: root node fails checksum.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002582#: e2fsck/problem.c:1654
Tianze Wang57d69272016-08-31 23:14:17 -04002583#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002584msgid "@p @h %d: root node fails checksum.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002585msgstr "@p@h %d:根结点的校验值错误。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002586
2587#. @-expanded: problem in HTREE directory inode %d: internal node fails checksum.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002588#: e2fsck/problem.c:1659
Tianze Wang57d69272016-08-31 23:14:17 -04002589#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002590msgid "@p @h %d: internal node fails checksum.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002591msgstr "@p@h %d:内部结点的校验值错误。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002592
2593#. @-expanded: directory inode %i, %B, offset %N: directory has no checksum.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002594#: e2fsck/problem.c:1664
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002595msgid "@d @i %i, %B, offset %N: @d has no checksum.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002596msgstr "@d@i %i,%B,偏移量 %N:@d缺少校验值。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002597
2598#. @-expanded: directory inode %i, %B: directory passes checks but fails checksum.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002599#: e2fsck/problem.c:1669
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002600msgid "@d @i %i, %B: @d passes checks but fails checksum.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002601msgstr "@d@i %i,%B:@d通过了检验,但校验值错误。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002602
2603#. @-expanded: Inline directory inode %i size (%N) must be a multiple of 4.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002604#: e2fsck/problem.c:1674
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002605msgid "Inline @d @i %i size (%N) must be a multiple of 4.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002606msgstr "内联@d @i %i 的大小(%N)必须为4的整数倍。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002607
2608#. @-expanded: Fixing size of inline directory inode %i failed.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002609#: e2fsck/problem.c:1679
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002610#, c-format
2611msgid "Fixing size of inline @d @i %i failed.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002612msgstr "修复内联@d @i %i 的大小失败。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002613
2614#. @-expanded: Encrypted entry '%Dn' in %p (%i) is too short.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002615#: e2fsck/problem.c:1684
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002616msgid "Encrypted @E is too short.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002617msgstr "加密的@E太短。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002618
Theodore Ts'of722c132009-04-21 22:09:01 -04002619#. @-expanded: Pass 3: Checking directory connectivity\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002620#: e2fsck/problem.c:1691
Theodore Ts'of722c132009-04-21 22:09:01 -04002621msgid "Pass 3: Checking @d connectivity\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002622msgstr "第 3 步:检查目录连接性\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002623
2624#. @-expanded: root inode not allocated.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002625#: e2fsck/problem.c:1696
Theodore Ts'of722c132009-04-21 22:09:01 -04002626msgid "@r not allocated. "
Tianze Wang57d69272016-08-31 23:14:17 -04002627msgstr "@r未被分配。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002628
2629#. @-expanded: No room in lost+found directory.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002630#: e2fsck/problem.c:1701
Theodore Ts'of722c132009-04-21 22:09:01 -04002631msgid "No room in @l @d. "
Tianze Wang57d69272016-08-31 23:14:17 -04002632msgstr "@l@d中没有空间。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002633
2634#. @-expanded: Unconnected directory inode %i (%p)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002635#: e2fsck/problem.c:1706
Theodore Ts'of722c132009-04-21 22:09:01 -04002636#, c-format
2637msgid "Unconnected @d @i %i (%p)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002638msgstr "未被连接的@d@i %i(%p)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002639
2640#. @-expanded: /lost+found not found.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002641#: e2fsck/problem.c:1711
Theodore Ts'of722c132009-04-21 22:09:01 -04002642msgid "/@l not found. "
Tianze Wang57d69272016-08-31 23:14:17 -04002643msgstr "/@l未找到。"
Theodore Ts'of722c132009-04-21 22:09:01 -04002644
2645#. @-expanded: '..' in %Q (%i) is %P (%j), should be %q (%d).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002646#: e2fsck/problem.c:1716
Theodore Ts'of722c132009-04-21 22:09:01 -04002647msgid "'..' in %Q (%i) is %P (%j), @s %q (%d).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002648msgstr "%Q(%i)中的“..”为 %P(%j),@s %q(%d)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002649
2650#. @-expanded: Bad or non-existent /lost+found. Cannot reconnect.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002651#: e2fsck/problem.c:1721
Theodore Ts'of722c132009-04-21 22:09:01 -04002652msgid "Bad or non-existent /@l. Cannot reconnect.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002653msgstr "错误或不存在的/@l。无法重新连接。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002654
2655#. @-expanded: Could not expand /lost+found: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002656#: e2fsck/problem.c:1726
Theodore Ts'of722c132009-04-21 22:09:01 -04002657#, c-format
2658msgid "Could not expand /@l: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002659msgstr "无法扩充/@l:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002660
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002661#: e2fsck/problem.c:1731
Theodore Ts'of722c132009-04-21 22:09:01 -04002662#, c-format
2663msgid "Could not reconnect %i: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002664msgstr "无法重新连接%i:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002665
2666#. @-expanded: Error while trying to find /lost+found: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002667#: e2fsck/problem.c:1736
Theodore Ts'of722c132009-04-21 22:09:01 -04002668#, c-format
2669msgid "Error while trying to find /@l: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002670msgstr "尝试查找/@l时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002671
2672#. @-expanded: ext2fs_new_block: %m while trying to create /lost+found directory\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002673#: e2fsck/problem.c:1741
Theodore Ts'of722c132009-04-21 22:09:01 -04002674#, c-format
2675msgid "ext2fs_new_@b: %m while trying to create /@l @d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002676msgstr "ext2fs_new_block:尝试创建/@l@d时%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002677
2678#. @-expanded: ext2fs_new_inode: %m while trying to create /lost+found directory\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002679#: e2fsck/problem.c:1746
Theodore Ts'of722c132009-04-21 22:09:01 -04002680#, c-format
2681msgid "ext2fs_new_@i: %m while trying to create /@l @d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002682msgstr "ext2fs_new_inode:尝试创建/@l@d时%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002683
2684#. @-expanded: ext2fs_new_dir_block: %m while creating new directory block\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002685#: e2fsck/problem.c:1751
Theodore Ts'of722c132009-04-21 22:09:01 -04002686#, c-format
2687msgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002688msgstr "ext2fs_new_dir_block:创建新的@d@b时%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002689
2690#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002691#: e2fsck/problem.c:1756
Theodore Ts'of722c132009-04-21 22:09:01 -04002692#, c-format
2693msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002694msgstr "ext2fs_new_dir_block:为/@l创建新的@d@b时%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002695
2696#. @-expanded: Error while adjusting inode count on inode %i\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002697#: e2fsck/problem.c:1761
Theodore Ts'of722c132009-04-21 22:09:01 -04002698#, c-format
2699msgid "Error while adjusting @i count on @i %i\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002700msgstr "调整@i %i的inode计数时出错\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002701
2702#. @-expanded: Couldn't fix parent of inode %i: %m\n
2703#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002704#: e2fsck/problem.c:1766
Theodore Ts'of722c132009-04-21 22:09:01 -04002705#, c-format
2706msgid ""
2707"Couldn't fix parent of @i %i: %m\n"
2708"\n"
2709msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002710"无法修改@i %i的父节点:%m\n"
2711"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002712
2713#. @-expanded: Couldn't fix parent of inode %i: Couldn't find parent directory entry\n
2714#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002715#: e2fsck/problem.c:1771
Theodore Ts'of722c132009-04-21 22:09:01 -04002716#, c-format
2717msgid ""
2718"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
2719"\n"
2720msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002721"无法修改@i %i的父节点:无法找到其父@d@e\n"
2722"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002723
2724#. @-expanded: Error creating root directory (%s): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002725#: e2fsck/problem.c:1781
Theodore Ts'of722c132009-04-21 22:09:01 -04002726#, c-format
2727msgid "Error creating root @d (%s): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002728msgstr "创建根@d(%s)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002729
2730#. @-expanded: Error creating /lost+found directory (%s): %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002731#: e2fsck/problem.c:1786
Theodore Ts'of722c132009-04-21 22:09:01 -04002732#, c-format
2733msgid "Error creating /@l @d (%s): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002734msgstr "创建/@l@d(%s)时出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002735
2736#. @-expanded: root inode is not a directory; aborting.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002737#: e2fsck/problem.c:1791
Theodore Ts'of722c132009-04-21 22:09:01 -04002738msgid "@r is not a @d; aborting.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002739msgstr "@r不是一个@d;已终止执行。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002740
2741#. @-expanded: Cannot proceed without a root inode.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002742#: e2fsck/problem.c:1796
Theodore Ts'of722c132009-04-21 22:09:01 -04002743msgid "Cannot proceed without a @r.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002744msgstr "无法在没有@r的情况下继续。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002745
2746#. @-expanded: /lost+found is not a directory (ino=%i)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002747#: e2fsck/problem.c:1806
Theodore Ts'of722c132009-04-21 22:09:01 -04002748#, c-format
2749msgid "/@l is not a @d (ino=%i)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002750msgstr "/@l 不是一个@d(ino=%i)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002751
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002752#. @-expanded: /lost+found has inline data\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002753#: e2fsck/problem.c:1811
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002754msgid "/@l has inline data\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002755msgstr "/@l 含有内联数据\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002756
2757#. @-expanded: Cannot allocate space for /lost+found.\n
2758#. @-expanded: Place lost files in root directory instead
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002759#: e2fsck/problem.c:1816
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002760msgid ""
2761"Cannot allocate space for /@l.\n"
2762"Place lost files in root directory instead"
2763msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002764"无法为 /@l 分配空间。\n"
2765"请将丢失的文件置于根目录下"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002766
2767#. @-expanded: Insufficient space to recover lost files!\n
2768#. @-expanded: Move data off the filesystem and re-run e2fsck.\n
2769#. @-expanded: \n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002770#: e2fsck/problem.c:1821
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002771msgid ""
2772"Insufficient space to recover lost files!\n"
2773"Move data off the @f and re-run e2fsck.\n"
2774"\n"
2775msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002776"没有足够的空间来回复丢失文件!\n"
2777"请将数据从@f中移出,然后重新运行 e2fsck。\n"
2778"\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002779
2780#. @-expanded: /lost+found is encrypted\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002781#: e2fsck/problem.c:1826
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002782msgid "/@l is encrypted\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002783msgstr "/@l 已被加密\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002784
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002785#: e2fsck/problem.c:1833
Theodore Ts'of722c132009-04-21 22:09:01 -04002786msgid "Pass 3A: Optimizing directories\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002787msgstr "第 3A 步:优化目录\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002788
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002789#: e2fsck/problem.c:1838
Theodore Ts'of722c132009-04-21 22:09:01 -04002790#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04002791msgid "Failed to create dirs_to_hash iterator: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002792msgstr "创建dirs_to_hash迭代器出错:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002793
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002794#: e2fsck/problem.c:1843
Theodore Ts'o930e2812009-06-29 15:08:12 -04002795msgid "Failed to optimize directory %q (%d): %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002796msgstr "优化目录 %q(%d)失败:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002797
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002798#: e2fsck/problem.c:1848
Dark Raven3be22a82010-04-19 16:59:03 -04002799msgid "Optimizing directories: "
Tianze Wang57d69272016-08-31 23:14:17 -04002800msgstr "优化目录: "
Dark Raven3be22a82010-04-19 16:59:03 -04002801
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002802#: e2fsck/problem.c:1865
Theodore Ts'of722c132009-04-21 22:09:01 -04002803msgid "Pass 4: Checking reference counts\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002804msgstr "第 4 步:检查引用计数\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002805
2806#. @-expanded: unattached zero-length inode %i.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002807#: e2fsck/problem.c:1870
Theodore Ts'of722c132009-04-21 22:09:01 -04002808#, c-format
2809msgid "@u @z @i %i. "
Tianze Wang57d69272016-08-31 23:14:17 -04002810msgstr "@u@z@i %i。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002811
2812#. @-expanded: unattached inode %i\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002813#: e2fsck/problem.c:1875
Theodore Ts'of722c132009-04-21 22:09:01 -04002814#, c-format
2815msgid "@u @i %i\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002816msgstr "@u@i %i。 \n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002817
2818#. @-expanded: inode %i ref count is %Il, should be %N.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002819#: e2fsck/problem.c:1880
Theodore Ts'of722c132009-04-21 22:09:01 -04002820msgid "@i %i ref count is %Il, @s %N. "
Tianze Wang57d69272016-08-31 23:14:17 -04002821msgstr "@i %i 的引用计数为 %Il,@s %N。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002822
2823#. @-expanded: WARNING: PROGRAMMING BUG IN E2FSCK!\n
2824#. @-expanded: \tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n
2825#. @-expanded: inode_link_info[%i] is %N, inode.i_links_count is %Il. They should be the same!\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002826#: e2fsck/problem.c:1884
Theodore Ts'of722c132009-04-21 22:09:01 -04002827msgid ""
2828"WARNING: PROGRAMMING BUG IN E2FSCK!\n"
2829"\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
2830"@i_link_info[%i] is %N, @i.i_links_count is %Il. They @s the same!\n"
2831msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04002832"警告:e2fsck中出现程序错误!\n"
2833"\t或者是(粗心大意的)你正在检查一个被挂载的(活动的)文件系统。\n"
2834"@i_link_info[%i] 为 %N,@i.i_links_count 为 %Il。它们应当相同!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002835
Theodore Ts'o899425b2018-02-27 22:25:04 -05002836#. @-expanded: extended attribute inode %i ref count is %N, should be %n.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002837#: e2fsck/problem.c:1891
Theodore Ts'o899425b2018-02-27 22:25:04 -05002838#, fuzzy
2839msgid "@a @i %i ref count is %N, @s %n. "
2840msgstr "@i %i 的引用计数为 %Il,@s %N。 "
2841
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002842#. @-expanded: directory exceeds max links, but no DIR_NLINK feature in superblock.\n
2843#: e2fsck/problem.c:1896
2844msgid "@d exceeds max links, but no DIR_NLINK feature in @S.\n"
2845msgstr ""
2846
Theodore Ts'of722c132009-04-21 22:09:01 -04002847#. @-expanded: Pass 5: Checking group summary information\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002848#: e2fsck/problem.c:1903
Theodore Ts'of722c132009-04-21 22:09:01 -04002849msgid "Pass 5: Checking @g summary information\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002850msgstr "第 5 步:检查@g概要信息\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002851
2852#. @-expanded: Padding at end of inode bitmap is not set.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002853#: e2fsck/problem.c:1908
Theodore Ts'of722c132009-04-21 22:09:01 -04002854msgid "Padding at end of @i @B is not set. "
Tianze Wang57d69272016-08-31 23:14:17 -04002855msgstr "@i@B末尾的填充值未设置。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002856
2857#. @-expanded: Padding at end of block bitmap is not set.
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002858#: e2fsck/problem.c:1913
Theodore Ts'of722c132009-04-21 22:09:01 -04002859msgid "Padding at end of @b @B is not set. "
Tianze Wang57d69272016-08-31 23:14:17 -04002860msgstr "@b@B末尾的填充值未设置。 "
Theodore Ts'of722c132009-04-21 22:09:01 -04002861
2862#. @-expanded: block bitmap differences:
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002863#: e2fsck/problem.c:1918
Theodore Ts'of722c132009-04-21 22:09:01 -04002864msgid "@b @B differences: "
Tianze Wang57d69272016-08-31 23:14:17 -04002865msgstr "@b@B的差异: "
Theodore Ts'of722c132009-04-21 22:09:01 -04002866
2867#. @-expanded: inode bitmap differences:
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002868#: e2fsck/problem.c:1938
Theodore Ts'of722c132009-04-21 22:09:01 -04002869msgid "@i @B differences: "
Tianze Wang57d69272016-08-31 23:14:17 -04002870msgstr "@i@B的差异: "
Theodore Ts'of722c132009-04-21 22:09:01 -04002871
2872#. @-expanded: Free inodes count wrong for group #%g (%i, counted=%j).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002873#: e2fsck/problem.c:1958
Theodore Ts'of722c132009-04-21 22:09:01 -04002874msgid "Free @is count wrong for @g #%g (%i, counted=%j).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002875msgstr "@g #%g的可用@i计数错误(%i,实际为%j)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002876
2877#. @-expanded: Directories count wrong for group #%g (%i, counted=%j).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002878#: e2fsck/problem.c:1963
Theodore Ts'of722c132009-04-21 22:09:01 -04002879msgid "Directories count wrong for @g #%g (%i, counted=%j).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002880msgstr "@g #%g的目录计数错误(%i,实际为%j)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002881
2882#. @-expanded: Free inodes count wrong (%i, counted=%j).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002883#: e2fsck/problem.c:1968
Theodore Ts'of722c132009-04-21 22:09:01 -04002884msgid "Free @is count wrong (%i, counted=%j).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002885msgstr "可用@i数错误(%i,实际为%j)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002886
2887#. @-expanded: Free blocks count wrong for group #%g (%b, counted=%c).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002888#: e2fsck/problem.c:1973
Theodore Ts'of722c132009-04-21 22:09:01 -04002889msgid "Free @bs count wrong for @g #%g (%b, counted=%c).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002890msgstr "@g #%g的可用@b计数错误(%i,实际为%j)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002891
2892#. @-expanded: Free blocks count wrong (%b, counted=%c).\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002893#: e2fsck/problem.c:1978
Theodore Ts'of722c132009-04-21 22:09:01 -04002894msgid "Free @bs count wrong (%b, counted=%c).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002895msgstr "可用@b数错误(%i,实际为%j)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002896
2897#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
2898#. @-expanded: endpoints (%i, %j)\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002899#: e2fsck/problem.c:1983
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05002900msgid ""
2901"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
2902"endpoints (%i, %j)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002903msgstr "程序错误:@f(# %n)@B端点(%b,%c)与计算值(%i,%j)不符\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002904
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002905#: e2fsck/problem.c:1989
Theodore Ts'of722c132009-04-21 22:09:01 -04002906msgid "Internal error: fudging end of bitmap (%N)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002907msgstr "内部错误:虚构的位图端点\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002908
2909#. @-expanded: Error copying in replacement inode bitmap: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002910#: e2fsck/problem.c:1994
Theodore Ts'of722c132009-04-21 22:09:01 -04002911#, c-format
2912msgid "Error copying in replacement @i @B: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002913msgstr "替换@i@B时拷贝错误:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002914
2915#. @-expanded: Error copying in replacement block bitmap: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002916#: e2fsck/problem.c:1999
Theodore Ts'of722c132009-04-21 22:09:01 -04002917#, c-format
2918msgid "Error copying in replacement @b @B: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002919msgstr "替换@b@B时拷贝错误:%m\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002920
Theodore Ts'of722c132009-04-21 22:09:01 -04002921#. @-expanded: group %g block(s) in use but group is marked BLOCK_UNINIT\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002922#: e2fsck/problem.c:2024
Theodore Ts'of722c132009-04-21 22:09:01 -04002923#, c-format
2924msgid "@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002925msgstr "@g %g @b已被使用,但@g被标记为BLOCK_UNINIT\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002926
2927#. @-expanded: group %g inode(s) in use but group is marked INODE_UNINIT\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002928#: e2fsck/problem.c:2029
Theodore Ts'of722c132009-04-21 22:09:01 -04002929#, c-format
2930msgid "@g %g @i(s) in use but @g is marked INODE_UNINIT\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002931msgstr "@g %g @i已被使用,但@g被标记为INODE_UNINIT\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002932
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002933#. @-expanded: group %g inode bitmap does not match checksum.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002934#: e2fsck/problem.c:2034
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002935#, c-format
2936msgid "@g %g @i @B does not match checksum.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002937msgstr "@g %g @i @B 与自身校验值不符。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002938
2939#. @-expanded: group %g block bitmap does not match checksum.\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002940#: e2fsck/problem.c:2039
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002941#, c-format
2942msgid "@g %g @b @B does not match checksum.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002943msgstr "@g %g @b @B 与自身校验值不符。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002944
Theodore Ts'o930e2812009-06-29 15:08:12 -04002945#. @-expanded: Recreate journal
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002946#: e2fsck/problem.c:2046
Theodore Ts'o930e2812009-06-29 15:08:12 -04002947msgid "Recreate @j"
Dark Raven3be22a82010-04-19 16:59:03 -04002948msgstr "重建@j"
Theodore Ts'o930e2812009-06-29 15:08:12 -04002949
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002950#: e2fsck/problem.c:2051
Eric Sandeen032eafe2012-07-28 17:48:36 -04002951msgid "Update quota info for quota type %N"
Tianze Wang57d69272016-08-31 23:14:17 -04002952msgstr "更新配额类型 %N 的配额信息"
Eric Sandeen032eafe2012-07-28 17:48:36 -04002953
Theodore Ts'obd386982015-05-17 20:34:58 -04002954#. @-expanded: Error setting block group checksum info: %m\n
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002955#: e2fsck/problem.c:2056
Tianze Wang57d69272016-08-31 23:14:17 -04002956#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04002957msgid "Error setting @b @g checksum info: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002958msgstr "设置@b@g的校验信息时出错:%m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002959
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002960#: e2fsck/problem.c:2061
Tianze Wang57d69272016-08-31 23:14:17 -04002961#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04002962msgid "Error writing file system info: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002963msgstr "写入文件系统信息时出错:%m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002964
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002965#: e2fsck/problem.c:2066
Theodore Ts'obd386982015-05-17 20:34:58 -04002966#, c-format
2967msgid "Error flushing writes to storage device: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002968msgstr "将缓冲写入到存储设备:%m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002969
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002970#: e2fsck/problem.c:2071
Theodore Ts'o48203a32016-06-08 15:45:26 -04002971msgid "Error writing quota info for quota type %N: %m\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002972msgstr "写入配额类型 %N 的配额信息时出错:%m\n"
Theodore Ts'o48203a32016-06-08 15:45:26 -04002973
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002974#: e2fsck/problem.c:2194
Theodore Ts'of722c132009-04-21 22:09:01 -04002975#, c-format
2976msgid "Unhandled error code (0x%x)!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002977msgstr "未处理的错误码 (0x%x)!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002978
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002979#: e2fsck/problem.c:2320 e2fsck/problem.c:2324
Theodore Ts'of722c132009-04-21 22:09:01 -04002980msgid "IGNORED"
2981msgstr "已忽略"
2982
Theodore Ts'o40e66e22018-08-18 21:14:56 -04002983#: e2fsck/quota.c:30 e2fsck/quota.c:37 e2fsck/quota.c:50 e2fsck/quota.c:59
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002984msgid "in move_quota_inode"
Tianze Wang57d69272016-08-31 23:14:17 -04002985msgstr "于 move_quota_inode 中"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04002986
Eric Sandeen032eafe2012-07-28 17:48:36 -04002987#: e2fsck/scantest.c:79
Theodore Ts'of722c132009-04-21 22:09:01 -04002988#, c-format
2989msgid "Memory used: %d, elapsed time: %6.3f/%6.3f/%6.3f\n"
Tianze Wang57d69272016-08-31 23:14:17 -04002990msgstr "内存用量:%d,持续时间:%6.3f/%6.3f/%6.3f\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04002991
Eric Sandeen032eafe2012-07-28 17:48:36 -04002992#: e2fsck/scantest.c:98
Theodore Ts'of722c132009-04-21 22:09:01 -04002993#, c-format
2994msgid "size of inode=%d\n"
2995msgstr "inode大小=%d\n"
2996
Eric Sandeen032eafe2012-07-28 17:48:36 -04002997#: e2fsck/scantest.c:119
Theodore Ts'of722c132009-04-21 22:09:01 -04002998msgid "while starting inode scan"
Tianze Wang57d69272016-08-31 23:14:17 -04002999msgstr "开始inode扫描时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003000
Eric Sandeen032eafe2012-07-28 17:48:36 -04003001#: e2fsck/scantest.c:130
Theodore Ts'of722c132009-04-21 22:09:01 -04003002msgid "while doing inode scan"
Tianze Wang57d69272016-08-31 23:14:17 -04003003msgstr "进行inode扫描时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003004
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003005#: e2fsck/super.c:224
Theodore Ts'o146649c2018-02-08 23:39:22 -05003006#, fuzzy, c-format
3007msgid "while calling ext2fs_block_iterate for inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04003008msgstr "为inode %d 调用ext2fs_block_iterate时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003009
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003010#: e2fsck/super.c:249
Theodore Ts'o146649c2018-02-08 23:39:22 -05003011#, fuzzy, c-format
3012msgid "while calling ext2fs_adjust_ea_refcount2 for inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04003013msgstr "为inode %d 调用ext2fs_adjust_ea_refcount2时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003014
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003015#: e2fsck/super.c:374
Theodore Ts'of722c132009-04-21 22:09:01 -04003016msgid "Truncating"
3017msgstr "正在截断"
3018
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003019#: e2fsck/super.c:375
Theodore Ts'of722c132009-04-21 22:09:01 -04003020msgid "Clearing"
3021msgstr "正在清除"
3022
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003023#: e2fsck/unix.c:77
Theodore Ts'of722c132009-04-21 22:09:01 -04003024#, c-format
3025msgid ""
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003026"Usage: %s [-panyrcdfktvDFV] [-b superblock] [-B blocksize]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003027"\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003028"\t\t[-E extended-options] [-z undo_file] device\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003029msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003030"用法:%s [-panyrcdfktvDFV] [-b 超级块] [-B 块大小]\n"
3031"\t\t[-l|-L 坏块文件] [-C fd] [-j 外部日志]\n"
3032"\t\t[-E 扩展选项] [-z 撤销文件] 设备\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003033
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003034#: e2fsck/unix.c:82
Theodore Ts'of722c132009-04-21 22:09:01 -04003035msgid ""
3036"\n"
3037"Emergency help:\n"
3038" -p Automatic repair (no questions)\n"
3039" -n Make no changes to the filesystem\n"
3040" -y Assume \"yes\" to all questions\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05003041" -c Check for bad blocks and add them to the badblock "
3042"list\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003043" -f Force checking even if filesystem is marked clean\n"
3044msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003045"\n"
3046"重要提示:\n"
3047" -p 自动修复(不询问)\n"
3048" -n 不对文件系统做任何更改\n"
3049" -y 对所有询问都回答“是”\n"
3050" -c 检查可能的坏块,并将它们加入坏块列表\n"
3051" -f 强制进行检查,即使文件系统被标记为“没有问题”\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003052
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003053#: e2fsck/unix.c:88
Theodore Ts'of722c132009-04-21 22:09:01 -04003054msgid ""
3055" -v Be verbose\n"
3056" -b superblock Use alternative superblock\n"
3057" -B blocksize Force blocksize when looking for superblock\n"
3058" -j external_journal Set location of the external journal\n"
3059" -l bad_blocks_file Add to badblocks list\n"
3060" -L bad_blocks_file Set badblocks list\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003061" -z undo_file Create an undo file\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003062msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003063" -v 显示更多信息\n"
3064" -b superblock 使用备选超级块\n"
3065" -B blocksize 使用指定块大小来查找超级块\n"
3066" -j external_journal 指定外部日志的位置\n"
3067" -l bad_blocks_file 添加到指定的坏块列表(文件)\n"
3068" -L bad_blocks_file 指定坏块列表(文件)\n"
3069" -z undo_file 创建一个撤销文件\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003070
Theodore Ts'o89128f82018-01-01 19:36:37 -05003071#: e2fsck/unix.c:136
Theodore Ts'of722c132009-04-21 22:09:01 -04003072#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003073msgid "%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003074msgstr "%s:%u/%u 文件(%0d.%d%% 为非连续的), %llu/%llu 块\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003075
Theodore Ts'o89128f82018-01-01 19:36:37 -05003076#: e2fsck/unix.c:162
Tianze Wang57d69272016-08-31 23:14:17 -04003077#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003078msgid ""
3079"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003080"%12u inode used (%2.2f%%, out of %u)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003081msgid_plural ""
3082"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003083"%12u inodes used (%2.2f%%, out of %u)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003084msgstr[0] ""
3085"\n"
3086"%12u 个已使用的inode(%2.2f%%,总共 %u)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003087
Theodore Ts'o89128f82018-01-01 19:36:37 -05003088#: e2fsck/unix.c:166
Eric Sandeen032eafe2012-07-28 17:48:36 -04003089#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003090msgid "%12u non-contiguous file (%0d.%d%%)\n"
3091msgid_plural "%12u non-contiguous files (%0d.%d%%)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003092msgstr[0] "%12u 个不连续的文件(%0d.%d%%)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003093
Theodore Ts'o89128f82018-01-01 19:36:37 -05003094#: e2fsck/unix.c:171
Eric Sandeen032eafe2012-07-28 17:48:36 -04003095#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003096msgid "%12u non-contiguous directory (%0d.%d%%)\n"
3097msgid_plural "%12u non-contiguous directories (%0d.%d%%)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003098msgstr[0] "%12u 个不连续的目录(%0d.%d%%)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003099
Theodore Ts'o89128f82018-01-01 19:36:37 -05003100#: e2fsck/unix.c:176
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003101#, c-format
3102msgid " # of inodes with ind/dind/tind blocks: %u/%u/%u\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003103msgstr " # 一次/二次/三次链接块数:%u/%u/%u\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003104
Theodore Ts'o89128f82018-01-01 19:36:37 -05003105#: e2fsck/unix.c:184
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003106msgid " Extent depth histogram: "
Tianze Wang57d69272016-08-31 23:14:17 -04003107msgstr " Extent深度直方图: "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003108
Theodore Ts'o89128f82018-01-01 19:36:37 -05003109#: e2fsck/unix.c:193
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003110#, c-format
3111msgid "%12llu block used (%2.2f%%, out of %llu)\n"
3112msgid_plural "%12llu blocks used (%2.2f%%, out of %llu)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003113msgstr[0] "%12llu 个已使用的块(%2.2f%%,总共 %llu)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003114
Theodore Ts'o89128f82018-01-01 19:36:37 -05003115#: e2fsck/unix.c:197
Tianze Wang57d69272016-08-31 23:14:17 -04003116#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003117msgid "%12u bad block\n"
3118msgid_plural "%12u bad blocks\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003119msgstr[0] "%12u 个坏块\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003120
Theodore Ts'o89128f82018-01-01 19:36:37 -05003121#: e2fsck/unix.c:199
Tianze Wang57d69272016-08-31 23:14:17 -04003122#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003123msgid "%12u large file\n"
3124msgid_plural "%12u large files\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003125msgstr[0] "%12u 个大文件\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003126
Theodore Ts'o89128f82018-01-01 19:36:37 -05003127#: e2fsck/unix.c:201
Tianze Wang57d69272016-08-31 23:14:17 -04003128#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003129msgid ""
3130"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003131"%12u regular file\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003132msgid_plural ""
3133"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003134"%12u regular files\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003135msgstr[0] ""
3136"\n"
3137"%12u 个普通文件\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003138
Theodore Ts'o89128f82018-01-01 19:36:37 -05003139#: e2fsck/unix.c:203
Tianze Wang57d69272016-08-31 23:14:17 -04003140#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003141msgid "%12u directory\n"
3142msgid_plural "%12u directories\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003143msgstr[0] "%12u 个文件夹\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003144
Theodore Ts'o89128f82018-01-01 19:36:37 -05003145#: e2fsck/unix.c:205
Tianze Wang57d69272016-08-31 23:14:17 -04003146#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003147msgid "%12u character device file\n"
3148msgid_plural "%12u character device files\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003149msgstr[0] "%12u 个字符设备文件\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003150
Theodore Ts'o89128f82018-01-01 19:36:37 -05003151#: e2fsck/unix.c:208
Tianze Wang57d69272016-08-31 23:14:17 -04003152#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003153msgid "%12u block device file\n"
3154msgid_plural "%12u block device files\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003155msgstr[0] "%12u 个块设备文件\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003156
Theodore Ts'o89128f82018-01-01 19:36:37 -05003157#: e2fsck/unix.c:210
Eric Sandeen032eafe2012-07-28 17:48:36 -04003158#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003159msgid "%12u fifo\n"
3160msgid_plural "%12u fifos\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003161msgstr[0] "%12u 个队列文件\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003162
Theodore Ts'o89128f82018-01-01 19:36:37 -05003163#: e2fsck/unix.c:212
Eric Sandeen032eafe2012-07-28 17:48:36 -04003164#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003165msgid "%12u link\n"
3166msgid_plural "%12u links\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003167msgstr[0] "%12u 个链接\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003168
Theodore Ts'o89128f82018-01-01 19:36:37 -05003169#: e2fsck/unix.c:214
Tianze Wang57d69272016-08-31 23:14:17 -04003170#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003171msgid "%12u symbolic link"
3172msgid_plural "%12u symbolic links"
Tianze Wang57d69272016-08-31 23:14:17 -04003173msgstr[0] "%12u 个符号链接"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003174
Theodore Ts'o89128f82018-01-01 19:36:37 -05003175#: e2fsck/unix.c:216
Tianze Wang57d69272016-08-31 23:14:17 -04003176#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003177msgid " (%u fast symbolic link)\n"
3178msgid_plural " (%u fast symbolic links)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003179msgstr[0] " (%u 个直接符号链接)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003180
Theodore Ts'o89128f82018-01-01 19:36:37 -05003181#: e2fsck/unix.c:220
Tianze Wang57d69272016-08-31 23:14:17 -04003182#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003183msgid "%12u socket\n"
3184msgid_plural "%12u sockets\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003185msgstr[0] "%12u 个套接字文件\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003186
Theodore Ts'o89128f82018-01-01 19:36:37 -05003187#: e2fsck/unix.c:224
Tianze Wang57d69272016-08-31 23:14:17 -04003188#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003189msgid "%12u file\n"
3190msgid_plural "%12u files\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003191msgstr[0] "%12u 个文件\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003192
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003193#: e2fsck/unix.c:237 misc/badblocks.c:1002 misc/tune2fs.c:3022 misc/util.c:126
Theodore Ts'o89128f82018-01-01 19:36:37 -05003194#: resize/main.c:354
Theodore Ts'of722c132009-04-21 22:09:01 -04003195#, c-format
3196msgid "while determining whether %s is mounted."
Tianze Wang57d69272016-08-31 23:14:17 -04003197msgstr "确定 %s 是否已挂载时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003198
Tianze Wang57d69272016-08-31 23:14:17 -04003199# Note:The second "%s" represents the current status of the device (defined by the first "%s"), thus it is not necessary to translate the word "is". The second "%s" will serve as the copula as well as the predicative (in Chinese).
Theodore Ts'o89128f82018-01-01 19:36:37 -05003200#: e2fsck/unix.c:258
Tianze Wang57d69272016-08-31 23:14:17 -04003201#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003202msgid "Warning! %s is mounted.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003203msgstr "警告! %s已被挂载。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003204
Tianze Wang57d69272016-08-31 23:14:17 -04003205# Note:The second "%s" represents the current status of the device (defined by the first "%s"), thus it is not necessary to translate the word "is". The second "%s" will serve as the copula as well as the predicative (in Chinese).
Theodore Ts'o89128f82018-01-01 19:36:37 -05003206#: e2fsck/unix.c:261
Tianze Wang57d69272016-08-31 23:14:17 -04003207#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003208msgid "Warning! %s is in use.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003209msgstr "警告! %s正被使用。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003210
Theodore Ts'o89128f82018-01-01 19:36:37 -05003211#: e2fsck/unix.c:267
Tianze Wang57d69272016-08-31 23:14:17 -04003212#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003213msgid "%s is mounted.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003214msgstr "%s 已挂载。\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003215
Tianze Wang57d69272016-08-31 23:14:17 -04003216# Same as the above.
Theodore Ts'o89128f82018-01-01 19:36:37 -05003217#: e2fsck/unix.c:269
Tianze Wang57d69272016-08-31 23:14:17 -04003218#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003219msgid "%s is in use.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003220msgstr "%s正被使用。\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003221
Theodore Ts'o89128f82018-01-01 19:36:37 -05003222#: e2fsck/unix.c:271
Theodore Ts'of722c132009-04-21 22:09:01 -04003223msgid ""
3224"Cannot continue, aborting.\n"
3225"\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003226msgstr "无法继续,已中止。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003227
Theodore Ts'o89128f82018-01-01 19:36:37 -05003228#: e2fsck/unix.c:273
Theodore Ts'of722c132009-04-21 22:09:01 -04003229msgid ""
3230"\n"
3231"\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003232"WARNING!!! The filesystem is mounted. If you continue you ***WILL***\n"
3233"cause ***SEVERE*** filesystem damage.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003234"\n"
3235msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003236"\n"
3237"\n"
3238"警告!!!该文件系统已被挂载。如果你继续操作将会\n"
3239"使文件系统遭受 *** 严重损坏 ***!\n"
3240"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003241
Theodore Ts'o89128f82018-01-01 19:36:37 -05003242#: e2fsck/unix.c:278
Theodore Ts'of722c132009-04-21 22:09:01 -04003243msgid "Do you really want to continue"
Tianze Wang57d69272016-08-31 23:14:17 -04003244msgstr "你真的想要继续吗"
Theodore Ts'of722c132009-04-21 22:09:01 -04003245
Theodore Ts'o89128f82018-01-01 19:36:37 -05003246#: e2fsck/unix.c:280
Theodore Ts'of722c132009-04-21 22:09:01 -04003247msgid "check aborted.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003248msgstr "检查被中止。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003249
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003250#: e2fsck/unix.c:374
Theodore Ts'of722c132009-04-21 22:09:01 -04003251msgid " contains a file system with errors"
Tianze Wang57d69272016-08-31 23:14:17 -04003252msgstr " 有一个含有错误的文件系统"
Theodore Ts'of722c132009-04-21 22:09:01 -04003253
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003254#: e2fsck/unix.c:376
Theodore Ts'of722c132009-04-21 22:09:01 -04003255msgid " was not cleanly unmounted"
Tianze Wang57d69272016-08-31 23:14:17 -04003256msgstr " 未被彻底卸载"
Theodore Ts'of722c132009-04-21 22:09:01 -04003257
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003258#: e2fsck/unix.c:378
Theodore Ts'of722c132009-04-21 22:09:01 -04003259msgid " primary superblock features different from backup"
Tianze Wang57d69272016-08-31 23:14:17 -04003260msgstr " 主超级块与备份超级块有差异"
Theodore Ts'of722c132009-04-21 22:09:01 -04003261
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003262#: e2fsck/unix.c:382
Theodore Ts'of722c132009-04-21 22:09:01 -04003263#, c-format
3264msgid " has been mounted %u times without being checked"
Tianze Wang57d69272016-08-31 23:14:17 -04003265msgstr " 已被挂载 %u 次,但尚未被检查"
Theodore Ts'of722c132009-04-21 22:09:01 -04003266
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003267#: e2fsck/unix.c:389
Theodore Ts'of722c132009-04-21 22:09:01 -04003268msgid " has filesystem last checked time in the future"
Tianze Wang57d69272016-08-31 23:14:17 -04003269msgstr " 上一次检查的时间在未来"
Theodore Ts'of722c132009-04-21 22:09:01 -04003270
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003271#: e2fsck/unix.c:395
Theodore Ts'of722c132009-04-21 22:09:01 -04003272#, c-format
3273msgid " has gone %u days without being checked"
Tianze Wang57d69272016-08-31 23:14:17 -04003274msgstr " 已超过 %u 未被检查"
Theodore Ts'of722c132009-04-21 22:09:01 -04003275
Theodore Ts'o89128f82018-01-01 19:36:37 -05003276#: e2fsck/unix.c:403
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003277msgid "ignoring check interval, broken_system_clock set\n"
3278msgstr ""
3279
3280#: e2fsck/unix.c:409
Theodore Ts'of722c132009-04-21 22:09:01 -04003281msgid ", check forced.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003282msgstr ",强制进行检查。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003283
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003284#: e2fsck/unix.c:442
Theodore Ts'of722c132009-04-21 22:09:01 -04003285#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003286msgid "%s: clean, %u/%u files, %llu/%llu blocks"
Tianze Wang57d69272016-08-31 23:14:17 -04003287msgstr "%s:没有问题,%u/%u 文件,%llu/%llu 块"
Theodore Ts'of722c132009-04-21 22:09:01 -04003288
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003289#: e2fsck/unix.c:462
Theodore Ts'of722c132009-04-21 22:09:01 -04003290msgid " (check deferred; on battery)"
Tianze Wang57d69272016-08-31 23:14:17 -04003291msgstr " (正在使用电池;已推迟检查)"
Theodore Ts'of722c132009-04-21 22:09:01 -04003292
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003293#: e2fsck/unix.c:465
Theodore Ts'of722c132009-04-21 22:09:01 -04003294msgid " (check after next mount)"
Tianze Wang57d69272016-08-31 23:14:17 -04003295msgstr "(将于下次挂载时进行检查)"
Theodore Ts'of722c132009-04-21 22:09:01 -04003296
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003297#: e2fsck/unix.c:467
Theodore Ts'of722c132009-04-21 22:09:01 -04003298#, c-format
3299msgid " (check in %ld mounts)"
Tianze Wang57d69272016-08-31 23:14:17 -04003300msgstr " (每挂载 %ld 次就进行检查)"
Theodore Ts'of722c132009-04-21 22:09:01 -04003301
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003302#: e2fsck/unix.c:617
Theodore Ts'of722c132009-04-21 22:09:01 -04003303#, c-format
3304msgid "ERROR: Couldn't open /dev/null (%s)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003305msgstr "错误:无法打开/dev/null(%s)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003306
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003307#: e2fsck/unix.c:688
Theodore Ts'of722c132009-04-21 22:09:01 -04003308msgid "Invalid EA version.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003309msgstr "无效的EA版本号。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003310
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003311#: e2fsck/unix.c:701
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003312msgid "Invalid readahead buffer size.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003313msgstr "预读取缓冲区大小无效。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003314
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003315#: e2fsck/unix.c:750
Theodore Ts'of722c132009-04-21 22:09:01 -04003316#, c-format
3317msgid "Unknown extended option: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003318msgstr "未知的扩展属性:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003319
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003320#: e2fsck/unix.c:758
Theodore Ts'o21725192017-08-23 19:46:04 -04003321#, fuzzy
3322msgid ""
3323"\n"
3324"Extended options are separated by commas, and may take an argument which\n"
3325"is set off by an equals ('=') sign. Valid extended options are:\n"
3326"\n"
3327msgstr ""
3328"\n"
3329"指定了错误的扩展属性:%s\n"
3330"\n"
3331"扩展属性由逗号分隔,有些需要通过等号(“=”)传递参数。\n"
3332"\n"
3333"有效的参数有:\n"
3334"\tsuperblock=<超级块编号>\n"
3335"\tblocksize=<块大小>\n"
3336
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003337#: e2fsck/unix.c:762
Theodore Ts'o21725192017-08-23 19:46:04 -04003338msgid "\tea_ver=<ea_version (1 or 2)>\n"
3339msgstr ""
3340
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003341#: e2fsck/unix.c:771
Theodore Ts'o21725192017-08-23 19:46:04 -04003342#, fuzzy
3343msgid "\treadahead_kb=<buffer size>\n"
3344msgstr "预读取缓冲区大小无效。\n"
3345
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003346#: e2fsck/unix.c:783
Theodore Ts'of722c132009-04-21 22:09:01 -04003347#, c-format
3348msgid ""
3349"Syntax error in e2fsck config file (%s, line #%d)\n"
3350"\t%s\n"
3351msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003352"e2fsck 配置文件中语法错误(%s,第 %d 行)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003353"\t%s\n"
3354
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003355#: e2fsck/unix.c:856
Theodore Ts'of722c132009-04-21 22:09:01 -04003356#, c-format
3357msgid "Error validating file descriptor %d: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003358msgstr "验证文件描述符 %d 时出错:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003359
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003360#: e2fsck/unix.c:860
Theodore Ts'of722c132009-04-21 22:09:01 -04003361msgid "Invalid completion information file descriptor"
Tianze Wang57d69272016-08-31 23:14:17 -04003362msgstr "无效的文件描述符信息"
Theodore Ts'of722c132009-04-21 22:09:01 -04003363
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003364#: e2fsck/unix.c:875
Theodore Ts'of722c132009-04-21 22:09:01 -04003365msgid "Only one of the options -p/-a, -n or -y may be specified."
Tianze Wang57d69272016-08-31 23:14:17 -04003366msgstr "只能使用选项 -p/-a、-n 或 -y 其中之一。"
Theodore Ts'of722c132009-04-21 22:09:01 -04003367
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003368#: e2fsck/unix.c:896
Theodore Ts'of722c132009-04-21 22:09:01 -04003369#, c-format
3370msgid "The -t option is not supported on this version of e2fsck.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003371msgstr "此版本的e2fsck不支持 -t 选项。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003372
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003373#: e2fsck/unix.c:927 e2fsck/unix.c:1005 misc/e2initrd_helper.c:330
3374#: misc/tune2fs.c:1741 misc/tune2fs.c:2036 misc/tune2fs.c:2054
Theodore Ts'of722c132009-04-21 22:09:01 -04003375#, c-format
3376msgid "Unable to resolve '%s'"
Tianze Wang57d69272016-08-31 23:14:17 -04003377msgstr "无法解析“%s”"
Theodore Ts'of722c132009-04-21 22:09:01 -04003378
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003379#: e2fsck/unix.c:984
Dark Ravenc4755342011-01-26 18:54:25 -05003380msgid "The -n and -D options are incompatible."
Tianze Wang57d69272016-08-31 23:14:17 -04003381msgstr "%s:-n 和 -D 选项是互相排斥的。"
Dark Ravenc4755342011-01-26 18:54:25 -05003382
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003383#: e2fsck/unix.c:989
Dark Ravenc4755342011-01-26 18:54:25 -05003384msgid "The -n and -c options are incompatible."
Tianze Wang57d69272016-08-31 23:14:17 -04003385msgstr "%s:-n 和 -c 选项是互相排斥的。"
Dark Ravenc4755342011-01-26 18:54:25 -05003386
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003387#: e2fsck/unix.c:994
Dark Ravenc4755342011-01-26 18:54:25 -05003388msgid "The -n and -l/-L options are incompatible."
Tianze Wang57d69272016-08-31 23:14:17 -04003389msgstr "%s:-n 和 -l/-L 选项是相互排斥的。"
Dark Ravenc4755342011-01-26 18:54:25 -05003390
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003391#: e2fsck/unix.c:1018
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003392msgid "The -D and -E fixes_only options are incompatible."
Tianze Wang57d69272016-08-31 23:14:17 -04003393msgstr "-D 和 -E fixes_only 选项是互相排斥的。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003394
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003395#: e2fsck/unix.c:1024
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003396msgid "The -E bmap2extent and fixes_only options are incompatible."
Tianze Wang57d69272016-08-31 23:14:17 -04003397msgstr "-E bmap2extent 和 fixes_only 选项是互相排斥的。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003398
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003399#: e2fsck/unix.c:1088
Theodore Ts'of722c132009-04-21 22:09:01 -04003400msgid "The -c and the -l/-L options may not be both used at the same time.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003401msgstr "-c 和 -l/-L 选项不能同时使用。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003402
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003403#: e2fsck/unix.c:1135
Theodore Ts'of722c132009-04-21 22:09:01 -04003404#, c-format
3405msgid ""
3406"E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
3407"\n"
3408msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003409"E2FSCK_JBD_DEBUG “%s”不是整数\n"
3410"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003411
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003412#: e2fsck/unix.c:1144
Theodore Ts'of722c132009-04-21 22:09:01 -04003413#, c-format
3414msgid ""
3415"\n"
3416"Invalid non-numeric argument to -%c (\"%s\")\n"
3417"\n"
3418msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003419"\n"
3420"-%c 接收到无效的非数值参数(“%s”)\n"
3421"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003422
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003423#: e2fsck/unix.c:1235
Eric Sandeen032eafe2012-07-28 17:48:36 -04003424#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05003425msgid ""
3426"MMP interval is %u seconds and total wait time is %u seconds. Please "
3427"wait...\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003428msgstr "MMP间隔为 %u 秒,总等候时间为 %u 秒。请稍候...\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003429
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003430#: e2fsck/unix.c:1252 e2fsck/unix.c:1257
Eric Sandeen032eafe2012-07-28 17:48:36 -04003431msgid "while checking MMP block"
Tianze Wang57d69272016-08-31 23:14:17 -04003432msgstr "检测 MMP 块时"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003433
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003434#: e2fsck/unix.c:1259
3435#, fuzzy, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003436msgid ""
3437"If you are sure the filesystem is not in use on any node, run:\n"
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003438"'tune2fs -f -E clear_mmp %s'\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003439msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003440"如果你确定文件系统并没有挂载到任何节点上,请运行:\n"
3441"“tune2fs -f -E clear_mmp {设备}”\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003442
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003443#: e2fsck/unix.c:1275
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003444msgid "while reading MMP block"
Tianze Wang57d69272016-08-31 23:14:17 -04003445msgstr "读取 MMP 块时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003446
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003447#: e2fsck/unix.c:1295 e2fsck/unix.c:1347 misc/e2undo.c:236 misc/e2undo.c:281
3448#: misc/mke2fs.c:2613 misc/mke2fs.c:2664 misc/tune2fs.c:2754
3449#: misc/tune2fs.c:2799 resize/main.c:188 resize/main.c:233
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003450#, c-format
3451msgid ""
3452"Overwriting existing filesystem; this can be undone using the command:\n"
3453" e2undo %s %s\n"
3454"\n"
3455msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003456"正在覆盖现有的文件系统;可以用下列命令来撤销该操作:\n"
3457" e2undo %s %s\n"
3458"\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003459
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003460#: e2fsck/unix.c:1336 misc/e2undo.c:270 misc/mke2fs.c:2653 misc/tune2fs.c:2788
Theodore Ts'o89128f82018-01-01 19:36:37 -05003461#: resize/main.c:222
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003462#, c-format
3463msgid "while trying to delete %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003464msgstr "尝试删除 %s 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003465
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003466#: e2fsck/unix.c:1362 misc/mke2fs.c:2679 resize/main.c:243
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003467msgid "while trying to setup undo file\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003468msgstr "尝试创建撤销记录时\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003469
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003470#: e2fsck/unix.c:1405
Theodore Ts'of722c132009-04-21 22:09:01 -04003471msgid "Error: ext2fs library version out of date!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003472msgstr "错误:ext2fs库版本过旧!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003473
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003474#: e2fsck/unix.c:1412
Theodore Ts'of722c132009-04-21 22:09:01 -04003475msgid "while trying to initialize program"
Tianze Wang57d69272016-08-31 23:14:17 -04003476msgstr "尝试初始化程序时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003477
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003478#: e2fsck/unix.c:1435
Dark Raven3be22a82010-04-19 16:59:03 -04003479#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04003480msgid "\tUsing %s, %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003481msgstr "\t使用 %s,%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003482
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003483#: e2fsck/unix.c:1447
Theodore Ts'of722c132009-04-21 22:09:01 -04003484msgid "need terminal for interactive repairs"
Tianze Wang57d69272016-08-31 23:14:17 -04003485msgstr "需要在终端中进行交互式修复"
Theodore Ts'of722c132009-04-21 22:09:01 -04003486
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003487#: e2fsck/unix.c:1508
Dark Raven31a48472009-05-25 22:45:42 -04003488#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04003489msgid "%s: %s trying backup blocks...\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003490msgstr "%s:%s 尝试备份块\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003491
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003492#: e2fsck/unix.c:1510
Theodore Ts'of722c132009-04-21 22:09:01 -04003493msgid "Superblock invalid,"
Tianze Wang57d69272016-08-31 23:14:17 -04003494msgstr "超级块无效,"
Theodore Ts'of722c132009-04-21 22:09:01 -04003495
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003496#: e2fsck/unix.c:1511
Theodore Ts'of722c132009-04-21 22:09:01 -04003497msgid "Group descriptors look bad..."
Tianze Wang57d69272016-08-31 23:14:17 -04003498msgstr "组描述符似乎是错误的..."
Theodore Ts'of722c132009-04-21 22:09:01 -04003499
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003500#: e2fsck/unix.c:1521
Tianze Wang57d69272016-08-31 23:14:17 -04003501#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003502msgid "%s: %s while using the backup blocks"
Tianze Wang57d69272016-08-31 23:14:17 -04003503msgstr "%s:尝试备份块时 %s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003504
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003505#: e2fsck/unix.c:1525
Dark Raven3be22a82010-04-19 16:59:03 -04003506#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04003507msgid "%s: going back to original superblock\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003508msgstr "%s:回到原先的超级块\n"
Theodore Ts'o930e2812009-06-29 15:08:12 -04003509
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003510#: e2fsck/unix.c:1554
Theodore Ts'of722c132009-04-21 22:09:01 -04003511msgid ""
3512"The filesystem revision is apparently too high for this version of e2fsck.\n"
3513"(Or the filesystem superblock is corrupt)\n"
3514"\n"
3515msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003516"文件系统的版本高于此e2fsck所支持的版本。\n"
3517"(也有可能超级块已损坏)\n"
3518"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003519
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003520#: e2fsck/unix.c:1561
Theodore Ts'of722c132009-04-21 22:09:01 -04003521msgid "Could this be a zero-length partition?\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003522msgstr "分区长度为零吗?\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003523
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003524#: e2fsck/unix.c:1563
Theodore Ts'of722c132009-04-21 22:09:01 -04003525#, c-format
3526msgid "You must have %s access to the filesystem or be root\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003527msgstr "你必须具有对该文件系统的 %s 权限,或者为root\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003528
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003529#: e2fsck/unix.c:1569
Theodore Ts'of722c132009-04-21 22:09:01 -04003530msgid "Possibly non-existent or swap device?\n"
3531msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003532"可能为swap分区,或该设备不存在?\n"
3533"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003534
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003535#: e2fsck/unix.c:1571
Theodore Ts'of722c132009-04-21 22:09:01 -04003536msgid "Filesystem mounted or opened exclusively by another program?\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003537msgstr "文件系统可能已挂载,或正被其他程序独占使用?\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003538
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003539#: e2fsck/unix.c:1575
Dark Ravenc4755342011-01-26 18:54:25 -05003540msgid "Possibly non-existent device?\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003541msgstr "可能该设备不存在?\n"
Dark Ravenc4755342011-01-26 18:54:25 -05003542
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003543#: e2fsck/unix.c:1578
Theodore Ts'of722c132009-04-21 22:09:01 -04003544msgid ""
3545"Disk write-protected; use the -n option to do a read-only\n"
3546"check of the device.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003547msgstr "磁盘写保护;请使用 -n 选项进行只读检查。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003548
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003549#: e2fsck/unix.c:1592
3550#, c-format
3551msgid "%s: Trying to load superblock despite errors...\n"
3552msgstr ""
3553
3554#: e2fsck/unix.c:1667
Theodore Ts'of722c132009-04-21 22:09:01 -04003555msgid "Get a newer version of e2fsck!"
Tianze Wang57d69272016-08-31 23:14:17 -04003556msgstr "请获取新版本的e2fsck!"
Theodore Ts'of722c132009-04-21 22:09:01 -04003557
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003558#: e2fsck/unix.c:1711
Tianze Wang57d69272016-08-31 23:14:17 -04003559#, c-format
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003560msgid "while checking journal for %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003561msgstr "检查 %s 的日志时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003562
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003563#: e2fsck/unix.c:1714
Theodore Ts'o48203a32016-06-08 15:45:26 -04003564msgid "Cannot proceed with file system check"
Tianze Wang57d69272016-08-31 23:14:17 -04003565msgstr "无法在系统检查时进行"
Theodore Ts'o48203a32016-06-08 15:45:26 -04003566
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003567#: e2fsck/unix.c:1725
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05003568msgid ""
3569"Warning: skipping journal recovery because doing a read-only filesystem "
3570"check.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003571msgstr "警告:由于只读系统检查,跳过日志恢复流程。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003572
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003573#: e2fsck/unix.c:1737
Theodore Ts'of722c132009-04-21 22:09:01 -04003574#, c-format
Theodore Ts'o296b9d62010-06-07 12:25:11 -04003575msgid "unable to set superblock flags on %s\n"
3576msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003577"无法设置 %s 的超级块标志。\n"
3578"\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04003579
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003580#: e2fsck/unix.c:1743
Tianze Wang57d69272016-08-31 23:14:17 -04003581#, c-format
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003582msgid "Journal checksum error found in %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003583msgstr "在 %s 中发现日志校验值错误\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003584
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003585#: e2fsck/unix.c:1747
Tianze Wang57d69272016-08-31 23:14:17 -04003586#, c-format
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003587msgid "Journal corrupted in %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003588msgstr "%s 中的日志已损坏\n"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003589
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003590#: e2fsck/unix.c:1751
Tianze Wang57d69272016-08-31 23:14:17 -04003591#, c-format
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003592msgid "while recovering journal of %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003593msgstr "恢复 %s 的日志时"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003594
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003595#: e2fsck/unix.c:1773
Theodore Ts'of722c132009-04-21 22:09:01 -04003596#, c-format
3597msgid "%s has unsupported feature(s):"
Tianze Wang57d69272016-08-31 23:14:17 -04003598msgstr "%s 有不被支持的特性:"
Theodore Ts'of722c132009-04-21 22:09:01 -04003599
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003600#: e2fsck/unix.c:1832
Tianze Wang57d69272016-08-31 23:14:17 -04003601#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003602msgid "%s: %s while reading bad blocks inode\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003603msgstr "%s:读取坏块inode时%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003604
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003605#: e2fsck/unix.c:1835
Theodore Ts'of722c132009-04-21 22:09:01 -04003606msgid "This doesn't bode well, but we'll try to go on...\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003607msgstr "这并不是一个好预兆,然而我们将继续进行...\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003608
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003609#: e2fsck/unix.c:1875
Dark Raven3be22a82010-04-19 16:59:03 -04003610#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04003611msgid "Creating journal (%d blocks): "
Tianze Wang57d69272016-08-31 23:14:17 -04003612msgstr "创建日志(%d 个块):"
Theodore Ts'of722c132009-04-21 22:09:01 -04003613
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003614#: e2fsck/unix.c:1885
Theodore Ts'of722c132009-04-21 22:09:01 -04003615msgid " Done.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003616msgstr "完毕。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003617
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003618#: e2fsck/unix.c:1887
Theodore Ts'of722c132009-04-21 22:09:01 -04003619msgid ""
3620"\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003621"*** journal has been regenerated ***\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003622msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003623"\n"
3624"*** 日志已被重建 ***\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003625
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003626#: e2fsck/unix.c:1893
Theodore Ts'obd386982015-05-17 20:34:58 -04003627msgid "aborted"
3628msgstr "已中止"
3629
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003630#: e2fsck/unix.c:1895
Theodore Ts'of722c132009-04-21 22:09:01 -04003631#, c-format
3632msgid "%s: e2fsck canceled.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003633msgstr "%s:e2fsck被取消。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003634
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003635#: e2fsck/unix.c:1922
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003636msgid "Restarting e2fsck from the beginning...\n"
3637msgstr "正在从头开始e2fsck...\n"
3638
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003639#: e2fsck/unix.c:1926
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003640msgid "while resetting context"
Tianze Wang57d69272016-08-31 23:14:17 -04003641msgstr "重置上下文时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003642
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003643#: e2fsck/unix.c:1985
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003644#, fuzzy, c-format
3645msgid ""
3646"\n"
3647"%s: ***** FILE SYSTEM ERRORS CORRECTED *****\n"
3648msgstr ""
3649"\n"
3650"%s:***** 文件系统已修改 *****\n"
3651
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003652#: e2fsck/unix.c:1987
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003653#, fuzzy, c-format
3654msgid "%s: File system was modified.\n"
3655msgstr "文件系统已损坏"
3656
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003657#: e2fsck/unix.c:1991 e2fsck/util.c:71
Theodore Ts'of722c132009-04-21 22:09:01 -04003658#, c-format
3659msgid ""
3660"\n"
3661"%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
3662msgstr ""
3663"\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003664"%s:***** 文件系统已修改 *****\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003665
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003666#: e2fsck/unix.c:1996
Tianze Wang57d69272016-08-31 23:14:17 -04003667#, c-format
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04003668msgid "%s: ***** REBOOT SYSTEM *****\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003669msgstr "%s:***** 请重新启动系统 *****\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003670
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003671#: e2fsck/unix.c:2006 e2fsck/util.c:77
Theodore Ts'of722c132009-04-21 22:09:01 -04003672#, c-format
3673msgid ""
3674"\n"
3675"%s: ********** WARNING: Filesystem still has errors **********\n"
3676"\n"
3677msgstr ""
Dark Raven31a48472009-05-25 22:45:42 -04003678"\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003679"%s:********** 警告:文件系统上仍有错误 **********\n"
Dark Raven31a48472009-05-25 22:45:42 -04003680"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003681
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003682#: e2fsck/util.c:196 misc/util.c:93
Theodore Ts'of722c132009-04-21 22:09:01 -04003683msgid "yY"
3684msgstr "yY"
3685
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003686#: e2fsck/util.c:197
Theodore Ts'of722c132009-04-21 22:09:01 -04003687msgid "nN"
3688msgstr "nN"
3689
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003690#: e2fsck/util.c:198
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003691msgid "aA"
Tianze Wang57d69272016-08-31 23:14:17 -04003692msgstr "aA"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003693
Theodore Ts'o21725192017-08-23 19:46:04 -04003694#: e2fsck/util.c:202
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003695msgid " ('a' enables 'yes' to all) "
Tianze Wang57d69272016-08-31 23:14:17 -04003696msgstr "(“a” 表示全部回答“yes”) "
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003697
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003698#: e2fsck/util.c:219
Theodore Ts'of722c132009-04-21 22:09:01 -04003699msgid "<y>"
3700msgstr "<y>"
3701
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003702#: e2fsck/util.c:221
Theodore Ts'of722c132009-04-21 22:09:01 -04003703msgid "<n>"
3704msgstr "<n>"
3705
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003706#: e2fsck/util.c:223
Theodore Ts'of722c132009-04-21 22:09:01 -04003707msgid " (y/n)"
Tianze Wang57d69272016-08-31 23:14:17 -04003708msgstr " (y/n)"
Theodore Ts'of722c132009-04-21 22:09:01 -04003709
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003710#: e2fsck/util.c:246
Theodore Ts'of722c132009-04-21 22:09:01 -04003711msgid "cancelled!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003712msgstr "已取消!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003713
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003714#: e2fsck/util.c:279
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003715msgid "yes to all\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003716msgstr "全部回答“yes”\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04003717
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003718#: e2fsck/util.c:281
Theodore Ts'of722c132009-04-21 22:09:01 -04003719msgid "yes\n"
3720msgstr "是\n"
3721
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003722#: e2fsck/util.c:283
Theodore Ts'of722c132009-04-21 22:09:01 -04003723msgid "no\n"
3724msgstr "否\n"
3725
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003726#: e2fsck/util.c:293
Dark Raven3be22a82010-04-19 16:59:03 -04003727#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04003728msgid ""
3729"%s? no\n"
3730"\n"
3731msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003732"%s? no\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003733"\n"
3734
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003735#: e2fsck/util.c:297
Theodore Ts'of722c132009-04-21 22:09:01 -04003736#, c-format
3737msgid ""
3738"%s? yes\n"
3739"\n"
3740msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003741"%s? yes\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003742"\n"
3743
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003744#: e2fsck/util.c:301
Theodore Ts'of722c132009-04-21 22:09:01 -04003745msgid "yes"
3746msgstr "yes"
3747
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003748#: e2fsck/util.c:301
Theodore Ts'of722c132009-04-21 22:09:01 -04003749msgid "no"
3750msgstr "no"
3751
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003752#: e2fsck/util.c:317
Theodore Ts'of722c132009-04-21 22:09:01 -04003753#, c-format
3754msgid "e2fsck_read_bitmaps: illegal bitmap block(s) for %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003755msgstr "e2fsck_read_bitmaps:%s 含有非法的位图块"
Theodore Ts'of722c132009-04-21 22:09:01 -04003756
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003757#: e2fsck/util.c:322
Theodore Ts'of722c132009-04-21 22:09:01 -04003758msgid "reading inode and block bitmaps"
Tianze Wang57d69272016-08-31 23:14:17 -04003759msgstr "读取inode和块位图"
Theodore Ts'of722c132009-04-21 22:09:01 -04003760
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003761#: e2fsck/util.c:334
Theodore Ts'of722c132009-04-21 22:09:01 -04003762#, c-format
3763msgid "while retrying to read bitmaps for %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003764msgstr "重新尝试读取 %s 的位图时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003765
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003766#: e2fsck/util.c:346
Theodore Ts'of722c132009-04-21 22:09:01 -04003767msgid "writing block and inode bitmaps"
Tianze Wang57d69272016-08-31 23:14:17 -04003768msgstr "写入块和inode位图"
Theodore Ts'of722c132009-04-21 22:09:01 -04003769
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003770#: e2fsck/util.c:351
Theodore Ts'of722c132009-04-21 22:09:01 -04003771#, c-format
3772msgid "while rewriting block and inode bitmaps for %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003773msgstr "重写 %s 的block和inode位图时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003774
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003775#: e2fsck/util.c:363
Theodore Ts'of722c132009-04-21 22:09:01 -04003776#, c-format
3777msgid ""
3778"\n"
3779"\n"
3780"%s: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.\n"
3781"\t(i.e., without -a or -p options)\n"
3782msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003783"\n"
3784"\n"
3785"%s:未预期的不一致性;请手动运行fsck\n"
3786"\t(即不使用 -a 或 -p 选项)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003787
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003788#: e2fsck/util.c:444
Dark Raven3be22a82010-04-19 16:59:03 -04003789#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04003790msgid "Memory used: %luk/%luk (%luk/%luk), "
Tianze Wang57d69272016-08-31 23:14:17 -04003791msgstr "内存使用量:%luk/%luk(%luk/%luk), "
Theodore Ts'of722c132009-04-21 22:09:01 -04003792
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003793#: e2fsck/util.c:448
Dark Raven3be22a82010-04-19 16:59:03 -04003794#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04003795msgid "Memory used: %lu, "
Tianze Wang57d69272016-08-31 23:14:17 -04003796msgstr "已使用内存:%lu, "
Theodore Ts'of722c132009-04-21 22:09:01 -04003797
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003798#: e2fsck/util.c:455
Dark Raven31a48472009-05-25 22:45:42 -04003799#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04003800msgid "time: %5.2f/%5.2f/%5.2f\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003801msgstr "时间:%5.2f/%5.2f/%5.2f\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003802
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003803#: e2fsck/util.c:460
Theodore Ts'of722c132009-04-21 22:09:01 -04003804#, c-format
3805msgid "elapsed time: %6.3f\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003806msgstr "持续时间:%6.3f\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003807
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003808#: e2fsck/util.c:495 e2fsck/util.c:509
Dark Raven3be22a82010-04-19 16:59:03 -04003809#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04003810msgid "while reading inode %lu in %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003811msgstr "读取 %2$s 中的inode %1$lu 时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003812
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003813#: e2fsck/util.c:523 e2fsck/util.c:536
Dark Raven3be22a82010-04-19 16:59:03 -04003814#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04003815msgid "while writing inode %lu in %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003816msgstr "写入 %2$s 中的inode %1$lu 时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003817
Theodore Ts'o40e66e22018-08-18 21:14:56 -04003818#: e2fsck/util.c:792
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05003819msgid ""
3820"UNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is "
3821"running.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003822msgstr "未预期的不连续性:文件系统在运行fsck时被修改。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003823
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003824#: misc/badblocks.c:75
Eric Sandeen032eafe2012-07-28 17:48:36 -04003825msgid "done \n"
Tianze Wang57d69272016-08-31 23:14:17 -04003826msgstr "已完成 \n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003827
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003828#: misc/badblocks.c:100
Theodore Ts'o89128f82018-01-01 19:36:37 -05003829#, fuzzy, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04003830msgid ""
Theodore Ts'o89128f82018-01-01 19:36:37 -05003831"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnfBX]\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05003832" [-c blocks_at_once] [-d delay_factor_between_reads] [-e "
3833"max_bad_blocks]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003834" [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
3835" device [last_block [first_block]]\n"
3836msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003837"用法:%s [-b 块大小] [-i 输入文件] [-o 输出文件] [-svwnf]\n"
3838" [-c 立即块数] [-d 读取延迟因子] [-e 最大坏块数]\n"
3839" [-p 需要通过测试的块数] [-t 测试模式 [-t 测试模式 [...]]]\n"
3840" 设备 [末块 [首块]]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003841
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003842#: misc/badblocks.c:111
Theodore Ts'of722c132009-04-21 22:09:01 -04003843#, c-format
3844msgid ""
3845"%s: The -n and -w options are mutually exclusive.\n"
3846"\n"
3847msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003848"%s:-n 和 -w 选项是相互排斥的。\n"
3849"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003850
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003851#: misc/badblocks.c:229
Theodore Ts'o930e2812009-06-29 15:08:12 -04003852#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003853msgid "%6.2f%% done, %s elapsed. (%d/%d/%d errors)"
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05003854msgstr "进度 %6.2f%%,用时 %s。(%d/%d/%d 个错误)"
Theodore Ts'o930e2812009-06-29 15:08:12 -04003855
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003856#: misc/badblocks.c:337
Theodore Ts'of722c132009-04-21 22:09:01 -04003857msgid "Testing with random pattern: "
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05003858msgstr "现在测试随机模式:"
Theodore Ts'of722c132009-04-21 22:09:01 -04003859
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05003860# upstream bug but whatever
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003861#: misc/badblocks.c:355
Theodore Ts'of722c132009-04-21 22:09:01 -04003862msgid "Testing with pattern 0x"
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05003863msgstr "现在测试模式 0x"
Theodore Ts'of722c132009-04-21 22:09:01 -04003864
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003865#: misc/badblocks.c:387 misc/badblocks.c:460
Theodore Ts'of722c132009-04-21 22:09:01 -04003866msgid "during seek"
Tianze Wang57d69272016-08-31 23:14:17 -04003867msgstr "定位过程中"
Theodore Ts'of722c132009-04-21 22:09:01 -04003868
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003869#: misc/badblocks.c:398
Theodore Ts'of722c132009-04-21 22:09:01 -04003870#, c-format
3871msgid "Weird value (%ld) in do_read\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003872msgstr "do_read中遇到异常值(%ld)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003873
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003874#: misc/badblocks.c:485
Theodore Ts'of722c132009-04-21 22:09:01 -04003875msgid "during ext2fs_sync_device"
Tianze Wang57d69272016-08-31 23:14:17 -04003876msgstr "执行ext2fs_sync_device时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003877
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003878#: misc/badblocks.c:505 misc/badblocks.c:767
Theodore Ts'of722c132009-04-21 22:09:01 -04003879msgid "while beginning bad block list iteration"
Tianze Wang57d69272016-08-31 23:14:17 -04003880msgstr "迭代坏块列表时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003881
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003882#: misc/badblocks.c:520 misc/badblocks.c:620 misc/badblocks.c:778
Theodore Ts'of722c132009-04-21 22:09:01 -04003883msgid "while allocating buffers"
Tianze Wang57d69272016-08-31 23:14:17 -04003884msgstr "分配缓冲区时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003885
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003886#: misc/badblocks.c:524
Theodore Ts'of722c132009-04-21 22:09:01 -04003887#, c-format
3888msgid "Checking blocks %lu to %lu\n"
3889msgstr "正在检查从 %lu 到 %lu的块\n"
3890
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003891#: misc/badblocks.c:529
Theodore Ts'of722c132009-04-21 22:09:01 -04003892msgid "Checking for bad blocks in read-only mode\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003893msgstr "在只读模式中检查坏块\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003894
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003895#: misc/badblocks.c:538
Theodore Ts'of722c132009-04-21 22:09:01 -04003896msgid "Checking for bad blocks (read-only test): "
Tianze Wang57d69272016-08-31 23:14:17 -04003897msgstr "检查坏块(只读测试): "
Theodore Ts'of722c132009-04-21 22:09:01 -04003898
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003899#: misc/badblocks.c:545 misc/badblocks.c:652 misc/badblocks.c:694
3900#: misc/badblocks.c:841
Theodore Ts'of722c132009-04-21 22:09:01 -04003901msgid "Too many bad blocks, aborting test\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003902msgstr "坏块太多,终止测试\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003903
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003904#: misc/badblocks.c:627
Theodore Ts'of722c132009-04-21 22:09:01 -04003905msgid "Checking for bad blocks in read-write mode\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003906msgstr "在读写模式中检查坏块\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003907
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003908#: misc/badblocks.c:629 misc/badblocks.c:791
Theodore Ts'of722c132009-04-21 22:09:01 -04003909#, c-format
3910msgid "From block %lu to %lu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003911msgstr "从块 %lu 至 %lu\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003912
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003913#: misc/badblocks.c:684
Theodore Ts'of722c132009-04-21 22:09:01 -04003914msgid "Reading and comparing: "
Tianze Wang57d69272016-08-31 23:14:17 -04003915msgstr "正在读取并比较: "
Theodore Ts'of722c132009-04-21 22:09:01 -04003916
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003917#: misc/badblocks.c:790
Theodore Ts'of722c132009-04-21 22:09:01 -04003918msgid "Checking for bad blocks in non-destructive read-write mode\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003919msgstr "使用非破坏性读写模式进行坏块检验\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003920
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003921#: misc/badblocks.c:796
Theodore Ts'of722c132009-04-21 22:09:01 -04003922msgid "Checking for bad blocks (non-destructive read-write test)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003923msgstr "正在检验坏块(非破坏性读写测试)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003924
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003925#: misc/badblocks.c:803
Theodore Ts'of722c132009-04-21 22:09:01 -04003926msgid ""
3927"\n"
3928"Interrupt caught, cleaning up\n"
3929msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04003930"\n"
3931"收到中断通知,正在进行后续清理工作\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003932
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003933#: misc/badblocks.c:886
Theodore Ts'of722c132009-04-21 22:09:01 -04003934#, c-format
3935msgid "during test data write, block %lu"
Tianze Wang57d69272016-08-31 23:14:17 -04003936msgstr "正在测试数据写入,位于块 %lu"
Theodore Ts'of722c132009-04-21 22:09:01 -04003937
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003938#: misc/badblocks.c:1007 misc/util.c:131
Theodore Ts'of722c132009-04-21 22:09:01 -04003939#, c-format
3940msgid "%s is mounted; "
Tianze Wang57d69272016-08-31 23:14:17 -04003941msgstr "%s 已经挂载; "
Theodore Ts'of722c132009-04-21 22:09:01 -04003942
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003943#: misc/badblocks.c:1009
Theodore Ts'of722c132009-04-21 22:09:01 -04003944msgid "badblocks forced anyway. Hope /etc/mtab is incorrect.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003945msgstr "强制进行坏块处理。期望/etc/mtab中反映的并非真实情况。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003946
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003947#: misc/badblocks.c:1014
Theodore Ts'of722c132009-04-21 22:09:01 -04003948msgid "it's not safe to run badblocks!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003949msgstr "进行坏块处理有风险!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003950
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003951#: misc/badblocks.c:1019 misc/util.c:142
Theodore Ts'of722c132009-04-21 22:09:01 -04003952#, c-format
3953msgid "%s is apparently in use by the system; "
Tianze Wang57d69272016-08-31 23:14:17 -04003954msgstr "%s 显然正被系统使用; "
Theodore Ts'of722c132009-04-21 22:09:01 -04003955
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003956#: misc/badblocks.c:1022
Theodore Ts'of722c132009-04-21 22:09:01 -04003957msgid "badblocks forced anyway.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003958msgstr "强制进行坏块检验。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003959
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003960#: misc/badblocks.c:1042
Theodore Ts'of722c132009-04-21 22:09:01 -04003961#, c-format
3962msgid "invalid %s - %s"
3963msgstr "无效的%s - %s"
3964
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003965#: misc/badblocks.c:1136
Theodore Ts'obd386982015-05-17 20:34:58 -04003966#, c-format
3967msgid "Too big max bad blocks count %u - maximum is %u"
Tianze Wang57d69272016-08-31 23:14:17 -04003968msgstr "最大坏块数(%u)过大 - 最大值为 %u"
Theodore Ts'obd386982015-05-17 20:34:58 -04003969
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003970#: misc/badblocks.c:1163
Theodore Ts'of722c132009-04-21 22:09:01 -04003971#, c-format
3972msgid "can't allocate memory for test_pattern - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04003973msgstr "无法使用测试模式分配内存 - %s"
Theodore Ts'of722c132009-04-21 22:09:01 -04003974
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003975#: misc/badblocks.c:1193
Theodore Ts'of722c132009-04-21 22:09:01 -04003976msgid "Maximum of one test_pattern may be specified in read-only mode"
Tianze Wang57d69272016-08-31 23:14:17 -04003977msgstr "只读测试中最多只能指定一种测试模式"
Theodore Ts'of722c132009-04-21 22:09:01 -04003978
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003979#: misc/badblocks.c:1199
Theodore Ts'of722c132009-04-21 22:09:01 -04003980msgid "Random test_pattern is not allowed in read-only mode"
Tianze Wang57d69272016-08-31 23:14:17 -04003981msgstr "只读测试中不允许使用随机测试模式"
Theodore Ts'of722c132009-04-21 22:09:01 -04003982
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003983#: misc/badblocks.c:1213
Theodore Ts'of722c132009-04-21 22:09:01 -04003984msgid ""
3985"Couldn't determine device size; you must specify\n"
3986"the size manually\n"
Tianze Wang57d69272016-08-31 23:14:17 -04003987msgstr "无法确定设备大小;你必须手动指定大小\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04003988
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003989#: misc/badblocks.c:1219
Theodore Ts'of722c132009-04-21 22:09:01 -04003990msgid "while trying to determine device size"
Tianze Wang57d69272016-08-31 23:14:17 -04003991msgstr "尝试确定设备大小时"
Theodore Ts'of722c132009-04-21 22:09:01 -04003992
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003993#: misc/badblocks.c:1224
Theodore Ts'of722c132009-04-21 22:09:01 -04003994msgid "last block"
3995msgstr "最后一个块"
3996
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04003997#: misc/badblocks.c:1230
Theodore Ts'of722c132009-04-21 22:09:01 -04003998msgid "first block"
3999msgstr "第一个块"
4000
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004001#: misc/badblocks.c:1233
Theodore Ts'of722c132009-04-21 22:09:01 -04004002#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004003msgid "invalid starting block (%llu): must be less than %llu"
Tianze Wang57d69272016-08-31 23:14:17 -04004004msgstr "起始块(%llu)无效:必须小于 %llu"
Theodore Ts'of722c132009-04-21 22:09:01 -04004005
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004006#: misc/badblocks.c:1240
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004007#, c-format
4008msgid "invalid end block (%llu): must be 32-bit value"
Tianze Wang57d69272016-08-31 23:14:17 -04004009msgstr "起始块(%llu)无效:必须为32位数"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004010
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004011#: misc/badblocks.c:1296
Theodore Ts'of722c132009-04-21 22:09:01 -04004012msgid "while creating in-memory bad blocks list"
Tianze Wang57d69272016-08-31 23:14:17 -04004013msgstr "在内存中创建坏块列表时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004014
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004015#: misc/badblocks.c:1305
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004016msgid "input file - bad format"
Tianze Wang57d69272016-08-31 23:14:17 -04004017msgstr "输入文件 - 格式错误"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004018
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004019#: misc/badblocks.c:1313 misc/badblocks.c:1322
Theodore Ts'of722c132009-04-21 22:09:01 -04004020msgid "while adding to in-memory bad block list"
Tianze Wang57d69272016-08-31 23:14:17 -04004021msgstr "向内存中的坏块列表中添加记录时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004022
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004023#: misc/badblocks.c:1347
Theodore Ts'of722c132009-04-21 22:09:01 -04004024#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04004025msgid "Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004026msgstr "此步已完成,发现了 %u 个坏块。(%d/%d/%d 个错误)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004027
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004028#: misc/chattr.c:89
Tianze Wang57d69272016-08-31 23:14:17 -04004029#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004030msgid "Usage: %s [-pRVf] [-+=aAcCdDeijPsStTu] [-v version] files...\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004031msgstr "用法:%s [-pRVf] [-+=aAcCdDeijPsStTu] [-v 版本] 文件...\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004032
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004033#: misc/chattr.c:159
Tianze Wang57d69272016-08-31 23:14:17 -04004034#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004035msgid "bad project - %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004036msgstr "项目错误 - %s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004037
4038#: misc/chattr.c:173
Theodore Ts'of722c132009-04-21 22:09:01 -04004039#, c-format
4040msgid "bad version - %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004041msgstr "版本错误 - %s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004042
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004043#: misc/chattr.c:219 misc/lsattr.c:127
Dark Raven3be22a82010-04-19 16:59:03 -04004044#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04004045msgid "while trying to stat %s"
Tianze Wang57d69272016-08-31 23:14:17 -04004046msgstr "尝试对%s进行stat调用时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004047
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004048#: misc/chattr.c:226
Theodore Ts'of722c132009-04-21 22:09:01 -04004049#, c-format
4050msgid "while reading flags on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04004051msgstr "读取 %s 的标志时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004052
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004053#: misc/chattr.c:231 misc/chattr.c:243
Theodore Ts'o930e2812009-06-29 15:08:12 -04004054#, c-format
4055msgid "Flags of %s set as "
4056msgstr "%s的标志被设为 "
4057
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004058#: misc/chattr.c:252
Theodore Ts'of722c132009-04-21 22:09:01 -04004059#, c-format
4060msgid "while setting flags on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04004061msgstr "设置 %s 的标志时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004062
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004063#: misc/chattr.c:260
Theodore Ts'of722c132009-04-21 22:09:01 -04004064#, c-format
4065msgid "Version of %s set as %lu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004066msgstr "%s 的版本被设置为 %lu\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004067
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004068#: misc/chattr.c:264
Theodore Ts'of722c132009-04-21 22:09:01 -04004069#, c-format
4070msgid "while setting version on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04004071msgstr "设置 %s 的版本时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004072
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004073#: misc/chattr.c:271
Tianze Wang57d69272016-08-31 23:14:17 -04004074#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004075msgid "Project of %s set as %lu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004076msgstr "%s 的项目被设置为 %lu\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004077
4078#: misc/chattr.c:275
Tianze Wang57d69272016-08-31 23:14:17 -04004079#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004080msgid "while setting project on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04004081msgstr "设置 %s 的项目时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004082
4083#: misc/chattr.c:297
Theodore Ts'of722c132009-04-21 22:09:01 -04004084msgid "Couldn't allocate path variable in chattr_dir_proc"
Tianze Wang57d69272016-08-31 23:14:17 -04004085msgstr "无法在chattr_dir_proc中为路径变量分配内存"
Theodore Ts'of722c132009-04-21 22:09:01 -04004086
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004087#: misc/chattr.c:337
Theodore Ts'of722c132009-04-21 22:09:01 -04004088msgid "= is incompatible with - and +\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004089msgstr "= 与 - / + 选项不相容\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004090
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004091#: misc/chattr.c:345
Theodore Ts'of722c132009-04-21 22:09:01 -04004092msgid "Must use '-v', =, - or +\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004093msgstr "必须使用“-v”、=、- 或 + 其中之一\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004094
Theodore Ts'o899425b2018-02-27 22:25:04 -05004095#: misc/create_inode.c:79 misc/create_inode.c:118
Tianze Wang57d69272016-08-31 23:14:17 -04004096#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004097msgid "while reading inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04004098msgstr "读取 inode %u 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004099
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004100#: misc/create_inode.c:89 misc/create_inode.c:287 misc/create_inode.c:352
4101#: misc/create_inode.c:390
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004102msgid "while expanding directory"
Tianze Wang57d69272016-08-31 23:14:17 -04004103msgstr "扩充目录时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004104
Theodore Ts'o899425b2018-02-27 22:25:04 -05004105#: misc/create_inode.c:96
Tianze Wang57d69272016-08-31 23:14:17 -04004106#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004107msgid "while linking \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004108msgstr "链接“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004109
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004110#: misc/create_inode.c:104 misc/create_inode.c:131 misc/create_inode.c:321
Tianze Wang57d69272016-08-31 23:14:17 -04004111#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004112msgid "while writing inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04004113msgstr "写入 inode %u 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004114
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004115#: misc/create_inode.c:151 misc/create_inode.c:175
Tianze Wang57d69272016-08-31 23:14:17 -04004116#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004117msgid "while listing attributes of \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004118msgstr "尝试列出“%s”的属性时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004119
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004120#: misc/create_inode.c:162
Tianze Wang57d69272016-08-31 23:14:17 -04004121#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004122msgid "while opening inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04004123msgstr "打开 inode %u 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004124
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004125#: misc/create_inode.c:168 misc/create_inode.c:195 misc/create_inode.c:975
4126#: misc/e2undo.c:182 misc/e2undo.c:479 misc/e2undo.c:485 misc/e2undo.c:491
Theodore Ts'o899425b2018-02-27 22:25:04 -05004127#: misc/mke2fs.c:359
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004128msgid "while allocating memory"
Tianze Wang57d69272016-08-31 23:14:17 -04004129msgstr "分配内存时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004130
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004131#: misc/create_inode.c:188 misc/create_inode.c:204
Tianze Wang57d69272016-08-31 23:14:17 -04004132#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004133msgid "while reading attribute \"%s\" of \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004134msgstr "读取 %s 的“%s”标志时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004135
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004136#: misc/create_inode.c:213
Tianze Wang57d69272016-08-31 23:14:17 -04004137#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004138msgid "while writing attribute \"%s\" to inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04004139msgstr "写入标志“%s”到 inode %u 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004140
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004141#: misc/create_inode.c:223
Tianze Wang57d69272016-08-31 23:14:17 -04004142#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004143msgid "while closing inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04004144msgstr "关闭 inode %u 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004145
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004146#: misc/create_inode.c:274
Tianze Wang57d69272016-08-31 23:14:17 -04004147#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004148msgid "while allocating inode \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004149msgstr "分配 inode“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004150
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004151#: misc/create_inode.c:293
Tianze Wang57d69272016-08-31 23:14:17 -04004152#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004153msgid "while creating inode \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004154msgstr "创建 inode “%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004155
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004156#: misc/create_inode.c:359
Tianze Wang57d69272016-08-31 23:14:17 -04004157#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004158msgid "while creating symlink \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004159msgstr "创建符号链接“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004160
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004161#: misc/create_inode.c:377 misc/create_inode.c:896
Tianze Wang57d69272016-08-31 23:14:17 -04004162#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004163msgid "while looking up \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004164msgstr "查找“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004165
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004166#: misc/create_inode.c:397
Tianze Wang57d69272016-08-31 23:14:17 -04004167#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004168msgid "while creating directory \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004169msgstr "创建目录“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004170
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004171#: misc/create_inode.c:625
Tianze Wang57d69272016-08-31 23:14:17 -04004172#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004173msgid "while opening \"%s\" to copy"
Tianze Wang57d69272016-08-31 23:14:17 -04004174msgstr "打开“%s”并拷贝时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004175
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004176#: misc/create_inode.c:739
Theodore Ts'of722c132009-04-21 22:09:01 -04004177#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004178msgid "while changing working directory to \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004179msgstr "改变工作目录为“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004180
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004181#: misc/create_inode.c:747
Tianze Wang57d69272016-08-31 23:14:17 -04004182#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004183msgid "while opening directory \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004184msgstr "打开目录“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004185
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004186#: misc/create_inode.c:757
Tianze Wang57d69272016-08-31 23:14:17 -04004187#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004188msgid "while lstat \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004189msgstr "对“%s”进行lstat调用时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004190
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004191#: misc/create_inode.c:808
Tianze Wang57d69272016-08-31 23:14:17 -04004192#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004193msgid "while creating special file \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004194msgstr "创建特殊文件“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004195
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004196#: misc/create_inode.c:817
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04004197msgid "malloc failed"
Tianze Wang57d69272016-08-31 23:14:17 -04004198msgstr "内存分配失败"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04004199
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004200#: misc/create_inode.c:825
Tianze Wang57d69272016-08-31 23:14:17 -04004201#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004202msgid "while trying to read link \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004203msgstr "尝试读取链接“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004204
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004205#: misc/create_inode.c:832
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04004206msgid "symlink increased in size between lstat() and readlink()"
Tianze Wang57d69272016-08-31 23:14:17 -04004207msgstr "在执行 lstat() 和 readlink() 期间,符号链接的大小发生改变"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04004208
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004209#: misc/create_inode.c:843
Tianze Wang57d69272016-08-31 23:14:17 -04004210#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004211msgid "while writing symlink\"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004212msgstr "写入符号链接“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004213
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004214#: misc/create_inode.c:854
Tianze Wang57d69272016-08-31 23:14:17 -04004215#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004216msgid "while writing file \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004217msgstr "写入文件“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004218
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004219#: misc/create_inode.c:867
Tianze Wang57d69272016-08-31 23:14:17 -04004220#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004221msgid "while making dir \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004222msgstr "创建目录“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004223
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004224#: misc/create_inode.c:885
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004225msgid "while changing directory"
Tianze Wang57d69272016-08-31 23:14:17 -04004226msgstr "改变目录时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004227
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004228#: misc/create_inode.c:891
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004229#, c-format
4230msgid "ignoring entry \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004231msgstr "忽略项“%s”"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004232
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004233#: misc/create_inode.c:904
Tianze Wang57d69272016-08-31 23:14:17 -04004234#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004235msgid "while setting inode for \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004236msgstr "为“%s”设置 inode 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004237
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004238#: misc/create_inode.c:911
Tianze Wang57d69272016-08-31 23:14:17 -04004239#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004240msgid "while setting xattrs for \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04004241msgstr "设置“%s”的 xattrs 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004242
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004243#: misc/create_inode.c:937
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004244msgid "while saving inode data"
Tianze Wang57d69272016-08-31 23:14:17 -04004245msgstr "保存 inode 数据时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004246
4247#: misc/dumpe2fs.c:56
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004248#, fuzzy, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05004249msgid ""
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004250"Usage: %s [-bfghimxV] [-o superblock=<num>] [-o blocksize=<num>] device\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05004251msgstr ""
4252"用法:%s [-bfghixV] [-o superblock=<超级块编号>] [-o blocksize=<块大小>] 设"
4253"备\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004254
Eric Sandeen032eafe2012-07-28 17:48:36 -04004255#: misc/dumpe2fs.c:159
Eric Sandeen032eafe2012-07-28 17:48:36 -04004256msgid "blocks"
Tianze Wang57d69272016-08-31 23:14:17 -04004257msgstr "块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04004258
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004259#: misc/dumpe2fs.c:168
Eric Sandeen032eafe2012-07-28 17:48:36 -04004260msgid "clusters"
Tianze Wang57d69272016-08-31 23:14:17 -04004261msgstr "簇"
Eric Sandeen032eafe2012-07-28 17:48:36 -04004262
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004263#: misc/dumpe2fs.c:219
Theodore Ts'of722c132009-04-21 22:09:01 -04004264#, c-format
4265msgid "Group %lu: (Blocks "
Tianze Wang57d69272016-08-31 23:14:17 -04004266msgstr "组 %lu:(块 "
Theodore Ts'of722c132009-04-21 22:09:01 -04004267
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004268#: misc/dumpe2fs.c:226
Tianze Wang57d69272016-08-31 23:14:17 -04004269#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004270msgid " csum 0x%04x"
Tianze Wang57d69272016-08-31 23:14:17 -04004271msgstr " 校验值 0x%04x"
Theodore Ts'of722c132009-04-21 22:09:01 -04004272
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004273#: misc/dumpe2fs.c:228
Eric Sandeen032eafe2012-07-28 17:48:36 -04004274#, c-format
4275msgid " (EXPECTED 0x%04x)"
Tianze Wang57d69272016-08-31 23:14:17 -04004276msgstr " (应为 0x%04x)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04004277
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004278#: misc/dumpe2fs.c:233
Theodore Ts'of722c132009-04-21 22:09:01 -04004279#, c-format
4280msgid " %s superblock at "
Tianze Wang57d69272016-08-31 23:14:17 -04004281msgstr " %s 超级块位于 "
Theodore Ts'of722c132009-04-21 22:09:01 -04004282
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004283#: misc/dumpe2fs.c:234
Theodore Ts'of722c132009-04-21 22:09:01 -04004284msgid "Primary"
4285msgstr "主"
4286
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004287#: misc/dumpe2fs.c:234
Theodore Ts'of722c132009-04-21 22:09:01 -04004288msgid "Backup"
4289msgstr "备份"
4290
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004291#: misc/dumpe2fs.c:238
Theodore Ts'of722c132009-04-21 22:09:01 -04004292msgid ", Group descriptors at "
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05004293msgstr ",组描述符位于 "
Theodore Ts'of722c132009-04-21 22:09:01 -04004294
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004295#: misc/dumpe2fs.c:242
Theodore Ts'of722c132009-04-21 22:09:01 -04004296msgid ""
4297"\n"
4298" Reserved GDT blocks at "
4299msgstr ""
4300"\n"
4301" 保留的GDT块位于 "
4302
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004303#: misc/dumpe2fs.c:249
Theodore Ts'of722c132009-04-21 22:09:01 -04004304msgid " Group descriptor at "
Tianze Wang57d69272016-08-31 23:14:17 -04004305msgstr " 组描述符位于 "
Theodore Ts'of722c132009-04-21 22:09:01 -04004306
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004307#: misc/dumpe2fs.c:255
Theodore Ts'of722c132009-04-21 22:09:01 -04004308msgid " Block bitmap at "
Tianze Wang57d69272016-08-31 23:14:17 -04004309msgstr " 块位图位于 "
Theodore Ts'of722c132009-04-21 22:09:01 -04004310
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004311#: misc/dumpe2fs.c:260 misc/dumpe2fs.c:271
Tianze Wang57d69272016-08-31 23:14:17 -04004312#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004313msgid ", csum 0x%08x"
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05004314msgstr ",校验值 0x%08x"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004315
4316#: misc/dumpe2fs.c:263
4317msgid ","
Tianze Wang57d69272016-08-31 23:14:17 -04004318msgstr ","
Theodore Ts'of722c132009-04-21 22:09:01 -04004319
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004320#: misc/dumpe2fs.c:265
4321msgid ""
4322"\n"
4323" "
4324msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04004325"\n"
4326" "
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004327
4328#: misc/dumpe2fs.c:266
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004329msgid " Inode bitmap at "
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05004330msgstr " Inode 位图位于 "
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004331
4332#: misc/dumpe2fs.c:273
Theodore Ts'of722c132009-04-21 22:09:01 -04004333msgid ""
4334"\n"
4335" Inode table at "
4336msgstr ""
4337"\n"
4338" Inode表位于 "
4339
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004340#: misc/dumpe2fs.c:279
Theodore Ts'of722c132009-04-21 22:09:01 -04004341#, c-format
4342msgid ""
4343"\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04004344" %u free %s, %u free inodes, %u directories%s"
Theodore Ts'of722c132009-04-21 22:09:01 -04004345msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04004346"\n"
4347" %u 个可用 %s,%u 个可用inode,%u 个目录 %s"
Theodore Ts'of722c132009-04-21 22:09:01 -04004348
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004349#: misc/dumpe2fs.c:286
Theodore Ts'of722c132009-04-21 22:09:01 -04004350#, c-format
4351msgid ", %u unused inodes\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004352msgstr ",%u个未使用的inodes\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004353
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004354#: misc/dumpe2fs.c:289
Theodore Ts'of722c132009-04-21 22:09:01 -04004355msgid " Free blocks: "
Tianze Wang57d69272016-08-31 23:14:17 -04004356msgstr " 可用块数: "
Theodore Ts'of722c132009-04-21 22:09:01 -04004357
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004358#: misc/dumpe2fs.c:304
Theodore Ts'of722c132009-04-21 22:09:01 -04004359msgid " Free inodes: "
Tianze Wang57d69272016-08-31 23:14:17 -04004360msgstr " 可用inode数: "
Theodore Ts'of722c132009-04-21 22:09:01 -04004361
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004362#: misc/dumpe2fs.c:340
Theodore Ts'of722c132009-04-21 22:09:01 -04004363msgid "while printing bad block list"
Tianze Wang57d69272016-08-31 23:14:17 -04004364msgstr "输出坏块列表时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004365
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004366#: misc/dumpe2fs.c:346
Theodore Ts'of722c132009-04-21 22:09:01 -04004367#, c-format
4368msgid "Bad blocks: %u"
Tianze Wang57d69272016-08-31 23:14:17 -04004369msgstr "坏块数:%u"
Theodore Ts'of722c132009-04-21 22:09:01 -04004370
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004371#: misc/dumpe2fs.c:373 misc/tune2fs.c:367
Theodore Ts'of722c132009-04-21 22:09:01 -04004372msgid "while reading journal inode"
Tianze Wang57d69272016-08-31 23:14:17 -04004373msgstr "读取日志inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004374
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004375#: misc/dumpe2fs.c:379
Dark Raven3be22a82010-04-19 16:59:03 -04004376msgid "while opening journal inode"
Tianze Wang57d69272016-08-31 23:14:17 -04004377msgstr "打开日志inode时"
Dark Raven3be22a82010-04-19 16:59:03 -04004378
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004379#: misc/dumpe2fs.c:385
Dark Raven3be22a82010-04-19 16:59:03 -04004380msgid "while reading journal super block"
Tianze Wang57d69272016-08-31 23:14:17 -04004381msgstr "读取日志超级块时"
Dark Raven3be22a82010-04-19 16:59:03 -04004382
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004383#: misc/dumpe2fs.c:392
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004384msgid "Journal superblock magic number invalid!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004385msgstr "日志超级块的幻数有错!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004386
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004387#: misc/dumpe2fs.c:409 misc/tune2fs.c:216
Theodore Ts'of722c132009-04-21 22:09:01 -04004388msgid "while reading journal superblock"
Tianze Wang57d69272016-08-31 23:14:17 -04004389msgstr "读取日志超级块时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004390
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04004391#: misc/dumpe2fs.c:417
Theodore Ts'of722c132009-04-21 22:09:01 -04004392msgid "Couldn't find journal superblock magic numbers"
Tianze Wang57d69272016-08-31 23:14:17 -04004393msgstr "无法找到日志超级块的幻数"
Theodore Ts'of722c132009-04-21 22:09:01 -04004394
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004395#: misc/dumpe2fs.c:468
4396#, fuzzy
4397msgid "failed to alloc MMP buffer\n"
4398msgstr "为缓冲区分配内存时"
4399
4400#: misc/dumpe2fs.c:479
4401#, fuzzy, c-format
4402msgid "reading MMP block %llu from '%s'\n"
4403msgstr "正在检查从 %lu 到 %lu的块\n"
4404
4405#: misc/dumpe2fs.c:507 misc/mke2fs.c:798 misc/tune2fs.c:2073
Theodore Ts'of722c132009-04-21 22:09:01 -04004406msgid "Couldn't allocate memory to parse options!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004407msgstr "无法为解析选项获取内存!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004408
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004409#: misc/dumpe2fs.c:533
Theodore Ts'of722c132009-04-21 22:09:01 -04004410#, c-format
4411msgid "Invalid superblock parameter: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004412msgstr "无效的超级块参数:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004413
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004414#: misc/dumpe2fs.c:548
Theodore Ts'of722c132009-04-21 22:09:01 -04004415#, c-format
4416msgid "Invalid blocksize parameter: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004417msgstr "无效的块大小参数:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004418
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004419#: misc/dumpe2fs.c:559
Theodore Ts'of722c132009-04-21 22:09:01 -04004420#, c-format
4421msgid ""
4422"\n"
4423"Bad extended option(s) specified: %s\n"
4424"\n"
4425"Extended options are separated by commas, and may take an argument which\n"
4426"\tis set off by an equals ('=') sign.\n"
4427"\n"
4428"Valid extended options are:\n"
4429"\tsuperblock=<superblock number>\n"
4430"\tblocksize=<blocksize>\n"
4431msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04004432"\n"
4433"指定了错误的扩展属性:%s\n"
4434"\n"
4435"扩展属性由逗号分隔,有些需要通过等号(“=”)传递参数。\n"
4436"\n"
4437"有效的参数有:\n"
4438"\tsuperblock=<超级块编号>\n"
4439"\tblocksize=<块大小>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004440
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004441#: misc/dumpe2fs.c:649 misc/mke2fs.c:1845
Dark Raven3be22a82010-04-19 16:59:03 -04004442#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04004443msgid "\tUsing %s\n"
4444msgstr "\t使用 %s\n"
4445
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004446#: misc/dumpe2fs.c:694 misc/e2image.c:1590 misc/tune2fs.c:2949
Theodore Ts'o89128f82018-01-01 19:36:37 -05004447#: resize/main.c:416
Theodore Ts'of722c132009-04-21 22:09:01 -04004448msgid "Couldn't find valid filesystem superblock.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004449msgstr "找不到有效的文件系统超级块。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004450
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004451#: misc/dumpe2fs.c:716
Theodore Ts'of722c132009-04-21 22:09:01 -04004452#, c-format
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004453msgid "%s: MMP feature not enabled.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004454msgstr ""
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004455
4456#: misc/dumpe2fs.c:747
4457#, fuzzy, c-format
4458msgid "while trying to read '%s' bitmaps\n"
4459msgstr "重新尝试读取 %s 的位图时"
4460
4461#: misc/dumpe2fs.c:756
4462msgid ""
4463"*** Run e2fsck now!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004464"\n"
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004465msgstr ""
Theodore Ts'of722c132009-04-21 22:09:01 -04004466
Theodore Ts'o21725192017-08-23 19:46:04 -04004467#: misc/e2image.c:107
Theodore Ts'o89128f82018-01-01 19:36:37 -05004468#, fuzzy, c-format
4469msgid "Usage: %s [ -r|Q ] [ -f ] device image-file\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004470msgstr "用法:%s [ -r|Q ] [ -fr ] 设备 镜像文件\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004471
Theodore Ts'o21725192017-08-23 19:46:04 -04004472#: misc/e2image.c:109
Eric Sandeen032eafe2012-07-28 17:48:36 -04004473#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004474msgid " %s -I device image-file\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004475msgstr " %s -I 设备 镜像文件\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004476
Theodore Ts'o21725192017-08-23 19:46:04 -04004477#: misc/e2image.c:110
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004478#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05004479msgid ""
4480" %s -ra [ -cfnp ] [ -o src_offset ] [ -O dest_offset ] src_fs "
4481"[ dest_fs ]\n"
4482msgstr ""
4483" %s -ra [ -cfnp ] [ -o 源偏移量 ] [ -O 目标偏移量 ] 源文件系统 [ 目"
4484"标文件系统 ]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004485
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004486#: misc/e2image.c:175 misc/e2image.c:580 misc/e2image.c:586 misc/e2image.c:1185
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004487msgid "while allocating buffer"
Tianze Wang57d69272016-08-31 23:14:17 -04004488msgstr "为缓冲区分配内存时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004489
Theodore Ts'o21725192017-08-23 19:46:04 -04004490#: misc/e2image.c:180
Tianze Wang57d69272016-08-31 23:14:17 -04004491#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004492msgid "Writing block %llu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004493msgstr "正在写入到块 %llu\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004494
Theodore Ts'o21725192017-08-23 19:46:04 -04004495#: misc/e2image.c:194
Tianze Wang57d69272016-08-31 23:14:17 -04004496#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004497msgid "error writing block %llu"
Tianze Wang57d69272016-08-31 23:14:17 -04004498msgstr "写块 %llu 出错"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004499
Theodore Ts'o21725192017-08-23 19:46:04 -04004500#: misc/e2image.c:197
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004501msgid "error in generic_write()"
Tianze Wang57d69272016-08-31 23:14:17 -04004502msgstr "generic_write() 函数出错"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004503
Theodore Ts'o21725192017-08-23 19:46:04 -04004504#: misc/e2image.c:214
Eric Sandeen032eafe2012-07-28 17:48:36 -04004505msgid "Error: header size is bigger than wrt_size\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004506msgstr "错误:头部大小超过wrt_size\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04004507
Theodore Ts'o21725192017-08-23 19:46:04 -04004508#: misc/e2image.c:219
Theodore Ts'of722c132009-04-21 22:09:01 -04004509msgid "Couldn't allocate header buffer\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004510msgstr "无法为头缓冲区分配内存\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004511
Theodore Ts'o21725192017-08-23 19:46:04 -04004512#: misc/e2image.c:247
Theodore Ts'of722c132009-04-21 22:09:01 -04004513msgid "while writing superblock"
Tianze Wang57d69272016-08-31 23:14:17 -04004514msgstr "写入超级块时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004515
Theodore Ts'o21725192017-08-23 19:46:04 -04004516#: misc/e2image.c:256
Theodore Ts'of722c132009-04-21 22:09:01 -04004517msgid "while writing inode table"
Tianze Wang57d69272016-08-31 23:14:17 -04004518msgstr "写入inode表时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004519
Theodore Ts'o21725192017-08-23 19:46:04 -04004520#: misc/e2image.c:264
Theodore Ts'of722c132009-04-21 22:09:01 -04004521msgid "while writing block bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04004522msgstr "写入块位图时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004523
Theodore Ts'o21725192017-08-23 19:46:04 -04004524#: misc/e2image.c:272
Theodore Ts'of722c132009-04-21 22:09:01 -04004525msgid "while writing inode bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04004526msgstr "写入inode位图时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004527
Theodore Ts'o21725192017-08-23 19:46:04 -04004528#: misc/e2image.c:506
Tianze Wang57d69272016-08-31 23:14:17 -04004529#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004530msgid "Corrupt directory block %llu: bad rec_len (%d)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004531msgstr "损坏的目录块 %llu:rec_len(%d)错误\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004532
Theodore Ts'o21725192017-08-23 19:46:04 -04004533#: misc/e2image.c:518
Tianze Wang57d69272016-08-31 23:14:17 -04004534#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004535msgid "Corrupt directory block %llu: bad name_len (%d)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004536msgstr "损坏的目录块 %llu:name_len(%d)错误\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004537
Theodore Ts'o21725192017-08-23 19:46:04 -04004538#: misc/e2image.c:559
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004539#, c-format
4540msgid "%llu / %llu blocks (%d%%)"
Tianze Wang57d69272016-08-31 23:14:17 -04004541msgstr "%llu / %llu 块(%d%%)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004542
Theodore Ts'o21725192017-08-23 19:46:04 -04004543#: misc/e2image.c:590 misc/e2image.c:630
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004544msgid "Copying "
Tianze Wang57d69272016-08-31 23:14:17 -04004545msgstr "正在拷贝 "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004546
Theodore Ts'o21725192017-08-23 19:46:04 -04004547#: misc/e2image.c:627
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05004548msgid ""
4549"Stopping now will destroy the filesystem, interrupt again if you are sure\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004550msgstr "现在终止将会损坏文件系统;如果你确定要终止,请再次进行打断\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004551
Theodore Ts'o21725192017-08-23 19:46:04 -04004552#: misc/e2image.c:653
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004553#, c-format
4554msgid " %s remaining at %.2f MB/s"
Tianze Wang57d69272016-08-31 23:14:17 -04004555msgstr " 剩余 %s,速度 %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004556
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004557#: misc/e2image.c:665 misc/e2image.c:1195
Tianze Wang57d69272016-08-31 23:14:17 -04004558#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004559msgid "error reading block %llu"
Tianze Wang57d69272016-08-31 23:14:17 -04004560msgstr "读取块 %llu 错误"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004561
Theodore Ts'o21725192017-08-23 19:46:04 -04004562#: misc/e2image.c:719
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004563#, c-format
4564msgid "Copied %llu / %llu blocks (%d%%) in %s "
Tianze Wang57d69272016-08-31 23:14:17 -04004565msgstr "已复制 %llu / %llu 块(%d%%),用时 %s "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004566
Theodore Ts'o21725192017-08-23 19:46:04 -04004567#: misc/e2image.c:723
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004568#, c-format
4569msgid "at %.2f MB/s"
Tianze Wang57d69272016-08-31 23:14:17 -04004570msgstr "速度 %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004571
Theodore Ts'o21725192017-08-23 19:46:04 -04004572#: misc/e2image.c:759
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004573msgid "while allocating l1 table"
Tianze Wang57d69272016-08-31 23:14:17 -04004574msgstr "分配l1表时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004575
Theodore Ts'o21725192017-08-23 19:46:04 -04004576#: misc/e2image.c:804
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004577msgid "while allocating l2 cache"
Tianze Wang57d69272016-08-31 23:14:17 -04004578msgstr "分配l2表时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004579
Theodore Ts'o21725192017-08-23 19:46:04 -04004580#: misc/e2image.c:827
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05004581msgid ""
4582"Warning: There are still tables in the cache while putting the cache, data "
4583"will be lost so the image may not be valid.\n"
4584msgstr ""
4585"警告:当put缓存时,这些表仍然储存在缓存中,这将导致数据丢失,镜像文件也可能无"
4586"效。\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004587
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004588#: misc/e2image.c:1152
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004589msgid "while allocating ext2_qcow2_image"
Tianze Wang57d69272016-08-31 23:14:17 -04004590msgstr "为ext2_qcow2_image分配内存时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004591
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004592#: misc/e2image.c:1159
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004593msgid "while initializing ext2_qcow2_image"
Tianze Wang57d69272016-08-31 23:14:17 -04004594msgstr "初始化ext2_qcow2_image时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004595
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004596#: misc/e2image.c:1218 misc/e2image.c:1236
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004597msgid "Programming error: multiple sequential refcount blocks created!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004598msgstr "程序错误:创建了多重序列的引用计数块!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004599
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004600#: misc/e2image.c:1276
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004601msgid "while allocating block bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04004602msgstr "写入块位图时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004603
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004604#: misc/e2image.c:1285
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004605msgid "while allocating scramble block bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04004606msgstr "写入加扰块位图时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004607
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004608#: misc/e2image.c:1292
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004609msgid "Scanning inodes...\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004610msgstr "扫描inode中...\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004611
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004612#: misc/e2image.c:1304
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004613msgid "Can't allocate block buffer"
Tianze Wang57d69272016-08-31 23:14:17 -04004614msgstr "无法为块缓存分配内存"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004615
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004616#: misc/e2image.c:1343 misc/e2image.c:1357
Tianze Wang57d69272016-08-31 23:14:17 -04004617#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004618msgid "while iterating over inode %u"
Tianze Wang57d69272016-08-31 23:14:17 -04004619msgstr "获取遍历inode %u 时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004620
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004621#: misc/e2image.c:1389
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004622msgid "Raw and qcow2 images cannot be installed"
Tianze Wang57d69272016-08-31 23:14:17 -04004623msgstr "原始镜像和qcow2镜像无法被安装"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004624
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004625#: misc/e2image.c:1411
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004626msgid "error reading bitmaps"
Tianze Wang57d69272016-08-31 23:14:17 -04004627msgstr "读取位图时发生错误"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004628
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004629#: misc/e2image.c:1423
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004630msgid "while opening device file"
Tianze Wang57d69272016-08-31 23:14:17 -04004631msgstr "打开设备文件时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004632
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004633#: misc/e2image.c:1434
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004634msgid "while restoring the image table"
Tianze Wang57d69272016-08-31 23:14:17 -04004635msgstr "存储镜像表时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004636
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004637#: misc/e2image.c:1531
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004638msgid "-a option can only be used with raw or QCOW2 images."
Tianze Wang57d69272016-08-31 23:14:17 -04004639msgstr "-a 选项只能用于原始或qcow2镜像"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004640
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004641#: misc/e2image.c:1537
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004642msgid "Offsets are only allowed with raw images."
Tianze Wang57d69272016-08-31 23:14:17 -04004643msgstr "偏移量只能用于原始镜像"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004644
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004645#: misc/e2image.c:1542
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004646msgid "Move mode is only allowed with raw images."
Tianze Wang57d69272016-08-31 23:14:17 -04004647msgstr "移动模式只能用于原始镜像"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004648
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004649#: misc/e2image.c:1547
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004650msgid "Move mode requires all data mode."
Tianze Wang57d69272016-08-31 23:14:17 -04004651msgstr "原始镜像需要完全数据模式。"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004652
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004653#: misc/e2image.c:1557
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004654msgid "checking if mounted"
Tianze Wang57d69272016-08-31 23:14:17 -04004655msgstr "检测其是否已挂载"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004656
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004657#: misc/e2image.c:1564
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004658msgid ""
4659"\n"
4660"Running e2image on a R/W mounted filesystem can result in an\n"
4661"inconsistent image which will not be useful for debugging purposes.\n"
4662"Use -f option if you really want to do that.\n"
4663msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04004664"\n"
4665"对可读写的文件系统上运行e2image可能导致镜像不连续,\n"
4666"这样的镜像也无法用于调试。如果你确实需要这样做,请使用 -f 选项。\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004667
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004668#: misc/e2image.c:1618
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004669msgid "QCOW2 image can not be written to the stdout!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004670msgstr "无法写入qcow2镜像到标准输出!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004671
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004672#: misc/e2image.c:1624
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004673msgid "Can not stat output\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004674msgstr "无法对输出进行stat操作\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004675
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004676#: misc/e2image.c:1634
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004677#, c-format
4678msgid "Image (%s) is compressed\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004679msgstr "镜像(%s)已被压缩\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004680
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004681#: misc/e2image.c:1637
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004682#, c-format
4683msgid "Image (%s) is encrypted\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004684msgstr "镜像(%s)已被加密\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004685
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004686#: misc/e2image.c:1640
4687#, fuzzy, c-format
4688msgid "Image (%s) is corrupted\n"
4689msgstr "镜像(%s)已被加密\n"
4690
4691#: misc/e2image.c:1644
Eric Sandeen032eafe2012-07-28 17:48:36 -04004692#, c-format
4693msgid "while trying to convert qcow2 image (%s) into raw image (%s)"
Tianze Wang57d69272016-08-31 23:14:17 -04004694msgstr "尝试将qcow2镜像(%s)转换为raw镜像(%s)时"
Eric Sandeen032eafe2012-07-28 17:48:36 -04004695
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004696#: misc/e2image.c:1654
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004697msgid "The -c option only supported in raw mode\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004698msgstr "只有原始模式支持 -c 选项\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004699
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004700#: misc/e2image.c:1659
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004701msgid "The -c option not supported when writing to stdout\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004702msgstr "写入到标准输出时无法使用 -c 选项\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004703
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004704#: misc/e2image.c:1666
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004705msgid "while allocating check_buf"
Tianze Wang57d69272016-08-31 23:14:17 -04004706msgstr "为check_buf分配内存时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004707
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004708#: misc/e2image.c:1672
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004709msgid "The -p option only supported in raw mode\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004710msgstr "只有原始模式支持 -p 选项\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004711
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004712#: misc/e2image.c:1682
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004713#, c-format
4714msgid "%d blocks already contained the data to be copied\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004715msgstr "%d 个块已包含需要被拷贝的数据\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004716
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004717#: misc/e2initrd_helper.c:68
Tianze Wang57d69272016-08-31 23:14:17 -04004718#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004719msgid "Usage: %s -r device\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004720msgstr "用法:%s -r 磁盘名\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004721
Eric Sandeen032eafe2012-07-28 17:48:36 -04004722#: misc/e2label.c:58
Theodore Ts'of722c132009-04-21 22:09:01 -04004723#, c-format
4724msgid "e2label: cannot open %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004725msgstr "e2label:无法打开 %s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004726
Eric Sandeen032eafe2012-07-28 17:48:36 -04004727#: misc/e2label.c:63
Theodore Ts'of722c132009-04-21 22:09:01 -04004728#, c-format
4729msgid "e2label: cannot seek to superblock\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004730msgstr "e2label:无法定位到superblock\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004731
Eric Sandeen032eafe2012-07-28 17:48:36 -04004732#: misc/e2label.c:68
Theodore Ts'of722c132009-04-21 22:09:01 -04004733#, c-format
4734msgid "e2label: error reading superblock\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004735msgstr "e2label:读取superblock出错\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004736
Eric Sandeen032eafe2012-07-28 17:48:36 -04004737#: misc/e2label.c:72
Theodore Ts'of722c132009-04-21 22:09:01 -04004738#, c-format
4739msgid "e2label: not an ext2 filesystem\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004740msgstr "e2label:不是一个ex2文件系统\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004741
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004742#: misc/e2label.c:97 misc/tune2fs.c:3152
Theodore Ts'of722c132009-04-21 22:09:01 -04004743#, c-format
4744msgid "Warning: label too long, truncating.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004745msgstr "警告:卷标太长,已截短。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004746
Eric Sandeen032eafe2012-07-28 17:48:36 -04004747#: misc/e2label.c:100
Theodore Ts'of722c132009-04-21 22:09:01 -04004748#, c-format
4749msgid "e2label: cannot seek to superblock again\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004750msgstr "e2label:无法定位到superblock\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004751
Eric Sandeen032eafe2012-07-28 17:48:36 -04004752#: misc/e2label.c:105
Dark Raven3be22a82010-04-19 16:59:03 -04004753#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04004754msgid "e2label: error writing superblock\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004755msgstr "e2label:写入超级块时出错\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004756
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004757#: misc/e2label.c:117 misc/tune2fs.c:1733
Dark Raven3be22a82010-04-19 16:59:03 -04004758#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04004759msgid "Usage: e2label device [newlabel]\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004760msgstr "用法:e2label 设备 [新卷标]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004761
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004762#: misc/e2undo.c:124
Theodore Ts'o89128f82018-01-01 19:36:37 -05004763#, fuzzy, c-format
4764msgid ""
4765"Usage: %s [-f] [-h] [-n] [-o offset] [-v] [-z undo_file] <transaction file> "
4766"<filesystem>\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004767msgstr "用法:%s [-f] [-h] [-n] [-v] <事务文件> <文件系统>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004768
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004769#: misc/e2undo.c:149
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004770msgid "The file system superblock doesn't match the undo file.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004771msgstr "文件系统的超级块与撤销文件不匹配\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004772
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004773#: misc/e2undo.c:152
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004774msgid "UUID does not match.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004775msgstr "UUID 不匹配。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004776
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004777#: misc/e2undo.c:154
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004778msgid "Last mount time does not match.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004779msgstr "上一次的挂载时间不匹配。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004780
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004781#: misc/e2undo.c:156
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004782msgid "Last write time does not match.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004783msgstr "上一次的写入时间不匹配。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004784
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004785#: misc/e2undo.c:158
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004786msgid "Lifetime write counter does not match.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004787msgstr "写入计数不匹配。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004788
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004789#: misc/e2undo.c:172
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004790msgid "while reading filesystem superblock."
Tianze Wang57d69272016-08-31 23:14:17 -04004791msgstr "读取文件系统的超级块时"
Theodore Ts'of722c132009-04-21 22:09:01 -04004792
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004793#: misc/e2undo.c:188
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004794msgid "while fetching superblock"
Tianze Wang57d69272016-08-31 23:14:17 -04004795msgstr "获取超级块时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004796
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004797#: misc/e2undo.c:201
Theodore Ts'of722c132009-04-21 22:09:01 -04004798#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004799msgid "Undo file superblock checksum doesn't match.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004800msgstr "撤销文件的超级块的校验值与超级块自身不符。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004801
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004802#: misc/e2undo.c:340
Tianze Wang57d69272016-08-31 23:14:17 -04004803#, c-format
Theodore Ts'o48203a32016-06-08 15:45:26 -04004804msgid "illegal offset - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04004805msgstr "偏移量无效 - %s"
Theodore Ts'o48203a32016-06-08 15:45:26 -04004806
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004807#: misc/e2undo.c:364
Theodore Ts'of722c132009-04-21 22:09:01 -04004808#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004809msgid "Will not write to an undo file while replaying it.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004810msgstr "在进行重做操作时,不会写入到撤销文件。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004811
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004812#: misc/e2undo.c:373
Tianze Wang57d69272016-08-31 23:14:17 -04004813#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004814msgid "while opening undo file `%s'\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004815msgstr "打开撤销文件“%s”时\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004816
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004817#: misc/e2undo.c:380
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004818msgid "while reading undo file"
Tianze Wang57d69272016-08-31 23:14:17 -04004819msgstr "读取坏撤销文件时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004820
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004821#: misc/e2undo.c:385
Tianze Wang57d69272016-08-31 23:14:17 -04004822#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004823msgid "%s: Not an undo file.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004824msgstr "%s:不是撤销文件。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004825
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004826#: misc/e2undo.c:396
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004827#, c-format
4828msgid "%s: Header checksum doesn't match.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004829msgstr "%s:头部校验值与自身不符。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004830
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004831#: misc/e2undo.c:403
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004832#, c-format
4833msgid "%s: Corrupt undo file header.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004834msgstr "%s:撤销文件头损坏。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004835
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004836#: misc/e2undo.c:407
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004837#, c-format
4838msgid "%s: Undo block size too large.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004839msgstr "%s:撤销块过小。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004840
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004841#: misc/e2undo.c:412
Tianze Wang57d69272016-08-31 23:14:17 -04004842#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004843msgid "%s: Undo block size too small.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004844msgstr "%s:撤销块过大。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004845
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004846#: misc/e2undo.c:425
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004847#, c-format
4848msgid "%s: Unknown undo file feature set.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004849msgstr "%s:设置了未知的撤销文件属性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004850
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004851#: misc/e2undo.c:433
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004852#, c-format
4853msgid "Error while determining whether %s is mounted."
Tianze Wang57d69272016-08-31 23:14:17 -04004854msgstr "确定 %s 是否已挂载时出错。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004855
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004856#: misc/e2undo.c:439
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004857msgid "e2undo should only be run on unmounted filesystems"
Tianze Wang57d69272016-08-31 23:14:17 -04004858msgstr "e2undo 只能用于未挂载的文件系统"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004859
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004860#: misc/e2undo.c:455
Tianze Wang57d69272016-08-31 23:14:17 -04004861#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004862msgid "while opening `%s'"
Tianze Wang57d69272016-08-31 23:14:17 -04004863msgstr "打开“%s”时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004864
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004865#: misc/e2undo.c:466
Theodore Ts'o48203a32016-06-08 15:45:26 -04004866msgid "specified offset is too large"
Tianze Wang57d69272016-08-31 23:14:17 -04004867msgstr "指定的偏移量太大"
Theodore Ts'o48203a32016-06-08 15:45:26 -04004868
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004869#: misc/e2undo.c:507
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004870msgid "while reading keys"
Tianze Wang57d69272016-08-31 23:14:17 -04004871msgstr "读取键时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004872
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004873#: misc/e2undo.c:519
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004874#, c-format
4875msgid "%s: wrong key magic at %llu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004876msgstr "%s:%llu 中的键幻数有错\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004877
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004878#: misc/e2undo.c:529
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004879#, c-format
4880msgid "%s: key block checksum error at %llu.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004881msgstr "%s:%llu 中的键块的校验值有错。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004882
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004883#: misc/e2undo.c:552
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004884#, c-format
4885msgid "%s: block %llu is too long."
Tianze Wang57d69272016-08-31 23:14:17 -04004886msgstr "%s:块 %llu 太长。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004887
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004888#: misc/e2undo.c:564 misc/e2undo.c:600
Tianze Wang57d69272016-08-31 23:14:17 -04004889#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004890msgid "while fetching block %llu."
Tianze Wang57d69272016-08-31 23:14:17 -04004891msgstr "获取块 %llu 时。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004892
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004893#: misc/e2undo.c:576
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004894#, c-format
4895msgid "checksum error in filesystem block %llu (undo blk %llu)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004896msgstr "文件系统块 %llu 中的校验值有误(undo blk %llu)\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004897
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004898#: misc/e2undo.c:615
Tianze Wang57d69272016-08-31 23:14:17 -04004899#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004900msgid "while writing block %llu."
Tianze Wang57d69272016-08-31 23:14:17 -04004901msgstr "写块 %llu 时。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004902
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004903#: misc/e2undo.c:621
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004904#, c-format
4905msgid "Undo file corruption; run e2fsck NOW!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004906msgstr "撤销文件损坏;请立即运行 e2fsck!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004907
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004908#: misc/e2undo.c:623
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004909#, c-format
4910msgid "IO error during replay; run e2fsck NOW!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004911msgstr "执行重做操作时出现输入/输出错误;请立即运行 e2fsck!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004912
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004913#: misc/e2undo.c:626
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004914#, c-format
4915msgid "Incomplete undo record; run e2fsck.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004916msgstr "撤销记录不完整;请运行 e2fsck。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004917
4918#: misc/findsuper.c:110
4919#, c-format
4920msgid "Usage: findsuper device [skipbytes [startkb]]\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004921msgstr "用法:findsuper 设备 [跳过字节数 [起始kb数]]\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004922
4923#: misc/findsuper.c:155
4924#, c-format
4925msgid "skipbytes should be a number, not %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004926msgstr "“跳过字节数”应当为一个数字,而不是 %s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004927
4928#: misc/findsuper.c:162
4929#, c-format
4930msgid "skipbytes must be a multiple of the sector size\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004931msgstr "“跳过字节数”应当是扇区大小的整数倍\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004932
4933#: misc/findsuper.c:169
4934#, c-format
4935msgid "startkb should be a number, not %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004936msgstr "“起始kb数”应当为一个数字,而不是 %s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004937
4938#: misc/findsuper.c:175
4939#, c-format
4940msgid "startkb should be positive, not %llu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004941msgstr "“起始kb数”应当为正数,而不是 %llu\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004942
4943#: misc/findsuper.c:186
4944#, c-format
4945msgid "starting at %llu, with %u byte increments\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004946msgstr "在 %llu 处开始,增量为 %u 字节\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004947
4948#: misc/findsuper.c:188
4949#, c-format
4950msgid ""
4951"[*] probably superblock written in the ext3 journal superblock,\n"
4952"\tso start/end/grp wrong\n"
4953msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04004954"[*] ext3 日志中的超级块中可能被写入了文件系统的超级块,\n"
4955"\t因此 start/end/grp 出错\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004956
4957#: misc/findsuper.c:190
4958#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05004959msgid ""
4960"byte_offset byte_start byte_end fs_blocks blksz grp mkfs/"
4961"mount_time sb_uuid label\n"
4962msgstr ""
4963"偏移字节 起始字节 结束字节 块数 块大小 grp 创建/挂载时"
4964"间 超级块 UUID 标签\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04004965
4966#: misc/findsuper.c:264
4967#, c-format
4968msgid ""
4969"\n"
4970"%11Lu: finished with errno %d\n"
4971msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04004972"\n"
4973"%11Lu:已结束,错误号为 %d\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004974
Theodore Ts'o930e2812009-06-29 15:08:12 -04004975#: misc/fsck.c:343
Theodore Ts'of722c132009-04-21 22:09:01 -04004976#, c-format
4977msgid "WARNING: couldn't open %s: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004978msgstr "警告:无法打开 %s:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004979
Theodore Ts'o930e2812009-06-29 15:08:12 -04004980#: misc/fsck.c:353
Theodore Ts'of722c132009-04-21 22:09:01 -04004981#, c-format
4982msgid "WARNING: bad format on line %d of %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004983msgstr "警告:%2$s 的第 %1$d 中格式错误\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004984
Eric Sandeen032eafe2012-07-28 17:48:36 -04004985#: misc/fsck.c:370
Theodore Ts'of722c132009-04-21 22:09:01 -04004986msgid ""
Eric Sandeen032eafe2012-07-28 17:48:36 -04004987"WARNING: Your /etc/fstab does not contain the fsck passno\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004988"\tfield. I will kludge around things for you, but you\n"
4989"\tshould fix your /etc/fstab file as soon as you can.\n"
4990"\n"
4991msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04004992"警告:你的/etc/fstab中缺少passno字段。\n"
4993"\t我将会设法完成任务,但你应当尽快修复/etc/fstab。\n"
4994"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04004995
Theodore Ts'o40e66e22018-08-18 21:14:56 -04004996#: misc/fsck.c:485
Theodore Ts'of722c132009-04-21 22:09:01 -04004997#, c-format
4998msgid "fsck: %s: not found\n"
Tianze Wang57d69272016-08-31 23:14:17 -04004999msgstr "fsck:%s:未找到\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005000
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005001#: misc/fsck.c:601
Theodore Ts'of722c132009-04-21 22:09:01 -04005002#, c-format
5003msgid "%s: wait: No more child process?!?\n"
5004msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005005"%s:等待中:没有子进程了吗?!?\n"
5006"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005007
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005008#: misc/fsck.c:623
Theodore Ts'of722c132009-04-21 22:09:01 -04005009#, c-format
5010msgid "Warning... %s for device %s exited with signal %d.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005011msgstr "警告... 设备%s 的 %s 操作收到 %d 信号后退出。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005012
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005013#: misc/fsck.c:629
Theodore Ts'of722c132009-04-21 22:09:01 -04005014#, c-format
5015msgid "%s %s: status is %x, should never happen.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005016msgstr "%s %s:状态为 %x,这不应当发生。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005017
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005018#: misc/fsck.c:668
Theodore Ts'of722c132009-04-21 22:09:01 -04005019#, c-format
5020msgid "Finished with %s (exit status %d)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005021msgstr "已完成 %s (退出状态码 %d)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005022
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005023#: misc/fsck.c:728
Theodore Ts'of722c132009-04-21 22:09:01 -04005024#, c-format
5025msgid "%s: Error %d while executing fsck.%s for %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005026msgstr "%1$s:执行fsck.%3$s %4$s 时出错, 退出状态码 %2$d\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005027
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005028#: misc/fsck.c:749
Theodore Ts'of722c132009-04-21 22:09:01 -04005029msgid ""
5030"Either all or none of the filesystem types passed to -t must be prefixed\n"
5031"with 'no' or '!'.\n"
5032msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005033"所有通过 -t 选项指定的文件系统类型必须都含有(或都不含有)\n"
5034"“no”或“!”前缀。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005035
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005036#: misc/fsck.c:768
Theodore Ts'of722c132009-04-21 22:09:01 -04005037msgid "Couldn't allocate memory for filesystem types\n"
5038msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005039"无法为创建指定文件系统类型分配内存\n"
5040"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005041
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005042#: misc/fsck.c:891
Theodore Ts'of722c132009-04-21 22:09:01 -04005043#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005044msgid ""
5045"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
5046"number\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005047msgstr "%s:跳过/etc/fstab中的错误行:传递给fsck非零值的bind挂载项\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005048
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005049#: misc/fsck.c:918
Theodore Ts'of722c132009-04-21 22:09:01 -04005050#, c-format
5051msgid "fsck: cannot check %s: fsck.%s not found\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005052msgstr "fsck:无法检查 %s:找不到fsck.%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005053
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005054#: misc/fsck.c:974
Theodore Ts'of722c132009-04-21 22:09:01 -04005055msgid "Checking all file systems.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005056msgstr "正在检查所有文件系统。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005057
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005058#: misc/fsck.c:1065
Theodore Ts'of722c132009-04-21 22:09:01 -04005059#, c-format
5060msgid "--waiting-- (pass %d)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005061msgstr "--请稍候-- (第 %d 步)n\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005062
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005063#: misc/fsck.c:1085
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005064msgid ""
5065"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
5066msgstr ""
5067"用法:fsck [-AMNPRTV] [ -C [ fd ] ] [-t 文件系统类型] [文件系统选项] [文件系"
5068"统 ...]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005069
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005070#: misc/fsck.c:1127
Theodore Ts'of722c132009-04-21 22:09:01 -04005071#, c-format
5072msgid "%s: too many devices\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005073msgstr "%s:设备过多\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005074
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005075#: misc/fsck.c:1160 misc/fsck.c:1246
Theodore Ts'of722c132009-04-21 22:09:01 -04005076#, c-format
5077msgid "%s: too many arguments\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005078msgstr "%s:参数过多\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005079
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005080#: misc/fuse2fs.c:3739
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005081msgid "Mounting read-only.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005082msgstr "以只读模式挂载。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005083
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005084#: misc/fuse2fs.c:3763
Theodore Ts'of722c132009-04-21 22:09:01 -04005085#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005086msgid "%s: Allowing users to allocate all blocks. This is dangerous!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005087msgstr "%s:允许用户分配所有块。这样做很危险!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005088
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005089#: misc/fuse2fs.c:3775 misc/fuse2fs.c:3789
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005090#, c-format
5091msgid "%s: %s.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005092msgstr "%s:%s。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005093
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005094#: misc/fuse2fs.c:3776 misc/fuse2fs.c:3791 misc/tune2fs.c:3049
Tianze Wang57d69272016-08-31 23:14:17 -04005095#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005096msgid "Please run e2fsck -fy %s.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005097msgstr "请先运行“e2fsck -fy %s”。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005098
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005099#: misc/fuse2fs.c:3798
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005100msgid "Journal needs recovery; running `e2fsck -E journal_only' is required.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005101msgstr "日志需要恢复;请运行“e2fsck -E journal_only”。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005102
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005103#: misc/fuse2fs.c:3806
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005104#, c-format
5105msgid "%s: Writing to the journal is not supported.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005106msgstr "%s:不支持写入日志。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005107
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005108#: misc/fuse2fs.c:3821
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005109msgid "Warning: Mounting unchecked fs, running e2fsck is recommended.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005110msgstr "警告:正在挂载未经检查的文件系统,建议您先运行 e2fsck。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005111
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005112#: misc/fuse2fs.c:3825
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005113msgid "Warning: Maximal mount count reached, running e2fsck is recommended.\n"
5114msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005115"警告:尝试挂载次数超过最大值,建议您运行 e2fsck。\n"
5116"\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005117
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005118#: misc/fuse2fs.c:3830
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005119msgid "Warning: Check time reached; running e2fsck is recommended.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005120msgstr "警告:检查超时,建议您运行 e2fsck。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005121
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005122#: misc/fuse2fs.c:3834
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005123msgid "Orphans detected; running e2fsck is recommended.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005124msgstr "检测到孤立块;建议您运行 e2fsck。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005125
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005126#: misc/fuse2fs.c:3838
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005127msgid "Errors detected; running e2fsck is required.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005128msgstr "检测到错误;请运行 e2fsck。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005129
5130#: misc/lsattr.c:75
Tianze Wang57d69272016-08-31 23:14:17 -04005131#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005132msgid "Usage: %s [-RVadlpv] [files...]\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005133msgstr "用法:%s [-RVadlpv] [文件...]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005134
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005135#: misc/lsattr.c:86
Theodore Ts'of722c132009-04-21 22:09:01 -04005136#, c-format
5137msgid "While reading flags on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005138msgstr "读取 %s 的标志时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005139
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005140#: misc/lsattr.c:93
Tianze Wang57d69272016-08-31 23:14:17 -04005141#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005142msgid "While reading project on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005143msgstr "读取 %s 的项目时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005144
5145#: misc/lsattr.c:102
Theodore Ts'of722c132009-04-21 22:09:01 -04005146#, c-format
5147msgid "While reading version on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005148msgstr "设置 %s 的版本时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005149
Theodore Ts'o899425b2018-02-27 22:25:04 -05005150#: misc/mke2fs.c:130
Theodore Ts'of722c132009-04-21 22:09:01 -04005151#, c-format
5152msgid ""
Eric Sandeen032eafe2012-07-28 17:48:36 -04005153"Usage: %s [-c|-l filename] [-b block-size] [-C cluster-size]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005154"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005155"\t[-G flex-group-size] [-N number-of-inodes] [-d root-directory]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005156"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
5157"\t[-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]\n"
5158"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005159"\t[-t fs-type] [-T usage-type ] [-U UUID] [-e errors_behavior][-z "
5160"undo_file]\n"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04005161"\t[-jnqvDFSV] device [blocks-count]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005162msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005163"用法:%s [-c|-l 文件名] [-b 块大小] [-C 簇大小]\n"
5164"\t[-i 每inode的字节数] [-I inode大小] [-J 日志选项]\n"
5165"\t[-G 弹性组大小] [-N inode数] [-d 根目录]\n"
5166"\t[-m 保留块所占百分比] [-o 创始系统名]\n"
5167"\t[-g 每组的块数] [-L 卷标] [-M 上一次挂载点]\n"
5168"\t[-O 特性[,...]] [-r 文件系统版本] [-E 扩展选项[,...]]\n"
5169"\t[-t 文件系统类型] [-T 用法类型] [-U UUID] [-e 错误行为][-z 撤销文件]\n"
5170"\t[-jnqvDFKSV] 设备 [块数]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005171
Theodore Ts'o899425b2018-02-27 22:25:04 -05005172#: misc/mke2fs.c:261
Theodore Ts'of722c132009-04-21 22:09:01 -04005173#, c-format
5174msgid "Running command: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005175msgstr "正在执行命令:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005176
Theodore Ts'o899425b2018-02-27 22:25:04 -05005177#: misc/mke2fs.c:265
Dark Raven31a48472009-05-25 22:45:42 -04005178#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04005179msgid "while trying to run '%s'"
Tianze Wang57d69272016-08-31 23:14:17 -04005180msgstr "尝试运行“%s”时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005181
Theodore Ts'o899425b2018-02-27 22:25:04 -05005182#: misc/mke2fs.c:272
Theodore Ts'of722c132009-04-21 22:09:01 -04005183msgid "while processing list of bad blocks from program"
Tianze Wang57d69272016-08-31 23:14:17 -04005184msgstr "处理从badblocks获取的坏块列表时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005185
Theodore Ts'o899425b2018-02-27 22:25:04 -05005186#: misc/mke2fs.c:299
Theodore Ts'of722c132009-04-21 22:09:01 -04005187#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005188msgid "Block %d in primary superblock/group descriptor area bad.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005189msgstr "主超级块/组描述符中的块 %d 为坏块。\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005190
Theodore Ts'o899425b2018-02-27 22:25:04 -05005191#: misc/mke2fs.c:301
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005192#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04005193msgid "Blocks %u through %u must be good in order to build a filesystem.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005194msgstr "若要创建文件系统,块 %u 至 %u 必须为好块。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005195
Theodore Ts'o899425b2018-02-27 22:25:04 -05005196#: misc/mke2fs.c:304
Theodore Ts'of722c132009-04-21 22:09:01 -04005197msgid "Aborting....\n"
Dark Raven31a48472009-05-25 22:45:42 -04005198msgstr "正在终止...\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005199
Theodore Ts'o899425b2018-02-27 22:25:04 -05005200#: misc/mke2fs.c:324
Theodore Ts'of722c132009-04-21 22:09:01 -04005201#, c-format
5202msgid ""
5203"Warning: the backup superblock/group descriptors at block %u contain\n"
5204"\tbad blocks.\n"
5205"\n"
5206msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005207"警告:备份超级块/组描述符中发现坏块(%u)\n"
5208"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005209
Theodore Ts'o899425b2018-02-27 22:25:04 -05005210#: misc/mke2fs.c:343
Theodore Ts'of722c132009-04-21 22:09:01 -04005211msgid "while marking bad blocks as used"
Tianze Wang57d69272016-08-31 23:14:17 -04005212msgstr "将坏块标记为已使用的"
Theodore Ts'of722c132009-04-21 22:09:01 -04005213
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005214#: misc/mke2fs.c:368
5215#, fuzzy
5216msgid "while writing reserved inodes"
5217msgstr "写入配额 inode 时"
5218
5219#: misc/mke2fs.c:420
Theodore Ts'of722c132009-04-21 22:09:01 -04005220msgid "Writing inode tables: "
Tianze Wang57d69272016-08-31 23:14:17 -04005221msgstr "正在写入inode表: "
Theodore Ts'of722c132009-04-21 22:09:01 -04005222
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005223#: misc/mke2fs.c:442
Theodore Ts'of722c132009-04-21 22:09:01 -04005224#, c-format
5225msgid ""
5226"\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005227"Could not write %d blocks in inode table starting at %llu: %s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005228msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005229"\n"
5230"无法写入 %d 个块到起始于%llu的inode表:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005231
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005232#: misc/mke2fs.c:456 misc/mke2fs.c:2726 misc/mke2fs.c:3131
Eric Sandeen032eafe2012-07-28 17:48:36 -04005233msgid "done \n"
5234msgstr "完成 \n"
5235
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005236#: misc/mke2fs.c:471
Theodore Ts'of722c132009-04-21 22:09:01 -04005237msgid "while creating root dir"
Tianze Wang57d69272016-08-31 23:14:17 -04005238msgstr "创建根目录时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005239
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005240#: misc/mke2fs.c:478
Theodore Ts'of722c132009-04-21 22:09:01 -04005241msgid "while reading root inode"
Tianze Wang57d69272016-08-31 23:14:17 -04005242msgstr "读取坏块inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005243
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005244#: misc/mke2fs.c:490
Theodore Ts'of722c132009-04-21 22:09:01 -04005245msgid "while setting root inode ownership"
Tianze Wang57d69272016-08-31 23:14:17 -04005246msgstr "设置根目录的所有者时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005247
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005248#: misc/mke2fs.c:508
Theodore Ts'of722c132009-04-21 22:09:01 -04005249msgid "while creating /lost+found"
Tianze Wang57d69272016-08-31 23:14:17 -04005250msgstr "创建/lost+found目录时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005251
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005252#: misc/mke2fs.c:515
Theodore Ts'of722c132009-04-21 22:09:01 -04005253msgid "while looking up /lost+found"
Tianze Wang57d69272016-08-31 23:14:17 -04005254msgstr "查找/lost+found目录时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005255
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005256#: misc/mke2fs.c:528
Theodore Ts'of722c132009-04-21 22:09:01 -04005257msgid "while expanding /lost+found"
Tianze Wang57d69272016-08-31 23:14:17 -04005258msgstr "扩充/lost+found目录时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005259
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005260#: misc/mke2fs.c:543
Theodore Ts'of722c132009-04-21 22:09:01 -04005261msgid "while setting bad block inode"
Tianze Wang57d69272016-08-31 23:14:17 -04005262msgstr "设置坏块inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005263
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005264#: misc/mke2fs.c:570
Theodore Ts'of722c132009-04-21 22:09:01 -04005265#, c-format
5266msgid "Out of memory erasing sectors %d-%d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005267msgstr "擦除扇区 %d-%d 时内存耗尽\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005268
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005269#: misc/mke2fs.c:580
Theodore Ts'of722c132009-04-21 22:09:01 -04005270#, c-format
5271msgid "Warning: could not read block 0: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005272msgstr "警告:无法读取块 0:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005273
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005274#: misc/mke2fs.c:596
Theodore Ts'of722c132009-04-21 22:09:01 -04005275#, c-format
5276msgid "Warning: could not erase sector %d: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005277msgstr "警告:无法擦除块 %d:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005278
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005279#: misc/mke2fs.c:612
Theodore Ts'of722c132009-04-21 22:09:01 -04005280msgid "while initializing journal superblock"
Tianze Wang57d69272016-08-31 23:14:17 -04005281msgstr "初始化日志超级块时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005282
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005283#: misc/mke2fs.c:620
Theodore Ts'of722c132009-04-21 22:09:01 -04005284msgid "Zeroing journal device: "
Tianze Wang57d69272016-08-31 23:14:17 -04005285msgstr "正在对日志设备填零: "
Theodore Ts'of722c132009-04-21 22:09:01 -04005286
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005287#: misc/mke2fs.c:632
Theodore Ts'of722c132009-04-21 22:09:01 -04005288#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005289msgid "while zeroing journal device (block %llu, count %d)"
Tianze Wang57d69272016-08-31 23:14:17 -04005290msgstr "对日志设备填零时(块 %llu,计数 %d)"
Theodore Ts'of722c132009-04-21 22:09:01 -04005291
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005292#: misc/mke2fs.c:650
Theodore Ts'of722c132009-04-21 22:09:01 -04005293msgid "while writing journal superblock"
Tianze Wang57d69272016-08-31 23:14:17 -04005294msgstr "写入日志超级块时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005295
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005296#: misc/mke2fs.c:665
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005297#, c-format
5298msgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005299msgstr "创建含有 %llu 个块(每块 %dk)和 %u 个inode的文件系统\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005300
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005301#: misc/mke2fs.c:673
Tianze Wang57d69272016-08-31 23:14:17 -04005302#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04005303msgid ""
Eric Sandeen032eafe2012-07-28 17:48:36 -04005304"warning: %llu blocks unused.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005305"\n"
5306msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005307"警告:%llu 块未使用。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005308"\n"
5309
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005310#: misc/mke2fs.c:678
Theodore Ts'of722c132009-04-21 22:09:01 -04005311#, c-format
5312msgid "Filesystem label=%s\n"
5313msgstr "文件系统标签=%s\n"
5314
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005315#: misc/mke2fs.c:681
Tianze Wang57d69272016-08-31 23:14:17 -04005316#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005317msgid "OS type: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005318msgstr "操作系统: %s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005319
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005320#: misc/mke2fs.c:683
Theodore Ts'of722c132009-04-21 22:09:01 -04005321#, c-format
5322msgid "Block size=%u (log=%u)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005323msgstr "块大小=%u(log=%u)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005324
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005325#: misc/mke2fs.c:686
Tianze Wang57d69272016-08-31 23:14:17 -04005326#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005327msgid "Cluster size=%u (log=%u)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005328msgstr "簇大小=%u(log=%u)\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005329
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005330#: misc/mke2fs.c:690
Theodore Ts'of722c132009-04-21 22:09:01 -04005331#, c-format
5332msgid "Fragment size=%u (log=%u)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005333msgstr "分块大小=%u(log=%u)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005334
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005335#: misc/mke2fs.c:692
Dark Raven3be22a82010-04-19 16:59:03 -04005336#, c-format
5337msgid "Stride=%u blocks, Stripe width=%u blocks\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005338msgstr "步长=%u 块,带宽=%u 块\n"
Dark Raven3be22a82010-04-19 16:59:03 -04005339
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005340#: misc/mke2fs.c:694
Theodore Ts'of722c132009-04-21 22:09:01 -04005341#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005342msgid "%u inodes, %llu blocks\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005343msgstr "%u 个inode,%llu 个块\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005344
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005345#: misc/mke2fs.c:696
Theodore Ts'of722c132009-04-21 22:09:01 -04005346#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005347msgid "%llu blocks (%2.2f%%) reserved for the super user\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005348msgstr "%llu 个块(%2.2f%%)为超级用户保留\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005349
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005350#: misc/mke2fs.c:699
Theodore Ts'of722c132009-04-21 22:09:01 -04005351#, c-format
5352msgid "First data block=%u\n"
5353msgstr "第一个数据块=%u\n"
5354
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005355#: misc/mke2fs.c:701
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005356#, c-format
5357msgid "Root directory owner=%u:%u\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005358msgstr "根目录的所有者=%u:%u\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005359
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005360#: misc/mke2fs.c:703
Theodore Ts'of722c132009-04-21 22:09:01 -04005361#, c-format
5362msgid "Maximum filesystem blocks=%lu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005363msgstr "文件系统块的最大值=%lu\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005364
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005365#: misc/mke2fs.c:707
Theodore Ts'of722c132009-04-21 22:09:01 -04005366#, c-format
5367msgid "%u block groups\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005368msgstr "%u 个块组\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005369
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005370#: misc/mke2fs.c:709
Theodore Ts'of722c132009-04-21 22:09:01 -04005371#, c-format
5372msgid "%u block group\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005373msgstr "%u 个块组\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005374
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005375#: misc/mke2fs.c:711
Eric Sandeen032eafe2012-07-28 17:48:36 -04005376#, c-format
5377msgid "%u blocks per group, %u clusters per group\n"
5378msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005379"每组 %u 个块,%u 个簇\n"
5380"\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005381
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005382#: misc/mke2fs.c:714
Theodore Ts'of722c132009-04-21 22:09:01 -04005383#, c-format
5384msgid "%u blocks per group, %u fragments per group\n"
5385msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005386"每组 %u 个块,%u 个碎片\n"
5387"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005388
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005389#: misc/mke2fs.c:716
Theodore Ts'of722c132009-04-21 22:09:01 -04005390#, c-format
5391msgid "%u inodes per group\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005392msgstr "每组 %u 个inode\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005393
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005394#: misc/mke2fs.c:725
Tianze Wang57d69272016-08-31 23:14:17 -04005395#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005396msgid "Filesystem UUID: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005397msgstr "文件系统UUID:%s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005398
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005399#: misc/mke2fs.c:726
Theodore Ts'of722c132009-04-21 22:09:01 -04005400msgid "Superblock backups stored on blocks: "
Tianze Wang57d69272016-08-31 23:14:17 -04005401msgstr "超级块的备份存储于下列块: "
Theodore Ts'of722c132009-04-21 22:09:01 -04005402
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005403#: misc/mke2fs.c:820
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005404#, c-format
5405msgid "%s requires '-O 64bit'\n"
5406msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005407"%s 需要“-O 64bit”选项\n"
5408"\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005409
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005410#: misc/mke2fs.c:826
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005411#, c-format
5412msgid "'%s' must be before 'resize=%u'\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005413msgstr "“%s”选项必须位于“resize=%u”之前\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005414
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005415#: misc/mke2fs.c:839
Tianze Wang57d69272016-08-31 23:14:17 -04005416#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005417msgid "Invalid desc_size: '%s'\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005418msgstr "desc_size值无效:“%s”\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005419
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005420#: misc/mke2fs.c:853
Theodore Ts'o899425b2018-02-27 22:25:04 -05005421#, fuzzy, c-format
5422msgid "Invalid hash seed: %s\n"
5423msgstr "无效的新大小: %s\n"
5424
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005425#: misc/mke2fs.c:865
Tianze Wang57d69272016-08-31 23:14:17 -04005426#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005427msgid "Invalid offset: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005428msgstr "无效的偏移量: %s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005429
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005430#: misc/mke2fs.c:879 misc/tune2fs.c:2101
Tianze Wang57d69272016-08-31 23:14:17 -04005431#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005432msgid "Invalid mmp_update_interval: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005433msgstr "无效mmp更新间隔:%s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005434
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005435#: misc/mke2fs.c:896
Tianze Wang57d69272016-08-31 23:14:17 -04005436#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005437msgid "Invalid # of backup superblocks: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005438msgstr "备份超级块编号无效:%s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005439
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005440#: misc/mke2fs.c:918
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005441#, c-format
5442msgid "Invalid stride parameter: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005443msgstr "无效的步长参数:%s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005444
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005445#: misc/mke2fs.c:933
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005446#, c-format
5447msgid "Invalid stripe-width parameter: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005448msgstr "无效的带宽参数:%s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005449
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005450#: misc/mke2fs.c:956
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005451#, c-format
5452msgid "Invalid resize parameter: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005453msgstr "无效的改变大小参数:%s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005454
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005455#: misc/mke2fs.c:963
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005456msgid "The resize maximum must be greater than the filesystem size.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005457msgstr "所需改变的大小必须大于当前文件系统的大小。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005458
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005459#: misc/mke2fs.c:987
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005460msgid "On-line resizing not supported with revision 0 filesystems\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005461msgstr "版本为0的文件系统不支持在线改变大小。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005462
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005463#: misc/mke2fs.c:1013 misc/mke2fs.c:1022
Tianze Wang57d69272016-08-31 23:14:17 -04005464#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005465msgid "Invalid root_owner: '%s'\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005466msgstr "无效的根目录所有者:“%s”\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005467
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005468#: misc/mke2fs.c:1065
Theodore Ts'of722c132009-04-21 22:09:01 -04005469#, c-format
5470msgid ""
5471"\n"
5472"Bad option(s) specified: %s\n"
5473"\n"
5474"Extended options are separated by commas, and may take an argument which\n"
5475"\tis set off by an equals ('=') sign.\n"
5476"\n"
5477"Valid extended options are:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005478"\tmmp_update_interval=<interval>\n"
5479"\tnum_backup_sb=<0|1|2>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005480"\tstride=<RAID per-disk data chunk in blocks>\n"
5481"\tstripe-width=<RAID stride * data disks in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005482"\toffset=<offset to create the file system>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005483"\tresize=<resize maximum size in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005484"\tpacked_meta_blocks=<0 to disable, 1 to enable>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005485"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005486"\tlazy_journal_init=<0 to disable, 1 to enable>\n"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04005487"\troot_owner=<uid of root dir>:<gid of root dir>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005488"\ttest_fs\n"
Dark Ravenc4755342011-01-26 18:54:25 -05005489"\tdiscard\n"
5490"\tnodiscard\n"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04005491"\tquotatype=<quota type(s) to be enabled>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005492"\n"
5493msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005494"\n"
5495"指定了错误的选项:%s\n"
5496"\n"
5497"扩展属性由逗号分隔,有些需要通过等号(“=”)传递参数。\n"
5498"\n"
5499"有效的扩展选项有:\n"
5500"\tmmp_update_interval=<间隔>\n"
5501"\tnum_backup_sb=<0|1|2>\n"
5502"\tstride=<RAID 每个磁盘的数据块数(步长)>\n"
5503"\tstripe-width=<步长 × RAID 磁盘数(带宽)>\n"
5504"\toffset=<文件系统的偏移量>\n"
5505"\tresize=<调整块大小时的最大值>\n"
5506"\tpacked_meta_blocks=<0(禁用)或 1(启用)>\n"
5507"\tlazy_itable_init=<0(禁用)或 1(启用)>\n"
5508"\tlazy_journal_init=<0(禁用)或 1(启用)>\n"
5509"\troot_owner=<根目录的uid>:<根目录的gid>\n"
5510"\ttest_fs\n"
5511"\tdiscard\n"
5512"\tnodiscard\n"
5513"\tquotatype=<要启用的配额类型>\n"
5514"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005515
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005516#: misc/mke2fs.c:1090
Theodore Ts'of722c132009-04-21 22:09:01 -04005517#, c-format
5518msgid ""
5519"\n"
5520"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
5521"\n"
5522msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005523"\n"
5524"警告:RAID带宽 %u 不是步长 %u 的偶数倍。\n"
5525"\n"
5526"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005527
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005528#: misc/mke2fs.c:1135
Theodore Ts'of722c132009-04-21 22:09:01 -04005529#, c-format
5530msgid ""
5531"Syntax error in mke2fs config file (%s, line #%d)\n"
5532"\t%s\n"
5533msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005534"mke2fs配置文件中有语法错误(%s,第 %d 行)\n"
5535"\t%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005536
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005537#: misc/mke2fs.c:1148 misc/tune2fs.c:1120
Theodore Ts'of722c132009-04-21 22:09:01 -04005538#, c-format
5539msgid "Invalid filesystem option set: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005540msgstr "设置了无效的文件系统选项:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005541
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005542#: misc/mke2fs.c:1160 misc/tune2fs.c:411
Eric Sandeen032eafe2012-07-28 17:48:36 -04005543#, c-format
5544msgid "Invalid mount option set: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005545msgstr "设置了无效的挂载选项:%s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005546
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005547#: misc/mke2fs.c:1296
Theodore Ts'of722c132009-04-21 22:09:01 -04005548#, c-format
5549msgid ""
5550"\n"
Dark Ravenc4755342011-01-26 18:54:25 -05005551"Your mke2fs.conf file does not define the %s filesystem type.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005552msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005553"\n"
5554"你的mke2fs.conf文件中没有定义类型 %s 的文件系统。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005555
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005556#: misc/mke2fs.c:1300
Theodore Ts'of722c132009-04-21 22:09:01 -04005557msgid ""
5558"You probably need to install an updated mke2fs.conf file.\n"
5559"\n"
5560msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005561"你可能需要升级mke2fs.conf文件。\n"
5562"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005563
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005564#: misc/mke2fs.c:1304
Dark Ravenc4755342011-01-26 18:54:25 -05005565msgid "Aborting...\n"
5566msgstr "正在终止...\n"
5567
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005568#: misc/mke2fs.c:1345
Dark Ravenc4755342011-01-26 18:54:25 -05005569#, c-format
5570msgid ""
5571"\n"
5572"Warning: the fs_type %s is not defined in mke2fs.conf\n"
5573"\n"
5574msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005575"\n"
5576"警告:mke2fs.conf中未定义文件系统类型 %s\n"
5577"\n"
Dark Ravenc4755342011-01-26 18:54:25 -05005578
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005579#: misc/mke2fs.c:1527
Eric Sandeen032eafe2012-07-28 17:48:36 -04005580msgid "Couldn't allocate memory for new PATH.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005581msgstr "无法为新路径分配内存。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005582
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005583#: misc/mke2fs.c:1564
Eric Sandeen032eafe2012-07-28 17:48:36 -04005584#, c-format
5585msgid "Couldn't init profile successfully (error: %ld).\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005586msgstr "无法成功初始化配置(错误:%ld)。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005587
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005588#: misc/mke2fs.c:1597
Theodore Ts'of722c132009-04-21 22:09:01 -04005589#, c-format
5590msgid "invalid block size - %s"
5591msgstr "无效的块大小 - %s"
5592
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005593#: misc/mke2fs.c:1601
Theodore Ts'of722c132009-04-21 22:09:01 -04005594#, c-format
5595msgid "Warning: blocksize %d not usable on most systems.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005596msgstr "警告:块大小 %d 在很多系统中不可用。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005597
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005598#: misc/mke2fs.c:1617
Tianze Wang57d69272016-08-31 23:14:17 -04005599#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005600msgid "invalid cluster size - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005601msgstr "无效的簇大小 - %s"
Theodore Ts'of722c132009-04-21 22:09:01 -04005602
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005603#: misc/mke2fs.c:1630
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005604msgid "'-R' is deprecated, use '-E' instead"
Tianze Wang57d69272016-08-31 23:14:17 -04005605msgstr "“-R” 选项已被废弃,请使用“-E”选项"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005606
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005607#: misc/mke2fs.c:1644 misc/tune2fs.c:1830
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005608#, c-format
5609msgid "bad error behavior - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005610msgstr "出错行为有误 - %s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005611
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005612#: misc/mke2fs.c:1656
Theodore Ts'of722c132009-04-21 22:09:01 -04005613msgid "Illegal number for blocks per group"
Tianze Wang57d69272016-08-31 23:14:17 -04005614msgstr "非法的每组块数"
Theodore Ts'of722c132009-04-21 22:09:01 -04005615
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005616#: misc/mke2fs.c:1661
Theodore Ts'of722c132009-04-21 22:09:01 -04005617msgid "blocks per group must be multiple of 8"
Tianze Wang57d69272016-08-31 23:14:17 -04005618msgstr "每组块数必须是8的倍数"
Theodore Ts'of722c132009-04-21 22:09:01 -04005619
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005620#: misc/mke2fs.c:1669
Theodore Ts'of722c132009-04-21 22:09:01 -04005621msgid "Illegal number for flex_bg size"
Tianze Wang57d69272016-08-31 23:14:17 -04005622msgstr "非法的弹性组大小"
Theodore Ts'of722c132009-04-21 22:09:01 -04005623
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005624#: misc/mke2fs.c:1675
Theodore Ts'of722c132009-04-21 22:09:01 -04005625msgid "flex_bg size must be a power of 2"
Tianze Wang57d69272016-08-31 23:14:17 -04005626msgstr "弹性组的大小必须是2的次方"
Theodore Ts'of722c132009-04-21 22:09:01 -04005627
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005628#: misc/mke2fs.c:1680
Tianze Wang57d69272016-08-31 23:14:17 -04005629#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005630msgid "flex_bg size (%lu) must be less than or equal to 2^31"
Tianze Wang57d69272016-08-31 23:14:17 -04005631msgstr "弹性组的大小(%lu)必须小于等于2^31"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005632
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005633#: misc/mke2fs.c:1690
Theodore Ts'of722c132009-04-21 22:09:01 -04005634#, c-format
5635msgid "invalid inode ratio %s (min %d/max %d)"
Tianze Wang57d69272016-08-31 23:14:17 -04005636msgstr "无效的inode比 %s(最小 %d /最大 %d)"
Theodore Ts'of722c132009-04-21 22:09:01 -04005637
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005638#: misc/mke2fs.c:1700
Dark Ravenc4755342011-01-26 18:54:25 -05005639#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005640msgid "invalid inode size - %s"
5641msgstr "无效的inode大小 - %s"
5642
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005643#: misc/mke2fs.c:1713
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005644msgid ""
5645"Warning: -K option is deprecated and should not be used anymore. Use '-E "
5646"nodiscard' extended option instead!\n"
Dark Ravenc4755342011-01-26 18:54:25 -05005647msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005648"警告:-K 选项已被废弃,今后也不应当被使用。请使用扩展选项\n"
5649"“-E nodiscard”作为替代!\n"
Dark Ravenc4755342011-01-26 18:54:25 -05005650
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005651#: misc/mke2fs.c:1724
Theodore Ts'of722c132009-04-21 22:09:01 -04005652msgid "in malloc for bad_blocks_filename"
Tianze Wang57d69272016-08-31 23:14:17 -04005653msgstr "为bad_blocks_filename分配内存时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005654
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005655#: misc/mke2fs.c:1733
Theodore Ts'o48203a32016-06-08 15:45:26 -04005656#, c-format
5657msgid ""
5658"Warning: label too long; will be truncated to '%s'\n"
5659"\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005660msgstr "警告:卷标太长,已截短为“%s”\n"
Theodore Ts'o48203a32016-06-08 15:45:26 -04005661
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005662#: misc/mke2fs.c:1742
Theodore Ts'of722c132009-04-21 22:09:01 -04005663#, c-format
5664msgid "invalid reserved blocks percent - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005665msgstr "无效的保留块百分比 - %s"
Theodore Ts'of722c132009-04-21 22:09:01 -04005666
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005667#: misc/mke2fs.c:1757
Theodore Ts'of722c132009-04-21 22:09:01 -04005668#, c-format
5669msgid "bad num inodes - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005670msgstr "错误的inode数 - %s"
Theodore Ts'of722c132009-04-21 22:09:01 -04005671
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005672#: misc/mke2fs.c:1770
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04005673msgid "while allocating fs_feature string"
Tianze Wang57d69272016-08-31 23:14:17 -04005674msgstr "分配 fs_feature 字符串时"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04005675
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005676#: misc/mke2fs.c:1787
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005677#, c-format
5678msgid "bad revision level - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005679msgstr "错误的版本号 - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005680
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005681#: misc/mke2fs.c:1792
Tianze Wang57d69272016-08-31 23:14:17 -04005682#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005683msgid "while trying to create revision %d"
Tianze Wang57d69272016-08-31 23:14:17 -04005684msgstr "尝试创建版本 %d 时"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005685
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005686#: misc/mke2fs.c:1806
Eric Sandeen032eafe2012-07-28 17:48:36 -04005687msgid "The -t option may only be used once"
Tianze Wang57d69272016-08-31 23:14:17 -04005688msgstr "-t 选项只能被指定一次"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005689
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005690#: misc/mke2fs.c:1814
Eric Sandeen032eafe2012-07-28 17:48:36 -04005691msgid "The -T option may only be used once"
Tianze Wang57d69272016-08-31 23:14:17 -04005692msgstr "-T 选项只能被指定一次"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005693
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005694#: misc/mke2fs.c:1870 misc/mke2fs.c:3215
Theodore Ts'of722c132009-04-21 22:09:01 -04005695#, c-format
5696msgid "while trying to open journal device %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005697msgstr "尝试打开日志设备 %s 时\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005698
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005699#: misc/mke2fs.c:1876
Theodore Ts'of722c132009-04-21 22:09:01 -04005700#, c-format
5701msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005702msgstr "日志设备的块大小(%d)不能低于最小的块大小 %d\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005703
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005704#: misc/mke2fs.c:1882
Dark Raven3be22a82010-04-19 16:59:03 -04005705#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04005706msgid "Using journal device's blocksize: %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005707msgstr "根据日志设备确定块大小:%d\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005708
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005709#: misc/mke2fs.c:1893
Tianze Wang57d69272016-08-31 23:14:17 -04005710#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005711msgid "invalid blocks '%s' on device '%s'"
Tianze Wang57d69272016-08-31 23:14:17 -04005712msgstr "无效的块数“%s”于设备“%s”"
Theodore Ts'of722c132009-04-21 22:09:01 -04005713
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005714#: misc/mke2fs.c:1923
Theodore Ts'of722c132009-04-21 22:09:01 -04005715msgid "filesystem"
5716msgstr "文件系统"
5717
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005718#: misc/mke2fs.c:1941 resize/main.c:497
Theodore Ts'of722c132009-04-21 22:09:01 -04005719msgid "while trying to determine filesystem size"
Tianze Wang57d69272016-08-31 23:14:17 -04005720msgstr "尝试确定文件系统大小时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005721
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005722#: misc/mke2fs.c:1947
Theodore Ts'of722c132009-04-21 22:09:01 -04005723msgid ""
5724"Couldn't determine device size; you must specify\n"
5725"the size of the filesystem\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005726msgstr "无法确定设备大小;你必须手动指定大小\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005727
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005728#: misc/mke2fs.c:1954
Theodore Ts'of722c132009-04-21 22:09:01 -04005729msgid ""
5730"Device size reported to be zero. Invalid partition specified, or\n"
5731"\tpartition table wasn't reread after running fdisk, due to\n"
5732"\ta modified partition being busy and in use. You may need to reboot\n"
5733"\tto re-read your partition table.\n"
5734msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005735"设备大小为零。可能是指定了无效的设备,或是分区表在\n"
5736"\t执行fdisk后未被重新加载(分区正被占用)导致的。\n"
5737"\t你可能需要重启后重新读取分区表。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005738
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005739#: misc/mke2fs.c:1971
Theodore Ts'of722c132009-04-21 22:09:01 -04005740msgid "Filesystem larger than apparent device size."
Tianze Wang57d69272016-08-31 23:14:17 -04005741msgstr "文件系统大小超过设备的实际大小。"
Theodore Ts'of722c132009-04-21 22:09:01 -04005742
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005743#: misc/mke2fs.c:1991
Theodore Ts'of722c132009-04-21 22:09:01 -04005744msgid "Failed to parse fs types list\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005745msgstr "解析文件系统类型列表失败\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005746
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005747#: misc/mke2fs.c:2040
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005748msgid "The HURD does not support the filetype feature.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005749msgstr "HURD 不支持文件类型。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005750
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005751#: misc/mke2fs.c:2045
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005752msgid "The HURD does not support the huge_file feature.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005753msgstr "HURD 不支持大文件特性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005754
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005755#: misc/mke2fs.c:2050
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005756msgid "The HURD does not support the metadata_csum feature.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005757msgstr "HURD 不支持元数据校验值特性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005758
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005759#: misc/mke2fs.c:2055
Theodore Ts'o899425b2018-02-27 22:25:04 -05005760#, fuzzy
5761msgid "The HURD does not support the ea_inode feature.\n"
5762msgstr "HURD 不支持大文件特性。\n"
5763
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005764#: misc/mke2fs.c:2065
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005765msgid "while trying to determine hardware sector size"
Tianze Wang57d69272016-08-31 23:14:17 -04005766msgstr "尝试确定硬件扇区大小时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005767
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005768#: misc/mke2fs.c:2071
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005769msgid "while trying to determine physical sector size"
Tianze Wang57d69272016-08-31 23:14:17 -04005770msgstr "尝试确定物理扇区大小时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005771
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005772#: misc/mke2fs.c:2103
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005773msgid "while setting blocksize; too small for device\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005774msgstr "设置块大小时;对于设备来说太小\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005775
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005776#: misc/mke2fs.c:2108
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005777#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005778msgid ""
5779"Warning: specified blocksize %d is less than device physical sectorsize %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005780msgstr "警告:指定的块大小 %d 小于设备物理扇区大小%d\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005781
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005782#: misc/mke2fs.c:2132
Eric Sandeen032eafe2012-07-28 17:48:36 -04005783#, c-format
5784msgid ""
5785"%s: Size of device (0x%llx blocks) %s too big to be expressed\n"
5786"\tin 32 bits using a blocksize of %d.\n"
5787msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005788"%1$s:设备 %3$s 的尺寸(0x%2$llx 个块)太大,无法用32位数表示\n"
5789"\t改为使用 %4$d 的块大小。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005790
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005791#: misc/mke2fs.c:2144
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005792#, fuzzy, c-format
5793msgid ""
5794"%s: Size of device (0x%llx blocks) %s too big to create\n"
5795"\ta filesystem using a blocksize of %d.\n"
5796msgstr ""
5797"%1$s:设备 %3$s 的尺寸(0x%2$llx 个块)太大,无法用32位数表示\n"
5798"\t改为使用 %4$d 的块大小。\n"
5799
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005800#: misc/mke2fs.c:2166
Theodore Ts'of722c132009-04-21 22:09:01 -04005801msgid "fs_types for mke2fs.conf resolution: "
Tianze Wang57d69272016-08-31 23:14:17 -04005802msgstr "mke2fs.conf中有关文件系统类型的解释: "
Theodore Ts'of722c132009-04-21 22:09:01 -04005803
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005804#: misc/mke2fs.c:2173
Theodore Ts'of722c132009-04-21 22:09:01 -04005805msgid "Filesystem features not supported with revision 0 filesystems\n"
5806msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005807"版本为0的文件系统不支持这些特性\n"
5808"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005809
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005810#: misc/mke2fs.c:2181
Theodore Ts'of722c132009-04-21 22:09:01 -04005811msgid "Sparse superblocks not supported with revision 0 filesystems\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005812msgstr "版本为0的文件系统不支持分散式超级块\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005813
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005814#: misc/mke2fs.c:2191
Theodore Ts'of722c132009-04-21 22:09:01 -04005815msgid "Journals not supported with revision 0 filesystems\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005816msgstr "版本为0的文件系统不支持日志\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005817
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005818#: misc/mke2fs.c:2204
Tianze Wang57d69272016-08-31 23:14:17 -04005819#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04005820msgid "invalid reserved blocks percent - %lf"
Tianze Wang57d69272016-08-31 23:14:17 -04005821msgstr "无效的保留块百分比 - %lf"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005822
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005823#: misc/mke2fs.c:2221
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005824msgid ""
5825"Extents MUST be enabled for a 64-bit filesystem. Pass -O extents to "
5826"rectify.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005827msgstr "64位系统必须启用extent特性。请使用“-O extents”选项来修正。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005828
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005829#: misc/mke2fs.c:2241
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005830msgid "The cluster size may not be smaller than the block size.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005831msgstr "簇大小不能小于块大小。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005832
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005833#: misc/mke2fs.c:2247
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005834msgid "specifying a cluster size requires the bigalloc feature"
Tianze Wang57d69272016-08-31 23:14:17 -04005835msgstr "指定簇大小需要启用bigalloc特性"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04005836
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005837#: misc/mke2fs.c:2267
Dark Raven3be22a82010-04-19 16:59:03 -04005838#, c-format
5839msgid "warning: Unable to get device geometry for %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005840msgstr "警告:无法获取 %s 的设备布局\n"
Dark Raven3be22a82010-04-19 16:59:03 -04005841
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005842#: misc/mke2fs.c:2270
Dark Raven3be22a82010-04-19 16:59:03 -04005843#, c-format
5844msgid "%s alignment is offset by %lu bytes.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005845msgstr "%s 未对齐,偏移了 %lu 个字节。\n"
Dark Raven3be22a82010-04-19 16:59:03 -04005846
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005847#: misc/mke2fs.c:2272
Eric Sandeen032eafe2012-07-28 17:48:36 -04005848#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005849msgid ""
5850"This may result in very poor performance, (re)-partitioning suggested.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005851msgstr "这可能导致性能下降,建议重新进行分区。\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005852
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005853#: misc/mke2fs.c:2293
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005854#, c-format
5855msgid "%d-byte blocks too big for system (max %d)"
Tianze Wang57d69272016-08-31 23:14:17 -04005856msgstr "%d字节的块对于系统来说太大(最大为 %d)"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005857
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005858#: misc/mke2fs.c:2297
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005859#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005860msgid ""
5861"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
Tianze Wang57d69272016-08-31 23:14:17 -04005862msgstr "警告:%d字节的块对于系统来说太大(最大为 %d),但仍然强制进行操作\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005863
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005864#: misc/mke2fs.c:2305
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005865#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005866msgid ""
5867"Suggestion: Use Linux kernel >= 3.18 for improved stability of the metadata "
5868"and journal checksum features.\n"
5869msgstr ""
5870"建议:使用 3.18 以上的 Linux 内核以提高元数据稳定性,以及使用日志校验值特"
5871"性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005872
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005873#: misc/mke2fs.c:2360
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04005874#, c-format
5875msgid ""
5876"\n"
5877"Warning: offset specified without an explicit file system size.\n"
5878"Creating a file system with %llu blocks but this might\n"
5879"not be what you want.\n"
5880"\n"
5881msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005882"\n"
5883"警告:指定了偏移量,但没有指定文件系统大小。\n"
5884"将创建含有 %llu 个块的文件系统,这可能与您的预期不服。\n"
5885"\n"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04005886
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005887#: misc/mke2fs.c:2375
Theodore Ts'o21725192017-08-23 19:46:04 -04005888#, fuzzy, c-format
5889msgid "%d byte inodes are too small for project quota"
5890msgstr "%d 字节的 inode 对于项目配额来说太小;请指定一个更大的值"
5891
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005892#: misc/mke2fs.c:2397
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005893msgid "Can't support bigalloc feature without extents feature"
Tianze Wang57d69272016-08-31 23:14:17 -04005894msgstr "无法在缺乏extent特性的情况下支持bigalloc特性"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005895
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005896#: misc/mke2fs.c:2404
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005897msgid ""
5898"The resize_inode and meta_bg features are not compatible.\n"
5899"They can not be both enabled simultaneously.\n"
5900msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005901"resize_inode 和 meta_bg 特性不兼容。\n"
5902"无法同时启用它们。\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005903
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005904#: misc/mke2fs.c:2412
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005905msgid ""
5906"\n"
5907"Warning: the bigalloc feature is still under development\n"
5908"See https://ext4.wiki.kernel.org/index.php/Bigalloc for more information\n"
5909"\n"
5910msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005911"\n"
5912"警告:bigalloc特性仍然在开发中\n"
5913"更多详情请参见 https://ext4.wiki.kernel.org/index.php/Bigalloc\n"
5914"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005915
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005916#: misc/mke2fs.c:2424
Eric Sandeen032eafe2012-07-28 17:48:36 -04005917msgid "reserved online resize blocks not supported on non-sparse filesystem"
Tianze Wang57d69272016-08-31 23:14:17 -04005918msgstr "非分散式文件系统不支持为在线调整大小设置保留块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005919
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005920#: misc/mke2fs.c:2433
Eric Sandeen032eafe2012-07-28 17:48:36 -04005921msgid "blocks per group count out of range"
Tianze Wang57d69272016-08-31 23:14:17 -04005922msgstr "每组块数超过允许范围"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005923
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005924#: misc/mke2fs.c:2455
Eric Sandeen032eafe2012-07-28 17:48:36 -04005925msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
Tianze Wang57d69272016-08-31 23:14:17 -04005926msgstr "弹性组特性未启用,所以无法指定弹性组尺寸"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005927
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005928#: misc/mke2fs.c:2467
Eric Sandeen032eafe2012-07-28 17:48:36 -04005929#, c-format
5930msgid "invalid inode size %d (min %d/max %d)"
Tianze Wang57d69272016-08-31 23:14:17 -04005931msgstr "无效的inode大小 %d(最小 %d /最大 %d)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005932
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005933#: misc/mke2fs.c:2482
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005934#, c-format
5935msgid "%d byte inodes are too small for inline data; specify larger size"
Tianze Wang57d69272016-08-31 23:14:17 -04005936msgstr "%d 字节的 inode 对于内联数据来说太小;请指定一个更大的值"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005937
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005938#: misc/mke2fs.c:2497
Eric Sandeen032eafe2012-07-28 17:48:36 -04005939#, c-format
5940msgid "too many inodes (%llu), raise inode ratio?"
Tianze Wang57d69272016-08-31 23:14:17 -04005941msgstr "inode太多(%llu),是否提高inode比?"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005942
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005943#: misc/mke2fs.c:2504
Eric Sandeen032eafe2012-07-28 17:48:36 -04005944#, c-format
5945msgid "too many inodes (%llu), specify < 2^32 inodes"
Tianze Wang57d69272016-08-31 23:14:17 -04005946msgstr "inode数量太多(%llu),请指定小于 2^32 的inode数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005947
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005948#: misc/mke2fs.c:2518
Eric Sandeen032eafe2012-07-28 17:48:36 -04005949#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04005950msgid ""
5951"inode_size (%u) * inodes_count (%u) too big for a\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04005952"\tfilesystem with %llu blocks, specify higher inode_ratio (-i)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005953"\tor lower inode count (-N).\n"
5954msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04005955"inode大小(%u)×inode数(%u)对于含有 %llu 个块\n"
5956"\t的系统来说太大,请指定更高的inode比(使用 -i 选项)\n"
5957"\t或更少的inode数(-N)。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04005958
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005959#: misc/mke2fs.c:2705
Eric Sandeen032eafe2012-07-28 17:48:36 -04005960msgid "Discarding device blocks: "
Tianze Wang57d69272016-08-31 23:14:17 -04005961msgstr "丢弃设备块: "
Eric Sandeen032eafe2012-07-28 17:48:36 -04005962
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005963#: misc/mke2fs.c:2721
Eric Sandeen032eafe2012-07-28 17:48:36 -04005964msgid "failed - "
Tianze Wang57d69272016-08-31 23:14:17 -04005965msgstr "已失败 - "
Dark Raven3be22a82010-04-19 16:59:03 -04005966
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005967#: misc/mke2fs.c:2780
Theodore Ts'o48203a32016-06-08 15:45:26 -04005968msgid "while initializing quota context"
Tianze Wang57d69272016-08-31 23:14:17 -04005969msgstr "初始化配额上下文时"
Theodore Ts'o48203a32016-06-08 15:45:26 -04005970
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005971#: misc/mke2fs.c:2787
Theodore Ts'o48203a32016-06-08 15:45:26 -04005972msgid "while writing quota inodes"
Tianze Wang57d69272016-08-31 23:14:17 -04005973msgstr "写入配额 inode 时"
Theodore Ts'o48203a32016-06-08 15:45:26 -04005974
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005975#: misc/mke2fs.c:2812
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005976#, c-format
5977msgid "bad error behavior in profile - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04005978msgstr "配置中的出错行为有误 - %s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005979
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005980#: misc/mke2fs.c:2888
Theodore Ts'o899425b2018-02-27 22:25:04 -05005981#, fuzzy
5982msgid "in malloc for android_sparse_params"
5983msgstr "为bad_blocks_filename分配内存时"
5984
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005985#: misc/mke2fs.c:2902
Theodore Ts'of722c132009-04-21 22:09:01 -04005986msgid "while setting up superblock"
Tianze Wang57d69272016-08-31 23:14:17 -04005987msgstr "设置superblock时"
Theodore Ts'of722c132009-04-21 22:09:01 -04005988
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005989#: misc/mke2fs.c:2918
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005990msgid ""
5991"Extents are not enabled. The file extent tree can be checksummed, whereas "
5992"block maps cannot. Not enabling extents reduces the coverage of metadata "
5993"checksumming. Pass -O extents to rectify.\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04005994msgstr ""
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05005995"未启用 extent 特性,所以仅对文件 extent 树进行校验,而不会对块位图进行校验。"
5996"不启用 extent 将降低元数据校验值的覆盖范围。可以使用参数“-O extents”来进行纠"
5997"正。\n"
5998
Theodore Ts'o40e66e22018-08-18 21:14:56 -04005999#: misc/mke2fs.c:2925
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006000msgid ""
6001"64-bit filesystem support is not enabled. The larger fields afforded by "
6002"this feature enable full-strength checksumming. Pass -O 64bit to rectify.\n"
6003msgstr ""
6004"未启用 64 位文件系统支持,将无法使用更大的字段来进行更完整的校验。可以使用参"
6005"数“-O 64bit”来进行纠正。\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006006"\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006007
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006008#: misc/mke2fs.c:2933
Theodore Ts'o4c5e6cd2017-10-16 01:45:45 -04006009#, fuzzy
6010msgid "The metadata_csum_seed feature requires the metadata_csum feature.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006011msgstr "启用 metadata_csum_seed 特性需要同时启用 metadata_csum 特性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006012
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006013#: misc/mke2fs.c:2957
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006014msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006015msgstr "舍弃成功,将会返回0值 - 跳过擦除inode表\n"
Dark Ravenc4755342011-01-26 18:54:25 -05006016
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006017#: misc/mke2fs.c:3056
Theodore Ts'of722c132009-04-21 22:09:01 -04006018#, c-format
6019msgid "unknown os - %s"
6020msgstr "未知操作系统 - %s"
6021
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006022#: misc/mke2fs.c:3119
Eric Sandeen032eafe2012-07-28 17:48:36 -04006023msgid "Allocating group tables: "
Tianze Wang57d69272016-08-31 23:14:17 -04006024msgstr "正在分配组表: "
Eric Sandeen032eafe2012-07-28 17:48:36 -04006025
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006026#: misc/mke2fs.c:3127
Theodore Ts'of722c132009-04-21 22:09:01 -04006027msgid "while trying to allocate filesystem tables"
Tianze Wang57d69272016-08-31 23:14:17 -04006028msgstr "尝试分配文件系统表时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006029
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006030#: misc/mke2fs.c:3136
Eric Sandeen032eafe2012-07-28 17:48:36 -04006031msgid ""
6032"\n"
6033"\twhile converting subcluster bitmap"
Theodore Ts'of722c132009-04-21 22:09:01 -04006034msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006035"\n"
6036"\t转换子簇位图时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006037
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006038#: misc/mke2fs.c:3142
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006039#, c-format
6040msgid "%s may be further corrupted by superblock rewrite\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006041msgstr "%s 可能因超级块被改写而损\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006042
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006043#: misc/mke2fs.c:3183
Eric Sandeen032eafe2012-07-28 17:48:36 -04006044#, c-format
6045msgid "while zeroing block %llu at end of filesystem"
Tianze Wang57d69272016-08-31 23:14:17 -04006046msgstr "对文件系统末尾的块 %llu 填零时"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006047
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006048#: misc/mke2fs.c:3196
Theodore Ts'of722c132009-04-21 22:09:01 -04006049msgid "while reserving blocks for online resize"
Tianze Wang57d69272016-08-31 23:14:17 -04006050msgstr "为在线改变大小保留块时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006051
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006052#: misc/mke2fs.c:3208 misc/tune2fs.c:1538
Theodore Ts'of722c132009-04-21 22:09:01 -04006053msgid "journal"
6054msgstr "日志"
6055
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006056#: misc/mke2fs.c:3220
Theodore Ts'of722c132009-04-21 22:09:01 -04006057#, c-format
6058msgid "Adding journal to device %s: "
Tianze Wang57d69272016-08-31 23:14:17 -04006059msgstr "将日志添加到设备 %s: "
Theodore Ts'of722c132009-04-21 22:09:01 -04006060
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006061#: misc/mke2fs.c:3227
Theodore Ts'of722c132009-04-21 22:09:01 -04006062#, c-format
6063msgid ""
6064"\n"
6065"\twhile trying to add journal to device %s"
6066msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006067"\n"
6068"尝试将日志添加到设备 %s时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006069
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006070#: misc/mke2fs.c:3232 misc/mke2fs.c:3261 misc/mke2fs.c:3299
6071#: misc/mk_hugefiles.c:598 misc/tune2fs.c:1567 misc/tune2fs.c:1586
Theodore Ts'of722c132009-04-21 22:09:01 -04006072msgid "done\n"
6073msgstr "完成\n"
6074
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006075#: misc/mke2fs.c:3238
Theodore Ts'o930e2812009-06-29 15:08:12 -04006076msgid "Skipping journal creation in super-only mode\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006077msgstr "跳过创建日志的步骤(唯超级块模式)\n"
Theodore Ts'o930e2812009-06-29 15:08:12 -04006078
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006079#: misc/mke2fs.c:3248
Dark Raven3be22a82010-04-19 16:59:03 -04006080#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04006081msgid "Creating journal (%u blocks): "
Tianze Wang57d69272016-08-31 23:14:17 -04006082msgstr "创建日志(%u 个块)"
Theodore Ts'of722c132009-04-21 22:09:01 -04006083
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006084#: misc/mke2fs.c:3257
Eric Sandeen032eafe2012-07-28 17:48:36 -04006085msgid ""
6086"\n"
6087"\twhile trying to create journal"
6088msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006089"\n"
6090"\t尝试创建日志时"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006091
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006092#: misc/mke2fs.c:3269 misc/tune2fs.c:1185
Eric Sandeen032eafe2012-07-28 17:48:36 -04006093msgid ""
6094"\n"
6095"Error while enabling multiple mount protection feature."
6096msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006097"\n"
6098"启用MMP特性失败。"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006099
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006100#: misc/mke2fs.c:3274
Eric Sandeen032eafe2012-07-28 17:48:36 -04006101#, c-format
6102msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006103msgstr "MMP(多重挂载保护)已被启用,更新间隔为 %d 秒。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006104
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006105#: misc/mke2fs.c:3290
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006106msgid "Copying files into the device: "
Tianze Wang57d69272016-08-31 23:14:17 -04006107msgstr "将文件复制到设备:"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006108
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006109#: misc/mke2fs.c:3296
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006110msgid "while populating file system"
Tianze Wang57d69272016-08-31 23:14:17 -04006111msgstr "于填充文件系统时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006112
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006113#: misc/mke2fs.c:3303
Theodore Ts'of722c132009-04-21 22:09:01 -04006114msgid "Writing superblocks and filesystem accounting information: "
Tianze Wang57d69272016-08-31 23:14:17 -04006115msgstr "写入超级块和文件系统账户统计信息: "
Theodore Ts'of722c132009-04-21 22:09:01 -04006116
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006117#: misc/mke2fs.c:3310
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006118#, fuzzy
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006119msgid "while writing out and closing file system"
6120msgstr "对文件系统末尾的块 %llu 填零时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006121
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006122#: misc/mke2fs.c:3313
Theodore Ts'of722c132009-04-21 22:09:01 -04006123msgid ""
6124"done\n"
6125"\n"
6126msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006127"已完成\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006128"\n"
6129
Theodore Ts'o899425b2018-02-27 22:25:04 -05006130#: misc/mk_hugefiles.c:339
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04006131#, fuzzy, c-format
6132msgid "while zeroing block %llu for hugefile"
6133msgstr "对文件系统末尾的块 %llu 填零时"
6134
Theodore Ts'o899425b2018-02-27 22:25:04 -05006135#: misc/mk_hugefiles.c:514
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006136#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006137msgid ""
6138"Partition offset of %llu (%uk) blocks not compatible with cluster size %u.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006139msgstr "分区偏移量 %llu(%uk)块与簇大小 %u 不相容。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006140
Theodore Ts'o899425b2018-02-27 22:25:04 -05006141#: misc/mk_hugefiles.c:581
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006142msgid "Huge files will be zero'ed\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006143msgstr "将对大文件填零\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006144
Theodore Ts'o899425b2018-02-27 22:25:04 -05006145#: misc/mk_hugefiles.c:582
Tianze Wang57d69272016-08-31 23:14:17 -04006146#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006147msgid "Creating %lu huge file(s) "
Tianze Wang57d69272016-08-31 23:14:17 -04006148msgstr "创建 %lu 个大文件"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006149
Theodore Ts'o899425b2018-02-27 22:25:04 -05006150#: misc/mk_hugefiles.c:584
Tianze Wang57d69272016-08-31 23:14:17 -04006151#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006152msgid "with %llu blocks each"
Tianze Wang57d69272016-08-31 23:14:17 -04006153msgstr "每个使用 %llu 个块"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006154
Theodore Ts'o899425b2018-02-27 22:25:04 -05006155#: misc/mk_hugefiles.c:593
Tianze Wang57d69272016-08-31 23:14:17 -04006156#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006157msgid "while creating huge file %lu"
Tianze Wang57d69272016-08-31 23:14:17 -04006158msgstr "创建大文件 %lu 时"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006159
Eric Sandeen032eafe2012-07-28 17:48:36 -04006160#: misc/mklost+found.c:50
Theodore Ts'of722c132009-04-21 22:09:01 -04006161msgid "Usage: mklost+found\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006162msgstr "用法:mklost+found\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006163
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006164#: misc/partinfo.c:43
Theodore Ts'of722c132009-04-21 22:09:01 -04006165#, c-format
6166msgid ""
6167"Usage: %s device...\n"
6168"\n"
6169"Prints out the partition information for each given device.\n"
6170"For example: %s /dev/hda\n"
6171"\n"
6172msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006173"用法:%s 设备...\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006174"\n"
6175"输出每个给定设备的分区信息.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006176"例如:%s /dev/hda\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006177"\n"
6178
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006179#: misc/partinfo.c:53
Theodore Ts'of722c132009-04-21 22:09:01 -04006180#, c-format
6181msgid "Cannot open %s: %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006182msgstr "无法打开 %s:%s"
Theodore Ts'of722c132009-04-21 22:09:01 -04006183
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006184#: misc/partinfo.c:59
Theodore Ts'of722c132009-04-21 22:09:01 -04006185#, c-format
6186msgid "Cannot get geometry of %s: %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006187msgstr "无法获取 %s 的布局:%s"
Theodore Ts'of722c132009-04-21 22:09:01 -04006188
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006189#: misc/partinfo.c:67
Theodore Ts'of722c132009-04-21 22:09:01 -04006190#, c-format
6191msgid "Cannot get size of %s: %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006192msgstr "无法获得 %s 的大小:%s"
Theodore Ts'of722c132009-04-21 22:09:01 -04006193
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006194#: misc/partinfo.c:73
Theodore Ts'of722c132009-04-21 22:09:01 -04006195#, c-format
6196msgid "%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006197msgstr "%s:磁头=%3d 扇区=%3d 柱面=%4d 起始=%8d 大小=%8lu 终止=%8d\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006198
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04006199#: misc/tune2fs.c:119
Theodore Ts'o21725192017-08-23 19:46:04 -04006200msgid ""
6201"\n"
6202"This operation requires a freshly checked filesystem.\n"
6203msgstr ""
6204
6205#: misc/tune2fs.c:121
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006206#, fuzzy
6207msgid "Please run e2fsck -f on the filesystem.\n"
6208msgstr "请在这个文件系统上运行 e2fsck -D。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006209
Theodore Ts'o21725192017-08-23 19:46:04 -04006210#: misc/tune2fs.c:123
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006211#, fuzzy
6212msgid "Please run e2fsck -fD on the filesystem.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006213msgstr "请在这个文件系统上运行 e2fsck -D。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006214
Theodore Ts'o21725192017-08-23 19:46:04 -04006215#: misc/tune2fs.c:136
Theodore Ts'o89128f82018-01-01 19:36:37 -05006216#, fuzzy, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04006217msgid ""
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04006218"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-f] [-g group]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006219"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006220"\t[-m reserved_blocks_percent] [-o [^]mount_options[,...]]\n"
Theodore Ts'o89128f82018-01-01 19:36:37 -05006221"\t[-r reserved_blocks_count] [-u user] [-C mount_count]\n"
6222"\t[-L volume_label] [-M last_mounted_dir]\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006223"\t[-O [^]feature[,...]] [-Q quota_options]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006224"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID]\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006225"\t[-I new_inode_size] [-z undo_file] device\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006226msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006227"用法:%s [-c 最大挂载次数] [-e 出错行为] [-f] [-g 组]\n"
6228"\t[-i 间隔[d|m|w]] [-j] [-J 日志选项] [-l]\n"
6229"\t[-m 保留块所占百分比] [-o [^]挂载选项[,...]]\n"
6230"\t[-p MMP更新间隔] [-r 保留块数] [-u 用户]\n"
6231"\t[-C 挂载次数] [-L 卷标][-M 上一次挂载点]\n"
6232"\t[-O [^]特性[,...]] [-Q 配额选项]\n"
6233"\t[-E 扩展选项[,...]] [-T 上一次检查时间] [-U UUID]\n"
6234"\t[ -I 新的inode大小] [-z 撤销文件] 设备\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006235
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006236#: misc/tune2fs.c:223
Theodore Ts'obd386982015-05-17 20:34:58 -04006237msgid "Journal superblock not found!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006238msgstr "日志超级块未找到!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006239
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006240#: misc/tune2fs.c:281
Theodore Ts'of722c132009-04-21 22:09:01 -04006241msgid "while trying to open external journal"
Tianze Wang57d69272016-08-31 23:14:17 -04006242msgstr "尝试打开外部日志时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006243
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006244#: misc/tune2fs.c:287 misc/tune2fs.c:2845
Dark Raven3be22a82010-04-19 16:59:03 -04006245#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04006246msgid "%s is not a journal device.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006247msgstr "%s 不是日志设备。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006248
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006249#: misc/tune2fs.c:297 misc/tune2fs.c:2856
Theodore Ts'of722c132009-04-21 22:09:01 -04006250msgid "Filesystem's UUID not found on journal device.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006251msgstr "日志设备中未找到文件系统的UUID。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006252
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006253#: misc/tune2fs.c:321
Eric Sandeen032eafe2012-07-28 17:48:36 -04006254msgid ""
6255"Cannot locate journal device. It was NOT removed\n"
6256"Use -f option to remove missing journal device.\n"
6257msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006258"无法定位日志设备。设备未被移除\n"
6259"请使用 -f 选项来移除丢失的日志设备。\n"
6260"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006261
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006262#: misc/tune2fs.c:330
Theodore Ts'of722c132009-04-21 22:09:01 -04006263msgid "Journal removed\n"
6264msgstr "日志已删除\n"
6265
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006266#: misc/tune2fs.c:374
Theodore Ts'of722c132009-04-21 22:09:01 -04006267msgid "while reading bitmaps"
Tianze Wang57d69272016-08-31 23:14:17 -04006268msgstr "读取位图时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006269
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006270#: misc/tune2fs.c:382
Theodore Ts'of722c132009-04-21 22:09:01 -04006271msgid "while clearing journal inode"
Tianze Wang57d69272016-08-31 23:14:17 -04006272msgstr "读取坏块inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006273
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006274#: misc/tune2fs.c:393
Theodore Ts'of722c132009-04-21 22:09:01 -04006275msgid "while writing journal inode"
Tianze Wang57d69272016-08-31 23:14:17 -04006276msgstr "写入日志inode时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006277
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006278#: misc/tune2fs.c:429 misc/tune2fs.c:452 misc/tune2fs.c:465
Dark Ravenc4755342011-01-26 18:54:25 -05006279msgid "(and reboot afterwards!)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006280msgstr "(并且过后重启!)\n"
Dark Ravenc4755342011-01-26 18:54:25 -05006281
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006282#: misc/tune2fs.c:480
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006283#, c-format
6284msgid "After running e2fsck, please run `resize2fs %s %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006285msgstr "在运行 e2fsck 后,请运行“resize2fs %s %s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006286
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006287#: misc/tune2fs.c:483
Tianze Wang57d69272016-08-31 23:14:17 -04006288#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006289msgid "Please run `resize2fs %s %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006290msgstr "请运行“resize2fs %s %s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006291
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006292#: misc/tune2fs.c:487
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006293#, c-format
6294msgid " -z \"%s\""
Tianze Wang57d69272016-08-31 23:14:17 -04006295msgstr " -z \"%s\""
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006296
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006297#: misc/tune2fs.c:489
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006298#, c-format
6299msgid "' to enable 64-bit mode.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006300msgstr "”来启用 64 位模式。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006301
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006302#: misc/tune2fs.c:491
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006303#, c-format
6304msgid "' to disable 64-bit mode.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006305msgstr "”来禁用 64 位模式。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006306
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006307#: misc/tune2fs.c:1087
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006308msgid ""
6309"WARNING: Could not confirm kernel support for metadata_csum_seed.\n"
6310" This requires Linux >= v4.4.\n"
6311msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006312"警告:无法确定内核是否支持 metadata_csum_seed 特性。\n"
6313" 该特性仅被 4.4 以上的 Linux 内核支持。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006314
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006315#: misc/tune2fs.c:1123
Theodore Ts'of722c132009-04-21 22:09:01 -04006316#, c-format
6317msgid "Clearing filesystem feature '%s' not supported.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006318msgstr "移除不被支持的文件系统特性“%s”。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006319
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006320#: misc/tune2fs.c:1129
Theodore Ts'of722c132009-04-21 22:09:01 -04006321#, c-format
6322msgid "Setting filesystem feature '%s' not supported.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006323msgstr "设置不被支持的文件系统特性“%s”。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006324
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006325#: misc/tune2fs.c:1138
Theodore Ts'of722c132009-04-21 22:09:01 -04006326msgid ""
6327"The has_journal feature may only be cleared when the filesystem is\n"
6328"unmounted or mounted read-only.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006329msgstr "只有当文件系统被卸载,或以只读模式挂载时才能移除其has_journal特性。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006330
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006331#: misc/tune2fs.c:1146
Theodore Ts'of722c132009-04-21 22:09:01 -04006332msgid ""
6333"The needs_recovery flag is set. Please run e2fsck before clearing\n"
6334"the has_journal flag.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006335msgstr "发现needs_recovery标志。请在移除has_journal特性前运行e2fsck。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006336
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006337#: misc/tune2fs.c:1164
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006338msgid ""
6339"Setting filesystem feature 'sparse_super' not supported\n"
6340"for filesystems with the meta_bg feature enabled.\n"
6341msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006342"启用了meta_bg特性的文件系统不支持“sparse_super”\n"
6343"特性。\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006344
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006345#: misc/tune2fs.c:1177
Eric Sandeen032eafe2012-07-28 17:48:36 -04006346msgid ""
6347"The multiple mount protection feature can't\n"
6348"be set if the filesystem is mounted or\n"
6349"read-only.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006350msgstr "文件系统被挂载或为只读属性时无法设置MMP特性。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006351
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006352#: misc/tune2fs.c:1195
Eric Sandeen032eafe2012-07-28 17:48:36 -04006353#, c-format
6354msgid "Multiple mount protection has been enabled with update interval %ds.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006355msgstr "MMP(多重挂载保护)已被启用,更新间隔为 %ds。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006356
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006357#: misc/tune2fs.c:1204
Eric Sandeen032eafe2012-07-28 17:48:36 -04006358msgid ""
6359"The multiple mount protection feature cannot\n"
6360"be disabled if the filesystem is readonly.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006361msgstr "文件系统为只读状态时无法禁用MMP特性。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006362
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006363#: misc/tune2fs.c:1212
Eric Sandeen032eafe2012-07-28 17:48:36 -04006364msgid "Error while reading bitmaps\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006365msgstr "读取位图时发生错误\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006366
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006367#: misc/tune2fs.c:1221
Eric Sandeen032eafe2012-07-28 17:48:36 -04006368#, c-format
6369msgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006370msgstr "MMP块的幻数不匹配。期望值:%x,实际:%x\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006371
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006372#: misc/tune2fs.c:1226
Eric Sandeen032eafe2012-07-28 17:48:36 -04006373msgid "while reading MMP block."
Tianze Wang57d69272016-08-31 23:14:17 -04006374msgstr "读取MMP块时"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006375
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006376#: misc/tune2fs.c:1258
Theodore Ts'of722c132009-04-21 22:09:01 -04006377msgid ""
6378"Clearing the flex_bg flag would cause the the filesystem to be\n"
6379"inconsistent.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006380msgstr "清除弹性组标志将会导致文件系统出现前后不一致的情况。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006381
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006382#: misc/tune2fs.c:1269
Theodore Ts'of722c132009-04-21 22:09:01 -04006383msgid ""
6384"The huge_file feature may only be cleared when the filesystem is\n"
6385"unmounted or mounted read-only.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006386msgstr "只有当文件系统被卸载,或以只读模式挂载时才能移除其huge_file特性。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006387
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006388#: misc/tune2fs.c:1280
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006389msgid "Enabling checksums could take some time."
Tianze Wang57d69272016-08-31 23:14:17 -04006390msgstr "启用校验值需要花费一段时间。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006391
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006392#: misc/tune2fs.c:1282
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006393msgid "Cannot enable metadata_csum on a mounted filesystem!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006394msgstr "无法在已挂载的文件系统上启用元数据校验特性!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006395
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006396#: misc/tune2fs.c:1288
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006397msgid ""
6398"Extents are not enabled. The file extent tree can be checksummed, whereas "
6399"block maps cannot. Not enabling extents reduces the coverage of metadata "
6400"checksumming. Re-run with -O extent to rectify.\n"
6401msgstr ""
6402"未启用 extent 特性,所以仅对文件 extent 树进行校验,而不会对块位图进行校验。"
6403"不启用 extent 将降低元数据校验值的覆盖范围。可以加上参数“-O extents”重新运行"
6404"来纠正这一问题。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006405
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006406#: misc/tune2fs.c:1295
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006407msgid ""
6408"64-bit filesystem support is not enabled. The larger fields afforded by "
6409"this feature enable full-strength checksumming. Run resize2fs -b to "
6410"rectify.\n"
6411msgstr ""
6412"未启用 64 位文件系统支持,将无法使用更大的字段来进行更完整的校验。可以运"
6413"行“resize2fs -b”来纠正这一问题。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006414
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006415#: misc/tune2fs.c:1321
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006416msgid "Disabling checksums could take some time."
Tianze Wang57d69272016-08-31 23:14:17 -04006417msgstr "禁用校验值需要花费一段时间。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006418
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006419#: misc/tune2fs.c:1323
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006420msgid "Cannot disable metadata_csum on a mounted filesystem!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006421msgstr "无法在已挂载的文件系统上禁用元数据校验特性!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006422
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006423#: misc/tune2fs.c:1386
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006424#, c-format
6425msgid "Cannot enable 64-bit mode while mounted!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006426msgstr "无法在已挂载的文件系统上启用 64 位模式!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006427
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006428#: misc/tune2fs.c:1396
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006429#, c-format
6430msgid "Cannot disable 64-bit mode while mounted!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006431msgstr "无法在已挂载的文件系统上禁用 64 位模式!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006432
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006433#: misc/tune2fs.c:1426
Theodore Ts'o21725192017-08-23 19:46:04 -04006434#, c-format
6435msgid "Cannot enable project feature; inode size too small.\n"
6436msgstr ""
6437
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006438#: misc/tune2fs.c:1447
Eric Sandeen032eafe2012-07-28 17:48:36 -04006439msgid ""
6440"\n"
6441"Warning: '^quota' option overrides '-Q'arguments.\n"
6442msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006443"\n"
6444"警告:“^quota”选项将覆盖“-Q”的参数。\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006445
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006446#: misc/tune2fs.c:1465
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006447msgid ""
6448"Setting feature 'metadata_csum_seed' is only supported\n"
6449"on filesystems with the metadata_csum feature enabled.\n"
6450msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006451"只有在启用了元数据校验值特性的文件系统才支持\n"
6452"“metadata_csum_seed”特性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006453
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006454#: misc/tune2fs.c:1483
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006455msgid ""
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006456"UUID has changed since enabling metadata_csum. Filesystem must be "
6457"unmounted \n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006458"to safely rewrite all metadata to match the new UUID.\n"
6459msgstr ""
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006460"启用元数据校验值特性后UUID被改变。必须卸载文件系统并安全改写所有元数据,以"
6461"便\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006462"与新的 UUID 相匹配。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006463
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006464#: misc/tune2fs.c:1489
Theodore Ts'o899425b2018-02-27 22:25:04 -05006465#, fuzzy
6466msgid "Recalculating checksums could take some time."
6467msgstr "启用校验值需要花费一段时间。"
6468
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006469#: misc/tune2fs.c:1531
Theodore Ts'of722c132009-04-21 22:09:01 -04006470msgid "The filesystem already has a journal.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006471msgstr "文件系统已有日志。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006472
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006473#: misc/tune2fs.c:1551
Theodore Ts'of722c132009-04-21 22:09:01 -04006474#, c-format
6475msgid ""
6476"\n"
6477"\twhile trying to open journal on %s\n"
6478msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006479"\n"
6480"\t尝试打开位于 %s 的日志时\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006481
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006482#: misc/tune2fs.c:1555
Theodore Ts'of722c132009-04-21 22:09:01 -04006483#, c-format
6484msgid "Creating journal on device %s: "
Tianze Wang57d69272016-08-31 23:14:17 -04006485msgstr "在设备 %s 上创建日志: "
Theodore Ts'of722c132009-04-21 22:09:01 -04006486
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006487#: misc/tune2fs.c:1563
Theodore Ts'of722c132009-04-21 22:09:01 -04006488#, c-format
6489msgid "while adding filesystem to journal on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006490msgstr "将文件系统添加到 %s 上的日志"
Theodore Ts'of722c132009-04-21 22:09:01 -04006491
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006492#: misc/tune2fs.c:1569
Theodore Ts'of722c132009-04-21 22:09:01 -04006493msgid "Creating journal inode: "
Tianze Wang57d69272016-08-31 23:14:17 -04006494msgstr "创建日志inode: "
Theodore Ts'of722c132009-04-21 22:09:01 -04006495
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006496#: misc/tune2fs.c:1583
Theodore Ts'of722c132009-04-21 22:09:01 -04006497msgid ""
6498"\n"
6499"\twhile trying to create journal file"
6500msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006501"\n"
6502"\t尝试创建日志文件时"
Theodore Ts'of722c132009-04-21 22:09:01 -04006503
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006504#: misc/tune2fs.c:1621
Theodore Ts'o21725192017-08-23 19:46:04 -04006505#, c-format
6506msgid "Cannot enable project quota; inode size too small.\n"
6507msgstr ""
6508
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006509#: misc/tune2fs.c:1634
Theodore Ts'o48203a32016-06-08 15:45:26 -04006510msgid "while initializing quota context in support library"
Tianze Wang57d69272016-08-31 23:14:17 -04006511msgstr "初始化支持库中的引用上下文时"
Theodore Ts'o48203a32016-06-08 15:45:26 -04006512
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006513#: misc/tune2fs.c:1649
Tianze Wang57d69272016-08-31 23:14:17 -04006514#, c-format
Theodore Ts'o48203a32016-06-08 15:45:26 -04006515msgid "while updating quota limits (%d)"
Tianze Wang57d69272016-08-31 23:14:17 -04006516msgstr "更新配额限制(%d)时"
Theodore Ts'o48203a32016-06-08 15:45:26 -04006517
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006518#: misc/tune2fs.c:1657
Tianze Wang57d69272016-08-31 23:14:17 -04006519#, c-format
Theodore Ts'o48203a32016-06-08 15:45:26 -04006520msgid "while writing quota file (%d)"
Tianze Wang57d69272016-08-31 23:14:17 -04006521msgstr "写入配额文件(%d)时"
Theodore Ts'o48203a32016-06-08 15:45:26 -04006522
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006523#: misc/tune2fs.c:1675
Tianze Wang57d69272016-08-31 23:14:17 -04006524#, c-format
Theodore Ts'o48203a32016-06-08 15:45:26 -04006525msgid "while removing quota file (%d)"
Tianze Wang57d69272016-08-31 23:14:17 -04006526msgstr "移除配额文件(%d)时"
Theodore Ts'o48203a32016-06-08 15:45:26 -04006527
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006528#: misc/tune2fs.c:1718
Eric Sandeen032eafe2012-07-28 17:48:36 -04006529msgid ""
6530"\n"
6531"Bad quota options specified.\n"
6532"\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006533"Following valid quota options are available (pass by separating with "
6534"comma):\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006535"\t[^]usr[quota]\n"
6536"\t[^]grp[quota]\n"
6537"\t[^]prj[quota]\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006538"\n"
6539"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006540msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006541"\n"
6542"指定了错误的配额选项。\n"
6543"\n"
6544"可以使用下列配额选项(通过逗号分割):\n"
6545"\t[^]usr[quota\n"
6546"\t[^]grp[quota\n"
6547"\t[^]prj[quota]\n"
6548"\n"
6549"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006550
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006551#: misc/tune2fs.c:1776
Dark Raven3be22a82010-04-19 16:59:03 -04006552#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04006553msgid "Couldn't parse date/time specifier: %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006554msgstr "无法解析日期/时间描述符:%s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006555
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006556#: misc/tune2fs.c:1801 misc/tune2fs.c:1814
Eric Sandeen032eafe2012-07-28 17:48:36 -04006557#, c-format
6558msgid "bad mounts count - %s"
6559msgstr "错误挂载计数 - %s"
6560
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006561#: misc/tune2fs.c:1857
Eric Sandeen032eafe2012-07-28 17:48:36 -04006562#, c-format
6563msgid "bad gid/group name - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006564msgstr "错误的gid/组名 - %s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006565
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006566#: misc/tune2fs.c:1890
Eric Sandeen032eafe2012-07-28 17:48:36 -04006567#, c-format
6568msgid "bad interval - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006569msgstr "错误的间隔 - %s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006570
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006571#: misc/tune2fs.c:1919
Eric Sandeen032eafe2012-07-28 17:48:36 -04006572#, c-format
6573msgid "bad reserved block ratio - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006574msgstr "错误的保留块比 - %s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006575
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006576#: misc/tune2fs.c:1934
Eric Sandeen032eafe2012-07-28 17:48:36 -04006577msgid "-o may only be specified once"
6578msgstr "-o只能被指定一次"
6579
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006580#: misc/tune2fs.c:1943
Eric Sandeen032eafe2012-07-28 17:48:36 -04006581msgid "-O may only be specified once"
6582msgstr "-O只能被指定一次"
6583
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006584#: misc/tune2fs.c:1960
Eric Sandeen032eafe2012-07-28 17:48:36 -04006585#, c-format
6586msgid "bad reserved blocks count - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006587msgstr "错误的保留块数 - %s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006588
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006589#: misc/tune2fs.c:1989
Eric Sandeen032eafe2012-07-28 17:48:36 -04006590#, c-format
6591msgid "bad uid/user name - %s"
Tianze Wang57d69272016-08-31 23:14:17 -04006592msgstr "错误的uid/用户名 - %s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006593
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006594#: misc/tune2fs.c:2006
Eric Sandeen032eafe2012-07-28 17:48:36 -04006595#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04006596msgid "bad inode size - %s"
6597msgstr "无效的inode大小 - %s"
6598
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006599#: misc/tune2fs.c:2013
Theodore Ts'of722c132009-04-21 22:09:01 -04006600#, c-format
6601msgid "Inode size must be a power of two- %s"
6602msgstr "Inode 大小必须是2的次方- %s"
6603
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006604#: misc/tune2fs.c:2110
Eric Sandeen032eafe2012-07-28 17:48:36 -04006605#, c-format
6606msgid "mmp_update_interval too big: %lu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006607msgstr "MMP更新间隔太长:%lu\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006608
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006609#: misc/tune2fs.c:2115
Eric Sandeen032eafe2012-07-28 17:48:36 -04006610#, c-format
6611msgid "Setting multiple mount protection update interval to %lu second\n"
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006612msgid_plural ""
6613"Setting multiple mount protection update interval to %lu seconds\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006614msgstr[0] "设置MMP更新间隔为 %lu 秒\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006615
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006616#: misc/tune2fs.c:2138
Theodore Ts'of722c132009-04-21 22:09:01 -04006617#, c-format
6618msgid "Invalid RAID stride: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006619msgstr "无效的RAID带宽:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006620
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006621#: misc/tune2fs.c:2153
Theodore Ts'of722c132009-04-21 22:09:01 -04006622#, c-format
6623msgid "Invalid RAID stripe-width: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006624msgstr "无效的带宽参数:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006625
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006626#: misc/tune2fs.c:2168
Theodore Ts'of722c132009-04-21 22:09:01 -04006627#, c-format
6628msgid "Invalid hash algorithm: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006629msgstr "无效的hash算法:%s\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006630
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006631#: misc/tune2fs.c:2174
Theodore Ts'of722c132009-04-21 22:09:01 -04006632#, c-format
6633msgid "Setting default hash algorithm to %s (%d)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006634msgstr "将默认hash算法设置为 %s (%d)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006635
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006636#: misc/tune2fs.c:2193
Theodore Ts'o89128f82018-01-01 19:36:37 -05006637#, fuzzy
Theodore Ts'of722c132009-04-21 22:09:01 -04006638msgid ""
6639"\n"
6640"Bad options specified.\n"
6641"\n"
6642"Extended options are separated by commas, and may take an argument which\n"
6643"\tis set off by an equals ('=') sign.\n"
6644"\n"
6645"Valid extended options are:\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006646"\tclear_mmp\n"
6647"\thash_alg=<hash algorithm>\n"
6648"\tmount_opts=<extended default mount options>\n"
Theodore Ts'o89128f82018-01-01 19:36:37 -05006649"\tmmp_update_interval=<mmp update interval in seconds>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006650"\tstride=<RAID per-disk chunk size in blocks>\n"
6651"\tstripe_width=<RAID stride*data disks in blocks>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006652"\ttest_fs\n"
6653"\t^test_fs\n"
6654msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006655"\n"
6656"指定了错误的选项。\n"
6657"\n"
6658"扩展属性由逗号分隔,有些需要通过等号(“=”)传递参数。\n"
6659"\n"
6660"有效的扩展选项有:\n"
6661"\tclear_mmp\n"
6662"\thash_alg=<hash算法>\n"
6663"\tstride=<RAID 每个磁盘的数据块数(步长)>\n"
6664"\tstripe-width=<步长 × RAID 磁盘数(带宽)>\n"
6665"\thash_alg=<hash算法>\n"
6666"\ttest_fs\n"
6667"\t^test_fs\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006668
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006669#: misc/tune2fs.c:2663
Eric Sandeen032eafe2012-07-28 17:48:36 -04006670msgid "Failed to read inode bitmap\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006671msgstr "读取inode位图失败\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006672
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006673#: misc/tune2fs.c:2668
Eric Sandeen032eafe2012-07-28 17:48:36 -04006674msgid "Failed to read block bitmap\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006675msgstr "读取块位图失败\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006676
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006677#: misc/tune2fs.c:2685 resize/resize2fs.c:1277
Theodore Ts'of722c132009-04-21 22:09:01 -04006678msgid "blocks to be moved"
Tianze Wang57d69272016-08-31 23:14:17 -04006679msgstr "需要移动的块"
Theodore Ts'of722c132009-04-21 22:09:01 -04006680
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006681#: misc/tune2fs.c:2688
Dark Raven3be22a82010-04-19 16:59:03 -04006682msgid "Failed to allocate block bitmap when increasing inode size\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006683msgstr "增加inode大小时为分配块位图失败\n"
Dark Raven3be22a82010-04-19 16:59:03 -04006684
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006685#: misc/tune2fs.c:2694
Dark Raven3be22a82010-04-19 16:59:03 -04006686msgid "Not enough space to increase inode size \n"
Tianze Wang57d69272016-08-31 23:14:17 -04006687msgstr "没有足够的空间用于增加inode大小\n"
Dark Raven3be22a82010-04-19 16:59:03 -04006688
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006689#: misc/tune2fs.c:2699
Dark Raven3be22a82010-04-19 16:59:03 -04006690msgid "Failed to relocate blocks during inode resize \n"
Tianze Wang57d69272016-08-31 23:14:17 -04006691msgstr "改变块大小时重定位块失败 \n"
Dark Raven3be22a82010-04-19 16:59:03 -04006692
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006693#: misc/tune2fs.c:2731
Dark Raven3be22a82010-04-19 16:59:03 -04006694msgid ""
6695"Error in resizing the inode size.\n"
6696"Run e2undo to undo the file system changes. \n"
6697msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006698"改变inode大小时出错。\n"
6699"请运行e2undo来撤销对文件系统的更改。\n"
Dark Raven3be22a82010-04-19 16:59:03 -04006700
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006701#: misc/tune2fs.c:2936
6702msgid ""
6703"If you are sure the filesystem is not in use on any node, run:\n"
6704"'tune2fs -f -E clear_mmp {device}'\n"
6705msgstr ""
6706"如果你确定文件系统并没有挂载到任何节点上,请运行:\n"
6707"“tune2fs -f -E clear_mmp {设备}”\n"
6708
6709#: misc/tune2fs.c:2943
Eric Sandeen032eafe2012-07-28 17:48:36 -04006710#, c-format
6711msgid ""
6712"MMP block magic is bad. Try to fix it by running:\n"
6713"'e2fsck -f %s'\n"
6714msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006715"MMP块幻数错误。请尝试运行一下命令来修复:\n"
6716"“e2fsck -f %s”\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04006717
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006718#: misc/tune2fs.c:2955
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006719msgid "Cannot modify a journal device.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006720msgstr "无法修改日志设备。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006721
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006722#: misc/tune2fs.c:2968
Dark Raven3be22a82010-04-19 16:59:03 -04006723#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04006724msgid "The inode size is already %lu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006725msgstr "inode大小已经为 %lu\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006726
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006727#: misc/tune2fs.c:2975
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006728msgid "Shrinking inode size is not supported\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006729msgstr "不支持缩小inode大小\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006730
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006731#: misc/tune2fs.c:2980
Tianze Wang57d69272016-08-31 23:14:17 -04006732#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006733msgid "Invalid inode size %lu (max %d)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006734msgstr "无效的inode大小 %lu(最大 %d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006735
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006736#: misc/tune2fs.c:2986
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006737msgid "Resizing inodes could take some time."
Tianze Wang57d69272016-08-31 23:14:17 -04006738msgstr "改变 inode 大小需要花费一段时间。"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006739
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006740#: misc/tune2fs.c:3034
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04006741#, c-format
6742msgid ""
6743"Warning: The journal is dirty. You may wish to replay the journal like:\n"
6744"\n"
6745"\te2fsck -E journal_only %s\n"
6746"\n"
6747"then rerun this command. Otherwise, any changes made may be overwritten\n"
6748"by journal recovery.\n"
6749msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006750"警告:日志存在错误。您可能需要重做日志,如:\n"
6751"\n"
6752"e2fsck -E journal_only %s\n"
6753"\n"
6754"然后重新运行本命令。否则,任何所做更改都可能被日志恢复操作所覆盖。\n"
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04006755
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006756#: misc/tune2fs.c:3045
Tianze Wang57d69272016-08-31 23:14:17 -04006757#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006758msgid "Recovering journal.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006759msgstr "正在修复日志。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006760
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006761#: misc/tune2fs.c:3063
Theodore Ts'o899425b2018-02-27 22:25:04 -05006762#, c-format
6763msgid "Setting maximal mount count to %d\n"
6764msgstr "设置最大挂载次数为 %d\n"
6765
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006766#: misc/tune2fs.c:3069
Theodore Ts'o899425b2018-02-27 22:25:04 -05006767#, c-format
6768msgid "Setting current mount count to %d\n"
6769msgstr "设置当前挂载次数为 %d\n"
6770
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006771#: misc/tune2fs.c:3074
Theodore Ts'o899425b2018-02-27 22:25:04 -05006772#, c-format
6773msgid "Setting error behavior to %d\n"
6774msgstr "将出错行为设置为 %d\n"
6775
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006776#: misc/tune2fs.c:3079
Theodore Ts'o899425b2018-02-27 22:25:04 -05006777#, c-format
6778msgid "Setting reserved blocks gid to %lu\n"
6779msgstr "设置保留块的gid为 %lu\n"
6780
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006781#: misc/tune2fs.c:3084
Theodore Ts'o899425b2018-02-27 22:25:04 -05006782#, c-format
6783msgid "interval between checks is too big (%lu)"
6784msgstr "检查间隔太长(%lu)"
6785
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006786#: misc/tune2fs.c:3091
Theodore Ts'o899425b2018-02-27 22:25:04 -05006787#, c-format
6788msgid "Setting interval between checks to %lu seconds\n"
6789msgstr "将检查间隔设置为 %lu 秒\n"
6790
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006791#: misc/tune2fs.c:3098
Theodore Ts'o899425b2018-02-27 22:25:04 -05006792#, c-format
6793msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
6794msgstr "将保留块所占百分比设置为 %g%%(%llu 个块)\n"
6795
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006796#: misc/tune2fs.c:3104
Theodore Ts'o899425b2018-02-27 22:25:04 -05006797#, c-format
6798msgid "reserved blocks count is too big (%llu)"
6799msgstr "保留块的数量太大(%llu)"
6800
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006801#: misc/tune2fs.c:3111
Theodore Ts'o899425b2018-02-27 22:25:04 -05006802#, c-format
6803msgid "Setting reserved blocks count to %llu\n"
6804msgstr "设置保留块数为 %llu\n"
6805
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006806#: misc/tune2fs.c:3116
Theodore Ts'o899425b2018-02-27 22:25:04 -05006807msgid ""
6808"\n"
6809"The filesystem already has sparse superblocks.\n"
6810msgstr ""
6811"\n"
6812"文件系统已经含有分散式超级块\n"
6813
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006814#: misc/tune2fs.c:3119
Theodore Ts'o899425b2018-02-27 22:25:04 -05006815msgid ""
6816"\n"
6817"Setting the sparse superblock flag not supported\n"
6818"for filesystems with the meta_bg feature enabled.\n"
6819msgstr ""
6820"\n"
6821"启用了meta_bg特性的文件系统不支持设置分散式\n"
6822"超级块标志。\n"
6823"\n"
6824
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006825#: misc/tune2fs.c:3129
Theodore Ts'o899425b2018-02-27 22:25:04 -05006826#, c-format
6827msgid ""
6828"\n"
6829"Sparse superblock flag set. %s"
6830msgstr ""
6831"\n"
6832"已设置分散式超级块标志。 %s"
6833
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006834#: misc/tune2fs.c:3134
Theodore Ts'o899425b2018-02-27 22:25:04 -05006835msgid ""
6836"\n"
6837"Clearing the sparse superblock flag not supported.\n"
6838msgstr ""
6839"\n"
6840"移除不被支持的分散式超级块标志。\n"
6841
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006842#: misc/tune2fs.c:3142
Theodore Ts'o899425b2018-02-27 22:25:04 -05006843#, c-format
6844msgid "Setting time filesystem last checked to %s\n"
6845msgstr "设置上一次检查的时间为 %s\n"
6846
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006847#: misc/tune2fs.c:3148
Theodore Ts'o899425b2018-02-27 22:25:04 -05006848#, c-format
6849msgid "Setting reserved blocks uid to %lu\n"
6850msgstr "设置保留块的uid为 %lu\n"
6851
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006852#: misc/tune2fs.c:3180
Theodore Ts'o899425b2018-02-27 22:25:04 -05006853msgid "Error in using clear_mmp. It must be used with -f\n"
6854msgstr "clear_mmp选项使用错误,必须和 -f 选项一起使用\n"
6855
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006856#: misc/tune2fs.c:3198
Theodore Ts'o899425b2018-02-27 22:25:04 -05006857msgid ""
6858"The quota feature may only be changed when the filesystem is unmounted.\n"
6859msgstr "只有当文件系统被卸载时才能修改配额特性。\n"
6860
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006861#: misc/tune2fs.c:3222
Theodore Ts'o899425b2018-02-27 22:25:04 -05006862msgid "The UUID may only be changed when the filesystem is unmounted.\n"
6863msgstr "只有当文件系统被卸载时才能改变UUID。\n"
6864
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006865#: misc/tune2fs.c:3225
Theodore Ts'o899425b2018-02-27 22:25:04 -05006866msgid ""
6867"If you only use kernels newer than v4.4, run 'tune2fs -O metadata_csum_seed' "
6868"and re-run this command.\n"
6869msgstr ""
6870"若您仅使用 Linux 4.4 以上的内核,请运行“tune2fs -O metadata_csum_seed”,然后"
6871"重新运行此命了。\n"
6872
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006873#: misc/tune2fs.c:3234
Theodore Ts'o899425b2018-02-27 22:25:04 -05006874msgid "Setting UUID on a checksummed filesystem could take some time."
6875msgstr "在启用了校验值的文件系统上设置 UUID 需要花费一段时间。"
6876
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006877#: misc/tune2fs.c:3259
Theodore Ts'o899425b2018-02-27 22:25:04 -05006878msgid "Invalid UUID format\n"
6879msgstr "无效的 UUID 格式\n"
6880
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006881#: misc/tune2fs.c:3275
Theodore Ts'o899425b2018-02-27 22:25:04 -05006882msgid "Need to update journal superblock.\n"
6883msgstr "需要更新日志超级块。\n"
6884
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006885#: misc/tune2fs.c:3301
Theodore Ts'o899425b2018-02-27 22:25:04 -05006886msgid "The inode size may only be changed when the filesystem is unmounted.\n"
6887msgstr "只有当文件系统被卸载时才能改变inode大小。\n"
6888
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006889#: misc/tune2fs.c:3308
Theodore Ts'o899425b2018-02-27 22:25:04 -05006890msgid ""
6891"Changing the inode size not supported for filesystems with the flex_bg\n"
6892"feature enabled.\n"
6893msgstr "启用了弹性组特性的文件系统不支持改变inode大小\n"
6894
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006895#: misc/tune2fs.c:3326
Theodore Ts'o899425b2018-02-27 22:25:04 -05006896#, c-format
6897msgid "Setting inode size %lu\n"
6898msgstr "正在将inode大小设置为 %lu\n"
6899
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006900#: misc/tune2fs.c:3330
Theodore Ts'o899425b2018-02-27 22:25:04 -05006901msgid "Failed to change inode size\n"
6902msgstr "改变inode大小失败 \n"
6903
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006904#: misc/tune2fs.c:3344
Theodore Ts'o899425b2018-02-27 22:25:04 -05006905#, c-format
6906msgid "Setting stride size to %d\n"
6907msgstr "设置步长为 %d\n"
6908
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006909#: misc/tune2fs.c:3349
Theodore Ts'o899425b2018-02-27 22:25:04 -05006910#, c-format
6911msgid "Setting stripe width to %d\n"
6912msgstr "设置带宽为 %d\n"
6913
Theodore Ts'o40e66e22018-08-18 21:14:56 -04006914#: misc/tune2fs.c:3356
Theodore Ts'o899425b2018-02-27 22:25:04 -05006915#, c-format
6916msgid "Setting extended default mount options to '%s'\n"
6917msgstr "设置默认挂载的扩展选项为 “%s”\n"
6918
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006919#: misc/util.c:100
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006920msgid "<proceeding>\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006921msgstr "<处理中>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006922
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006923#: misc/util.c:104
Theodore Ts'o3dc18072017-08-21 21:32:26 -04006924#, fuzzy, c-format
Theodore Ts'o21725192017-08-23 19:46:04 -04006925msgid "Proceed anyway (or wait %d seconds to proceed) ? (y,N) "
Theodore Ts'o3dc18072017-08-21 21:32:26 -04006926msgstr "无论如何也要继续(或等待 %d 秒)?(y,n) "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006927
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006928#: misc/util.c:108
Theodore Ts'o3dc18072017-08-21 21:32:26 -04006929#, fuzzy
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05006930msgid "Proceed anyway? (y,N) "
Theodore Ts'o3dc18072017-08-21 21:32:26 -04006931msgstr "无论如何也要继续?(y,n) "
Theodore Ts'of722c132009-04-21 22:09:01 -04006932
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006933#: misc/util.c:133
Theodore Ts'of722c132009-04-21 22:09:01 -04006934msgid "mke2fs forced anyway. Hope /etc/mtab is incorrect.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006935msgstr "强制执行mke2fs。期望/etc/mtab中反映的并非真实情况。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006936
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006937#: misc/util.c:138
Theodore Ts'of722c132009-04-21 22:09:01 -04006938#, c-format
6939msgid "will not make a %s here!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006940msgstr "取消建立 %s !\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006941
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006942#: misc/util.c:145
Theodore Ts'of722c132009-04-21 22:09:01 -04006943msgid "mke2fs forced anyway.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006944msgstr "mke2fs 强制执行。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006945
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006946#: misc/util.c:161
Theodore Ts'of722c132009-04-21 22:09:01 -04006947msgid "Couldn't allocate memory to parse journal options!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006948msgstr "无法为解析日志选项获取内存!\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006949
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006950#: misc/util.c:186
Theodore Ts'o296b9d62010-06-07 12:25:11 -04006951#, c-format
6952msgid ""
6953"\n"
6954"Could not find journal device matching %s\n"
6955msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006956"\n"
6957"无法找到匹配 %s 的日志设备\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04006958
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006959#: misc/util.c:213
Theodore Ts'of722c132009-04-21 22:09:01 -04006960msgid ""
6961"\n"
6962"Bad journal options specified.\n"
6963"\n"
6964"Journal options are separated by commas, and may take an argument which\n"
6965"\tis set off by an equals ('=') sign.\n"
6966"\n"
6967"Valid journal options are:\n"
6968"\tsize=<journal size in megabytes>\n"
6969"\tdevice=<journal device>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006970"\tlocation=<journal location>\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006971"\n"
6972"The journal size must be between 1024 and 10240000 filesystem blocks.\n"
6973"\n"
6974msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04006975"\n"
6976"给定的日志选项有误。\n"
6977"\n"
6978"日志选项由逗号分隔,有些还需要通过等号(“=”)传递参数。\n"
6979"\n"
6980"有效的日志选项为:\n"
6981"\tsize=<日志大小(MB)>\n"
6982"\tdevice=<日志设备>\n"
6983"\tlocation=<日志所在位置>\n"
6984"\n"
6985"\n"
6986"日志尺寸必须介于1024至10240000个块之间(块的大小由文件系统决定)。\n"
6987"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006988
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006989#: misc/util.c:244
Theodore Ts'of722c132009-04-21 22:09:01 -04006990msgid ""
6991"\n"
6992"Filesystem too small for a journal\n"
6993msgstr ""
6994"\n"
Tianze Wang57d69272016-08-31 23:14:17 -04006995"文件系统太小,无法容纳日志\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04006996
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04006997#: misc/util.c:251
Theodore Ts'of722c132009-04-21 22:09:01 -04006998#, c-format
6999msgid ""
7000"\n"
7001"The requested journal size is %d blocks; it must be\n"
7002"between 1024 and 10240000 blocks. Aborting.\n"
7003msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007004"\n"
7005"给定的日志大小为 %d 个块;但该值必须\n"
7006"介于1024至10240000块之间。终止执行。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007007
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007008#: misc/util.c:259
Theodore Ts'of722c132009-04-21 22:09:01 -04007009msgid ""
7010"\n"
7011"Journal size too big for filesystem.\n"
7012msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007013"\n"
7014"日志大小超过文件系统自身。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007015
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007016#: misc/util.c:273
Theodore Ts'of722c132009-04-21 22:09:01 -04007017#, c-format
7018msgid ""
7019"This filesystem will be automatically checked every %d mounts or\n"
7020"%g days, whichever comes first. Use tune2fs -c or -i to override.\n"
7021msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007022"该文件系统在每挂载%d次或每隔%g天都会进行自动检查。\n"
7023"使用tune2fs -c 或-i选项来覆盖这一特性。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007024
Theodore Ts'obd386982015-05-17 20:34:58 -04007025#: misc/uuidd.c:49
Eric Sandeen032eafe2012-07-28 17:48:36 -04007026#, c-format
7027msgid "Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007028msgstr "用法:%s [-d] [-p pid文件] [-s 套接字路径] [-T 超时时长]\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007029
Theodore Ts'obd386982015-05-17 20:34:58 -04007030#: misc/uuidd.c:51
Eric Sandeen032eafe2012-07-28 17:48:36 -04007031#, c-format
7032msgid " %s [-r|t] [-n num] [-s socketpath]\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007033msgstr " %s [-r|t] [-n 数量] [-s 套接字路径]\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007034
Theodore Ts'obd386982015-05-17 20:34:58 -04007035#: misc/uuidd.c:53
Eric Sandeen032eafe2012-07-28 17:48:36 -04007036#, c-format
7037msgid " %s -k\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007038msgstr " %s -k\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007039
Theodore Ts'obd386982015-05-17 20:34:58 -04007040#: misc/uuidd.c:155
Eric Sandeen032eafe2012-07-28 17:48:36 -04007041msgid "bad arguments"
Tianze Wang57d69272016-08-31 23:14:17 -04007042msgstr "参数错误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007043
Theodore Ts'obd386982015-05-17 20:34:58 -04007044#: misc/uuidd.c:173
Eric Sandeen032eafe2012-07-28 17:48:36 -04007045msgid "connect"
Tianze Wang57d69272016-08-31 23:14:17 -04007046msgstr "连接"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007047
Theodore Ts'obd386982015-05-17 20:34:58 -04007048#: misc/uuidd.c:192
Eric Sandeen032eafe2012-07-28 17:48:36 -04007049msgid "write"
Tianze Wang57d69272016-08-31 23:14:17 -04007050msgstr "写入"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007051
Theodore Ts'obd386982015-05-17 20:34:58 -04007052#: misc/uuidd.c:200
Eric Sandeen032eafe2012-07-28 17:48:36 -04007053msgid "read count"
Tianze Wang57d69272016-08-31 23:14:17 -04007054msgstr "读取计数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007055
Theodore Ts'obd386982015-05-17 20:34:58 -04007056#: misc/uuidd.c:206
Eric Sandeen032eafe2012-07-28 17:48:36 -04007057msgid "bad response length"
Tianze Wang57d69272016-08-31 23:14:17 -04007058msgstr "错误的响应长度"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007059
Theodore Ts'obd386982015-05-17 20:34:58 -04007060#: misc/uuidd.c:271
Eric Sandeen032eafe2012-07-28 17:48:36 -04007061#, c-format
7062msgid "uuidd daemon already running at pid %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007063msgstr "uuidd守护进程已经在运行,pid %s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007064
Theodore Ts'obd386982015-05-17 20:34:58 -04007065#: misc/uuidd.c:279
Eric Sandeen032eafe2012-07-28 17:48:36 -04007066#, c-format
7067msgid "Couldn't create unix stream socket: %s"
Tianze Wang57d69272016-08-31 23:14:17 -04007068msgstr "无法创建unix流套接字:%s"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007069
Theodore Ts'obd386982015-05-17 20:34:58 -04007070#: misc/uuidd.c:308
Eric Sandeen032eafe2012-07-28 17:48:36 -04007071#, c-format
7072msgid "Couldn't bind unix socket %s: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007073msgstr "无法绑定unix套接字%s:%s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007074
Theodore Ts'obd386982015-05-17 20:34:58 -04007075#: misc/uuidd.c:316
Eric Sandeen032eafe2012-07-28 17:48:36 -04007076#, c-format
7077msgid "Couldn't listen on unix socket %s: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007078msgstr "无法监听unix套接字%s:%s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007079
Theodore Ts'obd386982015-05-17 20:34:58 -04007080#: misc/uuidd.c:354
Tianze Wang57d69272016-08-31 23:14:17 -04007081#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04007082msgid "Error reading from client, len = %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007083msgstr "读取客户端内容出错,内容长度 = %d\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007084
Theodore Ts'obd386982015-05-17 20:34:58 -04007085#: misc/uuidd.c:362
Eric Sandeen032eafe2012-07-28 17:48:36 -04007086#, c-format
7087msgid "operation %d, incoming num = %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007088msgstr "操作 %d,传入值 = %d\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007089
Theodore Ts'obd386982015-05-17 20:34:58 -04007090#: misc/uuidd.c:381
Eric Sandeen032eafe2012-07-28 17:48:36 -04007091#, c-format
7092msgid "Generated time UUID: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007093msgstr "已生成时间UUID:%s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007094
Theodore Ts'obd386982015-05-17 20:34:58 -04007095#: misc/uuidd.c:391
Eric Sandeen032eafe2012-07-28 17:48:36 -04007096#, c-format
7097msgid "Generated random UUID: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007098msgstr "已生成随机数UUID:%s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007099
Theodore Ts'obd386982015-05-17 20:34:58 -04007100#: misc/uuidd.c:400
Eric Sandeen032eafe2012-07-28 17:48:36 -04007101#, c-format
7102msgid "Generated time UUID %s and subsequent UUID\n"
7103msgid_plural "Generated time UUID %s and %d subsequent UUIDs\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007104msgstr[0] "已生成时间UUID %s 和 %d 个后续的UUID\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007105
Theodore Ts'obd386982015-05-17 20:34:58 -04007106#: misc/uuidd.c:421
Eric Sandeen032eafe2012-07-28 17:48:36 -04007107#, c-format
7108msgid "Generated %d UUID's:\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007109msgstr "已生成 %d 个UUID:\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007110
Theodore Ts'obd386982015-05-17 20:34:58 -04007111#: misc/uuidd.c:433
Tianze Wang57d69272016-08-31 23:14:17 -04007112#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04007113msgid "Invalid operation %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007114msgstr "操作 %d 无效\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007115
Theodore Ts'obd386982015-05-17 20:34:58 -04007116#: misc/uuidd.c:477 misc/uuidd.c:499
Eric Sandeen032eafe2012-07-28 17:48:36 -04007117#, c-format
7118msgid "Bad number: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007119msgstr "错误的数量:%s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007120
Theodore Ts'obd386982015-05-17 20:34:58 -04007121#: misc/uuidd.c:534 misc/uuidd.c:563
Tianze Wang57d69272016-08-31 23:14:17 -04007122#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04007123msgid "Error calling uuidd daemon (%s): %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007124msgstr "调用uuidd守护进程(%s)时出错:%s\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007125
Theodore Ts'obd386982015-05-17 20:34:58 -04007126#: misc/uuidd.c:544
Eric Sandeen032eafe2012-07-28 17:48:36 -04007127#, c-format
7128msgid "%s and subsequent UUID\n"
7129msgid_plural "%s and subsequent %d UUIDs\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007130msgstr[0] "%s 和后续 %d 个UUID\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007131
Theodore Ts'obd386982015-05-17 20:34:58 -04007132#: misc/uuidd.c:548
Eric Sandeen032eafe2012-07-28 17:48:36 -04007133msgid "List of UUID's:\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007134msgstr "UUID列表:\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007135
Theodore Ts'obd386982015-05-17 20:34:58 -04007136#: misc/uuidd.c:569
Eric Sandeen032eafe2012-07-28 17:48:36 -04007137#, c-format
7138msgid "Unexpected reply length from server %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007139msgstr "服务器 %d 返回了长度异常的内容\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007140
Theodore Ts'obd386982015-05-17 20:34:58 -04007141#: misc/uuidd.c:586
Eric Sandeen032eafe2012-07-28 17:48:36 -04007142#, c-format
7143msgid "Couldn't kill uuidd running at pid %d: %s\n"
7144msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007145"无法杀死pid为 %d 的uuidd进程:%s\n"
7146"\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007147
Theodore Ts'obd386982015-05-17 20:34:58 -04007148#: misc/uuidd.c:592
Eric Sandeen032eafe2012-07-28 17:48:36 -04007149#, c-format
7150msgid "Killed uuidd running at pid %d\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007151msgstr "已杀死pid为 %d 的uuidd进程\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007152
7153#: misc/uuidgen.c:32
Theodore Ts'of722c132009-04-21 22:09:01 -04007154#, c-format
7155msgid "Usage: %s [-r] [-t]\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007156msgstr "用法:%s [-r] [-t]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007157
Eric Sandeen032eafe2012-07-28 17:48:36 -04007158#: resize/extent.c:202
Theodore Ts'of722c132009-04-21 22:09:01 -04007159msgid "# Extent dump:\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007160msgstr "# Extent转储:\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007161
Eric Sandeen032eafe2012-07-28 17:48:36 -04007162#: resize/extent.c:203
Theodore Ts'of722c132009-04-21 22:09:01 -04007163#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04007164msgid "#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007165msgstr "#\t数量=%llu,大小=%llu,指针=%llu,按序=%llu\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007166
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007167#: resize/main.c:49
Theodore Ts'o89128f82018-01-01 19:36:37 -05007168#, fuzzy, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04007169msgid ""
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05007170"Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] device [-b|-s|new_size] "
Theodore Ts'o89128f82018-01-01 19:36:37 -05007171"[-S RAID-stride] [-z undo_file]\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007172"\n"
7173msgstr ""
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05007174"用法:%s [-d 调试标志] [-f] [-F] [-M] [-P] [-p] 设备 [-b|-s|新大小] [-z 撤销"
7175"文件]\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007176"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007177
Theodore Ts'o89128f82018-01-01 19:36:37 -05007178#: resize/main.c:73
Theodore Ts'of722c132009-04-21 22:09:01 -04007179msgid "Extending the inode table"
7180msgstr "正在扩充inode表"
7181
Theodore Ts'o89128f82018-01-01 19:36:37 -05007182#: resize/main.c:76
Theodore Ts'of722c132009-04-21 22:09:01 -04007183msgid "Relocating blocks"
7184msgstr "正在重定位块"
7185
Theodore Ts'o89128f82018-01-01 19:36:37 -05007186#: resize/main.c:79
Theodore Ts'of722c132009-04-21 22:09:01 -04007187msgid "Scanning inode table"
7188msgstr "正在扫描inode表"
7189
Theodore Ts'o89128f82018-01-01 19:36:37 -05007190#: resize/main.c:82
Theodore Ts'of722c132009-04-21 22:09:01 -04007191msgid "Updating inode references"
Dark Raven3be22a82010-04-19 16:59:03 -04007192msgstr "正在更新inode引用"
Theodore Ts'of722c132009-04-21 22:09:01 -04007193
Theodore Ts'o89128f82018-01-01 19:36:37 -05007194#: resize/main.c:85
Theodore Ts'of722c132009-04-21 22:09:01 -04007195msgid "Moving inode table"
Tianze Wang57d69272016-08-31 23:14:17 -04007196msgstr "正在移动inode表"
Theodore Ts'of722c132009-04-21 22:09:01 -04007197
Theodore Ts'o89128f82018-01-01 19:36:37 -05007198#: resize/main.c:88
Theodore Ts'of722c132009-04-21 22:09:01 -04007199msgid "Unknown pass?!?"
Tianze Wang57d69272016-08-31 23:14:17 -04007200msgstr "其他步骤"
Theodore Ts'of722c132009-04-21 22:09:01 -04007201
Theodore Ts'o89128f82018-01-01 19:36:37 -05007202#: resize/main.c:91
Theodore Ts'of722c132009-04-21 22:09:01 -04007203#, c-format
7204msgid "Begin pass %d (max = %lu)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007205msgstr "开始第 %d 步(共 %lu 步)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007206
Theodore Ts'o89128f82018-01-01 19:36:37 -05007207#: resize/main.c:163
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007208msgid ""
7209"\n"
7210"Resizing bigalloc file systems has not been fully tested. Proceed at\n"
7211"your own risk! Use the force option if you want to go ahead anyway.\n"
7212"\n"
7213msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007214"\n"
7215"改变bigalloc文件系统的大小尚未被充分测试。你需要承担可能的风险!\n"
7216"如果你希望继续,请使用强制选项。\n"
7217"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007218
Theodore Ts'o89128f82018-01-01 19:36:37 -05007219#: resize/main.c:366
Theodore Ts'of722c132009-04-21 22:09:01 -04007220#, c-format
7221msgid "while opening %s"
7222msgstr "打开%s时"
7223
Theodore Ts'o89128f82018-01-01 19:36:37 -05007224#: resize/main.c:374
Dark Raven31a48472009-05-25 22:45:42 -04007225#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04007226msgid "while getting stat information for %s"
Dark Raven31a48472009-05-25 22:45:42 -04007227msgstr "获取%s的stat信息时出错。"
Theodore Ts'of722c132009-04-21 22:09:01 -04007228
Theodore Ts'o89128f82018-01-01 19:36:37 -05007229#: resize/main.c:451
Theodore Ts'of722c132009-04-21 22:09:01 -04007230#, c-format
7231msgid ""
7232"Please run 'e2fsck -f %s' first.\n"
7233"\n"
7234msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007235"请先运行“e2fsck -f %s”。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007236"\n"
7237
Theodore Ts'o89128f82018-01-01 19:36:37 -05007238#: resize/main.c:470
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007239#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04007240msgid "Estimated minimum size of the filesystem: %llu\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007241msgstr "预计文件系统的最小尺寸:%llu\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007242
Theodore Ts'o89128f82018-01-01 19:36:37 -05007243#: resize/main.c:507
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007244#, c-format
7245msgid "Invalid new size: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007246msgstr "无效的新大小: %s\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007247
Theodore Ts'o89128f82018-01-01 19:36:37 -05007248#: resize/main.c:526
Eric Sandeen032eafe2012-07-28 17:48:36 -04007249msgid "New size too large to be expressed in 32 bits\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007250msgstr "新大小太大,无法用32位数表示\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007251
Theodore Ts'o89128f82018-01-01 19:36:37 -05007252#: resize/main.c:534
Eric Sandeen032eafe2012-07-28 17:48:36 -04007253#, c-format
7254msgid "New size smaller than minimum (%llu)\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007255msgstr "新大小不能低于此最小值:%llu\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007256
Theodore Ts'o89128f82018-01-01 19:36:37 -05007257#: resize/main.c:540
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007258msgid "Invalid stride length"
Tianze Wang57d69272016-08-31 23:14:17 -04007259msgstr "无效的步长度"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007260
Theodore Ts'o89128f82018-01-01 19:36:37 -05007261#: resize/main.c:564
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007262#, c-format
7263msgid ""
Eric Sandeen032eafe2012-07-28 17:48:36 -04007264"The containing partition (or device) is only %llu (%dk) blocks.\n"
7265"You requested a new size of %llu blocks.\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007266"\n"
7267msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007268"指定的分区(或设备)仅有 %llu 个块(每块为 %dk),\n"
7269"但你却指定新大小为 %llu 个块。\n"
7270"\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007271
Theodore Ts'o89128f82018-01-01 19:36:37 -05007272#: resize/main.c:571
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007273#, c-format
7274msgid "Cannot set and unset 64bit feature.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007275msgstr "无法设置/取消设置 64 位特性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007276
Theodore Ts'o89128f82018-01-01 19:36:37 -05007277#: resize/main.c:575
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007278#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05007279msgid ""
7280"Cannot change the 64bit feature on a filesystem that is larger than 2^32 "
7281"blocks.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007282msgstr "无法在含有超过 2^32 个块的文件系统上改变 64 位特性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007283
Theodore Ts'o89128f82018-01-01 19:36:37 -05007284#: resize/main.c:581
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007285#, c-format
7286msgid "Cannot change the 64bit feature while the filesystem is mounted.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007287msgstr "无法在已挂载的文件系统上改变 64 位特性。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007288
Theodore Ts'o89128f82018-01-01 19:36:37 -05007289#: resize/main.c:587
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007290#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05007291msgid ""
7292"Please enable the extents feature with tune2fs before enabling the 64bit "
7293"feature.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007294msgstr "在启用 64 位特性前,请先执行 tune2fs 来启用 extent。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007295
Theodore Ts'o89128f82018-01-01 19:36:37 -05007296#: resize/main.c:593
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007297#, c-format
7298msgid ""
Theodore Ts'obd386982015-05-17 20:34:58 -04007299"The filesystem is already %llu (%dk) blocks long. Nothing to do!\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007300"\n"
7301msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007302"文件系统已经为 %llu 个块(每块 %dk)。无需进一步处理!\n"
7303"\n"
Theodore Ts'o296b9d62010-06-07 12:25:11 -04007304
Theodore Ts'o89128f82018-01-01 19:36:37 -05007305#: resize/main.c:600
Tianze Wang57d69272016-08-31 23:14:17 -04007306#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007307msgid "The filesystem is already 64-bit.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007308msgstr "文件系统已经为 64 位模式。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007309
Theodore Ts'o89128f82018-01-01 19:36:37 -05007310#: resize/main.c:605
Tianze Wang57d69272016-08-31 23:14:17 -04007311#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007312msgid "The filesystem is already 32-bit.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007313msgstr "文件系统已经为 32 位模式。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007314
Theodore Ts'o899425b2018-02-27 22:25:04 -05007315#: resize/main.c:613
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007316#, c-format
7317msgid "Converting the filesystem to 64-bit.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007318msgstr "将文件系统转换为 64 位。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007319
Theodore Ts'o899425b2018-02-27 22:25:04 -05007320#: resize/main.c:615
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007321#, c-format
7322msgid "Converting the filesystem to 32-bit.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007323msgstr "将文件系统转换为 32 位。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007324
Theodore Ts'o899425b2018-02-27 22:25:04 -05007325#: resize/main.c:617
Dark Raven3be22a82010-04-19 16:59:03 -04007326#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04007327msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007328msgstr "将 %s 上的文件系统调整为 %llu 个块(每块 %dk)。\n"
Dark Raven3be22a82010-04-19 16:59:03 -04007329
Theodore Ts'o899425b2018-02-27 22:25:04 -05007330#: resize/main.c:626
Dark Raven31a48472009-05-25 22:45:42 -04007331#, c-format
Theodore Ts'of722c132009-04-21 22:09:01 -04007332msgid "while trying to resize %s"
Tianze Wang57d69272016-08-31 23:14:17 -04007333msgstr "尝试调整%s的大小时"
Theodore Ts'of722c132009-04-21 22:09:01 -04007334
Theodore Ts'o899425b2018-02-27 22:25:04 -05007335#: resize/main.c:629
Dark Raven3be22a82010-04-19 16:59:03 -04007336#, c-format
7337msgid ""
7338"Please run 'e2fsck -fy %s' to fix the filesystem\n"
7339"after the aborted resize operation.\n"
7340msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007341"请在终止调整操作后运行“e2fsck -fy %s”\n"
7342"来修复文件系统。\n"
Dark Raven3be22a82010-04-19 16:59:03 -04007343
Theodore Ts'o899425b2018-02-27 22:25:04 -05007344#: resize/main.c:635
Theodore Ts'of722c132009-04-21 22:09:01 -04007345#, c-format
7346msgid ""
Theodore Ts'obd386982015-05-17 20:34:58 -04007347"The filesystem on %s is now %llu (%dk) blocks long.\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007348"\n"
7349msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007350"%s 上的文件系统现在为 %llu 个块(每块 %dk)。\n"
7351"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007352
Theodore Ts'o899425b2018-02-27 22:25:04 -05007353#: resize/main.c:650
Dark Raven3be22a82010-04-19 16:59:03 -04007354#, c-format
Theodore Ts'o930e2812009-06-29 15:08:12 -04007355msgid "while trying to truncate %s"
Tianze Wang57d69272016-08-31 23:14:17 -04007356msgstr "尝试截断 %s 时"
Theodore Ts'o930e2812009-06-29 15:08:12 -04007357
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007358#: resize/online.c:81
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007359msgid "kernel does not support online resize with sparse_super2"
Tianze Wang57d69272016-08-31 23:14:17 -04007360msgstr "内核不支持在线调整启用了sparse_super2特性的文件系统的大小"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007361
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007362#: resize/online.c:86
Theodore Ts'of722c132009-04-21 22:09:01 -04007363#, c-format
7364msgid "Filesystem at %s is mounted on %s; on-line resizing required\n"
7365msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04007366"%s 上的文件系统已被挂载于 %s;需要进行在线调整大小\n"
7367"\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007368
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007369#: resize/online.c:90
Dark Ravenc4755342011-01-26 18:54:25 -05007370msgid "On-line shrinking not supported"
Tianze Wang57d69272016-08-31 23:14:17 -04007371msgstr "不支持在线缩小块"
Theodore Ts'of722c132009-04-21 22:09:01 -04007372
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007373#: resize/online.c:114
Theodore Ts'of722c132009-04-21 22:09:01 -04007374msgid "Filesystem does not support online resizing"
Tianze Wang57d69272016-08-31 23:14:17 -04007375msgstr "文件系统不支持在线调整大小"
Theodore Ts'of722c132009-04-21 22:09:01 -04007376
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007377#: resize/online.c:122
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007378msgid "Not enough reserved gdt blocks for resizing"
Tianze Wang57d69272016-08-31 23:14:17 -04007379msgstr "没有足够的保留gdt块用于改变文件系统大小"
Theodore Ts'of722c132009-04-21 22:09:01 -04007380
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007381#: resize/online.c:129
Eric Sandeen032eafe2012-07-28 17:48:36 -04007382msgid "Kernel does not support resizing a file system this large"
Tianze Wang57d69272016-08-31 23:14:17 -04007383msgstr "内核不支持调整如此之大的文件系统"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007384
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007385#: resize/online.c:137
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007386#, c-format
7387msgid "while trying to open mountpoint %s"
Tianze Wang57d69272016-08-31 23:14:17 -04007388msgstr "尝试打开挂载点 %s 时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007389
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007390#: resize/online.c:142
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007391#, c-format
7392msgid "Old resize interface requested.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007393msgstr "使用旧版本的改变大小操作接口。\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007394
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007395#: resize/online.c:161 resize/online.c:178
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007396msgid "Permission denied to resize filesystem"
7397msgstr "没有调整文件系统大小的权限"
7398
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007399#: resize/online.c:164 resize/online.c:184
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007400msgid "While checking for on-line resizing support"
Tianze Wang57d69272016-08-31 23:14:17 -04007401msgstr "检查是否支持在线调整文件系统大小时"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007402
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007403#: resize/online.c:181
Eric Sandeen032eafe2012-07-28 17:48:36 -04007404msgid "Kernel does not support online resizing"
Tianze Wang57d69272016-08-31 23:14:17 -04007405msgstr "内核不支持在线调整大小"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007406
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007407#: resize/online.c:220
Theodore Ts'of722c132009-04-21 22:09:01 -04007408#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04007409msgid "Performing an on-line resize of %s to %llu (%dk) blocks.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007410msgstr "在线调整 %s 的大小为 %llu 块(每块为 %dk)\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007411
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04007412#: resize/online.c:230
Theodore Ts'of722c132009-04-21 22:09:01 -04007413msgid "While trying to extend the last group"
Tianze Wang57d69272016-08-31 23:14:17 -04007414msgstr "尝试扩展最后一个组时"
Theodore Ts'of722c132009-04-21 22:09:01 -04007415
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007416#: resize/online.c:277
Theodore Ts'of722c132009-04-21 22:09:01 -04007417#, c-format
7418msgid "While trying to add group #%d"
Tianze Wang57d69272016-08-31 23:14:17 -04007419msgstr "尝试添加组 #%d 时"
Theodore Ts'of722c132009-04-21 22:09:01 -04007420
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007421#: resize/online.c:288
Theodore Ts'of722c132009-04-21 22:09:01 -04007422#, c-format
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05007423msgid ""
7424"Filesystem at %s is mounted on %s, and on-line resizing is not supported on "
7425"this system.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007426msgstr "文件系统 %s 被挂载在 %s,并且这个系统不支持在线调整大小。\n"
Theodore Ts'of722c132009-04-21 22:09:01 -04007427
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04007428#: resize/resize2fs.c:759
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007429#, fuzzy, c-format
7430msgid "inodes (%llu) must be less than %u\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007431msgstr "inode数(%llu)必须小于 %u32"
Theodore Ts'of722c132009-04-21 22:09:01 -04007432
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007433#: resize/resize2fs.c:1038
Theodore Ts'of722c132009-04-21 22:09:01 -04007434msgid "reserved blocks"
Tianze Wang57d69272016-08-31 23:14:17 -04007435msgstr "保留块"
Theodore Ts'of722c132009-04-21 22:09:01 -04007436
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007437#: resize/resize2fs.c:1282
Theodore Ts'of722c132009-04-21 22:09:01 -04007438msgid "meta-data blocks"
7439msgstr "元数据块"
7440
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007441#: resize/resize2fs.c:1386 resize/resize2fs.c:2475
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007442msgid "new meta blocks"
Tianze Wang57d69272016-08-31 23:14:17 -04007443msgstr "新的元数据块"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007444
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007445#: resize/resize2fs.c:2698
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007446msgid "Should never happen! No sb in last super_sparse bg?\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007447msgstr "不应当出现的情况:最后一个分散式超级块块组中没有超级块!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007448
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007449#: resize/resize2fs.c:2703
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007450msgid "Should never happen! Unexpected old_desc in super_sparse bg?\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007451msgstr "不应当出现的情况:分散式超级块块组中有未预期的old_desc!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007452
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007453#: resize/resize2fs.c:2776
Theodore Ts'of722c132009-04-21 22:09:01 -04007454msgid "Should never happen: resize inode corrupt!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04007455msgstr "不应出现的错误:改变inode大小时发现有数据损坏!\n"
Theodore Ts'o930e2812009-06-29 15:08:12 -04007456
Eric Sandeen032eafe2012-07-28 17:48:36 -04007457#: lib/ext2fs/ext2_err.c:11
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05007458#, fuzzy
Theodore Ts'o40e66e22018-08-18 21:14:56 -04007459msgid "EXT2FS Library version 1.44.4"
Tianze Wang57d69272016-08-31 23:14:17 -04007460msgstr "EXT2FS 库版本 1.43"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007461
7462#: lib/ext2fs/ext2_err.c:12
7463msgid "Wrong magic number for ext2_filsys structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007464msgstr "ext2_filsys结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007465
7466#: lib/ext2fs/ext2_err.c:13
7467msgid "Wrong magic number for badblocks_list structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007468msgstr "badblocks_list结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007469
7470#: lib/ext2fs/ext2_err.c:14
7471msgid "Wrong magic number for badblocks_iterate structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007472msgstr "badblocks_iterate结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007473
7474#: lib/ext2fs/ext2_err.c:15
7475msgid "Wrong magic number for inode_scan structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007476msgstr "inode_scan结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007477
7478#: lib/ext2fs/ext2_err.c:16
7479msgid "Wrong magic number for io_channel structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007480msgstr "io_channel结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007481
7482#: lib/ext2fs/ext2_err.c:17
7483msgid "Wrong magic number for unix io_channel structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007484msgstr "unix io_channel结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007485
7486#: lib/ext2fs/ext2_err.c:18
7487msgid "Wrong magic number for io_manager structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007488msgstr "io_manager结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007489
7490#: lib/ext2fs/ext2_err.c:19
7491msgid "Wrong magic number for block_bitmap structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007492msgstr "block_bitmap结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007493
7494#: lib/ext2fs/ext2_err.c:20
7495msgid "Wrong magic number for inode_bitmap structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007496msgstr "inode_bitmap结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007497
7498#: lib/ext2fs/ext2_err.c:21
7499msgid "Wrong magic number for generic_bitmap structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007500msgstr "generic_bitmap结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007501
7502#: lib/ext2fs/ext2_err.c:22
7503msgid "Wrong magic number for test io_channel structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007504msgstr "测试io_channel结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007505
7506#: lib/ext2fs/ext2_err.c:23
7507msgid "Wrong magic number for directory block list structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007508msgstr "目录块列表结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007509
7510#: lib/ext2fs/ext2_err.c:24
7511msgid "Wrong magic number for icount structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007512msgstr "icount结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007513
7514#: lib/ext2fs/ext2_err.c:25
7515msgid "Wrong magic number for Powerquest io_channel structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007516msgstr "Powerquest io_channel结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007517
7518#: lib/ext2fs/ext2_err.c:26
7519msgid "Wrong magic number for ext2 file structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007520msgstr "ext2文件结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007521
7522#: lib/ext2fs/ext2_err.c:27
7523msgid "Wrong magic number for Ext2 Image Header"
Tianze Wang57d69272016-08-31 23:14:17 -04007524msgstr "ext2镜像头中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007525
7526#: lib/ext2fs/ext2_err.c:28
7527msgid "Wrong magic number for inode io_channel structure"
Tianze Wang57d69272016-08-31 23:14:17 -04007528msgstr "inode io_channel结构体中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007529
7530#: lib/ext2fs/ext2_err.c:29
7531msgid "Wrong magic number for ext4 extent handle"
Tianze Wang57d69272016-08-31 23:14:17 -04007532msgstr "ext4 extent句柄中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007533
7534#: lib/ext2fs/ext2_err.c:30
Eric Sandeen032eafe2012-07-28 17:48:36 -04007535msgid "Bad magic number in super-block"
Tianze Wang57d69272016-08-31 23:14:17 -04007536msgstr "超级块中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007537
7538#: lib/ext2fs/ext2_err.c:31
7539msgid "Filesystem revision too high"
Tianze Wang57d69272016-08-31 23:14:17 -04007540msgstr "文件系统版本太高"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007541
7542#: lib/ext2fs/ext2_err.c:32
7543msgid "Attempt to write to filesystem opened read-only"
Tianze Wang57d69272016-08-31 23:14:17 -04007544msgstr "尝试写入到只读的文件系统"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007545
7546#: lib/ext2fs/ext2_err.c:33
Eric Sandeen032eafe2012-07-28 17:48:36 -04007547msgid "Can't read group descriptors"
Tianze Wang57d69272016-08-31 23:14:17 -04007548msgstr "无法读取组描述符"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007549
7550#: lib/ext2fs/ext2_err.c:34
Eric Sandeen032eafe2012-07-28 17:48:36 -04007551msgid "Can't write group descriptors"
Tianze Wang57d69272016-08-31 23:14:17 -04007552msgstr "无法写入组描述符"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007553
7554#: lib/ext2fs/ext2_err.c:35
7555msgid "Corrupt group descriptor: bad block for block bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007556msgstr "组描述符损坏:块位图中有坏块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007557
7558#: lib/ext2fs/ext2_err.c:36
7559msgid "Corrupt group descriptor: bad block for inode bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007560msgstr "组描述符损坏:inode位图中有坏块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007561
7562#: lib/ext2fs/ext2_err.c:37
7563msgid "Corrupt group descriptor: bad block for inode table"
Tianze Wang57d69272016-08-31 23:14:17 -04007564msgstr "组描述符损坏:inode表中有坏块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007565
7566#: lib/ext2fs/ext2_err.c:38
Eric Sandeen032eafe2012-07-28 17:48:36 -04007567msgid "Can't write an inode bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007568msgstr "无法写入inode位图"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007569
7570#: lib/ext2fs/ext2_err.c:39
Eric Sandeen032eafe2012-07-28 17:48:36 -04007571msgid "Can't read an inode bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007572msgstr "无法读取inode位图"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007573
7574#: lib/ext2fs/ext2_err.c:40
Darrick J. Wong580d8a02013-10-07 09:20:28 -04007575msgid "Can't write a block bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007576msgstr "无法写入块位图"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007577
7578#: lib/ext2fs/ext2_err.c:41
Darrick J. Wongba0230f2013-12-12 12:41:58 -05007579msgid "Can't read a block bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007580msgstr "无法读取块位图"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007581
7582#: lib/ext2fs/ext2_err.c:42
Eric Sandeen032eafe2012-07-28 17:48:36 -04007583msgid "Can't write an inode table"
Tianze Wang57d69272016-08-31 23:14:17 -04007584msgstr "无法写入inode表"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007585
7586#: lib/ext2fs/ext2_err.c:43
Eric Sandeen032eafe2012-07-28 17:48:36 -04007587msgid "Can't read an inode table"
Tianze Wang57d69272016-08-31 23:14:17 -04007588msgstr "无法读取inode表"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007589
7590#: lib/ext2fs/ext2_err.c:44
7591msgid "Can't read next inode"
Tianze Wang57d69272016-08-31 23:14:17 -04007592msgstr "无法读取下一个inode"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007593
7594#: lib/ext2fs/ext2_err.c:45
7595msgid "Filesystem has unexpected block size"
Tianze Wang57d69272016-08-31 23:14:17 -04007596msgstr "文件系统的块大小异常"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007597
7598#: lib/ext2fs/ext2_err.c:46
7599msgid "EXT2 directory corrupted"
Tianze Wang57d69272016-08-31 23:14:17 -04007600msgstr "EXT2目录损坏"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007601
7602#: lib/ext2fs/ext2_err.c:47
7603msgid "Attempt to read block from filesystem resulted in short read"
Tianze Wang57d69272016-08-31 23:14:17 -04007604msgstr "尝试读取文件系统块的操作过早结束"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007605
7606#: lib/ext2fs/ext2_err.c:48
7607msgid "Attempt to write block to filesystem resulted in short write"
Tianze Wang57d69272016-08-31 23:14:17 -04007608msgstr "尝试x文件系统块的操作过早结束"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007609
7610#: lib/ext2fs/ext2_err.c:49
7611msgid "No free space in the directory"
Tianze Wang57d69272016-08-31 23:14:17 -04007612msgstr "目录中没有可用空间"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007613
7614#: lib/ext2fs/ext2_err.c:50
Eric Sandeen032eafe2012-07-28 17:48:36 -04007615msgid "Inode bitmap not loaded"
Tianze Wang57d69272016-08-31 23:14:17 -04007616msgstr "未加载inode位图"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007617
7618#: lib/ext2fs/ext2_err.c:51
Eric Sandeen032eafe2012-07-28 17:48:36 -04007619msgid "Block bitmap not loaded"
Tianze Wang57d69272016-08-31 23:14:17 -04007620msgstr "未加载块位图"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007621
7622#: lib/ext2fs/ext2_err.c:52
Eric Sandeen032eafe2012-07-28 17:48:36 -04007623msgid "Illegal inode number"
Tianze Wang57d69272016-08-31 23:14:17 -04007624msgstr "非法的inode数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007625
7626#: lib/ext2fs/ext2_err.c:53
Eric Sandeen032eafe2012-07-28 17:48:36 -04007627msgid "Illegal block number"
Tianze Wang57d69272016-08-31 23:14:17 -04007628msgstr "非法的块数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007629
7630#: lib/ext2fs/ext2_err.c:54
7631msgid "Internal error in ext2fs_expand_dir"
Tianze Wang57d69272016-08-31 23:14:17 -04007632msgstr "ext2fs_expand_dir中出现内部错误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007633
7634#: lib/ext2fs/ext2_err.c:55
7635msgid "Not enough space to build proposed filesystem"
Tianze Wang57d69272016-08-31 23:14:17 -04007636msgstr "没有足够的空间用于建立指定的文件系统"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007637
7638#: lib/ext2fs/ext2_err.c:56
7639msgid "Illegal block number passed to ext2fs_mark_block_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007640msgstr "传递给ext2fs_mark_block_bitmap的块数为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007641
7642#: lib/ext2fs/ext2_err.c:57
7643msgid "Illegal block number passed to ext2fs_unmark_block_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007644msgstr "传递给ext2fs_unmark_block_bitmap的块数为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007645
7646#: lib/ext2fs/ext2_err.c:58
7647msgid "Illegal block number passed to ext2fs_test_block_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007648msgstr "传递给ext2fs_test_block_bitmap的块数为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007649
7650#: lib/ext2fs/ext2_err.c:59
7651msgid "Illegal inode number passed to ext2fs_mark_inode_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007652msgstr "传递给ext2fs_mark_inode_bitmap的块数为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007653
7654#: lib/ext2fs/ext2_err.c:60
7655msgid "Illegal inode number passed to ext2fs_unmark_inode_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007656msgstr "传递给ext2fs_unmark_inode_bitmap的块数为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007657
7658#: lib/ext2fs/ext2_err.c:61
7659msgid "Illegal inode number passed to ext2fs_test_inode_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007660msgstr "传递给ext2fs_test_inode_bitmap的块数为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007661
7662#: lib/ext2fs/ext2_err.c:62
7663msgid "Attempt to fudge end of block bitmap past the real end"
Tianze Wang57d69272016-08-31 23:14:17 -04007664msgstr "尝试填充块位图尾部时超过了真实边界"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007665
7666#: lib/ext2fs/ext2_err.c:63
7667msgid "Attempt to fudge end of inode bitmap past the real end"
Tianze Wang57d69272016-08-31 23:14:17 -04007668msgstr "尝试填充inode位图尾部时超过了真实边界"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007669
7670#: lib/ext2fs/ext2_err.c:64
Eric Sandeen032eafe2012-07-28 17:48:36 -04007671msgid "Illegal indirect block found"
Tianze Wang57d69272016-08-31 23:14:17 -04007672msgstr "发现非法的链接块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007673
7674#: lib/ext2fs/ext2_err.c:65
7675msgid "Illegal doubly indirect block found"
Tianze Wang57d69272016-08-31 23:14:17 -04007676msgstr "发现了非法的二次链接块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007677
7678#: lib/ext2fs/ext2_err.c:66
7679msgid "Illegal triply indirect block found"
Tianze Wang57d69272016-08-31 23:14:17 -04007680msgstr "发现非法的三次链接块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007681
7682#: lib/ext2fs/ext2_err.c:67
7683msgid "Block bitmaps are not the same"
Tianze Wang57d69272016-08-31 23:14:17 -04007684msgstr "块位图不相同"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007685
7686#: lib/ext2fs/ext2_err.c:68
7687msgid "Inode bitmaps are not the same"
Tianze Wang57d69272016-08-31 23:14:17 -04007688msgstr "inode位图不相同"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007689
7690#: lib/ext2fs/ext2_err.c:69
7691msgid "Illegal or malformed device name"
Tianze Wang57d69272016-08-31 23:14:17 -04007692msgstr "设备名非法或格式错误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007693
7694#: lib/ext2fs/ext2_err.c:70
7695msgid "A block group is missing an inode table"
Tianze Wang57d69272016-08-31 23:14:17 -04007696msgstr "Inode表中缺少一个块组"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007697
7698#: lib/ext2fs/ext2_err.c:71
7699msgid "The ext2 superblock is corrupt"
Tianze Wang57d69272016-08-31 23:14:17 -04007700msgstr "ext2超级块损坏"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007701
7702#: lib/ext2fs/ext2_err.c:72
7703msgid "Illegal generic bit number passed to ext2fs_mark_generic_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007704msgstr "传递给ext2fs_mark_generic_bitmap的通用位数为为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007705
7706#: lib/ext2fs/ext2_err.c:73
7707msgid "Illegal generic bit number passed to ext2fs_unmark_generic_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007708msgstr "传递给ext2fs_unmark_generic_bitmap的通用位数为为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007709
7710#: lib/ext2fs/ext2_err.c:74
7711msgid "Illegal generic bit number passed to ext2fs_test_generic_bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007712msgstr "传递给ext2fs_test_generic_bitmap的通用位数为为非法值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007713
7714#: lib/ext2fs/ext2_err.c:75
7715msgid "Too many symbolic links encountered."
Tianze Wang57d69272016-08-31 23:14:17 -04007716msgstr "发现了过多的符号链接。"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007717
7718#: lib/ext2fs/ext2_err.c:76
7719msgid "The callback function will not handle this case"
Tianze Wang57d69272016-08-31 23:14:17 -04007720msgstr "回调函数将不会处理这个情况"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007721
7722#: lib/ext2fs/ext2_err.c:77
7723msgid "The inode is from a bad block in the inode table"
Tianze Wang57d69272016-08-31 23:14:17 -04007724msgstr "该inode来自inode表中的一个坏块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007725
7726#: lib/ext2fs/ext2_err.c:78
Eric Sandeen032eafe2012-07-28 17:48:36 -04007727msgid "Filesystem has unsupported feature(s)"
Tianze Wang57d69272016-08-31 23:14:17 -04007728msgstr "文件系统有不被支持的特性"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007729
7730#: lib/ext2fs/ext2_err.c:79
Eric Sandeen032eafe2012-07-28 17:48:36 -04007731msgid "Filesystem has unsupported read-only feature(s)"
Tianze Wang57d69272016-08-31 23:14:17 -04007732msgstr "文件系统有不被支持的只读特性"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007733
7734#: lib/ext2fs/ext2_err.c:80
7735msgid "IO Channel failed to seek on read or write"
Tianze Wang57d69272016-08-31 23:14:17 -04007736msgstr "I/O通道定位读取/写入位置时失败"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007737
7738#: lib/ext2fs/ext2_err.c:81
Eric Sandeen032eafe2012-07-28 17:48:36 -04007739msgid "Memory allocation failed"
Tianze Wang57d69272016-08-31 23:14:17 -04007740msgstr "内存分配出错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007741
7742#: lib/ext2fs/ext2_err.c:82
7743msgid "Invalid argument passed to ext2 library"
Tianze Wang57d69272016-08-31 23:14:17 -04007744msgstr "传给了ext2库无效的参数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007745
7746#: lib/ext2fs/ext2_err.c:83
Eric Sandeen032eafe2012-07-28 17:48:36 -04007747msgid "Could not allocate block in ext2 filesystem"
Tianze Wang57d69272016-08-31 23:14:17 -04007748msgstr "无法为ext2文件系统分配块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007749
7750#: lib/ext2fs/ext2_err.c:84
Eric Sandeen032eafe2012-07-28 17:48:36 -04007751msgid "Could not allocate inode in ext2 filesystem"
Tianze Wang57d69272016-08-31 23:14:17 -04007752msgstr "无法为ext2文件系统分配inode"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007753
7754#: lib/ext2fs/ext2_err.c:85
7755msgid "Ext2 inode is not a directory"
Tianze Wang57d69272016-08-31 23:14:17 -04007756msgstr "ext2 inode不为目录"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007757
7758#: lib/ext2fs/ext2_err.c:86
7759msgid "Too many references in table"
Tianze Wang57d69272016-08-31 23:14:17 -04007760msgstr "表中有太多的引用"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007761
7762#: lib/ext2fs/ext2_err.c:87
7763msgid "File not found by ext2_lookup"
Tianze Wang57d69272016-08-31 23:14:17 -04007764msgstr "ext2_lookup未发现文件"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007765
7766#: lib/ext2fs/ext2_err.c:88
7767msgid "File open read-only"
Tianze Wang57d69272016-08-31 23:14:17 -04007768msgstr "文件以只读模式打开"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007769
7770#: lib/ext2fs/ext2_err.c:89
Eric Sandeen032eafe2012-07-28 17:48:36 -04007771msgid "Ext2 directory block not found"
Tianze Wang57d69272016-08-31 23:14:17 -04007772msgstr "未找到ext2目录块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007773
7774#: lib/ext2fs/ext2_err.c:90
7775msgid "Ext2 directory already exists"
Tianze Wang57d69272016-08-31 23:14:17 -04007776msgstr "ext2目录块已存在"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007777
7778#: lib/ext2fs/ext2_err.c:91
7779msgid "Unimplemented ext2 library function"
Tianze Wang57d69272016-08-31 23:14:17 -04007780msgstr "未实现的ext2库函数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007781
7782#: lib/ext2fs/ext2_err.c:92
7783msgid "User cancel requested"
Tianze Wang57d69272016-08-31 23:14:17 -04007784msgstr "用户取消了操作"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007785
7786#: lib/ext2fs/ext2_err.c:93
7787msgid "Ext2 file too big"
Tianze Wang57d69272016-08-31 23:14:17 -04007788msgstr "ext2文件太大"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007789
7790#: lib/ext2fs/ext2_err.c:94
7791msgid "Supplied journal device not a block device"
Tianze Wang57d69272016-08-31 23:14:17 -04007792msgstr "指定的日志设备不是块设备"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007793
7794#: lib/ext2fs/ext2_err.c:95
Eric Sandeen032eafe2012-07-28 17:48:36 -04007795msgid "Journal superblock not found"
Tianze Wang57d69272016-08-31 23:14:17 -04007796msgstr "日志超级块未找到"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007797
7798#: lib/ext2fs/ext2_err.c:96
7799msgid "Journal must be at least 1024 blocks"
Tianze Wang57d69272016-08-31 23:14:17 -04007800msgstr "日志大小至少为1024个块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007801
7802#: lib/ext2fs/ext2_err.c:97
7803msgid "Unsupported journal version"
Tianze Wang57d69272016-08-31 23:14:17 -04007804msgstr "不支持的日志版本"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007805
7806#: lib/ext2fs/ext2_err.c:98
7807msgid "Error loading external journal"
Tianze Wang57d69272016-08-31 23:14:17 -04007808msgstr "尝试打开外部日志时"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007809
7810#: lib/ext2fs/ext2_err.c:99
Eric Sandeen032eafe2012-07-28 17:48:36 -04007811msgid "Journal not found"
Tianze Wang57d69272016-08-31 23:14:17 -04007812msgstr "日志未找到"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007813
7814#: lib/ext2fs/ext2_err.c:100
7815msgid "Directory hash unsupported"
Tianze Wang57d69272016-08-31 23:14:17 -04007816msgstr "不支持目录hash"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007817
7818#: lib/ext2fs/ext2_err.c:101
Eric Sandeen032eafe2012-07-28 17:48:36 -04007819msgid "Illegal extended attribute block number"
Tianze Wang57d69272016-08-31 23:14:17 -04007820msgstr "非法的扩展属性块号"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007821
7822#: lib/ext2fs/ext2_err.c:102
7823msgid "Cannot create filesystem with requested number of inodes"
Tianze Wang57d69272016-08-31 23:14:17 -04007824msgstr "无法创建含有指定inode数的文件系统"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007825
7826#: lib/ext2fs/ext2_err.c:103
7827msgid "E2image snapshot not in use"
Tianze Wang57d69272016-08-31 23:14:17 -04007828msgstr "未使用e2image快照"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007829
7830#: lib/ext2fs/ext2_err.c:104
Eric Sandeen032eafe2012-07-28 17:48:36 -04007831msgid "Too many reserved group descriptor blocks"
Tianze Wang57d69272016-08-31 23:14:17 -04007832msgstr "组描述符的保留块太多"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007833
7834#: lib/ext2fs/ext2_err.c:105
7835msgid "Resize inode is corrupt"
Tianze Wang57d69272016-08-31 23:14:17 -04007836msgstr "改变inode大小时有数据损坏"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007837
7838#: lib/ext2fs/ext2_err.c:106
7839msgid "Tried to set block bmap with missing indirect block"
Tianze Wang57d69272016-08-31 23:14:17 -04007840msgstr "尝试在块位图中设置丢失的链接块"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007841
7842#: lib/ext2fs/ext2_err.c:107
7843msgid "TDB: Success"
Tianze Wang57d69272016-08-31 23:14:17 -04007844msgstr "TDB:成功"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007845
7846#: lib/ext2fs/ext2_err.c:108
7847msgid "TDB: Corrupt database"
Tianze Wang57d69272016-08-31 23:14:17 -04007848msgstr "TDB:数据库损坏"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007849
7850#: lib/ext2fs/ext2_err.c:109
7851msgid "TDB: IO Error"
Tianze Wang57d69272016-08-31 23:14:17 -04007852msgstr "TDB:I/O错误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007853
7854#: lib/ext2fs/ext2_err.c:110
7855msgid "TDB: Locking error"
Tianze Wang57d69272016-08-31 23:14:17 -04007856msgstr "TDB:锁定错误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007857
7858#: lib/ext2fs/ext2_err.c:111
7859msgid "TDB: Out of memory"
Tianze Wang57d69272016-08-31 23:14:17 -04007860msgstr "TDB:内存耗尽"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007861
7862#: lib/ext2fs/ext2_err.c:112
7863msgid "TDB: Record exists"
Tianze Wang57d69272016-08-31 23:14:17 -04007864msgstr "TDB:记录已存在"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007865
7866#: lib/ext2fs/ext2_err.c:113
7867msgid "TDB: Lock exists on other keys"
Tianze Wang57d69272016-08-31 23:14:17 -04007868msgstr "TDB:锁已存在于其他键"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007869
7870#: lib/ext2fs/ext2_err.c:114
7871msgid "TDB: Invalid parameter"
Tianze Wang57d69272016-08-31 23:14:17 -04007872msgstr "TDB:无效的参数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007873
7874#: lib/ext2fs/ext2_err.c:115
7875msgid "TDB: Record does not exist"
Tianze Wang57d69272016-08-31 23:14:17 -04007876msgstr "TDB:记录不存在"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007877
7878#: lib/ext2fs/ext2_err.c:116
7879msgid "TDB: Write not permitted"
Tianze Wang57d69272016-08-31 23:14:17 -04007880msgstr "TDB:不允许写入"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007881
7882#: lib/ext2fs/ext2_err.c:117
7883msgid "Ext2fs directory block list is empty"
Tianze Wang57d69272016-08-31 23:14:17 -04007884msgstr "ext2文件系统目录块列表为空"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007885
7886#: lib/ext2fs/ext2_err.c:118
7887msgid "Attempt to modify a block mapping via a read-only block iterator"
Tianze Wang57d69272016-08-31 23:14:17 -04007888msgstr "企图通过只读的块迭代器修改块映射"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007889
7890#: lib/ext2fs/ext2_err.c:119
7891msgid "Wrong magic number for ext4 extent saved path"
Tianze Wang57d69272016-08-31 23:14:17 -04007892msgstr "ext4 extent保存路径的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007893
7894#: lib/ext2fs/ext2_err.c:120
7895msgid "Wrong magic number for 64-bit generic bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007896msgstr "64位通用位图中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007897
7898#: lib/ext2fs/ext2_err.c:121
7899msgid "Wrong magic number for 64-bit block bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007900msgstr "64位块通用位图中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007901
7902#: lib/ext2fs/ext2_err.c:122
7903msgid "Wrong magic number for 64-bit inode bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04007904msgstr "64位inode通用位图中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007905
7906#: lib/ext2fs/ext2_err.c:123
7907msgid "Wrong magic number --- RESERVED_13"
Tianze Wang57d69272016-08-31 23:14:17 -04007908msgstr "幻数错误(保留编号:13)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007909
7910#: lib/ext2fs/ext2_err.c:124
7911msgid "Wrong magic number --- RESERVED_14"
Tianze Wang57d69272016-08-31 23:14:17 -04007912msgstr "幻数错误(保留编号:14)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007913
7914#: lib/ext2fs/ext2_err.c:125
7915msgid "Wrong magic number --- RESERVED_15"
Tianze Wang57d69272016-08-31 23:14:17 -04007916msgstr "幻数错误(保留编号:15)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007917
7918#: lib/ext2fs/ext2_err.c:126
7919msgid "Wrong magic number --- RESERVED_16"
Tianze Wang57d69272016-08-31 23:14:17 -04007920msgstr "幻数错误(保留编号:16)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007921
7922#: lib/ext2fs/ext2_err.c:127
7923msgid "Wrong magic number --- RESERVED_17"
Tianze Wang57d69272016-08-31 23:14:17 -04007924msgstr "幻数错误(保留编号:17)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007925
7926#: lib/ext2fs/ext2_err.c:128
7927msgid "Wrong magic number --- RESERVED_18"
Tianze Wang57d69272016-08-31 23:14:17 -04007928msgstr "幻数错误(保留编号:18)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007929
7930#: lib/ext2fs/ext2_err.c:129
7931msgid "Wrong magic number --- RESERVED_19"
Tianze Wang57d69272016-08-31 23:14:17 -04007932msgstr "幻数错误(保留编号:19)"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007933
7934#: lib/ext2fs/ext2_err.c:130
7935msgid "Corrupt extent header"
Tianze Wang57d69272016-08-31 23:14:17 -04007936msgstr "extent头损坏"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007937
7938#: lib/ext2fs/ext2_err.c:131
7939msgid "Corrupt extent index"
Tianze Wang57d69272016-08-31 23:14:17 -04007940msgstr "extent索引损坏"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007941
7942#: lib/ext2fs/ext2_err.c:132
7943msgid "Corrupt extent"
Tianze Wang57d69272016-08-31 23:14:17 -04007944msgstr "extent损坏"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007945
7946#: lib/ext2fs/ext2_err.c:133
7947msgid "No free space in extent map"
Tianze Wang57d69272016-08-31 23:14:17 -04007948msgstr "extent映射中没有可用空间"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007949
7950#: lib/ext2fs/ext2_err.c:134
7951msgid "Inode does not use extents"
Tianze Wang57d69272016-08-31 23:14:17 -04007952msgstr "inode未使用extent"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007953
7954#: lib/ext2fs/ext2_err.c:135
Eric Sandeen032eafe2012-07-28 17:48:36 -04007955msgid "No 'next' extent"
Tianze Wang57d69272016-08-31 23:14:17 -04007956msgstr "找不到“后一个”extent"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007957
7958#: lib/ext2fs/ext2_err.c:136
7959msgid "No 'previous' extent"
Tianze Wang57d69272016-08-31 23:14:17 -04007960msgstr "找不到“前一个”extent"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007961
7962#: lib/ext2fs/ext2_err.c:137
7963msgid "No 'up' extent"
Tianze Wang57d69272016-08-31 23:14:17 -04007964msgstr "找不到“上一个”extent"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007965
7966#: lib/ext2fs/ext2_err.c:138
7967msgid "No 'down' extent"
Tianze Wang57d69272016-08-31 23:14:17 -04007968msgstr "找不到“下一个”extent"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007969
7970#: lib/ext2fs/ext2_err.c:139
7971msgid "No current node"
Tianze Wang57d69272016-08-31 23:14:17 -04007972msgstr "当前节点不存在"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007973
7974#: lib/ext2fs/ext2_err.c:140
7975msgid "Ext2fs operation not supported"
Tianze Wang57d69272016-08-31 23:14:17 -04007976msgstr "ext2文件系统操作不支持"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007977
7978#: lib/ext2fs/ext2_err.c:141
7979msgid "No room to insert extent in node"
Tianze Wang57d69272016-08-31 23:14:17 -04007980msgstr "没有足够空间用于插入extent到节点"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007981
7982#: lib/ext2fs/ext2_err.c:142
7983msgid "Splitting would result in empty node"
Tianze Wang57d69272016-08-31 23:14:17 -04007984msgstr "分割操作将导致空节点产生"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007985
7986#: lib/ext2fs/ext2_err.c:143
Eric Sandeen032eafe2012-07-28 17:48:36 -04007987msgid "Extent not found"
Tianze Wang57d69272016-08-31 23:14:17 -04007988msgstr "未找到extent"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007989
7990#: lib/ext2fs/ext2_err.c:144
7991msgid "Operation not supported for inodes containing extents"
Tianze Wang57d69272016-08-31 23:14:17 -04007992msgstr "含有extent的inode不支持此操作"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007993
7994#: lib/ext2fs/ext2_err.c:145
7995msgid "Extent length is invalid"
Tianze Wang57d69272016-08-31 23:14:17 -04007996msgstr "extent长度无效"
Eric Sandeen032eafe2012-07-28 17:48:36 -04007997
7998#: lib/ext2fs/ext2_err.c:146
7999msgid "I/O Channel does not support 64-bit block numbers"
Tianze Wang57d69272016-08-31 23:14:17 -04008000msgstr "I/O通道不支持64位表示的块数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008001
8002#: lib/ext2fs/ext2_err.c:147
8003msgid "Can't check if filesystem is mounted due to missing mtab file"
Tianze Wang57d69272016-08-31 23:14:17 -04008004msgstr "由于mtab文件缺失,无法检验文件系统是否已挂载"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008005
8006#: lib/ext2fs/ext2_err.c:148
8007msgid "Filesystem too large to use legacy bitmaps"
Tianze Wang57d69272016-08-31 23:14:17 -04008008msgstr "文件系统太大,无法使用传统位图"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008009
8010#: lib/ext2fs/ext2_err.c:149
8011msgid "MMP: invalid magic number"
Tianze Wang57d69272016-08-31 23:14:17 -04008012msgstr "MMP:无效的幻数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008013
8014#: lib/ext2fs/ext2_err.c:150
8015msgid "MMP: device currently active"
Tianze Wang57d69272016-08-31 23:14:17 -04008016msgstr "MMP:设备当前为活动状态"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008017
8018#: lib/ext2fs/ext2_err.c:151
Theodore Ts'o40e66e22018-08-18 21:14:56 -04008019#, fuzzy
8020msgid "MMP: e2fsck being run"
Tianze Wang57d69272016-08-31 23:14:17 -04008021msgstr "MMP:fsck正在运行"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008022
8023#: lib/ext2fs/ext2_err.c:152
8024msgid "MMP: block number beyond filesystem range"
Tianze Wang57d69272016-08-31 23:14:17 -04008025msgstr "MMP:块编号超出文件系统边界"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008026
8027#: lib/ext2fs/ext2_err.c:153
8028msgid "MMP: undergoing an unknown operation"
Tianze Wang57d69272016-08-31 23:14:17 -04008029msgstr "MMP:正在进行未知的操作"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008030
8031#: lib/ext2fs/ext2_err.c:154
8032msgid "MMP: filesystem still in use"
Tianze Wang57d69272016-08-31 23:14:17 -04008033msgstr "MMP:文件系统正在被使用"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008034
8035#: lib/ext2fs/ext2_err.c:155
8036msgid "MMP: open with O_DIRECT failed"
Tianze Wang57d69272016-08-31 23:14:17 -04008037msgstr "MMP:使用O_DIRECT标志打开失败"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008038
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008039#: lib/ext2fs/ext2_err.c:156
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008040msgid "Block group descriptor size incorrect"
Tianze Wang57d69272016-08-31 23:14:17 -04008041msgstr "块组描述符大小错误"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008042
8043#: lib/ext2fs/ext2_err.c:157
8044msgid "Inode checksum does not match inode"
Tianze Wang57d69272016-08-31 23:14:17 -04008045msgstr "inode校验值与inode自身不符"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008046
8047#: lib/ext2fs/ext2_err.c:158
8048msgid "Inode bitmap checksum does not match bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04008049msgstr "inode位图校验值与位图自身不符"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008050
8051#: lib/ext2fs/ext2_err.c:159
8052msgid "Extent block checksum does not match extent block"
Tianze Wang57d69272016-08-31 23:14:17 -04008053msgstr "extent块校验值与extent块自身不符"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008054
8055#: lib/ext2fs/ext2_err.c:160
8056msgid "Directory block does not have space for checksum"
Tianze Wang57d69272016-08-31 23:14:17 -04008057msgstr "目录块中没有用于存储校验值的空间"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008058
8059#: lib/ext2fs/ext2_err.c:161
8060msgid "Directory block checksum does not match directory block"
Tianze Wang57d69272016-08-31 23:14:17 -04008061msgstr "目录块校验值与目录块自身不符"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008062
8063#: lib/ext2fs/ext2_err.c:162
8064msgid "Extended attribute block checksum does not match block"
Tianze Wang57d69272016-08-31 23:14:17 -04008065msgstr "扩展属性块校验值与属性块自身不符"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008066
8067#: lib/ext2fs/ext2_err.c:163
8068msgid "Superblock checksum does not match superblock"
Tianze Wang57d69272016-08-31 23:14:17 -04008069msgstr "i超级块校验值与超级块自身不符"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008070
8071#: lib/ext2fs/ext2_err.c:164
8072msgid "Unknown checksum algorithm"
Tianze Wang57d69272016-08-31 23:14:17 -04008073msgstr "位置的校验值算法"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008074
8075#: lib/ext2fs/ext2_err.c:165
Theodore Ts'o40e66e22018-08-18 21:14:56 -04008076#, fuzzy
8077msgid "MMP block checksum does not match"
Tianze Wang57d69272016-08-31 23:14:17 -04008078msgstr "MMP块校验值与MMP块自身不符"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008079
8080#: lib/ext2fs/ext2_err.c:166
8081msgid "Ext2 file already exists"
Tianze Wang57d69272016-08-31 23:14:17 -04008082msgstr "ext2文件已存在"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008083
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008084#: lib/ext2fs/ext2_err.c:167
8085msgid "Block bitmap checksum does not match bitmap"
Tianze Wang57d69272016-08-31 23:14:17 -04008086msgstr "块位图校验值与位图自身不符"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008087
8088#: lib/ext2fs/ext2_err.c:168
8089msgid "Cannot iterate data blocks of an inode containing inline data"
Tianze Wang57d69272016-08-31 23:14:17 -04008090msgstr "无法对含有内联数据的 inode 中的数据块进行迭代"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008091
8092#: lib/ext2fs/ext2_err.c:169
8093msgid "Extended attribute has an invalid name length"
Tianze Wang57d69272016-08-31 23:14:17 -04008094msgstr "扩展属性名的长度无效"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008095
8096#: lib/ext2fs/ext2_err.c:170
8097msgid "Extended attribute has an invalid value length"
Tianze Wang57d69272016-08-31 23:14:17 -04008098msgstr "扩展属性名的值无效"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008099
8100#: lib/ext2fs/ext2_err.c:171
8101msgid "Extended attribute has an incorrect hash"
Tianze Wang57d69272016-08-31 23:14:17 -04008102msgstr "扩展属性块的校验值错误"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008103
8104#: lib/ext2fs/ext2_err.c:172
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008105msgid "Extended attribute block has a bad header"
Tianze Wang57d69272016-08-31 23:14:17 -04008106msgstr "扩展属性块的头部有误"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008107
8108#: lib/ext2fs/ext2_err.c:173
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008109msgid "Extended attribute key not found"
Tianze Wang57d69272016-08-31 23:14:17 -04008110msgstr "找不到扩展属性的键"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008111
8112#: lib/ext2fs/ext2_err.c:174
8113msgid "Insufficient space to store extended attribute data"
Tianze Wang57d69272016-08-31 23:14:17 -04008114msgstr "用于存储扩增属性数据的空间不足"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008115
8116#: lib/ext2fs/ext2_err.c:175
8117msgid "Filesystem is missing ext_attr or inline_data feature"
Tianze Wang57d69272016-08-31 23:14:17 -04008118msgstr "文件系统缺少 ext_attr 或 inline_data feature 特性"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008119
8120#: lib/ext2fs/ext2_err.c:176
8121msgid "Inode doesn't have inline data"
Tianze Wang57d69272016-08-31 23:14:17 -04008122msgstr "Inode 中不含内联数据"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008123
8124#: lib/ext2fs/ext2_err.c:177
8125msgid "No block for an inode with inline data"
Tianze Wang57d69272016-08-31 23:14:17 -04008126msgstr "含有内联数据的 inode 不含块"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008127
8128#: lib/ext2fs/ext2_err.c:178
8129msgid "No free space in inline data"
Tianze Wang57d69272016-08-31 23:14:17 -04008130msgstr "没有足够空间用于存储内联数据"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008131
8132#: lib/ext2fs/ext2_err.c:179
8133msgid "Wrong magic number for extended attribute structure"
Tianze Wang57d69272016-08-31 23:14:17 -04008134msgstr "扩增属性结构体中的幻数有错"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008135
8136#: lib/ext2fs/ext2_err.c:180
8137msgid "Inode seems to contain garbage"
Tianze Wang57d69272016-08-31 23:14:17 -04008138msgstr "Inode 中含有无效数据"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008139
8140#: lib/ext2fs/ext2_err.c:181
8141msgid "Extended attribute has an invalid value offset"
Tianze Wang57d69272016-08-31 23:14:17 -04008142msgstr "扩增属性中含有无效的偏移量"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008143
8144#: lib/ext2fs/ext2_err.c:182
8145msgid "Journal flags inconsistent"
Tianze Wang57d69272016-08-31 23:14:17 -04008146msgstr "日志标志不一致"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008147
8148#: lib/ext2fs/ext2_err.c:183
8149msgid "Undo file corrupt"
Tianze Wang57d69272016-08-31 23:14:17 -04008150msgstr "撤销文件损坏"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008151
8152#: lib/ext2fs/ext2_err.c:184
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008153msgid "Wrong undo file for this filesystem"
Tianze Wang57d69272016-08-31 23:14:17 -04008154msgstr "此文件系统的撤销文件有误"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008155
Theodore Ts'o48203a32016-06-08 15:45:26 -04008156#: lib/ext2fs/ext2_err.c:185
8157msgid "File system is corrupted"
Tianze Wang57d69272016-08-31 23:14:17 -04008158msgstr "文件系统已损坏"
Theodore Ts'o48203a32016-06-08 15:45:26 -04008159
8160#: lib/ext2fs/ext2_err.c:186
8161msgid "Bad CRC detected in file system"
Tianze Wang57d69272016-08-31 23:14:17 -04008162msgstr "在文件系统中检测到错误的 CRC 值"
Theodore Ts'o48203a32016-06-08 15:45:26 -04008163
8164#: lib/ext2fs/ext2_err.c:187
Theodore Ts'o48203a32016-06-08 15:45:26 -04008165msgid "The journal superblock is corrupt"
Tianze Wang57d69272016-08-31 23:14:17 -04008166msgstr "日志超级块已损坏"
Theodore Ts'o48203a32016-06-08 15:45:26 -04008167
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008168#: lib/ext2fs/ext2_err.c:188
8169#, fuzzy
8170msgid "Inode is corrupted"
8171msgstr "改变inode大小时有数据损坏"
8172
Theodore Ts'o40e66e22018-08-18 21:14:56 -04008173#: lib/ext2fs/ext2_err.c:189
8174msgid "Inode containing extended attribute value is corrupted"
8175msgstr ""
8176
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008177#: lib/support/prof_err.c:11
Eric Sandeen032eafe2012-07-28 17:48:36 -04008178msgid "Profile version 0.0"
Tianze Wang57d69272016-08-31 23:14:17 -04008179msgstr "配置版本 0.0"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008180
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008181#: lib/support/prof_err.c:12
Eric Sandeen032eafe2012-07-28 17:48:36 -04008182msgid "Bad magic value in profile_node"
Tianze Wang57d69272016-08-31 23:14:17 -04008183msgstr "profile_node中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008184
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008185#: lib/support/prof_err.c:13
Eric Sandeen032eafe2012-07-28 17:48:36 -04008186msgid "Profile section not found"
Tianze Wang57d69272016-08-31 23:14:17 -04008187msgstr "未找到配置区段"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008188
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008189#: lib/support/prof_err.c:14
Eric Sandeen032eafe2012-07-28 17:48:36 -04008190msgid "Profile relation not found"
Tianze Wang57d69272016-08-31 23:14:17 -04008191msgstr "未找到配置关系"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008192
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008193#: lib/support/prof_err.c:15
Eric Sandeen032eafe2012-07-28 17:48:36 -04008194msgid "Attempt to add a relation to node which is not a section"
Tianze Wang57d69272016-08-31 23:14:17 -04008195msgstr "企图将关联添加到非区段的node"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008196
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008197#: lib/support/prof_err.c:16
Eric Sandeen032eafe2012-07-28 17:48:36 -04008198msgid "A profile section header has a non-zero value"
Tianze Wang57d69272016-08-31 23:14:17 -04008199msgstr "某个配置区段的头部含有非零值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008200
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008201#: lib/support/prof_err.c:17
Eric Sandeen032eafe2012-07-28 17:48:36 -04008202msgid "Bad linked list in profile structures"
Tianze Wang57d69272016-08-31 23:14:17 -04008203msgstr "配置结构体中有错误的链表"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008204
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008205#: lib/support/prof_err.c:18
Eric Sandeen032eafe2012-07-28 17:48:36 -04008206msgid "Bad group level in profile structures"
Tianze Wang57d69272016-08-31 23:14:17 -04008207msgstr "配置结构体中有错误的组级别"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008208
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008209#: lib/support/prof_err.c:19
Eric Sandeen032eafe2012-07-28 17:48:36 -04008210msgid "Bad parent pointer in profile structures"
Tianze Wang57d69272016-08-31 23:14:17 -04008211msgstr "配置结构体中有错误的父指针"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008212
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008213#: lib/support/prof_err.c:20
Eric Sandeen032eafe2012-07-28 17:48:36 -04008214msgid "Bad magic value in profile iterator"
Tianze Wang57d69272016-08-31 23:14:17 -04008215msgstr "配置迭代器中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008216
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008217#: lib/support/prof_err.c:21
Eric Sandeen032eafe2012-07-28 17:48:36 -04008218msgid "Can't set value on section node"
Tianze Wang57d69272016-08-31 23:14:17 -04008219msgstr "无法设置区段节点"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008220
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008221#: lib/support/prof_err.c:22
Eric Sandeen032eafe2012-07-28 17:48:36 -04008222msgid "Invalid argument passed to profile library"
Tianze Wang57d69272016-08-31 23:14:17 -04008223msgstr "传给了配置库无效的参数"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008224
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008225#: lib/support/prof_err.c:23
Eric Sandeen032eafe2012-07-28 17:48:36 -04008226msgid "Attempt to modify read-only profile"
Tianze Wang57d69272016-08-31 23:14:17 -04008227msgstr "企图修改该只读的配置"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008228
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008229#: lib/support/prof_err.c:24
Eric Sandeen032eafe2012-07-28 17:48:36 -04008230msgid "Profile section header not at top level"
Tianze Wang57d69272016-08-31 23:14:17 -04008231msgstr "配置区段头部不处于顶级"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008232
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008233#: lib/support/prof_err.c:25
Eric Sandeen032eafe2012-07-28 17:48:36 -04008234msgid "Syntax error in profile section header"
Tianze Wang57d69272016-08-31 23:14:17 -04008235msgstr "配置区段头部中有语法错误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008236
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008237#: lib/support/prof_err.c:26
Eric Sandeen032eafe2012-07-28 17:48:36 -04008238msgid "Syntax error in profile relation"
Tianze Wang57d69272016-08-31 23:14:17 -04008239msgstr "配置关系中有语法错误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008240
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008241#: lib/support/prof_err.c:27
Eric Sandeen032eafe2012-07-28 17:48:36 -04008242msgid "Extra closing brace in profile"
Tianze Wang57d69272016-08-31 23:14:17 -04008243msgstr "配置中发现额外的右括号"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008244
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008245#: lib/support/prof_err.c:28
Eric Sandeen032eafe2012-07-28 17:48:36 -04008246msgid "Missing open brace in profile"
Tianze Wang57d69272016-08-31 23:14:17 -04008247msgstr "配置中缺少左括号"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008248
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008249#: lib/support/prof_err.c:29
Eric Sandeen032eafe2012-07-28 17:48:36 -04008250msgid "Bad magic value in profile_t"
Tianze Wang57d69272016-08-31 23:14:17 -04008251msgstr "profile_t中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008252
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008253#: lib/support/prof_err.c:30
Eric Sandeen032eafe2012-07-28 17:48:36 -04008254msgid "Bad magic value in profile_section_t"
Tianze Wang57d69272016-08-31 23:14:17 -04008255msgstr "profile_section_t中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008256
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008257#: lib/support/prof_err.c:31
Eric Sandeen032eafe2012-07-28 17:48:36 -04008258msgid "Iteration through all top level section not supported"
Tianze Wang57d69272016-08-31 23:14:17 -04008259msgstr "不支持迭代所有顶级区段"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008260
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008261#: lib/support/prof_err.c:32
Eric Sandeen032eafe2012-07-28 17:48:36 -04008262msgid "Invalid profile_section object"
Tianze Wang57d69272016-08-31 23:14:17 -04008263msgstr "无效的配置区段对象"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008264
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008265#: lib/support/prof_err.c:33
Eric Sandeen032eafe2012-07-28 17:48:36 -04008266msgid "No more sections"
Tianze Wang57d69272016-08-31 23:14:17 -04008267msgstr "没有更多的区段"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008268
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008269#: lib/support/prof_err.c:34
Eric Sandeen032eafe2012-07-28 17:48:36 -04008270msgid "Bad nameset passed to query routine"
Tianze Wang57d69272016-08-31 23:14:17 -04008271msgstr "传给了查询程序错误的名称集"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008272
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008273#: lib/support/prof_err.c:35
Eric Sandeen032eafe2012-07-28 17:48:36 -04008274msgid "No profile file open"
Tianze Wang57d69272016-08-31 23:14:17 -04008275msgstr "未打开任何配置文件"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008276
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008277#: lib/support/prof_err.c:36
Eric Sandeen032eafe2012-07-28 17:48:36 -04008278msgid "Bad magic value in profile_file_t"
Tianze Wang57d69272016-08-31 23:14:17 -04008279msgstr "profile_file_t中的幻数有错"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008280
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008281#: lib/support/prof_err.c:37
Eric Sandeen032eafe2012-07-28 17:48:36 -04008282msgid "Couldn't open profile file"
Tianze Wang57d69272016-08-31 23:14:17 -04008283msgstr "无法打开配置文件"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008284
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008285#: lib/support/prof_err.c:38
Eric Sandeen032eafe2012-07-28 17:48:36 -04008286msgid "Section already exists"
Tianze Wang57d69272016-08-31 23:14:17 -04008287msgstr "区段已存在"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008288
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008289#: lib/support/prof_err.c:39
Eric Sandeen032eafe2012-07-28 17:48:36 -04008290msgid "Invalid boolean value"
Tianze Wang57d69272016-08-31 23:14:17 -04008291msgstr "无效的布尔值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008292
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008293#: lib/support/prof_err.c:40
Eric Sandeen032eafe2012-07-28 17:48:36 -04008294msgid "Invalid integer value"
Tianze Wang57d69272016-08-31 23:14:17 -04008295msgstr "无效的整数值"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008296
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008297#: lib/support/prof_err.c:41
Eric Sandeen032eafe2012-07-28 17:48:36 -04008298msgid "Bad magic value in profile_file_data_t"
Mingye Wang (Arthur2e5)af6f1112017-01-31 17:34:56 -05008299msgstr "profile_file_data_t中的幻数有误"
Eric Sandeen032eafe2012-07-28 17:48:36 -04008300
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008301#: lib/support/plausible.c:118
Tianze Wang57d69272016-08-31 23:14:17 -04008302#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008303msgid "\tlast mounted on %s on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04008304msgstr "\t上一次挂载于 %s, 时间 %s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008305
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008306#: lib/support/plausible.c:121
Tianze Wang57d69272016-08-31 23:14:17 -04008307#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008308msgid "\tlast mounted on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04008309msgstr "\t上一次挂载于%s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008310
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008311#: lib/support/plausible.c:124
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008312#, c-format
8313msgid "\tcreated on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04008314msgstr "\t创建于 %s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008315
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008316#: lib/support/plausible.c:127
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008317#, c-format
8318msgid "\tlast modified on %s"
Tianze Wang57d69272016-08-31 23:14:17 -04008319msgstr "\t上一次修改于 %s"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008320
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008321#: lib/support/plausible.c:161
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008322#, c-format
8323msgid "Found a %s partition table in %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008324msgstr "在 %s 中发现一个 %s 分区表\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008325
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008326#: lib/support/plausible.c:191
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008327#, c-format
8328msgid "The file %s does not exist and no size was specified.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008329msgstr "文件 %s 不存在,也没有指定大小。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008330
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008331#: lib/support/plausible.c:199
Tianze Wang57d69272016-08-31 23:14:17 -04008332#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008333msgid "Creating regular file %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008334msgstr "创建一般文件 %s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008335
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008336#: lib/support/plausible.c:202
Tianze Wang57d69272016-08-31 23:14:17 -04008337#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008338msgid "Could not open %s: %s\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008339msgstr "无法打开 %s:%s\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008340
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008341#: lib/support/plausible.c:205
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008342msgid ""
8343"\n"
8344"The device apparently does not exist; did you specify it correctly?\n"
8345msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04008346"\n"
8347"设备不存在。请确认所给设备名是否正确。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008348
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008349#: lib/support/plausible.c:227
Tianze Wang57d69272016-08-31 23:14:17 -04008350#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008351msgid "%s is not a block special device.\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008352msgstr "错误:%s 不是块设备。\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008353
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008354#: lib/support/plausible.c:249
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008355#, c-format
8356msgid "%s contains a %s file system labelled '%s'\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008357msgstr "%1$s 有一个标签为“%3$s”的 %2$s 文件系统\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008358
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008359#: lib/support/plausible.c:252
Tianze Wang57d69272016-08-31 23:14:17 -04008360#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008361msgid "%s contains a %s file system\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008362msgstr " %s 有一个 %s 文件系统\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008363
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008364#: lib/support/plausible.c:276
Tianze Wang57d69272016-08-31 23:14:17 -04008365#, c-format
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008366msgid "%s contains `%s' data\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008367msgstr ""
8368" %s 含有“%s”数据\n"
8369"\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008370
Theodore Ts'o40e66e22018-08-18 21:14:56 -04008371#~ msgid ""
8372#~ "\n"
8373#~ "*** Checksum errors detected in filesystem! Run e2fsck now!\n"
8374#~ "\n"
8375#~ msgstr ""
8376#~ "\n"
8377#~ "*** 发现文件系统的校验值有误!请立即运行 e2fsck!\n"
8378#~ "\n"
8379
8380#~ msgid ""
8381#~ "\n"
8382#~ "*** Checksum errors detected in bitmaps! Run e2fsck now!\n"
8383#~ "\n"
8384#~ msgstr ""
8385#~ "\n"
8386#~ "*** 发现位图的校验值有误!请立即运行 e2fsck!\n"
8387#~ "\n"
8388
8389#~ msgid ""
8390#~ "\n"
8391#~ "%s: %s: error reading bitmaps: %s\n"
8392#~ msgstr ""
8393#~ "\n"
8394#~ "%s:%s:读取位图错误:%s\n"
8395
8396#, fuzzy
8397#~ msgid ""
8398#~ "\n"
8399#~ "Warning, had trouble writing out superblocks.\n"
8400#~ msgstr ""
8401#~ "\n"
8402#~ "警告:写入超级块时遇到问题"
8403
Theodore Ts'o899425b2018-02-27 22:25:04 -05008404#~ msgid "i_dir_acl @F %Id, @s zero.\n"
8405#~ msgstr "@i %i (%Q)的i_dir_acl为 %ld,@s0。\n"
8406
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04008407#~ msgid "Journal features: "
8408#~ msgstr "日志特性:: "
8409
8410#~ msgid "Journal size: "
8411#~ msgstr "日志大小: "
8412
8413#~ msgid ""
8414#~ "Journal length: %u\n"
8415#~ "Journal sequence: 0x%08x\n"
8416#~ "Journal start: %u\n"
8417#~ msgstr ""
8418#~ "日志长度: %u\n"
8419#~ "日志序列: 0x%08x\n"
8420#~ "日志起始于: %u\n"
8421
8422#~ msgid "Journal checksum type: crc32\n"
8423#~ msgstr "日志校验值类型: crc32\n"
8424
8425#~ msgid ""
8426#~ "Journal checksum type: %s\n"
8427#~ "Journal checksum: 0x%08x\n"
8428#~ msgstr ""
8429#~ "日志校验值类型: %s\n"
8430#~ "日志校验值: 0x%08x\n"
8431
8432#~ msgid "Journal errno: %d\n"
8433#~ msgstr "日志错误码: %d\n"
8434
8435#~ msgid ""
8436#~ "\n"
8437#~ "Journal block size: %u\n"
8438#~ "Journal length: %u\n"
8439#~ "Journal first block: %u\n"
8440#~ "Journal sequence: 0x%08x\n"
8441#~ "Journal start: %u\n"
8442#~ "Journal number of users: %u\n"
8443#~ msgstr ""
8444#~ "\n"
8445#~ "日志块大小: %u\n"
8446#~ "日志块长度: %u\n"
8447#~ "日志块首块: %u\n"
8448#~ "日志序列: 0x%08x\n"
8449#~ "日志起始于: %u\n"
8450#~ "用户日志数: %u\n"
8451
8452#~ msgid "Journal users: %s\n"
8453#~ msgstr "日志使用者: %s\n"
8454
Theodore Ts'o21725192017-08-23 19:46:04 -04008455#~ msgid "Please run e2fsck on the filesystem.\n"
8456#~ msgstr "请在这个文件系统上运行 e2fsck。\n"
8457
Theodore Ts'o9d6f54b2017-08-04 01:30:54 -04008458#~ msgid ""
8459#~ "\n"
8460#~ "Warning: enabled project without quota together\n"
8461#~ msgstr ""
8462#~ "\n"
8463#~ "警告:启用项目的同时没有同时启用配额\n"
8464
Tianze Wang57d69272016-08-31 23:14:17 -04008465#~ msgid "@i %i has @cion flag set on @f without @cion support. "
8466#~ msgstr "@i %i 由chattr设置了c(@c)标志,但@f不支持@c。 "
Theodore Ts'o4baef0a2016-05-12 01:01:46 -04008467
Tianze Wang57d69272016-08-31 23:14:17 -04008468#~ msgid "@A @a @b %b. "
8469#~ msgstr "分配@a@b %b时出错。 "
8470
8471#~ msgid "%s: warning: compression support is experimental.\n"
8472#~ msgstr "%s:警告:压缩支持是实验性的。\n"
8473
8474#~ msgid ""
8475#~ "%s: e2fsck not compiled with HTREE support,\n"
8476#~ "\tbut filesystem %s has HTREE directories.\n"
8477#~ msgstr ""
8478#~ "%s:编译e2fsck时未添加HTREE支持,\n"
8479#~ "\t但文件系统 %s 含有HTREE目录。\n"
8480
8481#~ msgid "while allocating zeroizing buffer"
8482#~ msgstr "为(填零的)缓冲区分配内存时"
8483
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008484#~ msgid ", unused inodes %u\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008485#~ msgstr ",%u个未使用的inodes\n"
8486
8487#~ msgid "Failed to read the file system data \n"
8488#~ msgstr "读取文件系统数据失败\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008489
8490#~ msgid "Failed tdb_fetch %s\n"
8491#~ msgstr "tdb_fetch %s 失败\n"
8492
Tianze Wang57d69272016-08-31 23:14:17 -04008493#~ msgid "The file system UUID didn't match \n"
8494#~ msgstr "文件系统的UUID不匹配 \n"
8495
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008496#~ msgid "Failed tdb_open %s\n"
8497#~ msgstr "tdb_open %s 失败\n"
8498
8499#~ msgid "Failed to open %s\n"
8500#~ msgstr "打开%s失败\n"
8501
Tianze Wang57d69272016-08-31 23:14:17 -04008502#~ msgid "Replayed transaction of size %zd at location %llu\n"
8503#~ msgstr ""
8504#~ "根据大小为 %zd 的事务记录撤销位于 %llu 的操作\n"
8505#~ "\n"
8506
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008507#~ msgid "Failed write %s\n"
8508#~ msgstr "写入%s失败\n"
8509
Tianze Wang57d69272016-08-31 23:14:17 -04008510#~ msgid "Invalid quotatype parameter: %s\n"
8511#~ msgstr "无效的配额类型参数:%s\n"
8512
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008513#~ msgid "Couldn't allocate memory to parse quota options!\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008514#~ msgstr "无法为解析配额选项获取内存!\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008515
8516#~ msgid "Couldn't allocate memory for tdb filename\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008517#~ msgstr "无法为处理tdb文件名分配内存\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008518
8519#~ msgid ""
8520#~ "To undo the tune2fs operation please run the command\n"
8521#~ " e2undo %s %s\n"
8522#~ "\n"
8523#~ msgstr ""
Tianze Wang57d69272016-08-31 23:14:17 -04008524#~ "要撤销 tune2fs 操作请运行命令:\n"
Theodore Ts'o9e78ef72016-03-15 01:49:00 -04008525#~ " e2undo %s %s\n"
8526#~ "\n"
8527
Tianze Wang57d69272016-08-31 23:14:17 -04008528#~ msgid "%s is entire device, not just one partition!\n"
8529#~ msgstr "%s 为整个设备,而非单个分区!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04008530
Eric Sandeen032eafe2012-07-28 17:48:36 -04008531#~ msgid "<The ACL index inode>"
8532#~ msgstr "<ACL 索引 inode>"
8533
8534#~ msgid "<The ACL data inode>"
8535#~ msgstr "<ACL 数据 inode>"
8536
Eric Sandeen032eafe2012-07-28 17:48:36 -04008537#~ msgid "Journal NOT removed\n"
Tianze Wang57d69272016-08-31 23:14:17 -04008538#~ msgstr "日志未删除\n"
8539
8540#~ msgid "Could not stat %s --- %s\n"
8541#~ msgstr "无法对 %s 进行 stat 调用 --- %s\n"
8542
Theodore Ts'o3d66c4b2017-01-31 18:24:50 -05008543#~ msgid ""
8544#~ "\b\b\b\b\b\b\b\bCopied %llu / %llu blocks (%llu%%) in %s at %.2f MB/"
8545#~ "s \n"
8546#~ msgstr ""
8547#~ "\b\b\b\b\b\b\b\b已复制 %llu / %llu 块(%llu%%),用时 %s,速度 %.2f MB/"
8548#~ "s \n"
Tianze Wang57d69272016-08-31 23:14:17 -04008549
8550#~ msgid ""
8551#~ "\n"
8552#~ "Warning: the quota feature is still under development\n"
8553#~ "See https://ext4.wiki.kernel.org/index.php/Quota for more information\n"
8554#~ "\n"
8555#~ msgstr ""
8556#~ "\n"
8557#~ "警告:配额特性仍然在开发中\n"
8558#~ "更多详情请参见 https://ext4.wiki.kernel.org/index.php/Quota\n"
8559#~ "\n"
8560
8561#~ msgid "Clearing extent flag not supported on %s"
8562#~ msgstr "移除 %s 中不被支持的extent标志"
8563
8564#~ msgid ""
8565#~ "%s: The combination of flex_bg and\n"
8566#~ "\t!resize_inode features is not supported by resize2fs.\n"
8567#~ msgstr "%s:resize2fs不支持同时使用弹性组和固定inode大小特性。\n"
8568
8569#~ msgid "@g %g @b @B uninitialized but @i @B in use.\n"
8570#~ msgstr "@g %g @b@B未初始化,但@i@B已被使用。\n"
8571
8572#~ msgid "@i %i should not have EOFBLOCKS_FL set (size %Is, lblk %r)\n"
8573#~ msgstr "@i %i 不应被设定EOFBLOCKS_FL标志(大小 %ls,lblk %r)\n"
8574
8575#~ msgid "Couldn't determine journal size"
8576#~ msgstr "无法确定日志大小"
8577
8578#~ msgid "#\t\t %llu -> %llu (%llu)\n"
8579#~ msgstr "#\t\t %llu -> %llu(%llu)\n"
8580
8581#~ msgid "Missing indirect block not present"
8582#~ msgstr "未找到丢失的链接块"
8583
8584#~ msgid "short write (only %d bytes) for writing image header"
8585#~ msgstr "写入镜像头部的数据过少(只有 %d 字节)"
8586
8587#~ msgid "invalid fragment size - %s"
8588#~ msgstr "无效的碎片尺寸 - %s"
8589
8590#~ msgid "Warning: fragments not supported. Ignoring -f option\n"
8591#~ msgstr "警告:不支持碎片管理。已忽略 -f 选项\n"
8592
8593#~ msgid "Calling BLKDISCARD from %llu to %llu "
8594#~ msgstr "对块 %llu 至 %llu 执行BLKDISCARD操作"
8595
8596#~ msgid "succeeded.\n"
8597#~ msgstr "成功。\n"
8598
8599#~ msgid "@S doesn't have has_@j flag, but has ext3 @j %s.\n"
8600#~ msgstr "@S不具有has_journal标志,但ext3日志 %s 具有。\n"
8601
8602#~ msgid "Recreate journal to make the filesystem ext3 again?\n"
8603#~ msgstr "将日志重建为ext3文件系统格式吗?\n"