aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2008-03-13 10:53:26 -0400
committerTheodore Ts'o <tytso@mit.edu>2008-03-13 10:53:26 -0400
commita040a99b6cc4bf9f10d39747ca6947f0462a2eb2 (patch)
tree3ebb2978e9768b271f7f15dc5bd89455c4eb3f9e
parent399033a6ab713bc1f8ebad90e47fced0e7491b62 (diff)
parent2a60480627b28a368c82b87c0795c771c1f8769a (diff)
downloadandroid_external_e2fsprogs-a040a99b6cc4bf9f10d39747ca6947f0462a2eb2.tar.gz
android_external_e2fsprogs-a040a99b6cc4bf9f10d39747ca6947f0462a2eb2.tar.bz2
android_external_e2fsprogs-a040a99b6cc4bf9f10d39747ca6947f0462a2eb2.zip
Merge branch 'maint'
Conflicts: lib/ext2fs/ext2_err.et.in
-rw-r--r--e2fsck/pass1.c25
-rw-r--r--e2fsck/pass1b.c4
-rw-r--r--e2fsck/pass2.c11
-rw-r--r--e2fsck/problem.c6
-rw-r--r--e2fsck/problem.h3
-rw-r--r--lib/blkid/probe.c6
-rw-r--r--lib/ext2fs/dblist.c26
-rw-r--r--lib/ext2fs/ext2_err.et.in4
-rw-r--r--lib/ext2fs/ext2fs.h3
-rw-r--r--misc/e2image.c5
-rw-r--r--misc/mke2fs.8.in10
-rw-r--r--po/cs.gmobin86127 -> 91223 bytes
-rw-r--r--po/cs.po254
-rw-r--r--po/nl.gmobin86087 -> 91225 bytes
-rw-r--r--po/nl.po374
-rw-r--r--po/pl.gmobin82601 -> 87282 bytes
-rw-r--r--po/pl.po234
-rw-r--r--po/sv.gmobin82174 -> 86721 bytes
-rw-r--r--po/sv.po268
-rw-r--r--po/vi.gmobin89477 -> 94791 bytes
-rw-r--r--po/vi.po215
-rw-r--r--resize/resize2fs.c43
-rw-r--r--tests/f_h_badnode/expect.12
-rw-r--r--tests/f_h_badroot/expect.12
-rwxr-xr-xtests/f_h_reindex/expect.1958
-rw-r--r--tests/f_h_reindex/expect.1.gzbin3167 -> 0 bytes
-rw-r--r--tests/f_holedir/expect.113
-rw-r--r--tests/f_holedir/expect.22
28 files changed, 1586 insertions, 882 deletions
diff --git a/e2fsck/pass1.c b/e2fsck/pass1.c
index e2143612..c598205e 100644
--- a/e2fsck/pass1.c
+++ b/e2fsck/pass1.c
@@ -1727,6 +1727,26 @@ static void check_blocks(e2fsck_t ctx, struct problem_context *pctx,
return;
}
+ if (pb.is_dir) {
+ while (1) {
+ struct ext2_db_entry *entry;
+
+ if (ext2fs_dblist_get_last(fs->dblist, &entry) ||
+ (entry->ino != ino) ||
+ (entry->blk != 0) ||
+ (entry->blockcnt == 0))
+ break;
+ /* printf("Dropping ino %lu blk %lu blockcnt %d\n",
+ entry->ino, entry->blk, entry->blockcnt); */
+ ext2fs_dblist_drop_last(fs->dblist);
+ if (ext2fs_dblist_get_last(fs->dblist, &entry) ||
+ (entry->ino != ino))
+ pb.last_block--;
+ else
+ pb.last_block = entry->blockcnt;
+ }
+ }
+
if (inode->i_flags & EXT2_INDEX_FL) {
if (handle_htree(ctx, pctx, ino, inode, block_buf)) {
inode->i_flags &= ~EXT2_INDEX_FL;
@@ -1758,7 +1778,9 @@ static void check_blocks(e2fsck_t ctx, struct problem_context *pctx,
#endif
if (pb.is_dir) {
int nblock = inode->i_size >> EXT2_BLOCK_SIZE_BITS(fs->super);
- if (nblock > (pb.last_block + 1))
+ if (inode->i_size & (fs->blocksize - 1))
+ bad_size = 5;
+ else if (nblock > (pb.last_block + 1))
bad_size = 1;
else if (nblock < (pb.last_block + 1)) {
if (((pb.last_block + 1) - nblock) >
@@ -1920,6 +1942,7 @@ static int process_block(ext2_filsys fs,
printf("Missing block (#%d) in directory inode %lu!\n",
blockcnt, p->ino);
#endif
+ p->last_block = blockcnt;
goto mark_dir;
}
return 0;
diff --git a/e2fsck/pass1b.c b/e2fsck/pass1b.c
index 6956d23f..06cf87b4 100644
--- a/e2fsck/pass1b.c
+++ b/e2fsck/pass1b.c
@@ -564,7 +564,7 @@ static int delete_file_block(ext2_filsys fs,
decrement_badcount(ctx, *block_nr, p);
} else
com_err("delete_file_block", 0,
- _("internal error; can't find dup_blk for %u\n"),
+ _("internal error: can't find dup_blk for %u\n"),
*block_nr);
} else {
ext2fs_unmark_block_bitmap(ctx->block_found_map, *block_nr);
@@ -697,7 +697,7 @@ static int clone_file_block(ext2_filsys fs,
return BLOCK_CHANGED;
} else
com_err("clone_file_block", 0,
- _("internal error; can't find dup_blk for %u\n"),
+ _("internal error: can't find dup_blk for %u\n"),
*block_nr);
}
return 0;
diff --git a/e2fsck/pass2.c b/e2fsck/pass2.c
index 94d94057..a3367552 100644
--- a/e2fsck/pass2.c
+++ b/e2fsck/pass2.c
@@ -783,8 +783,14 @@ static int check_dir_block(ext2_filsys fs,
dx_dir = e2fsck_get_dx_dir_info(ctx, ino);
if (dx_dir && dx_dir->numblocks) {
if (db->blockcnt >= dx_dir->numblocks) {
- printf("XXX should never happen!!!\n");
- abort();
+ if (fix_problem(ctx, PR_2_UNEXPECTED_HTREE_BLOCK,
+ &pctx)) {
+ clear_htree(ctx, ino);
+ dx_dir->numblocks = 0;
+ dx_db = 0;
+ goto out_htree;
+ }
+ fatal_error(ctx, _("Can not continue."));
}
dx_db = &dx_dir->dx_block[db->blockcnt];
dx_db->type = DX_DIRBLOCK_LEAF;
@@ -819,6 +825,7 @@ static int check_dir_block(ext2_filsys fs,
sizeof(struct ext2_dx_entry))))
dx_db->type = DX_DIRBLOCK_NODE;
}
+out_htree:
#endif /* ENABLE_HTREE */
dict_init(&de_dict, DICTCOUNT_T_MAX, dict_de_cmp);
diff --git a/e2fsck/problem.c b/e2fsck/problem.c
index 31670227..afed4fed 100644
--- a/e2fsck/problem.c
+++ b/e2fsck/problem.c
@@ -1166,7 +1166,7 @@ static struct e2fsck_problem problem_table[] = {
/* Clear invalid HTREE directory */
{ PR_2_HTREE_CLEAR,
- N_("@n @h %d (%q). "), PROMPT_CLEAR, 0 },
+ N_("@n @h %d (%q). "), PROMPT_CLEAR_HTREE, 0 },
/* Bad block in htree interior node */
{ PR_2_HTREE_BADBLK,
@@ -1223,6 +1223,10 @@ static struct e2fsck_problem problem_table[] = {
N_("i_blocks_hi @F %N, @s zero.\n"),
PROMPT_CLEAR, 0 },
+ /* Unexpected HTREE block */
+ { PR_2_UNEXPECTED_HTREE_BLOCK,
+ N_("Unexpected @b in @h %d (%q).\n"), PROMPT_CLEAR_HTREE, 0 },
+
/* Pass 3 errors */
/* Pass 3: Checking directory connectivity */
diff --git a/e2fsck/problem.h b/e2fsck/problem.h
index 55a197d0..d5d1a783 100644
--- a/e2fsck/problem.h
+++ b/e2fsck/problem.h
@@ -729,6 +729,9 @@ struct problem_context {
/* i_blocks_hi should be zero */
#define PR_2_BLOCKS_HI_ZERO 0x020044
+/* Unexpected HTREE block */
+#define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045
+
/*
* Pass 3 errors
*/
diff --git a/lib/blkid/probe.c b/lib/blkid/probe.c
index 10e018a9..45885c39 100644
--- a/lib/blkid/probe.c
+++ b/lib/blkid/probe.c
@@ -1023,15 +1023,15 @@ static int probe_hfsplus(struct blkid_probe *probe __BLKID_ATTR((unused)),
}
#define LVM2_LABEL_SIZE 512
-static unsigned int lvm2_calc_crc(const void *buf, uint size)
+static unsigned int lvm2_calc_crc(const void *buf, unsigned int size)
{
- static const uint crctab[] = {
+ static const unsigned int crctab[] = {
0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c
};
- uint i, crc = 0xf597a6cf;
+ unsigned int i, crc = 0xf597a6cf;
const __u8 *data = (const __u8 *) buf;
for (i = 0; i < size; i++) {
diff --git a/lib/ext2fs/dblist.c b/lib/ext2fs/dblist.c
index 21b36aa6..3bf63a0f 100644
--- a/lib/ext2fs/dblist.c
+++ b/lib/ext2fs/dblist.c
@@ -259,3 +259,29 @@ int ext2fs_dblist_count(ext2_dblist dblist)
{
return (int) dblist->count;
}
+
+errcode_t ext2fs_dblist_get_last(ext2_dblist dblist,
+ struct ext2_db_entry **entry)
+{
+ errcode_t retval;
+
+ EXT2_CHECK_MAGIC(dblist, EXT2_ET_MAGIC_DBLIST);
+
+ if (dblist->count == 0)
+ return EXT2_ET_DBLIST_EMPTY;
+
+ if (entry)
+ *entry = dblist->list + ( (int) dblist->count-1);
+ return 0;
+}
+
+errcode_t ext2fs_dblist_drop_last(ext2_dblist dblist)
+{
+ EXT2_CHECK_MAGIC(dblist, EXT2_ET_MAGIC_DBLIST);
+
+ if (dblist->count == 0)
+ return EXT2_ET_DBLIST_EMPTY;
+
+ dblist->count--;
+ return 0;
+}
diff --git a/lib/ext2fs/ext2_err.et.in b/lib/ext2fs/ext2_err.et.in
index 72331de5..9047a8ff 100644
--- a/lib/ext2fs/ext2_err.et.in
+++ b/lib/ext2fs/ext2_err.et.in
@@ -326,6 +326,9 @@ ec EXT2_ET_TDB_ERR_NOEXIST,
ec EXT2_ET_TDB_ERR_RDONLY,
"TDB: Write not permitted"
+ec EXT2_ET_DBLIST_EMPTY,
+ "Ext2fs directory block list is empty"
+
ec EXT2_ET_RO_BLOCK_ITERATE,
"Attempt to modify a block mapping via a read-only block iterator"
@@ -403,4 +406,5 @@ ec EXT2_ET_EXTENT_NOT_FOUND,
ec EXT2_ET_EXTENT_NOT_SUPPORTED,
"Operation not supported for inodes containing extents"
+
end
diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h
index b7de2301..15f43526 100644
--- a/lib/ext2fs/ext2fs.h
+++ b/lib/ext2fs/ext2fs.h
@@ -724,6 +724,9 @@ extern errcode_t ext2fs_set_dir_block(ext2_dblist dblist, ext2_ino_t ino,
extern errcode_t ext2fs_copy_dblist(ext2_dblist src,
ext2_dblist *dest);
extern int ext2fs_dblist_count(ext2_dblist dblist);
+extern errcode_t ext2fs_dblist_get_last(ext2_dblist dblist,
+ struct ext2_db_entry **entry);
+extern errcode_t ext2fs_dblist_drop_last(ext2_dblist dblist);
/* dblist_dir.c */
extern errcode_t
diff --git a/misc/e2image.c b/misc/e2image.c
index 27507532..081c66f7 100644
--- a/misc/e2image.c
+++ b/misc/e2image.c
@@ -579,8 +579,11 @@ static void install_image(char *device, char *image_fn, int raw_flag)
exit(1);
}
-
+#ifdef HAVE_OPEN64
+ fd = open64(image_fn, O_RDONLY);
+#else
fd = open(image_fn, O_RDONLY);
+#endif
if (fd < 0) {
perror(image_fn);
exit(1);
diff --git a/misc/mke2fs.8.in b/misc/mke2fs.8.in
index 6b394a5d..14c3ca59 100644
--- a/misc/mke2fs.8.in
+++ b/misc/mke2fs.8.in
@@ -248,16 +248,16 @@ correct value for this parameter.
.BI \-I " inode-size"
Specify the size of each inode in bytes.
.B mke2fs
-creates 128-byte inodes by default. In kernels after 2.6.10 and some
-earlier vendor kernels it is possible to utilize larger inodes to store
+creates 256-byte inodes by default. In kernels after 2.6.10 and some
+earlier vendor kernels it is possible to utilize inodes larger than
+128-bytes to store
extended attributes for improved performance. The
.I inode-size
value must be a power of two larger or equal to 128. The larger the
.I inode-size
the more space the inode table will consume, and this reduces the usable
-space in the filesystem and can also negatively impact performance. Using
-the default value is always safe, though it may be desirable to use 256-byte
-inodes if full backward compatibility is not a concern. Extended attributes
+space in the filesystem and can also negatively impact performance.
+Extended attributes
stored in large inodes are not visible with older kernels, and such
filesystems will not be mountable with 2.4 kernels at all. It is not
possible to change this value after the filesystem is created.
diff --git a/po/cs.gmo b/po/cs.gmo
index 737788e2..8301d7c5 100644
--- a/po/cs.gmo
+++ b/po/cs.gmo
Binary files differ
diff --git a/po/cs.po b/po/cs.po
index 8f868188..bddb9f2a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,5 +1,5 @@
# Czech translation of e2fsprogs
-# Copyright (C) 2003 THE PACKAGE'S COPYRIGHT HOLDER
+# Copyright (C) 2008 Theodore Tso (msgids)
# This file is distributed under the same license as the e2fsprogs package.
# Miloslav Trmac <mitr@volny.cz>, 2003.
# Petr Pisar <petr.pisar@atlas.cz>, 2008.
@@ -64,10 +64,10 @@
#.
msgid ""
msgstr ""
-"Project-Id-Version: e2fsprogs 1.40.6\n"
+"Project-Id-Version: e2fsprogs 1.40.7\n"
"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
"POT-Creation-Date: 2008-02-28 21:45-0500\n"
-"PO-Revision-Date: 2008-02-12 13:44+0100\n"
+"PO-Revision-Date: 2008-03-11 09:32+0100\n"
"Last-Translator: Petr Pisar <petr.pisar@atlas.cz>\n"
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
@@ -112,8 +112,7 @@ msgstr "při aktualizaci inode špatných bloků"
#: e2fsck/badblocks.c:130
#, c-format
msgid "Warning: illegal block %u found in bad block inode. Cleared.\n"
-msgstr ""
-"Varování: v iuzlu špatných bloků nalezen nepovolený blok %u. Vymazán.\n"
+msgstr "Varování: v iuzlu špatných bloků nalezen nepovolený blok %u. Vymazán.\n"
#: e2fsck/ehandler.c:53
#, c-format
@@ -880,13 +879,11 @@ msgstr "Externí žurnál nepodporuje tento systém souborů\n"
#: e2fsck/problem.c:212
msgid ""
"Ext3 @j @S is unknown type %N (unsupported).\n"
-"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
-"format.\n"
+"It is likely that your copy of e2fsck is old and/or doesn't support this @j format.\n"
"It is also possible the @j @S is corrupt.\n"
msgstr ""
"Superblok žurnálu ext3 má neznámý typ %N (nepodporováno).\n"
-"Je pravděpodobné, že vaše kopie e2fsck je stará a/nebo nepodporuje tento "
-"formát žurnálu.\n"
+"Je pravděpodobné, že vaše kopie e2fsck je stará a/nebo nepodporuje tento formát žurnálu.\n"
"Je také možné, že superblok žurnálu je poškozen.\n"
#. @-expanded: Ext3 journal superblock is corrupt.\n
@@ -923,9 +920,7 @@ msgstr "Přesto spustit žurnál"
#. @-expanded: Recovery flag not set in backup superblock, so running journal anyway.\n
#: e2fsck/problem.c:250
msgid "Recovery flag not set in backup @S, so running @j anyway.\n"
-msgstr ""
-"Příznak obnovení není nastaven v záložním superbloku, takže přesto spouštím "
-"žurnál.\n"
+msgstr "Příznak obnovení není nastaven v záložním superbloku, takže přesto spouštím žurnál.\n"
#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
#: e2fsck/problem.c:255
@@ -957,23 +952,17 @@ msgstr "Neplatná inode %i v seznamu osiřelých inode.\n"
#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
#: e2fsck/problem.c:280 e2fsck/problem.c:613
msgid "@f has feature flag(s) set, but is a revision 0 @f. "
-msgstr ""
-"Systém souborů má příznak(y) vlastností nastaveny, ačkoliv se jedná o revizi "
-"0. "
+msgstr "Systém souborů má příznak(y) vlastností nastaveny, ačkoliv se jedná o revizi 0. "
#. @-expanded: Ext3 journal superblock has an unknown read-only feature flag set.\n
#: e2fsck/problem.c:285
msgid "Ext3 @j @S has an unknown read-only feature flag set.\n"
-msgstr ""
-"Superblok žurnálu ext3 má nastaven příznak neznámé vlastnosti jen pro "
-"čtení.\n"
+msgstr "Superblok žurnálu ext3 má nastaven příznak neznámé vlastnosti jen pro čtení.\n"
#. @-expanded: Ext3 journal superblock has an unknown incompatible feature flag set.\n
#: e2fsck/problem.c:290
msgid "Ext3 @j @S has an unknown incompatible feature flag set.\n"
-msgstr ""
-"Superblok žurnálu ext3 má nastaven příznak neznámé nekompatibilní "
-"vlastnosti.\n"
+msgstr "Superblok žurnálu ext3 má nastaven příznak neznámé nekompatibilní vlastnosti.\n"
#. @-expanded: journal version not supported by this e2fsck.\n
#: e2fsck/problem.c:295
@@ -1112,20 +1101,17 @@ msgstr "Inode %i je adresář nulové délky. "
#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:392
msgid "@g %g's @b @B at %b @C.\n"
-msgstr ""
-"Bitmapa bloků skupiny %g v %b koliduje s jiným blokem systému souborů.\n"
+msgstr "Bitmapa bloků skupiny %g v %b koliduje s jiným blokem systému souborů.\n"
#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:397
msgid "@g %g's @i @B at %b @C.\n"
-msgstr ""
-"Bitmapa inode skupiny %g v %b koliduje s jiným blokem systému souborů.\n"
+msgstr "Bitmapa inode skupiny %g v %b koliduje s jiným blokem systému souborů.\n"
#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:402
msgid "@g %g's @i table at %b @C.\n"
-msgstr ""
-"Tabulka inode skupiny %g v %b koliduje s jiným blokem systému souborů.\n"
+msgstr "Tabulka inode skupiny %g v %b koliduje s jiným blokem systému souborů.\n"
#. @-expanded: group %g's block bitmap (%b) is bad.
#: e2fsck/problem.c:407
@@ -1235,8 +1221,7 @@ msgstr "Primární superblok (%b) je na seznamu špatných bloků.\n"
#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
#: e2fsck/problem.c:490
msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
-msgstr ""
-"Blok %b v primárních deskriptorech skupin je na seznamu špatných bloků\n"
+msgstr "Blok %b v primárních deskriptorech skupin je na seznamu špatných bloků\n"
#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
#: e2fsck/problem.c:496
@@ -1246,14 +1231,12 @@ msgstr "Varování: superblok skupiny %g (%b) je špatný.\n"
#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
#: e2fsck/problem.c:501
msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
-msgstr ""
-"Varování: Kopie deskriptorů skupin ve skupině %g má špatný blok (%b).\n"
+msgstr "Varování: Kopie deskriptorů skupin ve skupině %g má špatný blok (%b).\n"
#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
#: e2fsck/problem.c:507
msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
-msgstr ""
-"Chyba při programování? Blok #%b bezdůvodně použit v process_bad_blocks.\n"
+msgstr "Chyba při programování? Blok #%b bezdůvodně použit v process_bad_blocks.\n"
#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
#: e2fsck/problem.c:513
@@ -1330,9 +1313,7 @@ msgstr "Chyba při ukládání informace o počtu inode (inode=%i, počet=%N): %
#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
#: e2fsck/problem.c:578
msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
-msgstr ""
-"Chyba při ukládání informace o bloku adresáře (inode=%i, blok=%b, čís=%N): %"
-"m\n"
+msgstr "Chyba při ukládání informace o bloku adresáře (inode=%i, blok=%b, čís=%N): %m\n"
#. @-expanded: Error reading inode %i: %m\n
#: e2fsck/problem.c:584
@@ -1354,17 +1335,14 @@ msgid ""
"Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
"or append-only flag set. "
msgstr ""
-"Speciální (zařízení/socket/fifo/symbolický odkaz) soubor (inode %i) má "
-"nastaven\n"
+"Speciální (zařízení/socket/fifo/symbolický odkaz) soubor (inode %i) má nastaven\n"
"příznak immutable nebo append-only. "
#. @-expanded: inode %i has compression flag set on filesystem without compression support.
#: e2fsck/problem.c:603
#, c-format
msgid "@i %i has @cion flag set on @f without @cion support. "
-msgstr ""
-"Inode %i má nastaven příznak komprimace na systému souborů bez podpory "
-"komprimace. "
+msgstr "Inode %i má nastaven příznak komprimace na systému souborů bez podpory komprimace. "
#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
#: e2fsck/problem.c:608
@@ -1391,8 +1369,7 @@ msgstr "Iuzel %i byl součástí seznamu osiřelých iuzlů. "
#. @-expanded: inodes that were part of a corrupted orphan linked list found.
#: e2fsck/problem.c:634
msgid "@is that were part of a corrupted orphan linked list found. "
-msgstr ""
-"Nalezeny inode, které byly součástí poškozeného spojového seznamu osiřelých. "
+msgstr "Nalezeny inode, které byly součástí poškozeného spojového seznamu osiřelých. "
#. @-expanded: error allocating refcount structure (%N): %m\n
#: e2fsck/problem.c:639
@@ -1474,8 +1451,7 @@ msgstr "Blok #%B (%b) působí, že symbolický odkaz je příliš velký. "
#: e2fsck/problem.c:713
#, c-format
msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
-msgstr ""
-"Inode %i má nastaven příznak INDEX_FL na systému souborů bez podpory htree.\n"
+msgstr "Inode %i má nastaven příznak INDEX_FL na systému souborů bez podpory htree.\n"
#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
#: e2fsck/problem.c:718
@@ -1498,15 +1474,12 @@ msgstr "Inode HTREE adresáře %i má nepodporovanou verzi hashe (%N)\n"
#: e2fsck/problem.c:733
#, c-format
msgid "@h %i uses an incompatible htree root node flag.\n"
-msgstr ""
-"Inode HTREE adresáře %i používá nekompatibilní příznak kořenového uzlu "
-"htree.\n"
+msgstr "Inode HTREE adresáře %i používá nekompatibilní příznak kořenového uzlu htree.\n"
#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
#: e2fsck/problem.c:738
msgid "@h %i has a tree depth (%N) which is too big\n"
-msgstr ""
-"Inode HTREE adresáře %i má hloubku stromu (%N), která je příliš velká\n"
+msgstr "Inode HTREE adresáře %i má hloubku stromu (%N), která je příliš velká\n"
#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
#. @-expanded: filesystem metadata.
@@ -1537,27 +1510,22 @@ msgstr "Rozšířený atribut v iuzlu %i má délku jména (%N), která není p
#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
#: e2fsck/problem.c:764
msgid "@a in @i %i has a value size (%N) which is @n\n"
-msgstr ""
-"Rozšířený atribut v iuzlu %i má velikost hodnoty (%N), která není platná\n"
+msgstr "Rozšířený atribut v iuzlu %i má velikost hodnoty (%N), která není platná\n"
#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
#: e2fsck/problem.c:769
msgid "@a in @i %i has a value offset (%N) which is @n\n"
-msgstr ""
-"Rozšířený atribut v iuzlu %i má pozici hodnoty (%N), která není platná\n"
+msgstr "Rozšířený atribut v iuzlu %i má pozici hodnoty (%N), která není platná\n"
#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
#: e2fsck/problem.c:774
msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
-msgstr ""
-"Rozšířený atribut v iuzlu %i má blok hodnot (%N), který není platný (musí "
-"být 0)\n"
+msgstr "Rozšířený atribut v iuzlu %i má blok hodnot (%N), který není platný (musí být 0)\n"
#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid (must be 0)\n
#: e2fsck/problem.c:779
msgid "@a in @i %i has a hash (%N) which is @n (must be 0)\n"
-msgstr ""
-"Rozšířený atribut v iuzlu %i má hash (%N), který není platný (musí být 0)\n"
+msgstr "Rozšířený atribut v iuzlu %i má hash (%N), který není platný (musí být 0)\n"
#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
#: e2fsck/problem.c:784
@@ -1604,8 +1572,7 @@ msgstr "Chyba při iteraci přes bloky v inode %i (%s): %m\n"
#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
#: e2fsck/problem.c:827 e2fsck/problem.c:1143
msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
-msgstr ""
-"Chyba při úpravě počtu odkazů bloku rozšířených atributů %b (iuzel %i): %m\n"
+msgstr "Chyba při úpravě počtu odkazů bloku rozšířených atributů %b (iuzel %i): %m\n"
#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
#: e2fsck/problem.c:833
@@ -1691,8 +1658,7 @@ msgstr "Položka „%Dn“ v %p (%i) je odkaz na „.“ "
#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
#: e2fsck/problem.c:909
msgid "@E points to @i (%Di) located in a bad @b.\n"
-msgstr ""
-"Položka „%Dn“ v %p (%i) ukazuje na inode (%Di) umístěnou ve špatném bloku.\n"
+msgstr "Položka „%Dn“ v %p (%i) ukazuje na inode (%Di) umístěnou ve špatném bloku.\n"
#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
#: e2fsck/problem.c:914
@@ -1724,8 +1690,7 @@ msgstr "Chybí „..“ v inode adresáře %i.\n"
#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
#: e2fsck/problem.c:939
msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
-msgstr ""
-"První položka „%Dn“ (inode=%Di) v iuzlu adresáře %i (%p) by měla být „.“\n"
+msgstr "První položka „%Dn“ (inode=%Di) v iuzlu adresáře %i (%p) by měla být „.“\n"
#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
#: e2fsck/problem.c:944
@@ -1902,9 +1867,7 @@ msgstr "Blok rozšířených atributů pro iuzel %i (%Q) není platný (%If).\n"
#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
#: e2fsck/problem.c:1109
msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
-msgstr ""
-"Systém souborů obsahuje velké soubory, ale v superbloku nemá příznak "
-"LARGE_FILE.\n"
+msgstr "Systém souborů obsahuje velké soubory, ale v superbloku nemá příznak LARGE_FILE.\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) not referenced\n
#: e2fsck/problem.c:1114
@@ -1955,8 +1918,7 @@ msgstr "Problém v iuzlu HTREE adresáře %d: uzel (%B) má špatný počet (%N
#. @-expanded: problem in HTREE directory inode %d: node (%B) has an unordered hash table\n
#: e2fsck/problem.c:1163
msgid "@p @h %d: node (%B) has an unordered hash table\n"
-msgstr ""
-"Problém v inode HTREE adresáře %d: uzel (%B) má nesetříděnou hash tabulku\n"
+msgstr "Problém v inode HTREE adresáře %d: uzel (%B) má nesetříděnou hash tabulku\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has invalid depth\n
#: e2fsck/problem.c:1168
@@ -2067,8 +2029,7 @@ msgstr "ext2fs_new_inode: %m při pokusu vytvořit adresář /lost+found\n"
#: e2fsck/problem.c:1255
#, c-format
msgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
-msgstr ""
-"ext2fs_new_dir_block: %m při pokusu vytváření nového adresáře /lost+found\n"
+msgstr "ext2fs_new_dir_block: %m při pokusu vytváření nového adresáře /lost+found\n"
#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
#: e2fsck/problem.c:1260
@@ -2237,12 +2198,8 @@ msgstr "Počet volných bloků špatný (%b, spočteno=%c).\n"
#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
#. @-expanded: endpoints (%i, %j)\n
#: e2fsck/problem.c:1458
-msgid ""
-"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
-"endpoints (%i, %j)\n"
-msgstr ""
-"CHYBA PŘI PROGRAMOVÁNÍ: hranice (%b, %c) bitmapy systému souborů (#%N) "
-"neodpovídají vypočteným hranicím bitmapy (%i, %j)\n"
+msgid "PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B endpoints (%i, %j)\n"
+msgstr "CHYBA PŘI PROGRAMOVÁNÍ: hranice (%b, %c) bitmapy systému souborů (#%N) neodpovídají vypočteným hranicím bitmapy (%i, %j)\n"
#: e2fsck/problem.c:1464
msgid "Internal error: fudging end of bitmap (%N)\n"
@@ -2370,8 +2327,7 @@ msgid ""
" -p Automatic repair (no questions)\n"
" -n Make no changes to the filesystem\n"
" -y Assume \"yes\" to all questions\n"
-" -c Check for bad blocks and add them to the badblock "
-"list\n"
+" -c Check for bad blocks and add them to the badblock list\n"
" -f Force checking even if filesystem is marked clean\n"
msgstr ""
"\n"
@@ -2379,10 +2335,8 @@ msgstr ""
" -p Automatická oprava (žádné otázky)\n"
" -n Neprovádět žádné změny systému souborů\n"
" -y Předpokládat „ano“ u všech otázek\n"
-" -c Hledat špatné bloky a přidat je do seznamu špatných "
-"bloků\n"
-" -f Vynutit kontrolu, i když je systém souborů označen "
-"čistý\n"
+" -c Hledat špatné bloky a přidat je do seznamu špatných bloků\n"
+" -f Vynutit kontrolu, i když je systém souborů označen čistý\n"
#: e2fsck/unix.c:86
#, c-format
@@ -2669,9 +2623,7 @@ msgstr "při kontrole žurnálu ext3 pro %s"
#: e2fsck/unix.c:1128
#, c-format
-msgid ""
-"Warning: skipping journal recovery because doing a read-only filesystem "
-"check.\n"
+msgid "Warning: skipping journal recovery because doing a read-only filesystem check.\n"
msgstr ""
"Varování: přeskakuji obnovu žurnálu, protože provádím kontrolu systému\n"
"souborů jen pro čtení.\n"
@@ -2687,9 +2639,9 @@ msgid "while recovering ext3 journal of %s"
msgstr "při obnově žurnálu ext3 %s"
#: e2fsck/unix.c:1171
-#, fuzzy, c-format
+#, c-format
msgid "%s has unsupported feature(s):"
-msgstr "Systém souborů %s má zapnuté nepodporované vlastnosti.\n"
+msgstr "%s má nepodporovanou vlastnost(i):"
#: e2fsck/unix.c:1187
msgid "Warning: compression support is experimental.\n"
@@ -2933,8 +2885,7 @@ msgstr "hotovo \n"
#, c-format
msgid ""
"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
-" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern "
-"[...]]]\n"
+" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
" device [last_block [start_block]]\n"
msgstr ""
"Použití: %s [-b velikost_bloku] [-i vstupní_soubor] [-o výstupní_soubor]\n"
@@ -3295,17 +3246,17 @@ msgid "Couldn't allocate memory to parse options!\n"
msgstr "Nemohu alokovat paměť pro zpracování přepínačů!\n"
#: misc/dumpe2fs.c:363
-#, fuzzy, c-format
+#, c-format
msgid "Invalid superblock parameter: %s\n"
-msgstr "Neplatný parametr kroku (stride): %s\n"
+msgstr "Neplatný parametr superblock (superblok): %s\n"
#: misc/dumpe2fs.c:378
-#, fuzzy, c-format
+#, c-format
msgid "Invalid blocksize parameter: %s\n"
-msgstr "Neplatný parametr změny velikosti: %s\n"
+msgstr "Neplatný parametr blocksize (velikost_bloku): %s\n"
#: misc/dumpe2fs.c:389
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad extended option(s) specified: %s\n"
@@ -3318,14 +3269,14 @@ msgid ""
"\tblocksize=<blocksize>\n"
msgstr ""
"\n"
-"Zadány špatné přepínače.\n"
+"Zadán(y) špatný(é) přepínač(e): %s\n"
"\n"
"Rozšířené přepínače jsou odděleny čárkami a mohou mít argument, který je\n"
"\toddělen znaménkem rovná se („=“).\n"
"\n"
"Platné rozšířené přepínače jsou:\n"
-"\ttest_fs\n"
-"\t^test_fs\n"
+"\tsuperblock=<číslo superbloku>\n"
+"\tblocksize=<velikost bloku>\n"
#: misc/dumpe2fs.c:449 misc/mke2fs.c:1199
#, c-format
@@ -3487,9 +3438,7 @@ msgstr "Nemohu alokovat paměť pro typy systému souborů\n"
#: misc/fsck.c:872
#, c-format
-msgid ""
-"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
-"number\n"
+msgid "%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n"
msgstr ""
"%s: přeskakuji chybný řádek v /etc/fstab: připojení typu bind s nenulovým\n"
"pořadím průchodu skrze fsck\n"
@@ -3509,12 +3458,8 @@ msgid "--waiting-- (pass %d)\n"
msgstr "--čekám-- (průchod %d)\n"
#: misc/fsck.c:1066
-#, fuzzy
-msgid ""
-"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
-msgstr ""
-"Použití: fsck [-ANPRTV] [-C [fd]] [-t typss] [přepínače-ss] "
-"[systémsouborů…]\n"
+msgid "Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
+msgstr "Použití: fsck [-AMNPRTV] [-C [fd]] [-t typss] [přepínače-ss] [systémsouborů…]\n"
#: misc/fsck.c:1108
#, c-format
@@ -3542,7 +3487,7 @@ msgid "While reading version on %s"
msgstr "Při čtení verze %s"
#: misc/mke2fs.c:97
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c|-l filename] [-b block-size] [-f fragment-size]\n"
"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
@@ -3551,13 +3496,12 @@ msgid ""
"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
"\t[-T fs-type] [-jnqvFSV] device [blocks-count]\n"
msgstr ""
-"Použití: %s [-c|-t|-l názevsouboru] [-b velikost-bloku] [-f velkost-"
-"fragmentu]\n"
-"\t[-i bajtů-na-iuzel] [-I velikost-iuzlu] [-j] [-J přepínače-žurnálu]\n"
+"Použití: %s [-c|-l názevsouboru] [-b velikost-bloku] [-f velkost-fragmentu]\n"
+"\t[-i bajtů-na-iuzel] [-I velikost-iuzlu] [-J přepínače-žurnálu]\n"
"\t[-N počet-iuzlů] [-m procenta-rezervovaných-bloků] [-o tvořící-os]\n"
"\t[-g bloků-ve-skupině] [-L jmenovka-svazku]\n"
"\t[-M adresář-posledního-připojení] [-O vlastnost[,…]] [-r revize-ss]\n"
-"\t[-E rozšířené-přepínače[,…]] [-qvSV] zařízení [počet-bloků]\n"
+"\t[-E rozšířené-přepínače[,…]] [-T druh-ss] [-jnqvFSV] zařízení [počet-bloků]\n"
#: misc/mke2fs.c:198
#, c-format
@@ -3762,9 +3706,9 @@ msgid "Invalid stride parameter: %s\n"
msgstr "Neplatný parametr kroku (stride): %s\n"
#: misc/mke2fs.c:808
-#, fuzzy, c-format
+#, c-format
msgid "Invalid stripe-width parameter: %s\n"
-msgstr "Neplatný parametr kroku (stride): %s\n"
+msgstr "Neplatný parametr šířka-pásu (stripe-width): %s\n"
#: misc/mke2fs.c:830
#, c-format
@@ -3782,7 +3726,7 @@ msgid "On-line resizing not supported with revision 0 filesystems\n"
msgstr "Revize 0 souborového systému nepodporuje změnu velikosti za běhu\n"
#: misc/mke2fs.c:878
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad option(s) specified: %s\n"
@@ -3798,14 +3742,16 @@ msgid ""
"\ttest_fs\n"
msgstr ""
"\n"
-"Zadány špatné přepínače.\n"
+"Zadán(y) špatný(é) přepínač(e): %s\n"
"\n"
"Rozšířené přepínače jsou odděleny čárkami a mohou mít argument, který je\n"
"\toddělen znaménkem rovná se („=“).\n"
"\n"
-"Platné přepínače jsou:\n"
-"\tstride=<délka kroku (stride) v blocích>\n"
+"Platné rozšířené přepínače jsou:\n"
+"\tstride=<shluk (chunk) dat na jednom raidovém disku v blocích>\n"
+"\tstripe-width=<krok (stride) RAIDu * datových disků v blocích>\n"
"\tresize=<maximální velikost změny velikosti v blocích>\n"
+"\n"
"\ttest_fs\n"
#: misc/mke2fs.c:893
@@ -3815,6 +3761,9 @@ msgid ""
"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
"\n"
msgstr ""
+"\n"
+"Varování: šířka pruhu RAIDu %u není sudý násobek kroku (stride) %u.\n"
+"\n"
#: misc/mke2fs.c:920
#, c-format
@@ -3895,8 +3844,7 @@ msgstr "při pokusu otevřít zařízení žurnálu %s\n"
#: misc/mke2fs.c:1229
#, c-format
msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
-msgstr ""
-"Velikost bloku zařízení žurnálu (%d) menší než minimální velikost bloku %d\n"
+msgstr "Velikost bloku zařízení žurnálu (%d) menší než minimální velikost bloku %d\n"
#: misc/mke2fs.c:1243
#, c-format
@@ -3905,11 +3853,8 @@ msgstr "%d-bajtové bloky příliš velké pro systém (max %d)"
#: misc/mke2fs.c:1247
#, c-format
-msgid ""
-"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
-msgstr ""
-"Varování: %d-bajtové bloky příliš velké pro systém (max %d), donucen "
-"pokračovat\n"
+msgid "Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
+msgstr "Varování: %d-bajtové bloky příliš velké pro systém (max %d), donucen pokračovat\n"
#: misc/mke2fs.c:1265
msgid "filesystem"
@@ -4102,7 +4047,7 @@ msgid "Please run e2fsck on the filesystem.\n"
msgstr "Spusťte prosím na tomto systému souborů e2fsck.\n"
#: misc/tune2fs.c:98
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
@@ -4111,13 +4056,13 @@ msgid ""
"\t[-M last_mounted_dir] [-O [^]feature[,...]]\n"
"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID] device\n"
msgstr ""
-"Použití: %s [-c max_počet_připojení] [-e chování_při_chybách] [-g skupina]\n"
-"\t[-i interval[d|m|w]] [-j] [-J přepínače_žurnálu]\n"
-"\t[-l] [-s příznak_řídkosti] [-m procento_rezervovaných_bloků]\n"
-"\t[-o [^]přepínače_připojení[,…]] [-r počet_rezervovaných_bloků]\n"
-"\t[-u uživatel] [-C počet_připojení] [-L jmenovka_svazku]\n"
-"\t[-M poslední_adresář_připojení] [-O [^]vlastnost[,…]]\n"
-"\t[-E rozšířený-přepínač[,…]] [-T čas_poslední_kontroly] [-U UUID] zařízení\n"
+"Použití: %s [-c max_počet_připojení] [-e chování_při_chybách]\n"
+"\t[-g skupina] [-i interval[d|m|w]] [-j] [-J přepínače_žurnálu] [-l]\n"
+"\t[-m procento_rezervovaných_bloků] [-o [^]přepínače_připojení[,…]]\n"
+"\t[-r počet_rezervovaných_bloků] [-u uživatel] [-C počet_připojení]\n"
+"\t[-L jmenovka_svazku] [-M poslední_adresář_připojení]\n"
+"\t[-O [^]vlastnost[,…]] [-E rozšířený-přepínač[,…]]\n"
+"\t[-T čas_poslední_kontroly] [-U UUID] zařízení\n"
#: misc/tune2fs.c:171
msgid "while trying to open external journal"
@@ -4162,14 +4107,14 @@ msgid "Invalid mount option set: %s\n"
msgstr "Nastaven neplatný přepínač připojení: %s\n"
#: misc/tune2fs.c:338
-#, fuzzy, c-format
+#, c-format
msgid "Clearing filesystem feature '%s' not supported.\n"
-msgstr "Vlastnosti systému souborů nejsou v revizi 0 podporovány\n"
+msgstr "Odstranění vlastnosti systému souborů „%s“ není podporováno.\n"
#: misc/tune2fs.c:344
-#, fuzzy, c-format
+#, c-format
msgid "Setting filesystem feature '%s' not supported.\n"
-msgstr "Vlastnosti systému souborů nejsou v revizi 0 podporovány\n"
+msgstr "Nastavená vlastnosti systému souborů „%s“ není podporováno.\n"
#: misc/tune2fs.c:353
msgid ""
@@ -4271,17 +4216,17 @@ msgid "bad uid/user name - %s"
msgstr "špatné uid/jméno uživatele - %s"
#: misc/tune2fs.c:842
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stride: %s\n"
-msgstr "Neplatný parametr kroku (stride): %s\n"
+msgstr "Neplatný kroku (stride) RAIDu: %s\n"
#: misc/tune2fs.c:857
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stripe-width: %s\n"
-msgstr "Neplatný parametr kroku (stride): %s\n"
+msgstr "Neplatná šířka pruhu RAIDu (stripe-width): %s\n"
#: misc/tune2fs.c:867
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad options specified.\n"
@@ -4302,9 +4247,10 @@ msgstr ""
"\toddělen znaménkem rovná se („=“).\n"
"\n"
"Platné přepínače jsou:\n"
-"\tstride=<délka kroku (stride) v blocích>\n"
-"\tresize=<maximální velikost změny velikosti v blocích>\n"
+"\tstride=<velikost shluku (chunk) na jednom raidovém disku v blocích>\n"
+"\tstripe-width=<krok RAIDu * datových disků v blocích>\n"
"\ttest_fs\n"
+"\t^test_fs\n"
#: misc/tune2fs.c:927
#, c-format
@@ -4373,6 +4319,8 @@ msgid ""
"\n"
"Clearing the sparse superflag not supported.\n"
msgstr ""
+"\n"
+"Odstranění superpříznaku řídkosti není podporováno.\n"
#: misc/tune2fs.c:1015
#, c-format
@@ -4389,14 +4337,14 @@ msgid "Invalid UUID format\n"
msgstr "Neplatný formát UUID\n"
#: misc/tune2fs.c:1067
-#, fuzzy, c-format
+#, c-format
msgid "Setting stride size to %d\n"
-msgstr "Nastavuji gid rezervovaných bloků na %lu\n"
+msgstr "Nastavuji velikost kroku (stride) na %d\n"
#: misc/tune2fs.c:1072
-#, fuzzy, c-format
+#, c-format
msgid "Setting stripe width to %d\n"
-msgstr "Nastavuji gid rezervovaných bloků na %lu\n"
+msgstr "Nastavuji šířku pruhu (stripe width) na %d\n"
#: misc/util.c:72
msgid "Proceed anyway? (y,n) "
@@ -4513,7 +4461,7 @@ msgstr "Použití: %s [-r] [-t]\n"
#: resize/extent.c:196
msgid "# Extent dump:\n"
-msgstr "# Výpis extentů:\n"
+msgstr "# Výpis rozsahú:\n"
#: resize/extent.c:197
#, c-format
@@ -4645,8 +4593,7 @@ msgstr "bloky meta-dat"
#: resize/resize2fs.c:1550
#, c-format
msgid "Should never happen: resize inode corrupt!\n"
-msgstr ""
-"Toto by se nikdy nemělo stát: iuzly pro změnu velikosti jsou poškozeny!\n"
+msgstr "Toto by se nikdy nemělo stát: iuzly pro změnu velikosti jsou poškozeny!\n"
#~ msgid ""
#~ "\n"
@@ -4690,8 +4637,7 @@ msgstr ""
#~ msgstr "Duplikovaný/špatný blok(y) v inode %i:"
#~ msgid "Forcibly clearing HTREE flag on @i %d (%q). (Beta test code)\n"
-#~ msgstr ""
-#~ "Vynuceně mažu příznak HTREE v inode %d (%q). (Kód v beta testování)\n"
+#~ msgstr "Vynuceně mažu příznak HTREE v inode %d (%q). (Kód v beta testování)\n"
#~ msgid ""
#~ "\n"
diff --git a/po/nl.gmo b/po/nl.gmo
index 0ab4a97d..e91168a6 100644
--- a/po/nl.gmo
+++ b/po/nl.gmo
Binary files differ
diff --git a/po/nl.po b/po/nl.po
index 848e49eb..8c53d32c 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -63,10 +63,10 @@
#.
msgid ""
msgstr ""
-"Project-Id-Version: e2fsprogs-1.40.6\n"
+"Project-Id-Version: e2fsprogs-1.40.7\n"
"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
"POT-Creation-Date: 2008-02-28 21:45-0500\n"
-"PO-Revision-Date: 2008-02-13 12:15+0100\n"
+"PO-Revision-Date: 2008-03-08 19:45+0100\n"
"Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
"MIME-Version: 1.0\n"
@@ -113,8 +113,7 @@ msgstr "tijdens bijwerken van de inode van een slecht blok"
#: e2fsck/badblocks.c:130
#, c-format
msgid "Warning: illegal block %u found in bad block inode. Cleared.\n"
-msgstr ""
-"Waarschuwing: ongeldig blok %u gevonden in inode van slecht blok. Gewist.\n"
+msgstr "Waarschuwing: ongeldig blok %u gevonden in inode van slecht blok. Gewist.\n"
#: e2fsck/ehandler.c:53
#, c-format
@@ -180,8 +179,7 @@ msgstr "Gebruik: %s schijfnaam\n"
#: e2fsck/flushb.c:63
#, c-format
msgid "BLKFLSBUF ioctl not supported! Can't flush buffers.\n"
-msgstr ""
-"ioctl(BLKFLSBUF) wordt niet ondersteund! Kan buffers niet leegmaken.\n"
+msgstr "ioctl(BLKFLSBUF) wordt niet ondersteund! Kan buffers niet leegmaken.\n"
#: e2fsck/iscan.c:46
#, c-format
@@ -881,15 +879,12 @@ msgstr "Het externe journal ondersteunt dit bestandssysteem niet.\n"
#: e2fsck/problem.c:212
msgid ""
"Ext3 @j @S is unknown type %N (unsupported).\n"
-"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
-"format.\n"
+"It is likely that your copy of e2fsck is old and/or doesn't support this @j format.\n"
"It is also possible the @j @S is corrupt.\n"
msgstr ""
"Superblok van ext3-journal is van onbekend en niet-ondersteund type %N.\n"
-"Waarschijnlijk gebruikt u een ouder e2fsck-programma dat deze journal-"
-"indeling\n"
-"niet ondersteunt. Het kan ook zijn dat het journal-superblok beschadigd "
-"is.\n"
+"Waarschijnlijk gebruikt u een ouder e2fsck-programma dat deze journal-indeling\n"
+"niet ondersteunt. Het kan ook zijn dat het journal-superblok beschadigd is.\n"
#. @-expanded: Ext3 journal superblock is corrupt.\n
#: e2fsck/problem.c:220
@@ -900,8 +895,7 @@ msgstr "Het superblok van het ext3-journal is beschadigd.\n"
#: e2fsck/problem.c:225
#, c-format
msgid "@S doesn't have has_@j flag, but has ext3 @j %s.\n"
-msgstr ""
-"Superblok heeft geen journalvlag gezet, maar heeft wel een ext3-journal %s.\n"
+msgstr "Superblok heeft geen journalvlag gezet, maar heeft wel een ext3-journal %s.\n"
#. @-expanded: superblock has ext3 needs_recovery flag set, but no journal.\n
#: e2fsck/problem.c:230
@@ -965,14 +959,12 @@ msgstr "Bestandssysteem is een versie 0, maar heeft functievlag(gen) gezet. "
#. @-expanded: Ext3 journal superblock has an unknown read-only feature flag set.\n
#: e2fsck/problem.c:285
msgid "Ext3 @j @S has an unknown read-only feature flag set.\n"
-msgstr ""
-"Journal-superblok heeft een onbekende alleen-lezen-functievlag gezet.\n"
+msgstr "Journal-superblok heeft een onbekende alleen-lezen-functievlag gezet.\n"
#. @-expanded: Ext3 journal superblock has an unknown incompatible feature flag set.\n
#: e2fsck/problem.c:290
msgid "Ext3 @j @S has an unknown incompatible feature flag set.\n"
-msgstr ""
-"Journal-superblok heeft een onbekende en incompatibele functievlag gezet.\n"
+msgstr "Journal-superblok heeft een onbekende en incompatibele functievlag gezet.\n"
#. @-expanded: journal version not supported by this e2fsck.\n
#: e2fsck/problem.c:295
@@ -1037,8 +1029,7 @@ msgstr ""
#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
#: e2fsck/problem.c:327
msgid "Resize_@i not enabled, but the resize @i is non-zero. "
-msgstr ""
-"'Resize_inode'-vlag is niet gezet, maar de 'resize'-inode is niet nul. "
+msgstr "'Resize_inode'-vlag is niet gezet, maar de 'resize'-inode is niet nul. "
#. @-expanded: Resize inode not valid.
#: e2fsck/problem.c:332
@@ -1084,9 +1075,7 @@ msgstr "De root-inode is geen map. "
#. @-expanded: root inode has dtime set (probably due to old mke2fs).
#: e2fsck/problem.c:367
msgid "@r has dtime set (probably due to old mke2fs). "
-msgstr ""
-"De verwijderingstijd van de root-inode is niet nul (waarschijnlijk "
-"veroorzaakt door een oude mke2fs). "
+msgstr "De verwijderingstijd van de root-inode is niet nul (waarschijnlijk veroorzaakt door een oude mke2fs). "
#. @-expanded: Reserved inode %i (%Q) has invalid mode.
#: e2fsck/problem.c:372
@@ -1114,14 +1103,12 @@ msgstr "Inode %i is een map met lengte nul. "
#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:392
msgid "@g %g's @b @B at %b @C.\n"
-msgstr ""
-"De blok-bitkaart van groep %g botst bij %b met een bestandssysteemblok.\n"
+msgstr "De blok-bitkaart van groep %g botst bij %b met een bestandssysteemblok.\n"
#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:397
msgid "@g %g's @i @B at %b @C.\n"
-msgstr ""
-"De inode-bitkaart van groep %g botst bij %b met een bestandssysteemblok.\n"
+msgstr "De inode-bitkaart van groep %g botst bij %b met een bestandssysteemblok.\n"
#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:402
@@ -1188,9 +1175,7 @@ msgstr "Een dubbel of slecht blok is in gebruik!\n"
#. @-expanded: Bad block %b used as bad block inode indirect block.
#: e2fsck/problem.c:462
msgid "Bad @b %b used as bad @b @i indirect @b. "
-msgstr ""
-"Slecht blok %b is in gebruik als indirect blok voor de slechte-blokken-"
-"inode. "
+msgstr "Slecht blok %b is in gebruik als indirect blok voor de slechte-blokken-inode. "
#. @-expanded: \n
#. @-expanded: The bad block inode has probably been corrupted. You probably\n
@@ -1216,8 +1201,7 @@ msgid ""
"If the @b is really bad, the @f can not be fixed.\n"
msgstr ""
"\n"
-"Als het blok echt slecht is, kan het bestandssysteem niet gerepareerd "
-"worden.\n"
+"Als het blok echt slecht is, kan het bestandssysteem niet gerepareerd worden.\n"
#. @-expanded: You can remove this block from the bad block list and hope\n
#. @-expanded: that the block is really OK. But there are no guarantees.\n
@@ -1240,8 +1224,7 @@ msgstr "Het primaire superblok (%b) staat in de lijst van slechte blokken.\n"
#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
#: e2fsck/problem.c:490
msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
-msgstr ""
-"Een groepsbeschrijversblok (%b) staat in de lijst van slechte blokken.\n"
+msgstr "Een groepsbeschrijversblok (%b) staat in de lijst van slechte blokken.\n"
#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
#: e2fsck/problem.c:496
@@ -1251,21 +1234,17 @@ msgstr "Waarschuwing: groep %g heeft een slecht superblok (%b).\n"
#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
#: e2fsck/problem.c:501
msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
-msgstr ""
-"Waarschuwing: groep %g bevat een slecht blok (%b) in de groepsbeschrijvers.\n"
+msgstr "Waarschuwing: groep %g bevat een slecht blok (%b) in de groepsbeschrijvers.\n"
#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
#: e2fsck/problem.c:507
msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
-msgstr ""
-"Interne fout?: blok %b is zonder reden geclaimd in process_bad_block().\n"
+msgstr "Interne fout?: blok %b is zonder reden geclaimd in process_bad_block().\n"
#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
#: e2fsck/problem.c:513
msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
-msgstr ""
-"Fout tijdens reserveren van %N aaneengsloten blokken in groep %g voor %s: %"
-"m\n"
+msgstr "Fout tijdens reserveren van %N aaneengsloten blokken in groep %g voor %s: %m\n"
#. @-expanded: error allocating block buffer for relocating %s\n
#: e2fsck/problem.c:518
@@ -1337,9 +1316,7 @@ msgstr "Fout tijdens opslaan van inodetal (inode=%i, aantal=%N): %m\n"
#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
#: e2fsck/problem.c:578
msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
-msgstr ""
-"Fout tijdens opslaan van mapblokkeninformatie (inode=%i, blok=%b, aantal=%"
-"N): %m\n"
+msgstr "Fout tijdens opslaan van mapblokkeninformatie (inode=%i, blok=%b, aantal=%N): %m\n"
#. @-expanded: Error reading inode %i: %m\n
#: e2fsck/problem.c:584
@@ -1368,9 +1345,7 @@ msgstr ""
#: e2fsck/problem.c:603
#, c-format
msgid "@i %i has @cion flag set on @f without @cion support. "
-msgstr ""
-"Inode %i heeft de compressievlag gezet op een bestandssysteem zonder "
-"compressie-ondersteuning. "
+msgstr "Inode %i heeft de compressievlag gezet op een bestandssysteem zonder compressie-ondersteuning. "
#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
#: e2fsck/problem.c:608
@@ -1397,9 +1372,7 @@ msgstr "Inode %i was deel van de lijst van verweesde inodes. "
#. @-expanded: inodes that were part of a corrupted orphan linked list found.
#: e2fsck/problem.c:634
msgid "@is that were part of a corrupted orphan linked list found. "
-msgstr ""
-"Inodes gevonden die deel waren van een beschadigde lijst van verweesde "
-"inodes. "
+msgstr "Inodes gevonden die deel waren van een beschadigde lijst van verweesde inodes. "
#. @-expanded: error allocating refcount structure (%N): %m\n
#: e2fsck/problem.c:639
@@ -1409,8 +1382,7 @@ msgstr "Fout tijdens reserveren van 'refcount'-structuur (%N): %m\n"
#. @-expanded: Error reading extended attribute block %b for inode %i.
#: e2fsck/problem.c:644
msgid "Error reading @a @b %b for @i %i. "
-msgstr ""
-"Fout tijdens lezen van blok %b met uitgebreide kenmerken voor inode %i. "
+msgstr "Fout tijdens lezen van blok %b met uitgebreide kenmerken voor inode %i. "
#. @-expanded: inode %i has a bad extended attribute block %b.
#: e2fsck/problem.c:649
@@ -1425,9 +1397,7 @@ msgstr "Fout tijdens lezen van blok %b met uitgebreide kenmerken: %m "
#. @-expanded: extended attribute block %b has reference count %B, should be %N.
#: e2fsck/problem.c:659
msgid "@a @b %b has reference count %B, @s %N. "
-msgstr ""
-"Blok %b met uitgebreide kenmerken heeft verwijzingstal %B, zou %N moeten "
-"zijn. "
+msgstr "Blok %b met uitgebreide kenmerken heeft verwijzingstal %B, zou %N moeten zijn. "
#. @-expanded: Error writing extended attribute block %b (%m).
#: e2fsck/problem.c:664
@@ -1447,8 +1417,7 @@ msgstr "Fout tijdens reserveren van blok %b met uitgebreide kenmerken. "
#. @-expanded: extended attribute block %b is corrupt (allocation collision).
#: e2fsck/problem.c:679
msgid "@a @b %b is corrupt (allocation collision). "
-msgstr ""
-"Blok %b met uitgebreide kenmerken is beschadigd (reserveringsoverlap). "
+msgstr "Blok %b met uitgebreide kenmerken is beschadigd (reserveringsoverlap). "
#. @-expanded: extended attribute block %b is corrupt (invalid name).
#: e2fsck/problem.c:684
@@ -1485,9 +1454,7 @@ msgstr "Blok #%B (%b) maakt symbolische koppeling te groot. "
#: e2fsck/problem.c:713
#, c-format
msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
-msgstr ""
-"Inode %i heeft de 'index_fl'-vlag gezet op een bestandssysteem zonder "
-"'htree'-ondersteuning.\n"
+msgstr "Inode %i heeft de 'index_fl'-vlag gezet op een bestandssysteem zonder 'htree'-ondersteuning.\n"
#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
#: e2fsck/problem.c:718
@@ -1504,8 +1471,7 @@ msgstr "Inode %i van 'htree'-map heeft een ongeldige wortelnode.\n"
#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
#: e2fsck/problem.c:728
msgid "@h %i has an unsupported hash version (%N)\n"
-msgstr ""
-"Inode %i van 'htree'-map gebruikt een niet-ondersteunde hash-versie (%N).\n"
+msgstr "Inode %i van 'htree'-map gebruikt een niet-ondersteunde hash-versie (%N).\n"
#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
#: e2fsck/problem.c:733
@@ -1542,40 +1508,32 @@ msgstr "Inode %i heeft een ongeldige extra grootte (%IS).\n"
#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
#: e2fsck/problem.c:759
msgid "@a in @i %i has a namelen (%N) which is @n\n"
-msgstr ""
-"Een uitgebreid kenmerk in inode %i heeft een ongeldige naamlengte (%N).\n"
+msgstr "Een uitgebreid kenmerk in inode %i heeft een ongeldige naamlengte (%N).\n"
#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
#: e2fsck/problem.c:764
msgid "@a in @i %i has a value size (%N) which is @n\n"
-msgstr ""
-"Een uitgebreid kenmerk in inode %i heeft een ongeldige waardegrootte (%N).\n"
+msgstr "Een uitgebreid kenmerk in inode %i heeft een ongeldige waardegrootte (%N).\n"
#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
#: e2fsck/problem.c:769
msgid "@a in @i %i has a value offset (%N) which is @n\n"
-msgstr ""
-"Een uitgebreid kenmerk in inode %i heeft een ongeldige waardeoffset (%N).\n"
+msgstr "Een uitgebreid kenmerk in inode %i heeft een ongeldige waardeoffset (%N).\n"
#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
#: e2fsck/problem.c:774
msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
-msgstr ""
-"Een uitgebreid kenmerk in inode %i heeft een ongeldig waardeblok (%N, moet 0 "
-"zijn).\n"
+msgstr "Een uitgebreid kenmerk in inode %i heeft een ongeldig waardeblok (%N, moet 0 zijn).\n"
#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid (must be 0)\n
#: e2fsck/problem.c:779
msgid "@a in @i %i has a hash (%N) which is @n (must be 0)\n"
-msgstr ""
-"Een uitgebreid kenmerk in inode %i heeft een ongeldige hashwaarde (%N, moet "
-"0 zijn).\n"
+msgstr "Een uitgebreid kenmerk in inode %i heeft een ongeldige hashwaarde (%N, moet 0 zijn).\n"
#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
#: e2fsck/problem.c:784
msgid "@i %i is a %It but it looks like it is really a directory.\n"
-msgstr ""
-"Inode %i is gemarkeerd als een %It, maar lijkt feitelijk een map te zijn.\n"
+msgstr "Inode %i is gemarkeerd als een %It, maar lijkt feitelijk een map te zijn.\n"
#. @-expanded: \n
#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
@@ -1617,15 +1575,12 @@ msgstr "Fout tijdens langslopen van blokken van inode %i (%s): %m\n"
#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
#: e2fsck/problem.c:827 e2fsck/problem.c:1143
msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
-msgstr ""
-"Fout tijdens bijstellen van verwijzingstal van blok %b met uitgebreide "
-"kenmerken (inode %i): %m\n"
+msgstr "Fout tijdens bijstellen van verwijzingstal van blok %b met uitgebreide kenmerken (inode %i): %m\n"
#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
#: e2fsck/problem.c:833
msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
-msgstr ""
-"Stap 1C: Doorzoeken van mappen naar inodes met meervoudig-geclaimde blokken\n"
+msgstr "Stap 1C: Doorzoeken van mappen naar inodes met meervoudig-geclaimde blokken\n"
#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
#: e2fsck/problem.c:839
@@ -1914,9 +1869,7 @@ msgstr "Blok van uitgebreide kenmerken @F is ongeldig (%If).\n"
#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
#: e2fsck/problem.c:1109
msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
-msgstr ""
-"Bestandssysteem bevat grote bestanden, maar heeft in het superblok niet de "
-"'large-file'-vlag gezet.\n"
+msgstr "Bestandssysteem bevat grote bestanden, maar heeft in het superblok niet de 'large-file'-vlag gezet.\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) not referenced\n
#: e2fsck/problem.c:1114
@@ -1931,14 +1884,12 @@ msgstr "Probleem in 'htree'-map %d: naar node %B wordt twee keer verwezen.\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has bad min hash\n
#: e2fsck/problem.c:1124
msgid "@p @h %d: node (%B) has bad min hash\n"
-msgstr ""
-"Probleem in 'htree'-map %d: node %B heeft een ongeldige minimum hash.\n"
+msgstr "Probleem in 'htree'-map %d: node %B heeft een ongeldige minimum hash.\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has bad max hash\n
#: e2fsck/problem.c:1129
msgid "@p @h %d: node (%B) has bad max hash\n"
-msgstr ""
-"Probleem in 'htree'-map %d: node %B heeft een ongeldige maximum hash.\n"
+msgstr "Probleem in 'htree'-map %d: node %B heeft een ongeldige maximum hash.\n"
#. @-expanded: invalid HTREE directory inode %d (%q).
#: e2fsck/problem.c:1134
@@ -1969,8 +1920,7 @@ msgstr "Probleem in 'htree'-map %d: node %B heeft een ongeldig aantal (%N).\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has an unordered hash table\n
#: e2fsck/problem.c:1163
msgid "@p @h %d: node (%B) has an unordered hash table\n"
-msgstr ""
-"Probleem in 'htree'-map %d: node %B heeft een ongeordende hash-tabel.\n"
+msgstr "Probleem in 'htree'-map %d: node %B heeft een ongeordende hash-tabel.\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has invalid depth\n
#: e2fsck/problem.c:1168
@@ -2045,8 +1995,7 @@ msgstr "'..' in %Q (%i) is %P (%j), moet %q (%d) zijn.\n"
#. @-expanded: Bad or non-existent /lost+found. Cannot reconnect.\n
#: e2fsck/problem.c:1225
msgid "Bad or non-existent /@l. Cannot reconnect.\n"
-msgstr ""
-"Beschadigde of niet-bestaande /lost+found. Kan inode niet herverbinden.\n"
+msgstr "Beschadigde of niet-bestaande /lost+found. Kan inode niet herverbinden.\n"
#. @-expanded: Could not expand /lost+found: %m\n
#: e2fsck/problem.c:1230
@@ -2087,8 +2036,7 @@ msgstr "ext2fs_new_dir_block(): %m tijdens maken van nieuw mapblok\n"
#: e2fsck/problem.c:1260
#, c-format
msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
-msgstr ""
-"ext2fs_write_dir_block(): %m tijdens maken van mapblok voor /lost+found\n"
+msgstr "ext2fs_write_dir_block(): %m tijdens maken van mapblok voor /lost+found\n"
#. @-expanded: Error while adjusting inode count on inode %i\n
#: e2fsck/problem.c:1265
@@ -2115,8 +2063,7 @@ msgid ""
"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
"\n"
msgstr ""
-"Kan ouderverwijzing van inode %i niet herstellen: kan de oudermap niet "
-"vinden.\n"
+"Kan ouderverwijzing van inode %i niet herstellen: kan de oudermap niet vinden.\n"
"\n"
#. @-expanded: Error creating root directory (%s): %m\n
@@ -2253,12 +2200,8 @@ msgstr "Verkeerd aantal blokken (%b, geteld=%c).\n"
#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
#. @-expanded: endpoints (%i, %j)\n
#: e2fsck/problem.c:1458
-msgid ""
-"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
-"endpoints (%i, %j)\n"
-msgstr ""
-"PROGRAMMAFOUT in e2fsck: in bestandssysteem %N komen de bitkaart-eindpunten "
-"(%b, %c) niet overeen met de berekende eindpunten (%i, %j)\n"
+msgid "PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B endpoints (%i, %j)\n"
+msgstr "PROGRAMMAFOUT in e2fsck: in bestandssysteem %N komen de bitkaart-eindpunten (%b, %c) niet overeen met de berekende eindpunten (%i, %j)\n"
#: e2fsck/problem.c:1464
msgid "Internal error: fudging end of bitmap (%N)\n"
@@ -2350,7 +2293,7 @@ msgstr "tijdens schrijven van inodetabel (groep %d)"
#: e2fsck/swapfs.c:226
#, c-format
msgid "Pass 0: Doing byte-swap of filesystem\n"
-msgstr "Stap 0: Verwisseling van hoge en lage bytes in hele bestandssysteem\n"
+msgstr "Stap 0: Omwisseling van hoge en lage bytes in hele bestandssysteem\n"
#: e2fsck/swapfs.c:233
#, c-format
@@ -2359,11 +2302,11 @@ msgid ""
"and not mounted before trying to byte-swap it.\n"
msgstr ""
"%s: het bestandssysteem dient opnieuw gecontroleerd te worden met 'fsck'\n"
-"en niet aangekoppeld te worden voordat de byte-verwisseling gebeurd is.\n"
+"en niet aangekoppeld te worden voordat de byte-omwisseling gebeurd is.\n"
#: e2fsck/swapfs.c:268
msgid "Byte swap"
-msgstr "Byte-verwisseling"
+msgstr "Byte-omwisseling"
#: e2fsck/unix.c:74
#, c-format
@@ -2386,17 +2329,16 @@ msgid ""
" -p Automatic repair (no questions)\n"
" -n Make no changes to the filesystem\n"
" -y Assume \"yes\" to all questions\n"
-" -c Check for bad blocks and add them to the badblock "
-"list\n"
+" -c Check for bad blocks and add them to the badblock list\n"
" -f Force checking even if filesystem is marked clean\n"
msgstr ""
"\n"
"Noodhulp:\n"
-" -p Automatische reparatie (zonder vragen)\n"
-" -n Bestandssyteem niet veranderen; op alle vragen \"nee\" aannemen\n"
-" -y Als antwoord op alle vragen \"ja\" aannemen\n"
-" -c Op slechte blokken controleren en deze aan lijst toevoegen\n"
-" -f Een controle afdwingen, ook als het bestandssysteem schoon is\n"
+" -p Automatische reparatie (zonder vragen).\n"
+" -n Bestandssyteem niet veranderen; op alle vragen \"nee\" aannemen.\n"
+" -y Als antwoord op alle vragen \"ja\" aannemen.\n"
+" -c Op slechte blokken controleren en deze aan lijst toevoegen.\n"
+" -f Een controle afdwingen, ook als het bestandssysteem schoon is.\n"
#: e2fsck/unix.c:86
#, c-format
@@ -2408,13 +2350,12 @@ msgid ""
" -l bad_blocks_file Add to badblocks list\n"
" -L bad_blocks_file Set badblocks list\n"
msgstr ""
-" -v Breedsprakige uitvoer\n"
-" -b superblok Dit superblok gebruiken\n"
-" -B blokgrootte Deze blokgrootte gebruiken bij zoeken naar superblok\n"
-" -j extern_journal Dit externe journal gebruiken\n"
-" -l slechte_blokkenbestand Deze lijst aan de slechte_blokkenlijst "
-"toevoegen\n"
-" -L slechte_blokkenbestand Deze slechte_blokkenlijst gebruiken\n"
+" -v Breedsprakige uitvoer.\n"
+" -b superblok Dit superblok gebruiken.\n"
+" -B blokgrootte Deze blokgrootte gebruiken bij zoeken naar superblok.\n"
+" -j extern_journal Dit externe journal gebruiken.\n"
+" -l slechte_blokkenbestand Deze lijst aan de slechte_blokkenlijst toevoegen.\n"
+" -L slechte_blokkenbestand Deze slechte_blokkenlijst gebruiken.\n"
#: e2fsck/unix.c:121
#, c-format
@@ -2485,9 +2426,7 @@ msgstr " is niet goed ontkoppeld"
#: e2fsck/unix.c:284
msgid " primary superblock features different from backup"
-msgstr ""
-" het primaire superblok heeft andere functievlaggen gezet dan de "
-"reserveblokken"
+msgstr " het primaire superblok heeft andere functievlaggen gezet dan de reserveblokken"
#: e2fsck/unix.c:288
#, c-format
@@ -2566,8 +2505,7 @@ msgstr "De optie '-t' wordt niet ondersteund door deze versie van e2fsck.\n"
#: e2fsck/unix.c:747
#, c-format
msgid "Byte-swapping filesystems not compiled in this version of e2fsck\n"
-msgstr ""
-"Byte-verwisseling wordt niet ondersteund door deze versie van e2fsck.\n"
+msgstr "Byte-omwisseling is niet mogelijk met deze versie van e2fsck.\n"
#: e2fsck/unix.c:770 misc/tune2fs.c:504 misc/tune2fs.c:769 misc/tune2fs.c:786
#, c-format
@@ -2577,7 +2515,7 @@ msgstr "Kan apparaat '%s' niet vinden."
#: e2fsck/unix.c:801
#, c-format
msgid "Incompatible options not allowed when byte-swapping.\n"
-msgstr "Bij byte-verwisseling zijn botsende opties niet toegestaan.\n"
+msgstr "Bij byte-omwisseling zijn botsende opties niet toegestaan.\n"
#: e2fsck/unix.c:808
#, c-format
@@ -2654,8 +2592,7 @@ msgstr "Is dit misschien een partitie met lengte nul?\n"
#: e2fsck/unix.c:1021
#, c-format
msgid "You must have %s access to the filesystem or be root\n"
-msgstr ""
-"U dient %s-toegang tot het bestandssyteem te hebben, of root te zijn.\n"
+msgstr "U dient %s-toegang tot het bestandssyteem te hebben, of root te zijn.\n"
#: e2fsck/unix.c:1026
#, c-format
@@ -2665,8 +2602,7 @@ msgstr "Mogelijk een niet-bestaand apparaat of een swap-apparaat?\n"
#: e2fsck/unix.c:1028
#, c-format
msgid "Filesystem mounted or opened exclusively by another program?\n"
-msgstr ""
-"Bestandssysteem exclusief aangekoppeld of geopend door een ander programma?\n"
+msgstr "Bestandssysteem exclusief aangekoppeld of geopend door een ander programma?\n"
#: e2fsck/unix.c:1032
#, c-format
@@ -2688,9 +2624,7 @@ msgstr "tijdens controle van het ext3-journal van %s"
#: e2fsck/unix.c:1128
#, c-format
-msgid ""
-"Warning: skipping journal recovery because doing a read-only filesystem "
-"check.\n"
+msgid "Warning: skipping journal recovery because doing a read-only filesystem check.\n"
msgstr ""
"Waarschuwing: afspelen van journal wordt overgeslagen\n"
"omdat een alleen-lezencontrole uitgevoerd wordt.\n"
@@ -2706,10 +2640,9 @@ msgid "while recovering ext3 journal of %s"
msgstr "tijdens afspelen van het ext3-journal van %s"
#: e2fsck/unix.c:1171
-#, fuzzy, c-format
+#, c-format
msgid "%s has unsupported feature(s):"
-msgstr ""
-"Bestandssysteem %s heeft functies ingeschakeld die niet ondersteund worden.\n"
+msgstr "Bestandssysteem %s heeft functies ingeschakeld die niet ondersteund worden:"
#: e2fsck/unix.c:1187
msgid "Warning: compression support is experimental.\n"
@@ -2767,8 +2700,7 @@ msgid ""
"*** journal has been re-created - filesystem is now ext3 again ***\n"
msgstr ""
"\n"
-"*** journal is opnieuw aangemaakt -- het bestandssysteem is nu weer ext3 "
-"***\n"
+"*** journal is opnieuw aangemaakt -- het bestandssysteem is nu weer ext3 ***\n"
#: e2fsck/unix.c:1310
#, c-format
@@ -2958,8 +2890,7 @@ msgstr "voltooid \n"
#, c-format
msgid ""
"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
-" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern "
-"[...]]]\n"
+" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
" device [last_block [start_block]]\n"
msgstr ""
"Gebruik: %s [-b blokgrootte] [-i invoerbestand] [-o uitvoerbestand]\n"
@@ -2998,8 +2929,7 @@ msgstr "tijdens leegmaken van de buffers"
#: misc/badblocks.c:343 misc/badblocks.c:581
msgid "while beginning bad block list iteration"
-msgstr ""
-"tijdens voorbereiding van het langslopen van de lijst met slechte blokken"
+msgstr "tijdens voorbereiding van het langslopen van de lijst met slechte blokken"
#: misc/badblocks.c:357 misc/badblocks.c:447 misc/badblocks.c:591
msgid "while allocating buffers"
@@ -3033,13 +2963,11 @@ msgstr "Lezen en vergelijken: "
#: misc/badblocks.c:603
msgid "Checking for bad blocks in non-destructive read-write mode\n"
-msgstr ""
-"Zoeken naar slechte blokken in niet-destructieve lezen-en-schrijven-modus\n"
+msgstr "Zoeken naar slechte blokken in niet-destructieve lezen-en-schrijven-modus\n"
#: misc/badblocks.c:607
msgid "Checking for bad blocks (non-destructive read-write test)\n"
-msgstr ""
-"Zoeken naar slechte blokken (niet-destructieve lezen-en-schrijven-test)\n"
+msgstr "Zoeken naar slechte blokken (niet-destructieve lezen-en-schrijven-test)\n"
#: misc/badblocks.c:614
msgid ""
@@ -3322,17 +3250,17 @@ msgid "Couldn't allocate memory to parse options!\n"
msgstr "Kan geen geheugen reserveren om opties te ontleden!\n"
#: misc/dumpe2fs.c:363
-#, fuzzy, c-format
+#, c-format
msgid "Invalid superblock parameter: %s\n"
-msgstr "Ongeldig argument van 'stride': %s\n"
+msgstr "Ongeldig superblok opgegeven: %s\n"
#: misc/dumpe2fs.c:378
-#, fuzzy, c-format
+#, c-format
msgid "Invalid blocksize parameter: %s\n"
-msgstr "Ongeldig argument van 'resize': %s\n"
+msgstr "Ongeldige blokgrootte opgegeven: %s\n"
#: misc/dumpe2fs.c:389
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad extended option(s) specified: %s\n"
@@ -3345,12 +3273,14 @@ msgid ""
"\tblocksize=<blocksize>\n"
msgstr ""
"\n"
-"Ongeldige opties opgegeven.\n"
+"Ongeldige optie opgegeven: %s\n"
"\n"
-"Geldige uitgebreide opties zijn:\n"
-" test_fs\n"
-" ^test_fs\n"
+"Uitgebreide opties worden gescheiden door komma's,\n"
+"hun argument wordt voorafgegaan door een '='-teken.\n"
"\n"
+"Geldige uitgebreide opties zijn:\n"
+" superblock=<superbloknummer>\n"
+" blocksize=<blokgrootte>\n"
#: misc/dumpe2fs.c:449 misc/mke2fs.c:1199
#, c-format
@@ -3512,9 +3442,7 @@ msgstr "Kan geen geheugen reserveren voor bestandssysteemsoorten.\n"
#: misc/fsck.c:872
#, c-format
-msgid ""
-"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
-"number\n"
+msgid "%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n"
msgstr ""
"%s: ongeldige regel in /etc/fstab wordt overgeslagen:\n"
"zesde veld van 'bind'-aankoppeling is niet nul (fsck-volgnummer)\n"
@@ -3534,11 +3462,9 @@ msgid "--waiting-- (pass %d)\n"
msgstr "--wachten-- (volgnummer %d)\n"
#: misc/fsck.c:1066
-#, fuzzy
-msgid ""
-"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
+msgid "Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
msgstr ""
-"Gebruik: fsck [-ANPRTV] [-C [descriptor]] [-t bestandssysteemsoort]\n"
+"Gebruik: fsck [-AMNPRTV] [-C [descriptor]] [-t bestandssysteemsoort]\n"
" [bestandssysteemopties] [bestandssysteem...]\n"
#: misc/fsck.c:1108
@@ -3567,7 +3493,7 @@ msgid "While reading version on %s"
msgstr "Tijdens lezen van versie op %s"
#: misc/mke2fs.c:97
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c|-l filename] [-b block-size] [-f fragment-size]\n"
"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
@@ -3578,10 +3504,10 @@ msgid ""
msgstr ""
"Gebruik: %s [-b blokgrootte] [-c|-l bestandsnaam] [-f fragmentgrootte]\n"
" [-g blokken_per_groep] [-i bytes_per_inode] [-I inode-grootte]\n"
-" [-j] [-J journalopties] [-L label] [-M laatst_aangekoppelde_map]\n"
+" [-J journalopties] [-L label] [-M laatste_aankoppelingspunt]\n"
" [-m percentage_gereserveerde_blokken] [-N aantal_inodes]\n"
" [-o naam_van_aanmakende_besturingssyteem] [-O functie[,...]]\n"
-" [-r bestandssysteemversie] [-T bestandssysteemtype] [-nqSvV]\n"
+" [-r bestandssysteemversie] [-T bestandssysteemtype] [-jnqvFSV]\n"
" [-E uitgebreide_optie[,...]] apparaat [aantal_blokken]\n"
#: misc/mke2fs.c:198
@@ -3601,8 +3527,7 @@ msgstr "tijdens verwerken van de gemaakte lijst van slechte blokken"
#: misc/mke2fs.c:236
#, c-format
msgid "Block %d in primary superblock/group descriptor area bad.\n"
-msgstr ""
-"Blok %d in het primaire superblok of de groepsbeschrijvers is slecht.\n"
+msgstr "Blok %d in het primaire superblok of de groepsbeschrijvers is slecht.\n"
#: misc/mke2fs.c:238
#, c-format
@@ -3791,9 +3716,9 @@ msgid "Invalid stride parameter: %s\n"
msgstr "Ongeldig argument van 'stride': %s\n"
#: misc/mke2fs.c:808
-#, fuzzy, c-format
+#, c-format
msgid "Invalid stripe-width parameter: %s\n"
-msgstr "Ongeldig argument van 'stride': %s\n"
+msgstr "Ongeldig argument van 'stripe-width': %s\n"
#: misc/mke2fs.c:830
#, c-format
@@ -3803,18 +3728,15 @@ msgstr "Ongeldig argument van 'resize': %s\n"
#: misc/mke2fs.c:837
#, c-format
msgid "The resize maximum must be greater than the filesystem size.\n"
-msgstr ""
-"De maximum grootte moet groter zijn dan de huidige bestandssysteemgrootte.\n"
+msgstr "De maximum grootte moet groter zijn dan de huidige bestandssysteemgrootte.\n"
#: misc/mke2fs.c:861
#, c-format
msgid "On-line resizing not supported with revision 0 filesystems\n"
-msgstr ""
-"Vergroten en verkleinen zijn niet mogelijk op een bestandssysteem van versie "
-"0.\n"
+msgstr "Vergroten en verkleinen zijn niet mogelijk op een bestandssysteem van versie 0.\n"
#: misc/mke2fs.c:878
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad option(s) specified: %s\n"
@@ -3830,16 +3752,16 @@ msgid ""
"\ttest_fs\n"
msgstr ""
"\n"
-"Ongeldige opties opgegeven.\n"
+"Ongeldige optie opgegeven: %s\n"
"\n"
"Uitgebreide opties worden gescheiden door komma's,\n"
"hun argument wordt voorafgegaan door een '='-teken.\n"
"\n"
"Geldige uitgebreide opties zijn:\n"
-" stride=<aantal blokken per stripe, als voorbereiding op RAID>\n"
+" stride=<aantal blokken dat samen per RAID-schijf wordt gelezen/geschreven>\n"
+" stripe-width=<aantal blokken per stripe> (meestal stride × aantal schijven)\n"
" resize=<maximum grootte van bestandssysteem in blokken>\n"
" test_fs\n"
-"\n"
#: misc/mke2fs.c:893
#, c-format
@@ -3848,6 +3770,9 @@ msgid ""
"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
"\n"
msgstr ""
+"\n"
+"Waarschuwing: 'stripe'-breedte %u is geen even veelvoud van 'stride' %u.\n"
+"\n"
#: misc/mke2fs.c:920
#, c-format
@@ -3871,8 +3796,7 @@ msgstr "ongeldige blokgrootte: %s"
#: misc/mke2fs.c:1044
#, c-format
msgid "Warning: blocksize %d not usable on most systems.\n"
-msgstr ""
-"Waarschuwing: blokgrootte %d is op de meeste systemen niet bruikbaar.\n"
+msgstr "Waarschuwing: blokgrootte %d is op de meeste systemen niet bruikbaar.\n"
#: misc/mke2fs.c:1061
#, c-format
@@ -3882,8 +3806,7 @@ msgstr "ongeldige fragmentgrootte: %s"
#: misc/mke2fs.c:1067
#, c-format
msgid "Warning: fragments not supported. Ignoring -f option\n"
-msgstr ""
-"Waarschuwing: fragmenten worden niet ondersteund; optie -f wordt genegeerd\n"
+msgstr "Waarschuwing: fragmenten worden niet ondersteund; optie -f wordt genegeerd\n"
#: misc/mke2fs.c:1074
msgid "Illegal number for blocks per group"
@@ -3932,8 +3855,7 @@ msgstr "tijdens openen van journal-apparaat %s\n"
#: misc/mke2fs.c:1229
#, c-format
msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
-msgstr ""
-"Blokgrootte %d van journal-apparaat is kleiner dan minimum blokgrootte %d.\n"
+msgstr "Blokgrootte %d van journal-apparaat is kleiner dan minimum blokgrootte %d.\n"
#: misc/mke2fs.c:1243
#, c-format
@@ -3942,8 +3864,7 @@ msgstr "Blokken van %d bytes zijn te groot voor dit systeem (max %d)."
#: misc/mke2fs.c:1247
#, c-format
-msgid ""
-"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
+msgid "Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
msgstr ""
"Waarschuwing: blokken van %d bytes zijn te groot voor dit systeem,\n"
"het maximum is %d -- maar 'mke2fs' wordt gedwongen uitgevoerd.\n"
@@ -3984,16 +3905,12 @@ msgstr "Bestandssysteem is groter dan de schijnbare apparaatgrootte."
#: misc/mke2fs.c:1367
#, c-format
msgid "Filesystem features not supported with revision 0 filesystems\n"
-msgstr ""
-"Sommige functies worden niet ondersteund op een bestandssysteem van versie "
-"0.\n"
+msgstr "Sommige functies worden niet ondersteund op een bestandssysteem van versie 0.\n"
#: misc/mke2fs.c:1374
#, c-format
msgid "Sparse superblocks not supported with revision 0 filesystems\n"
-msgstr ""
-"Schaarse superblokken zijn niet mogelijk op een bestandssysteem van versie "
-"0.\n"
+msgstr "Schaarse superblokken zijn niet mogelijk op een bestandssysteem van versie 0.\n"
#: misc/mke2fs.c:1386
#, c-format
@@ -4006,9 +3923,7 @@ msgstr "tijdens bepalen van de grootte van een sector"
#: misc/mke2fs.c:1464
msgid "reserved online resize blocks not supported on non-sparse filesystem"
-msgstr ""
-"het reserveren van blokken voor bestandssysteemvergroting wordt niet "
-"ondersteund op een niet-schaars bestandssysteem"
+msgstr "het reserveren van blokken voor bestandssysteemvergroting wordt niet ondersteund op een niet-schaars bestandssysteem"
#: misc/mke2fs.c:1473
msgid "blocks per group count out of range"
@@ -4043,8 +3958,7 @@ msgstr "ongeldige inode-grootte %d (min %d / max %d)"
#: misc/mke2fs.c:1510
#, c-format
msgid "Warning: %d-byte inodes not usable on older systems\n"
-msgstr ""
-"Waarschuwing: inodes van %d bytes zijn onbruikbaar op oudere systemen\n"
+msgstr "Waarschuwing: inodes van %d bytes zijn onbruikbaar op oudere systemen\n"
#: misc/mke2fs.c:1522
#, c-format
@@ -4146,7 +4060,7 @@ msgid "Please run e2fsck on the filesystem.\n"
msgstr "Controleer het bestandssysteem met 'e2fsck'.\n"
#: misc/tune2fs.c:98
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
@@ -4156,15 +4070,12 @@ msgid ""
"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID] device\n"
msgstr ""
"Gebruik: %s [-c maximum_aantal_aankoppelingen] [-C aankoppelingental]\n"
-" [-e gedrag_bij_fouten] [-E uitgebreide_optie[,...]] [-f] [-g "
-"groep]\n"
+" [-e gedrag_bij_fouten] [-E uitgebreide_optie[,...]] [-f] [-g groep]\n"
" [-i interval[d|w|m]] [-j] [-J journal-opties] [-l] [-L label]\n"
-" [-m percentage_gereserveerde_blokken] [-M "
-"laatst_aangekoppelde_map]\n"
+" [-m percentage_gereserveerde_blokken] [-M laatste_aankoppelingspunt]\n"
" [-o [^]aankoppelingsopties[,...]] [-O [^]functie[,...]]\n"
-" [-r aantal_gereserveerde_blokken] [-s schaarsheidsvlag]\n"
-" [-T tijdstip_van_laatste_controle] [-u gebruiker] [-U UUID] "
-"apparaat\n"
+" [-r aantal_gereserveerde_blokken] [-T tijdstip_van_laatste_controle]\n"
+" [-u gebruiker] [-U UUID] apparaat\n"
#: misc/tune2fs.c:171
msgid "while trying to open external journal"
@@ -4209,18 +4120,14 @@ msgid "Invalid mount option set: %s\n"
msgstr "Ongeldige aankoppelingsoptie: %s\n"
#: misc/tune2fs.c:338
-#, fuzzy, c-format
+#, c-format
msgid "Clearing filesystem feature '%s' not supported.\n"
-msgstr ""
-"Sommige functies worden niet ondersteund op een bestandssysteem van versie "
-"0.\n"
+msgstr "Het uitschakelen van bestandssysteemfunctie '%s' is niet mogelijk.\n"
#: misc/tune2fs.c:344
-#, fuzzy, c-format
+#, c-format
msgid "Setting filesystem feature '%s' not supported.\n"
-msgstr ""
-"Sommige functies worden niet ondersteund op een bestandssysteem van versie "
-"0.\n"
+msgstr "Het inschakelen van bestandssysteemfunctie '%s' is niet mogelijk.\n"
#: misc/tune2fs.c:353
msgid ""
@@ -4323,17 +4230,17 @@ msgid "bad uid/user name - %s"
msgstr "onjuiste UID of gebruikersnaam: %s"
#: misc/tune2fs.c:842
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stride: %s\n"
msgstr "Ongeldig argument van 'stride': %s\n"
#: misc/tune2fs.c:857
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stripe-width: %s\n"
-msgstr "Ongeldig argument van 'stride': %s\n"
+msgstr "Ongeldig argument van 'stripe-width': %s\n"
#: misc/tune2fs.c:867
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad options specified.\n"
@@ -4348,22 +4255,21 @@ msgid ""
"\t^test_fs\n"
msgstr ""
"\n"
-"Ongeldige opties opgegeven.\n"
+"Ongeldige optie opgegeven.\n"
"\n"
"Uitgebreide opties worden gescheiden door komma's,\n"
"hun argument wordt voorafgegaan door een '='-teken.\n"
"\n"
"Geldige uitgebreide opties zijn:\n"
-" stride=<aantal blokken per stripe, als voorbereiding op RAID>\n"
-" resize=<maximum grootte van bestandssysteem in blokken>\n"
+" stride=<aantal blokken dat samen per RAID-schijf wordt gelezen/geschreven>\n"
+" stripe-width=<aantal blokken per stripe> (meestal stride × aantal schijven)\n"
" test_fs\n"
-"\n"
+" ^test_fs\n"
#: misc/tune2fs.c:927
#, c-format
msgid "Filesystem %s has unsupported features enabled.\n"
-msgstr ""
-"Bestandssysteem %s heeft functies ingeschakeld die niet ondersteund worden.\n"
+msgstr "Bestandssysteem %s heeft functies ingeschakeld die niet ondersteund worden.\n"
#: misc/tune2fs.c:951
#, c-format
@@ -4427,6 +4333,8 @@ msgid ""
"\n"
"Clearing the sparse superflag not supported.\n"
msgstr ""
+"\n"
+"Het uitzetten van de zuinig-met-superblokkenvlag is niet mogelijk.\n"
#: misc/tune2fs.c:1015
#, c-format
@@ -4443,14 +4351,14 @@ msgid "Invalid UUID format\n"
msgstr "Onjuiste UUID-indeling\n"
#: misc/tune2fs.c:1067
-#, fuzzy, c-format
+#, c-format
msgid "Setting stride size to %d\n"
-msgstr "GID van gereserveerde blokken is op %lu gezet\n"
+msgstr "De 'stride'-lengte is op %d gezet\n"
#: misc/tune2fs.c:1072
-#, fuzzy, c-format
+#, c-format
msgid "Setting stripe width to %d\n"
-msgstr "GID van gereserveerde blokken is op %lu gezet\n"
+msgstr "De 'stripe'-breedte is op %d gezet\n"
#: misc/util.c:72
msgid "Proceed anyway? (y,n) "
@@ -4701,17 +4609,3 @@ msgstr "blokken voor metagegevens"
#, c-format
msgid "Should never happen: resize inode corrupt!\n"
msgstr "Zou nooit mogen gebeuren: de 'resize'-inode is beschadigd!\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "The filesystem already has sparse superblocks disabled.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Het bestandssysteem gebruikt al het normale aantal superblokken.\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Sparse superblock flag cleared. %s"
-#~ msgstr ""
-#~ "\n"
-#~ "De zuinig-met-superblokkenvlag is uitgezet. %s"
diff --git a/po/pl.gmo b/po/pl.gmo
index bd91b8c6..9c40e24f 100644
--- a/po/pl.gmo
+++ b/po/pl.gmo
Binary files differ
diff --git a/po/pl.po b/po/pl.po
index d9a3cac9..872f8a85 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,5 +1,5 @@
# Polish translation for e2fsprogs.
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Theodore Tso (msgids)
# This file is distributed under the same license as the e2fsprogs package.
# Jakub Bogusz <qboosh@pld-linux.org>, 2002-2008.
#
@@ -63,17 +63,16 @@
#.
msgid ""
msgstr ""
-"Project-Id-Version: e2fsprogs 1.40.6\n"
+"Project-Id-Version: e2fsprogs 1.40.7\n"
"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
"POT-Creation-Date: 2008-02-28 21:45-0500\n"
-"PO-Revision-Date: 2008-02-11 18:30+0100\n"
+"PO-Revision-Date: 2008-03-09 00:10+0100\n"
"Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: e2fsck/badblocks.c:22 misc/mke2fs.c:157
#, c-format
@@ -113,9 +112,7 @@ msgstr "podczas uaktualniania i-wza wadliwego bloku"
#: e2fsck/badblocks.c:130
#, c-format
msgid "Warning: illegal block %u found in bad block inode. Cleared.\n"
-msgstr ""
-"Uwaga: znaleziono niedopuszczalny blok %u w i-wle wadliwego bloku. "
-"Wyczyszczono.\n"
+msgstr "Uwaga: znaleziono niedopuszczalny blok %u w i-wle wadliwego bloku. Wyczyszczono.\n"
#: e2fsck/ehandler.c:53
#, c-format
@@ -233,8 +230,7 @@ msgstr "%s: odtwarzanie z kroniki\n"
#: e2fsck/journal.c:843
#, c-format
msgid "%s: won't do journal recovery while read-only\n"
-msgstr ""
-"%s: odtworzenie z kroniki nie zostanie wykonane w trybie tylko do odczytu\n"
+msgstr "%s: odtworzenie z kroniki nie zostanie wykonane w trybie tylko do odczytu\n"
#: e2fsck/journal.c:864
#, c-format
@@ -855,8 +851,7 @@ msgstr "@S ma bdn kronik ext3 (@i %i).\n"
#. @-expanded: External journal has multiple filesystem users (unsupported).\n
#: e2fsck/problem.c:192
msgid "External @j has multiple @f users (unsupported).\n"
-msgstr ""
-"Zewntrzna @j ma wielu uytkownikw systemu plikw (nie obsugiwane).\n"
+msgstr "Zewntrzna @j ma wielu uytkownikw systemu plikw (nie obsugiwane).\n"
#. @-expanded: Can't find external journal\n
#: e2fsck/problem.c:197
@@ -880,8 +875,7 @@ msgstr "Zewntrzna @j nie obsuguje tego systemu plikw\n"
#: e2fsck/problem.c:212
msgid ""
"Ext3 @j @S is unknown type %N (unsupported).\n"
-"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
-"format.\n"
+"It is likely that your copy of e2fsck is old and/or doesn't support this @j format.\n"
"It is also possible the @j @S is corrupt.\n"
msgstr ""
"@S kroniki ext3 ma nieznany typ %N (nie obsugiwany).\n"
@@ -1030,8 +1024,7 @@ msgstr ""
#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
#: e2fsck/problem.c:327
msgid "Resize_@i not enabled, but the resize @i is non-zero. "
-msgstr ""
-"Resize_inode nie wczone, ale i-wze zmiany rozmiaru jest niezerowy. "
+msgstr "Resize_inode nie wczone, ale i-wze zmiany rozmiaru jest niezerowy. "
#. @-expanded: Resize inode not valid.
#: e2fsck/problem.c:332
@@ -1177,8 +1170,7 @@ msgstr "Podwjny lub wadliwy @b jest uywany!\n"
#. @-expanded: Bad block %b used as bad block inode indirect block.
#: e2fsck/problem.c:462
msgid "Bad @b %b used as bad @b @i indirect @b. "
-msgstr ""
-"Wadliwy @b %b jest uywany jako niebiezporedni @b i-w꼳a z wadliwym @biem. "
+msgstr "Wadliwy @b %b jest uywany jako niebiezporedni @b i-w꼳a z wadliwym @biem. "
#. @-expanded: \n
#. @-expanded: The bad block inode has probably been corrupted. You probably\n
@@ -1313,14 +1305,12 @@ msgstr "Bd podczas iteracji po @bach w i-wle %i: %m\n"
#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
#: e2fsck/problem.c:573
msgid "Error storing @i count information (@i=%i, count=%N): %m\n"
-msgstr ""
-"Bd podczas zapisu informacji o liczbie i-wzw (@i=%i, liczba=%N): %m\n"
+msgstr "Bd podczas zapisu informacji o liczbie i-wzw (@i=%i, liczba=%N): %m\n"
#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
#: e2fsck/problem.c:578
msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
-msgstr ""
-"Bd podczas zapisu informacji o @dch @bach (@i=%i, @b=%b, liczba=%N): %m\n"
+msgstr "Bd podczas zapisu informacji o @dch @bach (@i=%i, @b=%b, liczba=%N): %m\n"
#. @-expanded: Error reading inode %i: %m\n
#: e2fsck/problem.c:584
@@ -1423,8 +1413,7 @@ msgstr "@A @bu rozszerzonych atrybutw %b. "
#. @-expanded: extended attribute block %b is corrupt (allocation collision).
#: e2fsck/problem.c:679
msgid "@a @b %b is corrupt (allocation collision). "
-msgstr ""
-"@b rozszerzonych atrybutw %b jest uszkodzony (kolizja przydzielania). "
+msgstr "@b rozszerzonych atrybutw %b jest uszkodzony (kolizja przydzielania). "
#. @-expanded: extended attribute block %b is corrupt (invalid name).
#: e2fsck/problem.c:684
@@ -1461,8 +1450,7 @@ msgstr "@b #%B (%b) powoduje, e dowizanie jest zbyt due. "
#: e2fsck/problem.c:713
#, c-format
msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
-msgstr ""
-"@i %i ma ustawion flag INDEX_FL na systemie plikw bez obsugi htree.\n"
+msgstr "@i %i ma ustawion flag INDEX_FL na systemie plikw bez obsugi htree.\n"
#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
#: e2fsck/problem.c:718
@@ -1583,15 +1571,12 @@ msgstr "Bd podczas iteracji po @bach w i-wle %i (%s): %m\n"
#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
#: e2fsck/problem.c:827 e2fsck/problem.c:1143
msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
-msgstr ""
-"Bd podczas poprawiania refcount dla @bu rozszerzonych atrybutw %b (@i %"
-"i): %m\n"
+msgstr "Bd podczas poprawiania refcount dla @bu rozszerzonych atrybutw %b (@i %i): %m\n"
#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
#: e2fsck/problem.c:833
msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
-msgstr ""
-"Przebieg 1C: Przeszukiwanie katalogw pod ktem i-wzw z @mmi @bami\n"
+msgstr "Przebieg 1C: Przeszukiwanie katalogw pod ktem i-wzw z @mmi @bami\n"
#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
#: e2fsck/problem.c:839
@@ -1931,8 +1916,7 @@ msgstr "@p i-wle @du HTREE %d: wze (%B) ma bdny licznik (%N)\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has an unordered hash table\n
#: e2fsck/problem.c:1163
msgid "@p @h %d: node (%B) has an unordered hash table\n"
-msgstr ""
-"@p i-wle @du HTREE %d: wze (%B) ma nie uporzdkowan tablic haszujc\n"
+msgstr "@p i-wle @du HTREE %d: wze (%B) ma nie uporzdkowan tablic haszujc\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has invalid depth\n
#: e2fsck/problem.c:1168
@@ -2210,12 +2194,8 @@ msgstr "Bdna liczba wolnych @bw (%b, naliczono %c).\n"
#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
#. @-expanded: endpoints (%i, %j)\n
#: e2fsck/problem.c:1458
-msgid ""
-"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
-"endpoints (%i, %j)\n"
-msgstr ""
-"BD PROGRAMU: koce bitmap systemu plikw (#%N) (%b, %c) nie zgadzaj si z "
-"policzonymi kocami bitmap (%i, %j)\n"
+msgid "PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B endpoints (%i, %j)\n"
+msgstr "BD PROGRAMU: koce bitmap systemu plikw (#%N) (%b, %c) nie zgadzaj si z policzonymi kocami bitmap (%i, %j)\n"
#: e2fsck/problem.c:1464
msgid "Internal error: fudging end of bitmap (%N)\n"
@@ -2235,8 +2215,7 @@ msgstr "Bd podczas kopiowania w zastpczej bitmapie @bw: %m\n"
#: e2fsck/problem.c:1499
msgid "Recreate journal to make the filesystem ext3 again?\n"
-msgstr ""
-"Utworzy ponownie kronik, aby uzyska z powrotem system plikw ext3?\n"
+msgstr "Utworzy ponownie kronik, aby uzyska z powrotem system plikw ext3?\n"
#: e2fsck/problem.c:1617
#, c-format
@@ -2344,8 +2323,7 @@ msgid ""
" -p Automatic repair (no questions)\n"
" -n Make no changes to the filesystem\n"
" -y Assume \"yes\" to all questions\n"
-" -c Check for bad blocks and add them to the badblock "
-"list\n"
+" -c Check for bad blocks and add them to the badblock list\n"
" -f Force checking even if filesystem is marked clean\n"
msgstr ""
"\n"
@@ -2354,8 +2332,7 @@ msgstr ""
" -n Nie wykonywanie zmian w systemie plikw\n"
" -y Przyjcie odpowiedzi \"tak\" na wszystkie pytania\n"
" -c Szukanie wadliwych blokw i dodanie ich do listy\n"
-" -f Wymuszenie sprawdzenia nawet \"czystego\" systemu "
-"plikw\n"
+" -f Wymuszenie sprawdzenia nawet \"czystego\" systemu plikw\n"
#: e2fsck/unix.c:86
#, c-format
@@ -2369,8 +2346,7 @@ msgid ""
msgstr ""
" -v Pokazywanie wikszej iloci informacji\n"
" -b superblok Uycie innego superbloku\n"
-" -B rozm.bloku Wymuszenie rozmiaru bloku przy poszukiwaniu "
-"superbloku\n"
+" -B rozm.bloku Wymuszenie rozmiaru bloku przy poszukiwaniu superbloku\n"
" -j zewn-kronika Ustawienie pooenia zewntrznej kroniki\n"
" -l plik_zych_blokw Dodanie do listy wadliwych blokw\n"
" -L plik_zych_blokw Ustawienie listy wadliwych blokw\n"
@@ -2619,8 +2595,7 @@ msgstr "Zapewne nie istniejce urzdzenie lub swap?\n"
#: e2fsck/unix.c:1028
#, c-format
msgid "Filesystem mounted or opened exclusively by another program?\n"
-msgstr ""
-"System plikw podmontowany lub otwarty na wyczno przez inny program?\n"
+msgstr "System plikw podmontowany lub otwarty na wyczno przez inny program?\n"
#: e2fsck/unix.c:1032
#, c-format
@@ -2642,9 +2617,7 @@ msgstr "podczas sprawdzania kroniki ext3 dla %s"
#: e2fsck/unix.c:1128
#, c-format
-msgid ""
-"Warning: skipping journal recovery because doing a read-only filesystem "
-"check.\n"
+msgid "Warning: skipping journal recovery because doing a read-only filesystem check.\n"
msgstr ""
"Uwaga: pominito odtwarzanie z kroniki z powodu sprawdzania w trybie tylko\n"
"do odczytu.\n"
@@ -2660,9 +2633,9 @@ msgid "while recovering ext3 journal of %s"
msgstr "podczas odtwarzania z kroniki ext3 dla %s"
#: e2fsck/unix.c:1171
-#, fuzzy, c-format
+#, c-format
msgid "%s has unsupported feature(s):"
-msgstr "System plikw %s ma wczone nie obsugiwane cechy.\n"
+msgstr "%s ma wczone nie obsugiwane cechy:"
#: e2fsck/unix.c:1187
msgid "Warning: compression support is experimental.\n"
@@ -2906,13 +2879,11 @@ msgstr "zakoczono \n"
#, c-format
msgid ""
"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
-" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern "
-"[...]]]\n"
+" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
" device [last_block [start_block]]\n"
msgstr ""
"Skadnia: %s [-b rozm_bloku] [-i plik_wej] [-o plik_wyj] [-svwnf]\n"
-" [-c blokw_naraz] [-p przebiegw] [-t wzr_testowy [-t wzr_testowy "
-"[...]]]\n"
+" [-c blokw_naraz] [-p przebiegw] [-t wzr_testowy [-t wzr_testowy [...]]]\n"
" urzdzenie [ostatni_blok [pocztek]]\n"
#: misc/badblocks.c:88
@@ -3269,17 +3240,17 @@ msgid "Couldn't allocate memory to parse options!\n"
msgstr "Nie mona przydzieli pamici do analizy opcji!\n"
#: misc/dumpe2fs.c:363
-#, fuzzy, c-format
+#, c-format
msgid "Invalid superblock parameter: %s\n"
-msgstr "Bdny parametr stride: %s\n"
+msgstr "Bdny parametr superblock: %s\n"
#: misc/dumpe2fs.c:378
-#, fuzzy, c-format
+#, c-format
msgid "Invalid blocksize parameter: %s\n"
-msgstr "Bdny parametr resize: %s\n"
+msgstr "Bdny parametr blocksize: %s\n"
#: misc/dumpe2fs.c:389
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad extended option(s) specified: %s\n"
@@ -3292,16 +3263,14 @@ msgid ""
"\tblocksize=<blocksize>\n"
msgstr ""
"\n"
-"Podano bdne opcje.\n"
+"Podano bdne opcje rozszerzone: %s.\n"
"\n"
-"Rozszerzone opcje s oddzielane przecinkami i mog przyjmowa parametr,\n"
+"Opcje rozszerzone s oddzielane przecinkami i mog przyjmowa parametr,\n"
"\tktry jest ustawiany znakiem '='.\n"
"\n"
-"Poprawne opcje to:\n"
-"\tstride=<dugo stride w blokach>\n"
-"\tresize=<maksymalny rozmiar powikszenia w blokach>\n"
-"\ttest_fs\n"
-"\t^test_fs\n"
+"Poprawne opcje rozszerzone to:\n"
+"\tsuperblock=<numer superbloku>\n"
+"\tblocksize=<rozmiar bloku>\n"
#: misc/dumpe2fs.c:449 misc/mke2fs.c:1199
#, c-format
@@ -3462,12 +3431,8 @@ msgstr "Nie mona przydzieli pamici na rodzaje systemw plikw\n"
#: misc/fsck.c:872
#, c-format
-msgid ""
-"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
-"number\n"
-msgstr ""
-"%s: pominito bdn lini w /etc/fstab: montowanie bind z niezerowym "
-"numerem przebiegu fsck\n"
+msgid "%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n"
+msgstr "%s: pominito bdn lini w /etc/fstab: montowanie bind z niezerowym numerem przebiegu fsck\n"
#: misc/fsck.c:899
#, c-format
@@ -3484,12 +3449,8 @@ msgid "--waiting-- (pass %d)\n"
msgstr "--oczekiwanie-- (przebieg %d)\n"
#: misc/fsck.c:1066
-#, fuzzy
-msgid ""
-"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
-msgstr ""
-"Skadnia: fsck [-ANPRTV] [ -C [ deskryptor ] ] [-t rodzaj-fs] [opcje-fs] "
-"[system-plikw ...]\n"
+msgid "Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
+msgstr "Skadnia: fsck [-AMNPRTV] [ -C [ deskryptor ] ] [-t rodzaj-fs] [opcje-fs] [system-plikw ...]\n"
#: misc/fsck.c:1108
#, c-format
@@ -3517,7 +3478,7 @@ msgid "While reading version on %s"
msgstr "Podczas odczytu wersji %s"
#: misc/mke2fs.c:97
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c|-l filename] [-b block-size] [-f fragment-size]\n"
"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
@@ -3526,12 +3487,12 @@ msgid ""
"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
"\t[-T fs-type] [-jnqvFSV] device [blocks-count]\n"
msgstr ""
-"Skadnia: %s [-c|-t|-l nazwa-pliku] [-b rozm.bloku] [-f rozm.fragm.]\n"
-"\t[-i bajtw-na-i-wze] [-I rozm-i-wza] [-j] [-J opcje-kroniki]\n"
+"Skadnia: %s [-c|-l nazwa-pliku] [-b rozm.bloku] [-f rozm.fragm.]\n"
+"\t[-i bajtw-na-i-wze] [-I rozm-i-wza] [-J opcje-kroniki]\n"
"\t[-N liczba-i-wzw] [-m procent-rezerw.-blokw] [-o os-twrcy]\n"
"\t[-g blokw-w-grupie] [-L etykieta-wolumenu] [-M ost.-mont.-katalog]\n"
-"\t[-O cecha[,...]] [-r wersja-fs] [-E opcja-rozszerzona[,...]] [-qvSV]\n"
-"\turzdzenie [liczba-blokw]\n"
+"\t[-O cecha[,...]] [-r wersja-fs] [-E opcja-rozszerzona[,...]]\n"
+"\t[-T rodzaj-fs] [-jnqvFSV] urzdzenie [liczba-blokw]\n"
#: misc/mke2fs.c:198
#, c-format
@@ -3736,9 +3697,9 @@ msgid "Invalid stride parameter: %s\n"
msgstr "Bdny parametr stride: %s\n"
#: misc/mke2fs.c:808
-#, fuzzy, c-format
+#, c-format
msgid "Invalid stripe-width parameter: %s\n"
-msgstr "Bdny parametr stride: %s\n"
+msgstr "Bdny parametr stripe-width: %s\n"
#: misc/mke2fs.c:830
#, c-format
@@ -3748,18 +3709,15 @@ msgstr "Bdny parametr resize: %s\n"
#: misc/mke2fs.c:837
#, c-format
msgid "The resize maximum must be greater than the filesystem size.\n"
-msgstr ""
-"Maksymalny rozmiar (resize) musi by wikszy od rozmiaru systemu plikw.\n"
+msgstr "Maksymalny rozmiar (resize) musi by wikszy od rozmiaru systemu plikw.\n"
#: misc/mke2fs.c:861
#, c-format
msgid "On-line resizing not supported with revision 0 filesystems\n"
-msgstr ""
-"Zmiana rozmiaru w locie nie jest obsugiwana przez systemy plikw w wersji "
-"0\n"
+msgstr "Zmiana rozmiaru w locie nie jest obsugiwana przez systemy plikw w wersji 0\n"
#: misc/mke2fs.c:878
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad option(s) specified: %s\n"
@@ -3775,13 +3733,14 @@ msgid ""
"\ttest_fs\n"
msgstr ""
"\n"
-"Podano bdne opcje.\n"
+"Podano bdne opcje: %s\n"
"\n"
-"Rozszerzone opcje s oddzielane przecinkami i mog przyjmowa parametr,\n"
+"Opcje rozszerzone s oddzielane przecinkami i mog przyjmowa parametr,\n"
"\tktry jest ustawiany znakiem '='.\n"
"\n"
-"Poprawne opcje to:\n"
-"\tstride=<dugo stride w blokach>\n"
+"Poprawne opcje rozszerzone to:\n"
+"\tstride=<rozmiar porcji danych RAID na dysku w blokach>\n"
+"\tstripe-width=<RAID stride * liczba dyskw danych w blokach>\n"
"\tresize=<maksymalny rozmiar powikszenia w blokach>\n"
"\ttest_fs\n"
@@ -3792,6 +3751,9 @@ msgid ""
"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
"\n"
msgstr ""
+"\n"
+"Uwaga: RAID stripe-width %u nie jest parzyst wielokrotnoci stride %u.\n"
+"\n"
#: misc/mke2fs.c:920
#, c-format
@@ -3881,11 +3843,8 @@ msgstr "%d-bajtowe bloki s zbyt due dla systemu (max %d)"
#: misc/mke2fs.c:1247
#, c-format
-msgid ""
-"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
-msgstr ""
-"Uwaga: %d-bajtowe bloki s zbyt due dla systemu (max %d), wymuszono "
-"kontynuacj\n"
+msgid "Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
+msgstr "Uwaga: %d-bajtowe bloki s zbyt due dla systemu (max %d), wymuszono kontynuacj\n"
#: misc/mke2fs.c:1265
msgid "filesystem"
@@ -3927,8 +3886,7 @@ msgstr "Cechy systemu plikw nie obsugiwane przez systemy plikw w wersji 0\n"
#: misc/mke2fs.c:1374
#, c-format
msgid "Sparse superblocks not supported with revision 0 filesystems\n"
-msgstr ""
-"Rzadkie superbloki nie s obsugiwane przez systemy plikw w wersji 0\n"
+msgstr "Rzadkie superbloki nie s obsugiwane przez systemy plikw w wersji 0\n"
#: misc/mke2fs.c:1386
#, c-format
@@ -3941,9 +3899,7 @@ msgstr "podczas prby okrelenia rozmiaru sprztowego sektora"
#: misc/mke2fs.c:1464
msgid "reserved online resize blocks not supported on non-sparse filesystem"
-msgstr ""
-"zarezerwowane bloki do zmiany rozmiaru w locie nie obsugiwane na niecigym "
-"systemie plikw"
+msgstr "zarezerwowane bloki do zmiany rozmiaru w locie nie obsugiwane na niecigym systemie plikw"
#: misc/mke2fs.c:1473
msgid "blocks per group count out of range"
@@ -4079,7 +4035,7 @@ msgid "Please run e2fsck on the filesystem.\n"
msgstr "Prosz uruchomi e2fsck na systemie plikw.\n"
#: misc/tune2fs.c:98
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
@@ -4089,11 +4045,10 @@ msgid ""
"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID] device\n"
msgstr ""
"Skadnia: %s [-c max-licznik-montowa] [-e trakt.-bdw] [-g grupa]\n"
-"\t[-i odstp[d|m|w]] [-j] [-J opcje-kroniki]\n"
-"\t[-l] [-s flaga-rzadkich] [-m procent-zarez.-blokw]\n"
-"\t[-o [^]opcje-montowania[,...]] [-r liczba-zarez.-blokw]\n"
-"\t[-u uytkownik] [-C licznik-montowa] [-L etykieta-wolumenu]\n"
-"\t[-M ostatnio-mont.-katalog] [-O [^]cecha[,...]]\n"
+"\t[-i odstp[d|m|w]] [-j] [-J opcje-kroniki] [-l]\n"
+"\t[-m procent-rezerw.-blokw] [-o [^]opcje-montowania[,...]]\n"
+"\t[-r liczba-zarez.-blokw] [-u uytkownik] [-C licznik-montowa]\n"
+"\t[-L etykieta-wolumenu] [-M ostatnio-mont.-katalog] [-O [^]cecha[,...]]\n"
"\t[-E opcja-rozszerzona[,...]] [-T czas-ost.-sprawdz.] [-U UUID] urzdzenie\n"
#: misc/tune2fs.c:171
@@ -4139,14 +4094,14 @@ msgid "Invalid mount option set: %s\n"
msgstr "Ustawiona bdna opcja montowania: %s\n"
#: misc/tune2fs.c:338
-#, fuzzy, c-format
+#, c-format
msgid "Clearing filesystem feature '%s' not supported.\n"
-msgstr "Cechy systemu plikw nie obsugiwane przez systemy plikw w wersji 0\n"
+msgstr "Usuwanie cechy systemu plikw '%s' nie jest obsugiwane.\n"
#: misc/tune2fs.c:344
-#, fuzzy, c-format
+#, c-format
msgid "Setting filesystem feature '%s' not supported.\n"
-msgstr "Cechy systemu plikw nie obsugiwane przez systemy plikw w wersji 0\n"
+msgstr "Ustawianie cechy systemu plikw '%s' nie jest obsugiwane.\n"
#: misc/tune2fs.c:353
msgid ""
@@ -4248,17 +4203,17 @@ msgid "bad uid/user name - %s"
msgstr "bdny uid/nazwa uytkownika - %s"
#: misc/tune2fs.c:842
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stride: %s\n"
-msgstr "Bdny parametr stride: %s\n"
+msgstr "Bdny parametr RAID stride: %s\n"
#: misc/tune2fs.c:857
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stripe-width: %s\n"
-msgstr "Bdny parametr stride: %s\n"
+msgstr "Bdny parametr RAID stripe-width: %s\n"
#: misc/tune2fs.c:867
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad options specified.\n"
@@ -4275,13 +4230,14 @@ msgstr ""
"\n"
"Podano bdne opcje.\n"
"\n"
-"Rozszerzone opcje s oddzielane przecinkami i mog przyjmowa parametr,\n"
+"Opcje rozszerzone s oddzielane przecinkami i mog przyjmowa parametr,\n"
"\tktry jest ustawiany znakiem '='.\n"
"\n"
"Poprawne opcje to:\n"
-"\tstride=<dugo stride w blokach>\n"
-"\tresize=<maksymalny rozmiar powikszenia w blokach>\n"
+"\tstride=<rozmiar porcji danych RAID na dysku w blokach>\n"
+"\tstripe-width=<RAID stride * liczba dyskw danych w blokach>\n"
"\ttest_fs\n"
+"\t^test_fs\n"
#: misc/tune2fs.c:927
#, c-format
@@ -4350,6 +4306,8 @@ msgid ""
"\n"
"Clearing the sparse superflag not supported.\n"
msgstr ""
+"\n"
+"Usuwanie superflagi sparse nie jest obsugiwane.\n"
#: misc/tune2fs.c:1015
#, c-format
@@ -4366,14 +4324,14 @@ msgid "Invalid UUID format\n"
msgstr "Bdny format UUID-a\n"
#: misc/tune2fs.c:1067
-#, fuzzy, c-format
+#, c-format
msgid "Setting stride size to %d\n"
-msgstr "Ustawianie gid-a zarezerwowanych blokw na %lu\n"
+msgstr "Ustawianie rozmiaru stride na %d\n"
#: misc/tune2fs.c:1072
-#, fuzzy, c-format
+#, c-format
msgid "Setting stripe width to %d\n"
-msgstr "Ustawianie gid-a zarezerwowanych blokw na %lu\n"
+msgstr "Ustawianie szerokoci stripe na na %d\n"
#: misc/util.c:72
msgid "Proceed anyway? (y,n) "
@@ -4624,17 +4582,3 @@ msgstr "bloki metadanych"
#, c-format
msgid "Should never happen: resize inode corrupt!\n"
msgstr "Nigdy si nie powinno zdarzy: i-wze zmiany rozmiaru uszkodzony!\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "The filesystem already has sparse superblocks disabled.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "System plikw ju ma wyczone rzadkie superbloki.\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Sparse superblock flag cleared. %s"
-#~ msgstr ""
-#~ "\n"
-#~ "Flaga rzadkich superblokw wyczyszczona. %s"
diff --git a/po/sv.gmo b/po/sv.gmo
index 5b7b2d44..d0f8f576 100644
--- a/po/sv.gmo
+++ b/po/sv.gmo
Binary files differ
diff --git a/po/sv.po b/po/sv.po
index 58fdc94a..c8a99424 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,9 +1,9 @@
# Swedish messages for e2fsprogs.
-# Copyright 2003, 2005, 2006, 2008 Free Software Foundation, Inc.
+# Copyright 2003, 2005, 2006, 2008 Theodore Tso (msgids)
# This file is distributed under the same license as the e2fsprogs package.
# Gran Uddeborg <goeran@uddeborg.se>, 2003, 2005, 2006, 2008.
#
-# $Revision: 1.36 $
+# $Revision: 1.39 $
#
#. The strings in e2fsck's problem.c can be very hard to translate,
#. since the strings are expanded in two different ways. First of all,
@@ -65,10 +65,10 @@
#.
msgid ""
msgstr ""
-"Project-Id-Version: e2fsprogs 1.40.6\n"
+"Project-Id-Version: e2fsprogs 1.40.7\n"
"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
"POT-Creation-Date: 2008-02-28 21:45-0500\n"
-"PO-Revision-Date: 2008-02-12 13:01+0100\n"
+"PO-Revision-Date: 2008-03-07 22:28+0100\n"
"Last-Translator: Gran Uddeborg <goeran@uddeborg.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
"MIME-Version: 1.0\n"
@@ -891,8 +891,7 @@ msgstr "Extern journal stdjer inte detta filsystem\n"
#: e2fsck/problem.c:212
msgid ""
"Ext3 @j @S is unknown type %N (unsupported).\n"
-"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
-"format.\n"
+"It is likely that your copy of e2fsck is old and/or doesn't support this @j format.\n"
"It is also possible the @j @S is corrupt.\n"
msgstr ""
"Ext3-journalsuperblock r av oknd typ %N (ej sttt).\n"
@@ -914,8 +913,7 @@ msgstr "superblock har inte har-journal-flagga, men har ext3-journal %s.\n"
#. @-expanded: superblock has ext3 needs_recovery flag set, but no journal.\n
#: e2fsck/problem.c:230
msgid "@S has ext3 needs_recovery flag set, but no @j.\n"
-msgstr ""
-"superblock har ext3-behver-rttas-flagga satt, men har ext3-journal %s.\n"
+msgstr "superblock har ext3-behver-rttas-flagga satt, men har ext3-journal %s.\n"
#. @-expanded: ext3 recovery flag is clear, but journal has data.\n
#: e2fsck/problem.c:235
@@ -940,8 +938,7 @@ msgstr "Rttningsflagga inte satt i reservsuperblock, s kr journal nd.\n"
#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
#: e2fsck/problem.c:255
msgid "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
-msgstr ""
-"%s frldrals inod %i (uid=%Iu, gid=%Ig, rttighet=%Im, storlek=%Is)\n"
+msgstr "%s frldrals inod %i (uid=%Iu, gid=%Ig, rttighet=%Im, storlek=%Is)\n"
#. @-expanded: illegal block #%B (%b) found in orphaned inode %i.\n
#: e2fsck/problem.c:260
@@ -968,8 +965,7 @@ msgstr "Ogiltig inod %i i frldrals inodlista.\n"
#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
#: e2fsck/problem.c:280 e2fsck/problem.c:613
msgid "@f has feature flag(s) set, but is a revision 0 @f. "
-msgstr ""
-"filsystemet har funktionsflaggor satta, men r ett revision 0-filsystem. "
+msgstr "filsystemet har funktionsflaggor satta, men r ett revision 0-filsystem. "
#. @-expanded: Ext3 journal superblock has an unknown read-only feature flag set.\n
#: e2fsck/problem.c:285
@@ -1044,8 +1040,7 @@ msgstr ""
#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
#: e2fsck/problem.c:327
msgid "Resize_@i not enabled, but the resize @i is non-zero. "
-msgstr ""
-"Resize_inode r inte aktiverat, men storleksndringsinoden r inte noll. "
+msgstr "Resize_inode r inte aktiverat, men storleksndringsinoden r inte noll. "
#. @-expanded: Resize inode not valid.
#: e2fsck/problem.c:332
@@ -1119,20 +1114,17 @@ msgstr "Inod %i r en nollngds katalog. "
#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:392
msgid "@g %g's @b @B at %b @C.\n"
-msgstr ""
-"Grupp %g:s blockbitkarta vid %b str i konflikt med annat filsystemblock.\n"
+msgstr "Grupp %g:s blockbitkarta vid %b str i konflikt med annat filsystemblock.\n"
#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:397
msgid "@g %g's @i @B at %b @C.\n"
-msgstr ""
-"Grupp %g:s inodbitkarta vid %b str i konflikt med annat filsystemblock.\n"
+msgstr "Grupp %g:s inodbitkarta vid %b str i konflikt med annat filsystemblock.\n"
#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
#: e2fsck/problem.c:402
msgid "@g %g's @i table at %b @C.\n"
-msgstr ""
-"Grupp %g:s inodtabell vid %b str i konflikt med annat filsystemblock.\n"
+msgstr "Grupp %g:s inodtabell vid %b str i konflikt med annat filsystemblock.\n"
#. @-expanded: group %g's block bitmap (%b) is bad.
#: e2fsck/problem.c:407
@@ -1194,8 +1186,7 @@ msgstr "Duplicerat eller felaktigt block anvnds!\n"
#. @-expanded: Bad block %b used as bad block inode indirect block.
#: e2fsck/problem.c:462
msgid "Bad @b %b used as bad @b @i indirect @b. "
-msgstr ""
-"Felaktigt block %b anvnt som indirektblock fr inod fr dliga block. "
+msgstr "Felaktigt block %b anvnt som indirektblock fr inod fr dliga block. "
#. @-expanded: \n
#. @-expanded: The bad block inode has probably been corrupted. You probably\n
@@ -1244,8 +1235,7 @@ msgstr "Det primra superblocket (%b) r p listan ver dliga block.\n"
#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
#: e2fsck/problem.c:490
msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
-msgstr ""
-"Block %b i de primra gruppbeskrivarna r p listan ver dliga block\n"
+msgstr "Block %b i de primra gruppbeskrivarna r p listan ver dliga block\n"
#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
#: e2fsck/problem.c:496
@@ -1255,21 +1245,17 @@ msgstr "Varning: Grupp %g:s superblock (%b) r dligt.\n"
#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
#: e2fsck/problem.c:501
msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
-msgstr ""
-"Varning: Grupp %g:s kopia av gruppbeskrivarna har ett dligt block (%b).\n"
+msgstr "Varning: Grupp %g:s kopia av gruppbeskrivarna har ett dligt block (%b).\n"
#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
#: e2fsck/problem.c:507
msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
-msgstr ""
-"Programmeringsfel? Block nr. %b tas i ansprk utan anledning i "
-"process_bad_block.\n"
+msgstr "Programmeringsfel? Block nr. %b tas i ansprk utan anledning i process_bad_block.\n"
#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
#: e2fsck/problem.c:513
msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
-msgstr ""
-"Fel vid allokering av %N konsekutiva block i blockgrupp %g fr %s: %m\n"
+msgstr "Fel vid allokering av %N konsekutiva block i blockgrupp %g fr %s: %m\n"
#. @-expanded: error allocating block buffer for relocating %s\n
#: e2fsck/problem.c:518
@@ -1340,9 +1326,7 @@ msgstr "Fel vid lagring av inodsrknarinformation (inod=%i, antal=%N): %m\n"
#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
#: e2fsck/problem.c:578
msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
-msgstr ""
-"Fel vid lagring av katalogblocksinformation (inod=%i, block=%b, antal=%N): %"
-"m\n"
+msgstr "Fel vid lagring av katalogblocksinformation (inod=%i, block=%b, antal=%N): %m\n"
#. @-expanded: Error reading inode %i: %m\n
#: e2fsck/problem.c:584
@@ -1371,8 +1355,7 @@ msgstr ""
#: e2fsck/problem.c:603
#, c-format
msgid "@i %i has @cion flag set on @f without @cion support. "
-msgstr ""
-"Inod %i har kompressionsflagga satt p filsystem utan kompressionsstd. "
+msgstr "Inod %i har kompressionsflagga satt p filsystem utan kompressionsstd. "
#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
#: e2fsck/problem.c:608
@@ -1550,16 +1533,12 @@ msgstr "Utkat attribut i inod %i har en vrdeposition (%N) som r ogiltig\n"
#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
#: e2fsck/problem.c:774
msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
-msgstr ""
-"Utkat attribut i inod %i har ett vrdeblock (%N) som r ogiltigt (mste "
-"vara 0)\n"
+msgstr "Utkat attribut i inod %i har ett vrdeblock (%N) som r ogiltigt (mste vara 0)\n"
#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid (must be 0)\n
#: e2fsck/problem.c:779
msgid "@a in @i %i has a hash (%N) which is @n (must be 0)\n"
-msgstr ""
-"Utkat attribut i inod %i har en kontrollsumma (%N) som r ogiltig (mste "
-"vara 0)\n"
+msgstr "Utkat attribut i inod %i har en kontrollsumma (%N) som r ogiltig (mste vara 0)\n"
#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
#: e2fsck/problem.c:784
@@ -1576,8 +1555,7 @@ msgid ""
"Pass 1B: Rescanning for @m @bs\n"
msgstr ""
"\n"
-"Kr ytterliggare pass fr att lsa upp block som anvnds av mer n en "
-"inod ...\n"
+"Kr ytterliggare pass fr att lsa upp block som anvnds av mer n en inod ...\n"
"Pass 1B: Sker igen efter block som anvnds flera gnger\n"
#. @-expanded: multiply-claimed block(s) in inode %i:
@@ -1606,15 +1584,12 @@ msgstr "Fel vid iterering ver block i inod %i (%s): %m\n"
#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
#: e2fsck/problem.c:827 e2fsck/problem.c:1143
msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
-msgstr ""
-"Fel vid justering av referensrknare fr externa attribut-block %b (inod %"
-"i): %m\n"
+msgstr "Fel vid justering av referensrknare fr externa attribut-block %b (inod %i): %m\n"
#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
#: e2fsck/problem.c:833
msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
-msgstr ""
-"Pass 1C: Sker kataloger efter inoder med flerfaldigt iansprkstagna block\n"
+msgstr "Pass 1C: Sker kataloger efter inoder med flerfaldigt iansprkstagna block\n"
#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
#: e2fsck/problem.c:839
@@ -1695,8 +1670,7 @@ msgstr "Post \"%Dn\" i %p (%i) r en lnk till \".\" "
#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
#: e2fsck/problem.c:909
msgid "@E points to @i (%Di) located in a bad @b.\n"
-msgstr ""
-"Post \"%Dn\" i %p (%i) pekar p inod (%Di) som finns i ett trasigt block.\n"
+msgstr "Post \"%Dn\" i %p (%i) pekar p inod (%Di) som finns i ett trasigt block.\n"
#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
#: e2fsck/problem.c:914
@@ -1728,8 +1702,7 @@ msgstr "\"..\" saknas i kataloginod %i.\n"
#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
#: e2fsck/problem.c:939
msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
-msgstr ""
-"Frsta post \"%Dn\" (inod=%Di) i kataloginod %i (%p) skulle varit \".\"\n"
+msgstr "Frsta post \"%Dn\" (inod=%Di) i kataloginod %i (%p) skulle varit \".\"\n"
#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
#: e2fsck/problem.c:944
@@ -1882,8 +1855,7 @@ msgstr "Stter filtyp fr post \"%Dn\" i %p (%i) till %N.\n"
#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
#: e2fsck/problem.c:1084
msgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
-msgstr ""
-"Post \"%Dn\" i %p (%i) har felaktig filtyp (var %Dt, skulle varit %N).\n"
+msgstr "Post \"%Dn\" i %p (%i) har felaktig filtyp (var %Dt, skulle varit %N).\n"
#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
#: e2fsck/problem.c:1089
@@ -1908,9 +1880,7 @@ msgstr "Utkat attribut-block fr inod %i (%Q) r ogiltigt (%If).\n"
#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
#: e2fsck/problem.c:1109
msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
-msgstr ""
-"Filsystem innehller stora filer, men saknar flaggan LARGE_FILE i "
-"superblock.\n"
+msgstr "Filsystem innehller stora filer, men saknar flaggan LARGE_FILE i superblock.\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) not referenced\n
#: e2fsck/problem.c:1114
@@ -1963,8 +1933,7 @@ msgstr ""
#. @-expanded: problem in HTREE directory inode %d: node (%B) has an unordered hash table\n
#: e2fsck/problem.c:1163
msgid "@p @h %d: node (%B) has an unordered hash table\n"
-msgstr ""
-"Problem i HTREE-katalognod %d (%q): not (%B) har en oordnat hash-tabell\n"
+msgstr "Problem i HTREE-katalognod %d (%q): not (%B) har en oordnat hash-tabell\n"
#. @-expanded: problem in HTREE directory inode %d: node (%B) has invalid depth\n
#: e2fsck/problem.c:1168
@@ -2080,8 +2049,7 @@ msgstr "ext2fs_new_dir_block: %m nr nytt katalogblock skapades\n"
#: e2fsck/problem.c:1260
#, c-format
msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
-msgstr ""
-"ext2fs_write_dir_block: %m vid skrivning av katalogblocket fr /lost+found\n"
+msgstr "ext2fs_write_dir_block: %m vid skrivning av katalogblocket fr /lost+found\n"
#. @-expanded: Error while adjusting inode count on inode %i\n
#: e2fsck/problem.c:1265
@@ -2108,8 +2076,7 @@ msgid ""
"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
"\n"
msgstr ""
-"Kunde inte rtta frlder till inod %i: Kunde inte hitta "
-"frlderkatalogpost\n"
+"Kunde inte rtta frlder till inod %i: Kunde inte hitta frlderkatalogpost\n"
"\n"
#. @-expanded: Error creating root directory (%s): %m\n
@@ -2188,8 +2155,7 @@ msgid ""
"@i_link_info[%i] is %N, @i.i_links_count is %Il. They @s the same!\n"
msgstr ""
"VARNING: PROGRAMMERINGSFEL I E2FSCK!\n"
-" ELLER NGON KLANTSKALLE (DU) KONTROLLERAR ETT MONTERAT (AKTIVT) "
-"FILSYSTEM.\n"
+" ELLER NGON KLANTSKALLE (DU) KONTROLLERAR ETT MONTERAT (AKTIVT) FILSYSTEM.\n"
"inod_link_info[%i] r %N, inod.i_links_count r %Il. De skulle vara samma!\n"
#. @-expanded: Pass 5: Checking group summary information\n
@@ -2245,9 +2211,7 @@ msgstr "Antal fria block r fel (%b, rknade=%c).\n"
#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
#. @-expanded: endpoints (%i, %j)\n
#: e2fsck/problem.c:1458
-msgid ""
-"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
-"endpoints (%i, %j)\n"
+msgid "PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B endpoints (%i, %j)\n"
msgstr ""
"PROGRAMMERINGSFEL: filsystem (nr. %N) bitkartas ndpunkter (%b, %c) stmmer\n"
"inte med berknade bitkartendpunkter (%i, %j)\n"
@@ -2378,8 +2342,7 @@ msgid ""
" -p Automatic repair (no questions)\n"
" -n Make no changes to the filesystem\n"
" -y Assume \"yes\" to all questions\n"
-" -c Check for bad blocks and add them to the badblock "
-"list\n"
+" -c Check for bad blocks and add them to the badblock list\n"
" -f Force checking even if filesystem is marked clean\n"
msgstr ""
"\n"
@@ -2388,8 +2351,7 @@ msgstr ""
" -n Gr inga frndringar av filsystemet\n"
" -y Anta \"ja\" som svar p alla frgor\n"
" -c Leta efter dliga block och lgg till dem i listan\n"
-" -f Framtvinga kontroll ven om filsystemet r markerat "
-"rent\n"
+" -f Framtvinga kontroll ven om filsystemet r markerat rent\n"
#: e2fsck/unix.c:86
#, c-format
@@ -2555,8 +2517,7 @@ msgstr "Flaggan -t stdjs inte i denna version av e2fsck.\n"
#: e2fsck/unix.c:747
#, c-format
msgid "Byte-swapping filesystems not compiled in this version of e2fsck\n"
-msgstr ""
-"Bytevxling av filsystem r inte inkompilerat i denna version av e2fsck\n"
+msgstr "Bytevxling av filsystem r inte inkompilerat i denna version av e2fsck\n"
#: e2fsck/unix.c:770 misc/tune2fs.c:504 misc/tune2fs.c:769 misc/tune2fs.c:786
#, c-format
@@ -2675,12 +2636,8 @@ msgstr "vid kontroll av ext3-journal fr %s"
#: e2fsck/unix.c:1128
#, c-format
-msgid ""
-"Warning: skipping journal recovery because doing a read-only filesystem "
-"check.\n"
-msgstr ""
-"Varning: hoppar ver journalterhmtning eftersom en lsningskontroll av "
-"filsystem grs.\n"
+msgid "Warning: skipping journal recovery because doing a read-only filesystem check.\n"
+msgstr "Varning: hoppar ver journalterhmtning eftersom en lsningskontroll av filsystem grs.\n"
#: e2fsck/unix.c:1141
#, c-format
@@ -2693,9 +2650,9 @@ msgid "while recovering ext3 journal of %s"
msgstr "vid terhmtning av ext3-journal fr %s"
#: e2fsck/unix.c:1171
-#, fuzzy, c-format
+#, c-format
msgid "%s has unsupported feature(s):"
-msgstr "Filsystem %s har funktioner som inte stds aktiverade.\n"
+msgstr "%s har funktioner som inte stds:"
#: e2fsck/unix.c:1187
msgid "Warning: compression support is experimental.\n"
@@ -2939,13 +2896,11 @@ msgstr "klar \n"
#, c-format
msgid ""
"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
-" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern "
-"[...]]]\n"
+" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
" device [last_block [start_block]]\n"
msgstr ""
"Anvndning: %s [-b blockstorlek] [-i infil] [-o utfile] [-svwnf]\n"
-" [-c block_t_gngen] [-p antal_pass] [-t testmnster [-t testmnster "
-"[...]]]\n"
+" [-c block_t_gngen] [-p antal_pass] [-t testmnster [-t testmnster [...]]]\n"
" enhet [sista_block [start_block]]\n"
#: misc/badblocks.c:88
@@ -3301,17 +3256,17 @@ msgid "Couldn't allocate memory to parse options!\n"
msgstr "Kunde inte allokera minne fr att tolka flaggor!\n"
#: misc/dumpe2fs.c:363
-#, fuzzy, c-format
+#, c-format
msgid "Invalid superblock parameter: %s\n"
-msgstr "Ogiltig stride-parameter: %s\n"
+msgstr "Ogiltig superblockparameter: %s\n"
#: misc/dumpe2fs.c:378
-#, fuzzy, c-format
+#, c-format
msgid "Invalid blocksize parameter: %s\n"
-msgstr "Ogiltig storleksndringsparameter: %s\n"
+msgstr "Ogiltig blockstorleksparameter: %s\n"
#: misc/dumpe2fs.c:389
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad extended option(s) specified: %s\n"
@@ -3324,15 +3279,14 @@ msgid ""
"\tblocksize=<blocksize>\n"
msgstr ""
"\n"
-"Felaktiga flaggor angivna.\n"
+"Felaktiga utkade flaggor angivna: %s\n"
"\n"
-"Utkade flaggor separeras med komman, och kan ta ett argument som avdelas "
-"med\n"
+"Utkade flaggor separeras med komman, och kan ta ett argument som avdelas med\n"
"\tett likhetstecken (\"=\").\n"
"\n"
"Giltiga utkade flaggor r:\n"
-"\ttest_fs\n"
-"\t^test_fs\n"
+"\tsuperblock=<superblocknummer>\n"
+"\tblocksize=<blockstorlek>\n"
#: misc/dumpe2fs.c:449 misc/mke2fs.c:1199
#, c-format
@@ -3494,12 +3448,8 @@ msgstr "Kunde inte allokera minne fr filsystemtyper\n"
#: misc/fsck.c:872
#, c-format
-msgid ""
-"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
-"number\n"
-msgstr ""
-"%s: hoppar ver felaktig rad i /etc/fstab: bind-montering med fsck-"
-"passnummer som inte r noll\n"
+msgid "%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n"
+msgstr "%s: hoppar ver felaktig rad i /etc/fstab: bind-montering med fsck-passnummer som inte r noll\n"
#: misc/fsck.c:899
#, c-format
@@ -3516,12 +3466,8 @@ msgid "--waiting-- (pass %d)\n"
msgstr "--vntar-- (pass %d)\n"
#: misc/fsck.c:1066
-#, fuzzy
-msgid ""
-"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
-msgstr ""
-"Anvndning: fsck [-ANPRTV] [ -C [ fh ] ] [-t fstyp] [fs-flaggor] "
-"[filsys ...]\n"
+msgid "Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
+msgstr "Anvndning: fsck [-AMNPRTV] [ -C [ fh ] ] [-t fstyp] [fs-flaggor] [filsys ...]\n"
#: misc/fsck.c:1108
#, c-format
@@ -3549,7 +3495,7 @@ msgid "While reading version on %s"
msgstr "Vid lsning av version p %s"
#: misc/mke2fs.c:97
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c|-l filename] [-b block-size] [-f fragment-size]\n"
"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
@@ -3558,12 +3504,12 @@ msgid ""
"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
"\t[-T fs-type] [-jnqvFSV] device [blocks-count]\n"
msgstr ""
-"Anvndning: %s [-c|-t|-l filnamn] [-b blockstorlek] [-f fragmentstorlek]\n"
-"\t[-i byte-per-inod] [-I inodstorlek] [-j] [-J journalflaggor]\n"
+"Anvndning: %s [-c|-l filnamn] [-b blockstorlek] [-f fragmentstorlek]\n"
+"\t[-i byte-per-inod] [-I inodstorlek] [-J journalflaggor]\n"
"\t[-N antal-inoder] [-m reservade-block-procent] [-o skapar-os]\n"
"\t[-g block-per-grupp] [-L volymetikett] [-M senast-monterad-katalog]\n"
-"\t[-O funktion[,...]] [-r fs-revision] [-E utkad-flagga[,...]] [-qvSV]\n"
-"\tenhet [blockantal]\n"
+"\t[-O funktion[,...]] [-r fs-revision] [-E utkad-flagga[,...]]\n"
+"\t[-T fs-typ] [-jnqvFSV] enhet [blockantal]\n"
#: misc/mke2fs.c:198
#, c-format
@@ -3768,9 +3714,9 @@ msgid "Invalid stride parameter: %s\n"
msgstr "Ogiltig stride-parameter: %s\n"
#: misc/mke2fs.c:808
-#, fuzzy, c-format
+#, c-format
msgid "Invalid stripe-width parameter: %s\n"
-msgstr "Ogiltig stride-parameter: %s\n"
+msgstr "Ogiltig remsbreddsparameter: %s\n"
#: misc/mke2fs.c:830
#, c-format
@@ -3780,8 +3726,7 @@ msgstr "Ogiltig storleksndringsparameter: %s\n"
#: misc/mke2fs.c:837
#, c-format
msgid "The resize maximum must be greater than the filesystem size.\n"
-msgstr ""
-"Storleksndringens maximum mste vara strre n filsystemets storlek.\n"
+msgstr "Storleksndringens maximum mste vara strre n filsystemets storlek.\n"
#: misc/mke2fs.c:861
#, c-format
@@ -3789,7 +3734,7 @@ msgid "On-line resizing not supported with revision 0 filesystems\n"
msgstr "Storleksndring under drift stds inte med revision 0-filsystem\n"
#: misc/mke2fs.c:878
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad option(s) specified: %s\n"
@@ -3805,15 +3750,16 @@ msgid ""
"\ttest_fs\n"
msgstr ""
"\n"
-"Felaktiga flaggor angivna.\n"
+"Felaktiga flaggor angivna: %s\n"
"\n"
-"Utkade flaggor separeras med komman, och kan ta ett argument som avdelas "
-"med\n"
+"Utkade flaggor separeras med komman, och kan ta ett argument som avdelas med\n"
"\tett likhetstecken (\"=\").\n"
"\n"
"Giltiga utkade flaggor r:\n"
-"\tstride=<stride-lngd i block>\n"
-"\tresize=<maximal storleksndring i block>\n"
+"\tstride=<RAID-datadstycken per disk i block>\n"
+"\tstripe-width=<RAID-kliv datadiskar i block>\n"
+"\tresize=<maximal storleksndringsstorlek i block>\n"
+"\n"
"\ttest_fs\n"
#: misc/mke2fs.c:893
@@ -3823,6 +3769,9 @@ msgid ""
"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
"\n"
msgstr ""
+"\n"
+"Varning: RAID-remsbredd %u r inte en jmn multipel av klivet %u.\n"
+"\n"
#: misc/mke2fs.c:920
#, c-format
@@ -3912,10 +3861,8 @@ msgstr "%d-byteblock fr stort fr systemet (max %d)"
#: misc/mke2fs.c:1247
#, c-format
-msgid ""
-"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
-msgstr ""
-"Varning: %d-byteblock fr stort fr systemet (max %d), tvingas fortstta\n"
+msgid "Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
+msgstr "Varning: %d-byteblock fr stort fr systemet (max %d), tvingas fortstta\n"
# "Ett" fr att detta stts in i annan strng dr det fregs av "a".
# ven "journal" kan sttas in p samma plats. Felrapporterat.
@@ -3972,9 +3919,7 @@ msgstr "vid frsk att avgra hrdvarusektorstorlek"
#: misc/mke2fs.c:1464
msgid "reserved online resize blocks not supported on non-sparse filesystem"
-msgstr ""
-"reserverade block fr storleksndring under drift stds inte p icke-glesa "
-"filsystem"
+msgstr "reserverade block fr storleksndring under drift stds inte p icke-glesa filsystem"
#: misc/mke2fs.c:1473
msgid "blocks per group count out of range"
@@ -4112,7 +4057,7 @@ msgid "Please run e2fsck on the filesystem.\n"
msgstr "Kr e2fsck p filsystemet.\n"
#: misc/tune2fs.c:98
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
@@ -4122,11 +4067,10 @@ msgid ""
"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID] device\n"
msgstr ""
"Anvndning: %s [-c max_antal_monteringar] [-e felbeteende] [-g grupp]\n"
-"\t[-i intervall[d|m|w]] [-j] [-J journalflaggor]\n"
-"\t[-l] [-s glesflagga] [-m procent_reserverade_block]\n"
-"\t[-o [^]monteringsflaggor[,...]] [-r antal_reserverade_block]\n"
-"\t[-u anvndare] [-C antal_monteringar] [-L volymetikett]\n"
-"\t[-M senast_monterad_katalog] [-O [^]funktion[,...]]\n"
+"\t[-i intervall[d|m|w]] [-j] [-J journalflaggor] [-l]\n"
+"\t[-m reserverade_block_procent] [-o [^]monteringsflaggor[,...]]\n"
+"\t[-r antal_reserverade_block] [-u anvndare] [-C antal_monteringar]\n"
+"\t[-L volymetikett] [-M senast_monterad_katalog] [-O [^]funktion[,...]]\n"
"\t[-E utkad-flagga[,...]] [-T senaste_kontroll_tid] [-U UUID] enhet\n"
#: misc/tune2fs.c:171
@@ -4172,14 +4116,14 @@ msgid "Invalid mount option set: %s\n"
msgstr "Ogiltig monteringsflagga satt: %s\n"
#: misc/tune2fs.c:338
-#, fuzzy, c-format
+#, c-format
msgid "Clearing filesystem feature '%s' not supported.\n"
-msgstr "Filsystemsfunktioner som inte stds med revision 0-filsystem\n"
+msgstr "Nollstllning av filsystemsfunktion \"%s\" stds inte.\n"
#: misc/tune2fs.c:344
-#, fuzzy, c-format
+#, c-format
msgid "Setting filesystem feature '%s' not supported.\n"
-msgstr "Filsystemsfunktioner som inte stds med revision 0-filsystem\n"
+msgstr "Att stta filsystemsfunktion \"%s\" stds inte.\n"
#: misc/tune2fs.c:353
msgid ""
@@ -4281,17 +4225,17 @@ msgid "bad uid/user name - %s"
msgstr "felagtigt uid/anvndarnamn - %s"
#: misc/tune2fs.c:842
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stride: %s\n"
-msgstr "Ogiltig stride-parameter: %s\n"
+msgstr "Ogiltig RAID-kliv: %s\n"
#: misc/tune2fs.c:857
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stripe-width: %s\n"
-msgstr "Ogiltig stride-parameter: %s\n"
+msgstr "Ogiltig RAID-remsbredd: %s\n"
#: misc/tune2fs.c:867
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad options specified.\n"
@@ -4308,14 +4252,14 @@ msgstr ""
"\n"
"Felaktiga flaggor angivna.\n"
"\n"
-"Utkade flaggor separeras med komman, och kan ta ett argument som avdelas "
-"med\n"
+"Utkade flaggor separeras med komman, och kan ta ett argument som avdelas med\n"
"\tett likhetstecken (\"=\").\n"
"\n"
"Giltiga utkade flaggor r:\n"
-"\tstride=<stride-lngd i block>\n"
-"\tresize=<maximal storleksndring i block>\n"
+"\tstride=<RAID-styckestorlek per disk i block>\n"
+"\tstripe-width=<RAID-klivdatadiskar i block>\n"
"\ttest_fs\n"
+"\t^test_fs\n"
#: misc/tune2fs.c:927
#, c-format
@@ -4384,6 +4328,8 @@ msgid ""
"\n"
"Clearing the sparse superflag not supported.\n"
msgstr ""
+"\n"
+"Nollstllning av superflaggan gles stds inte.\n"
#: misc/tune2fs.c:1015
#, c-format
@@ -4400,14 +4346,14 @@ msgid "Invalid UUID format\n"
msgstr "Ogiltigt UUID-format\n"
#: misc/tune2fs.c:1067
-#, fuzzy, c-format
+#, c-format
msgid "Setting stride size to %d\n"
-msgstr "Stter gid fr reserverade block till %lu\n"
+msgstr "Stter klivstorlek till %d\n"
#: misc/tune2fs.c:1072
-#, fuzzy, c-format
+#, c-format
msgid "Setting stripe width to %d\n"
-msgstr "Stter gid fr reserverade block till %lu\n"
+msgstr "Stter remsbredd till %d\n"
#: misc/util.c:72
msgid "Proceed anyway? (y,n) "
@@ -4660,17 +4606,3 @@ msgstr "metadatablock"
#, c-format
msgid "Should never happen: resize inode corrupt!\n"
msgstr "Skulle aldrig intrffa: storleksndringsinoden trasig!\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "The filesystem already has sparse superblocks disabled.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Filsystemet har redan glesa superblock avslagna.\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Sparse superblock flag cleared. %s"
-#~ msgstr ""
-#~ "\n"
-#~ "Flaggan fr glesa superblock nollstlld. %s"
diff --git a/po/vi.gmo b/po/vi.gmo
index c37e3901..747b61be 100644
--- a/po/vi.gmo
+++ b/po/vi.gmo
Binary files differ
diff --git a/po/vi.po b/po/vi.po
index 921bd01a..59c39ff1 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -1,6 +1,6 @@
# Vietnamese translation for e2fsprogs.
-# Copyright © 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the e2fsprogs-1.40.6 package.
+# Copyright © 2008 Theodore Tso (msgids)
+# This file is distributed under the same license as the e2fsprogs-1.40.7 package.
# Clytie Siddall <clytie@riverland.net.au>, 2006-2008.
#
#. The strings in e2fsck's problem.c can be very hard to translate,
@@ -63,10 +63,10 @@
#.
msgid ""
msgstr ""
-"Project-Id-Version: e2fsprogs 1.40.6\n"
+"Project-Id-Version: e2fsprogs 1.40.7\n"
"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
"POT-Creation-Date: 2008-02-28 21:45-0500\n"
-"PO-Revision-Date: 2008-02-12 22:09+1030\n"
+"PO-Revision-Date: 2008-03-10 18:11+1030\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
"MIME-Version: 1.0\n"
@@ -113,8 +113,7 @@ msgstr "trong khi cập nhật nút thông tin khối hỏng"
#: e2fsck/badblocks.c:130
#, c-format
msgid "Warning: illegal block %u found in bad block inode. Cleared.\n"
-msgstr ""
-"Cảnh báo : tìm thấy khối cấm %u trong nút thông tin khối hỏng nên bị xoá.\n"
+msgstr "Cảnh báo : tìm thấy khối cấm %u trong nút thông tin khối hỏng nên bị xoá.\n"
#: e2fsck/ehandler.c:53
#, c-format
@@ -880,13 +879,11 @@ msgstr "@j bên ngoài không hỗ trợ @f này\n"
#: e2fsck/problem.c:212
msgid ""
"Ext3 @j @S is unknown type %N (unsupported).\n"
-"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
-"format.\n"
+"It is likely that your copy of e2fsck is old and/or doesn't support this @j format.\n"
"It is also possible the @j @S is corrupt.\n"
msgstr ""
"@S @j ext3 có kiểu lạ %N (không được hỗ trợ).\n"
-"Rất có thể là bạn có một bản sao e2fsck cũ mà/hay không hỗ trợ định dạng @j "
-"này.\n"
+"Rất có thể là bạn có một bản sao e2fsck cũ mà/hay không hỗ trợ định dạng @j này.\n"
"It is also possible the @S @j is corrupt.\n"
#. @-expanded: Ext3 journal superblock is corrupt.\n
@@ -1224,8 +1221,7 @@ msgstr "@S chính (%b) nằm trên danh sách các @b sai.\n"
#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
#: e2fsck/problem.c:490
msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
-msgstr ""
-"Khối %b trong những mô tả @g chính có nằm trong danh sách các @b sai.\n"
+msgstr "Khối %b trong những mô tả @g chính có nằm trong danh sách các @b sai.\n"
#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
#: e2fsck/problem.c:496
@@ -1240,8 +1236,7 @@ msgstr "Cảnh báo : bản sao các mô tả @g của nhóm %g có một @b sai
#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
#: e2fsck/problem.c:507
msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
-msgstr ""
-"Lỗi lập trình ? @b %b được tuyên bố, không có lý do, trong process_bad_@b\n"
+msgstr "Lỗi lập trình ? @b %b được tuyên bố, không có lý do, trong process_bad_@b\n"
#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
#: e2fsck/problem.c:513
@@ -1751,15 +1746,13 @@ msgstr "@i @d %i có một @b #%B chưa cấp phát."
#: e2fsck/problem.c:994
#, c-format
msgid "'.' @d @e in @d @i %i is not NULL terminated\n"
-msgstr ""
-"@e @d « . » trong @i @d %i không được chấm dứt bằng NULL (vô giá trị)\n"
+msgstr "@e @d « . » trong @i @d %i không được chấm dứt bằng NULL (vô giá trị)\n"
#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
#: e2fsck/problem.c:999
#, c-format
msgid "'..' @d @e in @d @i %i is not NULL terminated\n"
-msgstr ""
-"@e @d « .. » trong @i @d %i không được chấm dứt bằng NULL (vô giá trị)\n"
+msgstr "@e @d « .. » trong @i @d %i không được chấm dứt bằng NULL (vô giá trị)\n"
#. @-expanded: inode %i (%Q) is an illegal character device.\n
#: e2fsck/problem.c:1004
@@ -2202,12 +2195,8 @@ msgstr "Số đếm các @b rảnh không đúng (%b, đã đếm=%c).\n"
#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
#. @-expanded: endpoints (%i, %j)\n
#: e2fsck/problem.c:1458
-msgid ""
-"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
-"endpoints (%i, %j)\n"
-msgstr ""
-"LỖI LẬP TRÌNH: trong @f (#%N) có các điểm cuối @B (%b, %c) không tương ứng "
-"với các điểm cuối @B đã tính (%i, %j)\n"
+msgid "PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B endpoints (%i, %j)\n"
+msgstr "LỖI LẬP TRÌNH: trong @f (#%N) có các điểm cuối @B (%b, %c) không tương ứng với các điểm cuối @B đã tính (%i, %j)\n"
#: e2fsck/problem.c:1464
msgid "Internal error: fudging end of bitmap (%N)\n"
@@ -2259,15 +2248,13 @@ msgstr "trong khi chạy tiến trình quét nút thông tin"
#: e2fsck/super.c:187
#, c-format
msgid "while calling ext2fs_block_iterate for inode %d"
-msgstr ""
-"trong khi gọi hàm lặp lại khối « ext2fs_block_iterate » cho nút thông tin %d"
+msgstr "trong khi gọi hàm lặp lại khối « ext2fs_block_iterate » cho nút thông tin %d"
#: e2fsck/super.c:210
#, c-format
msgid "while calling ext2fs_adjust_ea_refcount for inode %d"
msgstr ""
-"trong khi gọi hàm điều chỉnh số đếm tham chiếu « ext2fs_adjust_ea_refcount "
-"»\n"
+"trong khi gọi hàm điều chỉnh số đếm tham chiếu « ext2fs_adjust_ea_refcount »\n"
"cho nút thông tin %d"
#: e2fsck/super.c:268
@@ -2339,8 +2326,7 @@ msgid ""
" -p Automatic repair (no questions)\n"
" -n Make no changes to the filesystem\n"
" -y Assume \"yes\" to all questions\n"
-" -c Check for bad blocks and add them to the badblock "
-"list\n"
+" -c Check for bad blocks and add them to the badblock list\n"
" -f Force checking even if filesystem is marked clean\n"
msgstr ""
"\n"
@@ -2349,8 +2335,7 @@ msgstr ""
" -n Không thay đổi hệ thống tập tin\n"
" -y Giả sử trả lời « Có » mọi câu hỏi\n"
" -c Kiểm tra tìm khối sai: thêm vào danh sách khối sai\n"
-" -f Buộc kiểm tra ngay cả khi hệ thống tập tin có nhãn là "
-"sạch\n"
+" -f Buộc kiểm tra ngay cả khi hệ thống tập tin có nhãn là sạch\n"
#: e2fsck/unix.c:86
#, c-format
@@ -2533,8 +2518,7 @@ msgstr "Không cho phép tùy chọn không tương thích khi trao đổi byte.
#: e2fsck/unix.c:808
#, c-format
msgid "The -c and the -l/-L options may not be both used at the same time.\n"
-msgstr ""
-"Không cho phép sử dụng đồng thời cả hai tùy chọn « --c » và « --l/L ».\n"
+msgstr "Không cho phép sử dụng đồng thời cả hai tùy chọn « --c » và « --l/L ».\n"
#: e2fsck/unix.c:856
#, c-format
@@ -2606,9 +2590,7 @@ msgstr "Phân vùng này có thể có độ dài bằng không ?\n"
#: e2fsck/unix.c:1021
#, c-format
msgid "You must have %s access to the filesystem or be root\n"
-msgstr ""
-"Bạn phải có quyền truy cập %s vào hệ thống tập tin, hoặc là người chủ "
-"(root)\n"
+msgstr "Bạn phải có quyền truy cập %s vào hệ thống tập tin, hoặc là người chủ (root)\n"
#: e2fsck/unix.c:1026
#, c-format
@@ -2618,8 +2600,7 @@ msgstr "Có thể là thiết bị không tồn tại, hoặc thiết bị trao
#: e2fsck/unix.c:1028
#, c-format
msgid "Filesystem mounted or opened exclusively by another program?\n"
-msgstr ""
-"Hệ thống tập tin đã được gắn kết hay mở hoàn toàn bởi chương trình khác ?\n"
+msgstr "Hệ thống tập tin đã được gắn kết hay mở hoàn toàn bởi chương trình khác ?\n"
#: e2fsck/unix.c:1032
#, c-format
@@ -2641,12 +2622,8 @@ msgstr "trong khi kiểm tra nhật ký ext3 tìm %s"
#: e2fsck/unix.c:1128
#, c-format
-msgid ""
-"Warning: skipping journal recovery because doing a read-only filesystem "
-"check.\n"
-msgstr ""
-"Cảnh báo : đang bỏ qua việc phục hồi nhật ký vì đang kiểm tra hệ thống tập "
-"tin một cách chỉ đọc.\n"
+msgid "Warning: skipping journal recovery because doing a read-only filesystem check.\n"
+msgstr "Cảnh báo : đang bỏ qua việc phục hồi nhật ký vì đang kiểm tra hệ thống tập tin một cách chỉ đọc.\n"
#: e2fsck/unix.c:1141
#, c-format
@@ -2659,9 +2636,9 @@ msgid "while recovering ext3 journal of %s"
msgstr "trong khi phục hồi nhật ký ext3 của %s"
#: e2fsck/unix.c:1171
-#, fuzzy, c-format
+#, c-format
msgid "%s has unsupported feature(s):"
-msgstr "Hệ thống tập tin %s đã hiệu lực tính năng không được hỗ trợ.\n"
+msgstr "%s có tính năng không được hỗ trợ :"
#: e2fsck/unix.c:1187
msgid "Warning: compression support is experimental.\n"
@@ -2688,8 +2665,7 @@ msgstr "trong khi đọc nút thông tin khối sai"
#: e2fsck/unix.c:1263
#, c-format
msgid "This doesn't bode well, but we'll try to go on...\n"
-msgstr ""
-"Đây không phải báo trước điềm hay, nhưng tiến trình này sẽ thử tiếp tục...\n"
+msgstr "Đây không phải báo trước điềm hay, nhưng tiến trình này sẽ thử tiếp tục...\n"
#: e2fsck/unix.c:1289
msgid "Couldn't determine journal size"
@@ -2906,13 +2882,11 @@ msgstr "done \n"
#, c-format
msgid ""
"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
-" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern "
-"[...]]]\n"
+" [-c blocks_at_once] [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
" device [last_block [start_block]]\n"
msgstr ""
"Cách sử dụng: %s [-b cỡ_khối] [-i tập_tin_nhập] [-o tập_tin_xuất] [-svwnf]\n"
-" [-c các_khối_cùng_lúc] [-p số_lần_qua] [-t mẫu_thử_ra [-t mẫu_thử_ra "
-"[...]]]\n"
+" [-c các_khối_cùng_lúc] [-p số_lần_qua] [-t mẫu_thử_ra [-t mẫu_thử_ra [...]]]\n"
" thiết_bị [khối_cuối [khối_đầu]]\n"
#: misc/badblocks.c:88
@@ -3041,8 +3015,7 @@ msgstr "mẫu thử (test_pattern) không hợp lệ: %s\n"
#: misc/badblocks.c:961
msgid "Maximum of one test_pattern may be specified in read-only mode"
-msgstr ""
-"Trong chế độ chỉ đọc, có thể xác định tối đa một mẫu thử (test_pattern)"
+msgstr "Trong chế độ chỉ đọc, có thể xác định tối đa một mẫu thử (test_pattern)"
#: misc/badblocks.c:967
msgid "Random test_pattern is not allowed in read-only mode"
@@ -3271,17 +3244,17 @@ msgid "Couldn't allocate memory to parse options!\n"
msgstr "Không thể cấp phát bộ nhớ để phân tách tùy chọn !\n"
#: misc/dumpe2fs.c:363
-#, fuzzy, c-format
+#, c-format
msgid "Invalid superblock parameter: %s\n"
-msgstr "Tham số stride không hợp lệ: %s\n"
+msgstr "Tham số siêu khối không hợp lệ: %s\n"
#: misc/dumpe2fs.c:378
-#, fuzzy, c-format
+#, c-format
msgid "Invalid blocksize parameter: %s\n"
-msgstr "Tham số thay đổi kích cỡ không hợp lệ: %s\n"
+msgstr "Tham số kích cỡ khối không hợp lệ: %s\n"
#: misc/dumpe2fs.c:389
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad extended option(s) specified: %s\n"
@@ -3294,14 +3267,14 @@ msgid ""
"\tblocksize=<blocksize>\n"
msgstr ""
"\n"
-"Sai xác định tùy chọn.\n"
+"Sai xác định tùy chọn đã mở rộng: %s\n"
"\n"
"Các tùy chọn đã mở rộng cũng định giới bằng dấu phẩy, có thể chấp nhận\n"
"đối số được ngụ ý với dấu bằng « = ».\n"
"\n"
"Tùy chọn đã mở rộng hợp lệ:\n"
-"\ttest_fs\n"
-"\t^test_fs\n"
+"\tsuperblock=<số thứ tự siêu khối>\n"
+"\tblocksize=<kích cỡ khối>\n"
#: misc/dumpe2fs.c:449 misc/mke2fs.c:1199
#, c-format
@@ -3330,7 +3303,7 @@ msgstr ""
#: misc/e2image.c:50
#, c-format
msgid "Usage: %s [-rsI] device image_file\n"
-msgstr "Cách sử dụng: %s [-rsI] thiết_bị tập_tin_ảnh\n"
+msgstr "Sử dụng: %s [-rsI] thiết_bị tập_tin_ảnh\n"
#: misc/e2image.c:62
msgid "Couldn't allocate header buffer\n"
@@ -3395,7 +3368,7 @@ msgstr "e2label: gặp lỗi khi ghi siêu khối\n"
#: misc/e2label.c:116 misc/tune2fs.c:496
#, c-format
msgid "Usage: e2label device [newlabel]\n"
-msgstr "Cách sử dụng: e2label thiết_bị [nhãn_mới]\n"
+msgstr "Sử dụng: e2label thiết_bị [nhãn_mới]\n"
#: misc/fsck.c:343
#, c-format
@@ -3463,12 +3436,8 @@ msgstr "Không thể cấp phát bộ nhớ cho kiểu hế thống tập tin\n"
#: misc/fsck.c:872
#, c-format
-msgid ""
-"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
-"number\n"
-msgstr ""
-"%s: đang bỏ qua dòng sai trong « /etc/fstab »: đóng kết lắp với số gửi qua "
-"fsck khác số không\n"
+msgid "%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n"
+msgstr "%s: đang bỏ qua dòng sai trong « /etc/fstab »: đóng kết lắp với số gửi qua fsck khác số không\n"
#: misc/fsck.c:899
#, c-format
@@ -3485,13 +3454,11 @@ msgid "--waiting-- (pass %d)\n"
msgstr "--đang đợi-- (lần qua %d)\n"
#: misc/fsck.c:1066
-#, fuzzy
-msgid ""
-"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
+msgid "Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
msgstr ""
-"Cách sử dụng: fsck [-ANPRTV] [ -C [ fd ] ] [-t kiểu_HTT]\n"
-"[tùy_chọn_HTT] [HTT ...]\n"
-"(HTT : hệ thống tập tin)\n"
+"Sử dụng: fsck [-AMNPRTV] [ -C [ fd ] ] [-t kiểu_HTT] [fs-options] [HTT ...]\n"
+"\n"
+"HTT: hệ thống tập tin\n"
#: misc/fsck.c:1108
#, c-format
@@ -3506,7 +3473,7 @@ msgstr "%s: quá nhiều đối số\n"
#: misc/lsattr.c:73
#, c-format
msgid "Usage: %s [-RVadlv] [files...]\n"
-msgstr "Cách sử dụng: %s [-RVadlv] [tập_tin...]\n"
+msgstr "Sử dụng: %s [-RVadlv] [tập_tin...]\n"
#: misc/lsattr.c:83
#, c-format
@@ -3519,7 +3486,7 @@ msgid "While reading version on %s"
msgstr "Trong khi đọc phiên bản trên %s"
#: misc/mke2fs.c:97
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c|-l filename] [-b block-size] [-f fragment-size]\n"
"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
@@ -3528,12 +3495,12 @@ msgid ""
"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
"\t[-T fs-type] [-jnqvFSV] device [blocks-count]\n"
msgstr ""
-"Sử dụng: %s [-c|-t|-l tên_tập_tin] [-b cỡ_khối] [-f cỡ_đoạn]\n"
-"\t[-i byte_mỗi_inode] [-I cỡ_inode] [-j] [-J tùy_chọn_nhật_ký]\n"
+"Sử dụng: %s [-c|-l tên_tập_tin] [-b cỡ_khối] [-f cỡ_đoạn]\n"
+"\t[-i byte_mỗi_inode] [-I cỡ_inode] [-J tùy_chọn_nhật_ký]\n"
"\t[-N số_inode] [-m phần_trăm_khối_dành_riêng] [-o HĐH_tạo]\n"
"\t[-g khối_mỗi_nhóm] [-L nhãn_khối_tin] [-M thư_mục_lắp_cuối]\n"
-"\t[-O tính_năng[,...]] [-r bản_sửa_đổi_HTT] [-E tùy_chọn_mở_rộng] [-qvSV]\n"
-"\tthiết_bị [số_đếm_khối]\n"
+"\t[-O tính_năng[,...]] [-r bản_sửa_đổi_HTT] [-E tùy_chọn_mở_rộng]\n"
+"\t[-T kiểu_HTT] [-jnqvFSV] thiết_bị [số_đếm_khối]\n"
"\n"
"[HĐH: hệ điều hành\n"
"HTT: hệ thống tập tin]\n"
@@ -3742,7 +3709,7 @@ msgid "Invalid stride parameter: %s\n"
msgstr "Tham số stride không hợp lệ: %s\n"
#: misc/mke2fs.c:808
-#, fuzzy, c-format
+#, c-format
msgid "Invalid stripe-width parameter: %s\n"
msgstr "Tham số stride không hợp lệ: %s\n"
@@ -3754,8 +3721,7 @@ msgstr "Tham số thay đổi kích cỡ không hợp lệ: %s\n"
#: misc/mke2fs.c:837
#, c-format
msgid "The resize maximum must be greater than the filesystem size.\n"
-msgstr ""
-"Số thay đổi kích cỡ tối đa phải lớn hơn kích cỡ của hệ thống tập tin.\n"
+msgstr "Số thay đổi kích cỡ tối đa phải lớn hơn kích cỡ của hệ thống tập tin.\n"
#: misc/mke2fs.c:861
#, c-format
@@ -3765,7 +3731,7 @@ msgstr ""
"trên hệ thống tập tin bản sửa đổi 0\n"
#: misc/mke2fs.c:878
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad option(s) specified: %s\n"
@@ -3781,14 +3747,16 @@ msgid ""
"\ttest_fs\n"
msgstr ""
"\n"
-"Sai xác định tùy chọn.\n"
+"Sai xác định tùy chọn: %s\n"
"\n"
"Các tùy chọn đã mở rộng cũng định giới bằng dấu phẩy, có thể chấp nhận\n"
"đối số được ngụ ý với dấu bằng « = ».\n"
"\n"
"Tùy chọn đã mở rộng hợp lệ:\n"
"\tstride=<chiều dài stride theo khối>\n"
+"\tstripe-width=<RAID stride * các đĩa dữ liệu theo khối>\n"
"\tresize=<kích cỡ thay đổi kích cỡ tối đa theo khối>\n"
+"\n"
"\ttest_fs\n"
#: misc/mke2fs.c:893
@@ -3798,6 +3766,9 @@ msgid ""
"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
"\n"
msgstr ""
+"\n"
+"Cảnh báo : chiều rộng sọc (stripe-width) RAID %u không phải là một bội số dương của %u.\n"
+"\n"
#: misc/mke2fs.c:920
#, c-format
@@ -3889,8 +3860,7 @@ msgstr "Khối %d-byte quá lớn đối với hệ thống (tối đa %d)"
#: misc/mke2fs.c:1247
#, c-format
-msgid ""
-"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
+msgid "Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
msgstr ""
"Cảnh báo : khối %d-byte quá lớn đối với hệ thống (tối đa %d)\n"
"nên bị buộc tiếp tục\n"
@@ -4090,14 +4060,14 @@ msgstr ""
#: misc/mklost+found.c:49
#, c-format
msgid "Usage: mklost+found\n"
-msgstr "Cách sử dụng: mklost+found\n"
+msgstr "Sử dụng: mklost+found\n"
#: misc/tune2fs.c:91
msgid "Please run e2fsck on the filesystem.\n"
msgstr "Hãy chạy tiến trình e2fsck trên hệ thống tập tin.\n"
#: misc/tune2fs.c:98
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
@@ -4107,10 +4077,10 @@ msgid ""
"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID] device\n"
msgstr ""
"Sử dụng: %s [-c số_đếm_lắp_tối_đa] [-e ứng_xử_lỗi] [-g nhóm]\n"
-"\t[-i khoảng[d|m|w]] [-j] [-J tùy_chọn_nhật_ký]\n"
-"\t[-l] [-s cờ_thưa_thớt] [-m phần_trăm_khối_dành_riêng]\n"
-"\t[-o [^]tùy_chọn_lắp[,...]] [-r số_đếm_khối_dành_riêng]\n"
-"\t[-u người_dùng] [-C số_đếm_lắp] [-L nhãn_khối_tin]\n"
+"\t[-i khoảng[d|m|w]] [-j] [-J tùy_chọn_nhật_ký] [-l]\n"
+"\t[-m phần_trăm_khối_dành_riêng] [-o [^]tùy_chọn_lắp[,...]]\n"
+"\t[-r số_đếm_khối_dành_riêng] [-u người_dùng]\n"
+"\t[-C số_đếm_lắp] [-L nhãn_khối_tin]\n"
"\t[-M thư_mục_lắp_cuối] [-O [^]tính_năng[,...]]\n"
"\t[-E tùy_chọn_đã_mở_rộng[,...] [-T giờ_kiểm_tra_cuối] [-U UUID] thiết_bị\n"
@@ -4157,18 +4127,14 @@ msgid "Invalid mount option set: %s\n"
msgstr "Đặt tùy chọn lắp không hợp lệ: %s\n"
#: misc/tune2fs.c:338
-#, fuzzy, c-format
+#, c-format
msgid "Clearing filesystem feature '%s' not supported.\n"
-msgstr ""
-"Tính năng hệ thống tập tin không được hỗ trợ trên hệ thống tập tin\n"
-"bản sửa đổi 0\n"
+msgstr "Tính năng xoá sạch hệ thống tập tin « %s » không được hỗ trợ.\n"
#: misc/tune2fs.c:344
-#, fuzzy, c-format
+#, c-format
msgid "Setting filesystem feature '%s' not supported.\n"
-msgstr ""
-"Tính năng hệ thống tập tin không được hỗ trợ trên hệ thống tập tin\n"
-"bản sửa đổi 0\n"
+msgstr "Tính năng đặt hệ thống tập tin « %s » không được hỗ trợ.\n"
#: misc/tune2fs.c:353
msgid ""
@@ -4271,17 +4237,17 @@ msgid "bad uid/user name - %s"
msgstr "UID/tên người dùng sai — %s"
#: misc/tune2fs.c:842
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stride: %s\n"
-msgstr "Tham số stride không hợp lệ: %s\n"
+msgstr "Tham số stride RAID không hợp lệ: %s\n"
#: misc/tune2fs.c:857
-#, fuzzy, c-format
+#, c-format
msgid "Invalid RAID stripe-width: %s\n"
-msgstr "Tham số stride không hợp lệ: %s\n"
+msgstr "Tham số chiều rộng sọc (stripe-width) RAID không hợp lệ: %s\n"
#: misc/tune2fs.c:867
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Bad options specified.\n"
@@ -4303,8 +4269,9 @@ msgstr ""
"\n"
"Tùy chọn đã mở rộng hợp lệ:\n"
"\tstride=<chiều dài stride theo khối>\n"
-"\tresize=<kích cỡ thay đổi kích cỡ tối đa theo khối>\n"
+"\tstripe-width=<RAID stride*các đĩa dữ liệu theo khối>\n"
"\ttest_fs\n"
+"\t^test_fs\n"
#: misc/tune2fs.c:927
#, c-format
@@ -4373,6 +4340,8 @@ msgid ""
"\n"
"Clearing the sparse superflag not supported.\n"
msgstr ""
+"\n"
+"Tính năng xoá sạch siêu cờ sparse không được hỗ trợ.\n"
#: misc/tune2fs.c:1015
#, c-format
@@ -4389,14 +4358,14 @@ msgid "Invalid UUID format\n"
msgstr "Định dạng UUID không hợp lệ\n"
#: misc/tune2fs.c:1067
-#, fuzzy, c-format
+#, c-format
msgid "Setting stride size to %d\n"
-msgstr "Đang đặt GID khối dành riêng thành %lu\n"
+msgstr "Đang đặt kích cỡ stride thành %d\n"
#: misc/tune2fs.c:1072
-#, fuzzy, c-format
+#, c-format
msgid "Setting stripe width to %d\n"
-msgstr "Đang đặt GID khối dành riêng thành %lu\n"
+msgstr "Đang đặt chiều rộng sọc (stripe width) thành %d\n"
#: misc/util.c:72
msgid "Proceed anyway? (y,n) "
@@ -4512,7 +4481,7 @@ msgstr ""
#: misc/uuidgen.c:31
#, c-format
msgid "Usage: %s [-r] [-t]\n"
-msgstr "Cách sử dụng: %s [-r] [-t]\n"
+msgstr "Sử dụng: %s [-r] [-t]\n"
#: resize/extent.c:196
msgid "# Extent dump:\n"
@@ -4534,7 +4503,7 @@ msgid ""
"Usage: %s [-d debug_flags] [-f] [-F] [-p] device [new_size]\n"
"\n"
msgstr ""
-"Cách sử dụng: %s [-d cờ_gỡ_lỗi] [-f] [-F] [-p] thiết_bị [kích_cỡ_mới]\n"
+"Sử dụng: %s [-d cờ_gỡ_lỗi] [-f] [-F] [-p] thiết_bị [kích_cỡ_mới]\n"
"\n"
#: resize/main.c:61
@@ -4647,17 +4616,3 @@ msgstr "khối siêu dữ liệu"
#, c-format
msgid "Should never happen: resize inode corrupt!\n"
msgstr "Không bao giờ nên xảy ra: nút thông tin thay đổi kích cỡ bị hỏng !\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "The filesystem already has sparse superblocks disabled.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Hệ thống tập tin đã tắt khả năng siêu khối thưa thớt.\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Sparse superblock flag cleared. %s"
-#~ msgstr ""
-#~ "\n"
-#~ "Cờ siêu khối thưa thớt đã xoá sạch. %s"
diff --git a/resize/resize2fs.c b/resize/resize2fs.c
index a99be288..da86ece4 100644
--- a/resize/resize2fs.c
+++ b/resize/resize2fs.c
@@ -1108,8 +1108,7 @@ static errcode_t inode_scan_and_fix(ext2_resize_t rfs)
{
struct process_block_struct pb;
ext2_ino_t ino, new_inode;
- struct ext2_inode inode, *buf = NULL;
- struct ext2_inode_large *large_inode;
+ struct ext2_inode *inode = NULL;
ext2_inode_scan scan = NULL;
errcode_t retval;
int group;
@@ -1153,12 +1152,12 @@ static errcode_t inode_scan_and_fix(ext2_resize_t rfs)
}
ext2fs_set_inode_callback(scan, progress_callback, (void *) rfs);
pb.rfs = rfs;
- pb.inode = &inode;
+ pb.inode = inode;
pb.error = 0;
new_inode = EXT2_FIRST_INODE(rfs->new_fs->super);
inode_size = EXT2_INODE_SIZE(rfs->new_fs->super);
- buf = malloc(inode_size);
- if (!buf) {
+ inode = malloc(inode_size);
+ if (!inode) {
retval = ENOMEM;
goto errout;
}
@@ -1167,29 +1166,29 @@ static errcode_t inode_scan_and_fix(ext2_resize_t rfs)
* elsewhere in the inode table
*/
while (1) {
- retval = ext2fs_get_next_inode(scan, &ino, &inode);
+ retval = ext2fs_get_next_inode_full(scan, &ino, inode, inode_size);
if (retval) goto errout;
if (!ino)
break;
- if (inode.i_links_count == 0 && ino != EXT2_RESIZE_INO)
+ if (inode->i_links_count == 0 && ino != EXT2_RESIZE_INO)
continue; /* inode not in use */
- pb.is_dir = LINUX_S_ISDIR(inode.i_mode);
+ pb.is_dir = LINUX_S_ISDIR(inode->i_mode);
pb.changed = 0;
- if (inode.i_file_acl && rfs->bmap) {
+ if (inode->i_file_acl && rfs->bmap) {
new_block = ext2fs_extent_translate(rfs->bmap,
- inode.i_file_acl);
+ inode->i_file_acl);
if (new_block) {
- inode.i_file_acl = new_block;
- retval = ext2fs_write_inode(rfs->old_fs,
- ino, &inode);
+ inode->i_file_acl = new_block;
+ retval = ext2fs_write_inode_full(rfs->old_fs,
+ ino, inode, inode_size);
if (retval) goto errout;
}
}
- if (ext2fs_inode_has_valid_blocks(&inode) &&
+ if (ext2fs_inode_has_valid_blocks(inode) &&
(rfs->bmap || pb.is_dir)) {
pb.ino = ino;
retval = ext2fs_block_iterate2(rfs->old_fs,
@@ -1220,23 +1219,19 @@ static errcode_t inode_scan_and_fix(ext2_resize_t rfs)
}
}
ext2fs_mark_inode_bitmap(rfs->new_fs->inode_map, new_inode);
- memcpy(buf, &inode, sizeof(struct ext2_inode));
- large_inode = (struct ext2_inode_large *)buf;
- large_inode->i_extra_isize = sizeof(struct ext2_inode_large) -
- EXT2_GOOD_OLD_INODE_SIZE;
if (pb.changed) {
/* Get the new version of the inode */
retval = ext2fs_read_inode_full(rfs->old_fs, ino,
- buf, inode_size);
+ inode, inode_size);
if (retval) goto errout;
}
- inode.i_ctime = time(0);
+ inode->i_ctime = time(0);
retval = ext2fs_write_inode_full(rfs->old_fs, new_inode,
- buf, inode_size);
+ inode, inode_size);
if (retval) goto errout;
group = (new_inode-1) / EXT2_INODES_PER_GROUP(rfs->new_fs->super);
- if (LINUX_S_ISDIR(inode.i_mode))
+ if (LINUX_S_ISDIR(inode->i_mode))
rfs->new_fs->group_desc[group].bg_used_dirs_count++;
#ifdef RESIZE2FS_DEBUG
@@ -1262,8 +1257,8 @@ errout:
ext2fs_close_inode_scan(scan);
if (block_buf)
ext2fs_free_mem(&block_buf);
- if (buf)
- free(buf);
+ if (inode)
+ free(inode);
return retval;
}
diff --git a/tests/f_h_badnode/expect.1 b/tests/f_h_badnode/expect.1
index aaa813d5..80c82d32 100644
--- a/tests/f_h_badnode/expect.1
+++ b/tests/f_h_badnode/expect.1
@@ -6,7 +6,7 @@ Problem in HTREE directory inode 12929: node (1061) has bad min hash
Problem in HTREE directory inode 12929: node (1062) has invalid depth
Problem in HTREE directory inode 12929: node (1062) has bad max hash
Problem in HTREE directory inode 12929: node (1062) not referenced
-Invalid HTREE directory inode 12929 (/test2). Clear? yes
+Invalid HTREE directory inode 12929 (/test2). Clear HTree index? yes
Pass 3: Checking directory connectivity
Pass 3A: Optimizing directories
diff --git a/tests/f_h_badroot/expect.1 b/tests/f_h_badroot/expect.1
index 91bed6ca..261000da 100644
--- a/tests/f_h_badroot/expect.1
+++ b/tests/f_h_badroot/expect.1
@@ -28,7 +28,7 @@ Clear HTree index? yes
Problem in HTREE directory inode 73393: node (1) has bad min hash
Problem in HTREE directory inode 73393: node (2) has bad max hash
-Invalid HTREE directory inode 73393 (/test6). Clear? yes
+Invalid HTREE directory inode 73393 (/test6). Clear HTree index? yes
Pass 3: Checking directory connectivity
Pass 3A: Optimizing directories
diff --git a/tests/f_h_reindex/expect.1 b/tests/f_h_reindex/expect.1
new file mode 100755
index 00000000..45118935
--- /dev/null
+++ b/tests/f_h_reindex/expect.1
@@ -0,0 +1,958 @@
+Backing up journal inode block information.
+
+Pass 1: Checking inodes, blocks, and sizes
+Pass 2: Checking directory structure
+Problem in HTREE directory inode 16001: node (1) has bad max hash
+Problem in HTREE directory inode 16001: node (2) has bad min hash
+Problem in HTREE directory inode 16001: node (2) has bad max hash
+Problem in HTREE directory inode 16001: node (3) has bad min hash
+Problem in HTREE directory inode 16001: node (3) has bad max hash
+Problem in HTREE directory inode 16001: node (4) has bad min hash
+Problem in HTREE directory inode 16001: node (4) has bad max hash
+Problem in HTREE directory inode 16001: node (5) has bad min hash
+Problem in HTREE directory inode 16001: node (5) has bad max hash
+Problem in HTREE directory inode 16001: node (6) has bad min hash
+Problem in HTREE directory inode 16001: node (6) has bad max hash
+Problem in HTREE directory inode 16001: node (7) has bad min hash
+Problem in HTREE directory inode 16001: node (7) has bad max hash
+Problem in HTREE directory inode 16001: node (8) has bad min hash
+Invalid HTREE directory inode 16001 (/test). Clear HTree index? yes
+
+Problem in HTREE directory inode 24001: node (1) has bad max hash
+Problem in HTREE directory inode 24001: node (2) has bad max hash
+Problem in HTREE directory inode 24001: node (3) has bad min hash
+Problem in HTREE directory inode 24001: node (3) has bad max hash
+Problem in HTREE directory inode 24001: node (4) has bad max hash
+Problem in HTREE directory inode 24001: node (5) has bad min hash
+Problem in HTREE directory inode 24001: node (5) has bad max hash
+Problem in HTREE directory inode 24001: node (6) has bad min hash
+Problem in HTREE directory inode 24001: node (6) has bad max hash
+Problem in HTREE directory inode 24001: node (7) has bad min hash
+Problem in HTREE directory inode 24001: node (7) has bad max hash
+Problem in HTREE directory inode 24001: node (8) has bad max hash
+Problem in HTREE directory inode 24001: node (9) has bad min hash
+Problem in HTREE directory inode 24001: node (9) has bad max hash
+Problem in HTREE directory inode 24001: node (10) has bad min hash
+Problem in HTREE directory inode 24001: node (10) has bad max hash
+Problem in HTREE directory inode 24001: node (11) has bad max hash
+Problem in HTREE directory inode 24001: node (12) has bad min hash
+Problem in HTREE directory inode 24001: node (12) has bad max hash
+Problem in HTREE directory inode 24001: node (13) has bad min hash
+Problem in HTREE directory inode 24001: node (13) has bad max hash
+Problem in HTREE directory inode 24001: node (14) has bad min hash
+Problem in HTREE directory inode 24001: node (14) has bad max hash
+Problem in HTREE directory inode 24001: node (15) has bad min hash
+Problem in HTREE directory inode 24001: node (15) has bad max hash
+Problem in HTREE directory inode 24001: node (16) has bad min hash
+Problem in HTREE directory inode 24001: node (16) has bad max hash
+Problem in HTREE directory inode 24001: node (17) has bad min hash
+Problem in HTREE directory inode 24001: node (17) has bad max hash
+Problem in HTREE directory inode 24001: node (18) has bad min hash
+Problem in HTREE directory inode 24001: node (18) has bad max hash
+Problem in HTREE directory inode 24001: node (19) has bad min hash
+Problem in HTREE directory inode 24001: node (19) has bad max hash
+Problem in HTREE directory inode 24001: node (20) has bad min hash
+Problem in HTREE directory inode 24001: node (20) has bad max hash
+Problem in HTREE directory inode 24001: node (21) has bad min hash
+Problem in HTREE directory inode 24001: node (21) has bad max hash
+Problem in HTREE directory inode 24001: node (22) has bad min hash
+Problem in HTREE directory inode 24001: node (22) has bad max hash
+Problem in HTREE directory inode 24001: node (23) has bad min hash
+Problem in HTREE directory inode 24001: node (23) has bad max hash
+Problem in HTREE directory inode 24001: node (24) has bad min hash
+Problem in HTREE directory inode 24001: node (24) has bad max hash
+Problem in HTREE directory inode 24001: node (25) has bad min hash
+Problem in HTREE directory inode 24001: node (25) has bad max hash
+Problem in HTREE directory inode 24001: node (26) has bad min hash
+Problem in HTREE directory inode 24001: node (26) has bad max hash
+Problem in HTREE directory inode 24001: node (27) has bad min hash
+Problem in HTREE directory inode 24001: node (27) has bad max hash
+Problem in HTREE directory inode 24001: node (28) has bad min hash
+Problem in HTREE directory inode 24001: node (28) has bad max hash
+Problem in HTREE directory inode 24001: node (29) has bad min hash
+Problem in HTREE directory inode 24001: node (29) has bad max hash
+Problem in HTREE directory inode 24001: node (30) has bad min hash
+Problem in HTREE directory inode 24001: node (30) has bad max hash
+Problem in HTREE directory inode 24001: node (31) has bad min hash
+Problem in HTREE directory inode 24001: node (31) has bad max hash
+Problem in HTREE directory inode 24001: node (32) has bad min hash
+Problem in HTREE directory inode 24001: node (32) has bad max hash
+Problem in HTREE directory inode 24001: node (33) has bad min hash
+Problem in HTREE directory inode 24001: node (33) has bad max hash
+Problem in HTREE directory inode 24001: node (34) has bad min hash
+Problem in HTREE directory inode 24001: node (34) has bad max hash
+Problem in HTREE directory inode 24001: node (35) has bad min hash
+Problem in HTREE directory inode 24001: node (35) has bad max hash
+Problem in HTREE directory inode 24001: node (36) has bad min hash
+Problem in HTREE directory inode 24001: node (36) has bad max hash
+Problem in HTREE directory inode 24001: node (37) has bad min hash
+Problem in HTREE directory inode 24001: node (37) has bad max hash
+Problem in HTREE directory inode 24001: node (38) has bad min hash
+Problem in HTREE directory inode 24001: node (38) has bad max hash
+Problem in HTREE directory inode 24001: node (39) has bad min hash
+Problem in HTREE directory inode 24001: node (39) has bad max hash
+Problem in HTREE directory inode 24001: node (40) has bad min hash
+Problem in HTREE directory inode 24001: node (40) has bad max hash
+Problem in HTREE directory inode 24001: node (41) has bad min hash
+Problem in HTREE directory inode 24001: node (41) has bad max hash
+Problem in HTREE directory inode 24001: node (42) has bad min hash
+Problem in HTREE directory inode 24001: node (42) has bad max hash
+Problem in HTREE directory inode 24001: node (43) has bad min hash
+Problem in HTREE directory inode 24001: node (43) has bad max hash
+Problem in HTREE directory inode 24001: node (44) has bad min hash
+Problem in HTREE directory inode 24001: node (44) has bad max hash
+Problem in HTREE directory inode 24001: node (45) has bad min hash
+Problem in HTREE directory inode 24001: node (45) has bad max hash
+Problem in HTREE directory inode 24001: node (46) has bad min hash
+Problem in HTREE directory inode 24001: node (46) has bad max hash
+Problem in HTREE directory inode 24001: node (47) has bad min hash
+Problem in HTREE directory inode 24001: node (47) has bad max hash
+Problem in HTREE directory inode 24001: node (48) has bad min hash
+Problem in HTREE directory inode 24001: node (48) has bad max hash
+Problem in HTREE directory inode 24001: node (49) has bad min hash
+Problem in HTREE directory inode 24001: node (49) has bad max hash
+Problem in HTREE directory inode 24001: node (50) has bad min hash
+Problem in HTREE directory inode 24001: node (50) has bad max hash
+Problem in HTREE directory inode 24001: node (51) has bad min hash
+Problem in HTREE directory inode 24001: node (51) has bad max hash
+Problem in HTREE directory inode 24001: node (52) has bad min hash
+Problem in HTREE directory inode 24001: node (52) has bad max hash
+Problem in HTREE directory inode 24001: node (53) has bad min hash
+Problem in HTREE directory inode 24001: node (53) has bad max hash
+Problem in HTREE directory inode 24001: node (54) has bad min hash
+Problem in HTREE directory inode 24001: node (54) has bad max hash
+Problem in HTREE directory inode 24001: node (55) has bad min hash
+Problem in HTREE directory inode 24001: node (55) has bad max hash
+Problem in HTREE directory inode 24001: node (56) has bad min hash
+Problem in HTREE directory inode 24001: node (56) has bad max hash
+Problem in HTREE directory inode 24001: node (57) has bad min hash
+Problem in HTREE directory inode 24001: node (57) has bad max hash
+Problem in HTREE directory inode 24001: node (58) has bad min hash
+Problem in HTREE directory inode 24001: node (58) has bad max hash
+Problem in HTREE directory inode 24001: node (59) has bad min hash
+Problem in HTREE directory inode 24001: node (59) has bad max hash
+Problem in HTREE directory inode 24001: node (60) has bad min hash
+Problem in HTREE directory inode 24001: node (60) has bad max hash
+Problem in HTREE directory inode 24001: node (61) has bad min hash
+Problem in HTREE directory inode 24001: node (61) has bad max hash
+Problem in HTREE directory inode 24001: node (62) has bad min hash
+Problem in HTREE directory inode 24001: node (62) has bad max hash
+Problem in HTREE directory inode 24001: node (63) has bad min hash
+Problem in HTREE directory inode 24001: node (63) has bad max hash
+Problem in HTREE directory inode 24001: node (64) has bad min hash
+Problem in HTREE directory inode 24001: node (64) has bad max hash
+Problem in HTREE directory inode 24001: node (65) has bad min hash
+Problem in HTREE directory inode 24001: node (65) has bad max hash
+Problem in HTREE directory inode 24001: node (66) has bad min hash
+Problem in HTREE directory inode 24001: node (66) has bad max hash
+Problem in HTREE directory inode 24001: node (67) has bad min hash
+Problem in HTREE directory inode 24001: node (67) has bad max hash
+Problem in HTREE directory inode 24001: node (68) has bad min hash
+Problem in HTREE directory inode 24001: node (68) has bad max hash
+Problem in HTREE directory inode 24001: node (69) has bad min hash
+Problem in HTREE directory inode 24001: node (69) has bad max hash
+Problem in HTREE directory inode 24001: node (70) has bad min hash
+Problem in HTREE directory inode 24001: node (70) has bad max hash
+Problem in HTREE directory inode 24001: node (71) has bad min hash
+Problem in HTREE directory inode 24001: node (71) has bad max hash
+Problem in HTREE directory inode 24001: node (72) has bad min hash
+Problem in HTREE directory inode 24001: node (72) has bad max hash
+Problem in HTREE directory inode 24001: node (73) has bad min hash
+Problem in HTREE directory inode 24001: node (73) has bad max hash
+Problem in HTREE directory inode 24001: node (74) has bad min hash
+Problem in HTREE directory inode 24001: node (74) has bad max hash
+Problem in HTREE directory inode 24001: node (75) has bad min hash
+Problem in HTREE directory inode 24001: node (75) has bad max hash
+Problem in HTREE directory inode 24001: node (76) has bad min hash
+Problem in HTREE directory inode 24001: node (76) has bad max hash
+Problem in HTREE directory inode 24001: node (77) has bad min hash
+Problem in HTREE directory inode 24001: node (77) has bad max hash
+Problem in HTREE directory inode 24001: node (78) has bad min hash
+Problem in HTREE directory inode 24001: node (78) has bad max hash
+Problem in HTREE directory inode 24001: node (79) has bad min hash
+Problem in HTREE directory inode 24001: node (79) has bad max hash
+Problem in HTREE directory inode 24001: node (80) has bad min hash
+Problem in HTREE directory inode 24001: node (80) has bad max hash
+Problem in HTREE directory inode 24001: node (81) has bad min hash
+Problem in HTREE directory inode 24001: node (81) has bad max hash
+Problem in HTREE directory inode 24001: node (82) has bad min hash
+Problem in HTREE directory inode 24001: node (82) has bad max hash
+Problem in HTREE directory inode 24001: node (83) has bad min hash
+Problem in HTREE directory inode 24001: node (83) has bad max hash
+Problem in HTREE directory inode 24001: node (84) has bad min hash
+Problem in HTREE directory inode 24001: node (84) has bad max hash
+Problem in HTREE directory inode 24001: node (85) has bad min hash
+Problem in HTREE directory inode 24001: node (85) has bad max hash
+Problem in HTREE directory inode 24001: node (86) has bad min hash
+Problem in HTREE directory inode 24001: node (86) has bad max hash
+Problem in HTREE directory inode 24001: node (87) has bad min hash
+Problem in HTREE directory inode 24001: node (87) has bad max hash
+Problem in HTREE directory inode 24001: node (88) has bad min hash
+Problem in HTREE directory inode 24001: node (88) has bad max hash
+Problem in HTREE directory inode 24001: node (89) has bad min hash
+Problem in HTREE directory inode 24001: node (89) has bad max hash
+Problem in HTREE directory inode 24001: node (90) has bad min hash
+Problem in HTREE directory inode 24001: node (90) has bad max hash
+Problem in HTREE directory inode 24001: node (91) has bad min hash
+Problem in HTREE directory inode 24001: node (91) has bad max hash
+Problem in HTREE directory inode 24001: node (92) has bad min hash
+Problem in HTREE directory inode 24001: node (92) has bad max hash
+Problem in HTREE directory inode 24001: node (93) has bad min hash
+Problem in HTREE directory inode 24001: node (93) has bad max hash
+Problem in HTREE directory inode 24001: node (94) has bad min hash
+Problem in HTREE directory inode 24001: node (94) has bad max hash
+Problem in HTREE directory inode 24001: node (95) has bad min hash
+Problem in HTREE directory inode 24001: node (95) has bad max hash
+Problem in HTREE directory inode 24001: node (96) has bad min hash
+Problem in HTREE directory inode 24001: node (96) has bad max hash
+Problem in HTREE directory inode 24001: node (97) has bad min hash
+Problem in HTREE directory inode 24001: node (97) has bad max hash
+Problem in HTREE directory inode 24001: node (98) has bad min hash
+Problem in HTREE directory inode 24001: node (98) has bad max hash
+Problem in HTREE directory inode 24001: node (99) has bad min hash
+Problem in HTREE directory inode 24001: node (99) has bad max hash
+Problem in HTREE directory inode 24001: node (100) has bad min hash
+Problem in HTREE directory inode 24001: node (100) has bad max hash
+Problem in HTREE directory inode 24001: node (101) has bad min hash
+Problem in HTREE directory inode 24001: node (101) has bad max hash
+Problem in HTREE directory inode 24001: node (102) has bad min hash
+Problem in HTREE directory inode 24001: node (102) has bad max hash
+Problem in HTREE directory inode 24001: node (103) has bad min hash
+Problem in HTREE directory inode 24001: node (103) has bad max hash
+Problem in HTREE directory inode 24001: node (104) has bad min hash
+Problem in HTREE directory inode 24001: node (104) has bad max hash
+Problem in HTREE directory inode 24001: node (105) has bad min hash
+Problem in HTREE directory inode 24001: node (105) has bad max hash
+Problem in HTREE directory inode 24001: node (106) has bad min hash
+Problem in HTREE directory inode 24001: node (106) has bad max hash
+Problem in HTREE directory inode 24001: node (107) has bad min hash
+Problem in HTREE directory inode 24001: node (107) has bad max hash
+Problem in HTREE directory inode 24001: node (108) has bad min hash
+Problem in HTREE directory inode 24001: node (108) has bad max hash
+Problem in HTREE directory inode 24001: node (109) has bad min hash
+Problem in HTREE directory inode 24001: node (109) has bad max hash
+Problem in HTREE directory inode 24001: node (110) has bad min hash
+Problem in HTREE directory inode 24001: node (110) has bad max hash
+Problem in HTREE directory inode 24001: node (111) has bad min hash
+Problem in HTREE directory inode 24001: node (111) has bad max hash
+Problem in HTREE directory inode 24001: node (112) has bad min hash
+Problem in HTREE directory inode 24001: node (112) has bad max hash
+Problem in HTREE directory inode 24001: node (113) has bad min hash
+Problem in HTREE directory inode 24001: node (113) has bad max hash
+Problem in HTREE directory inode 24001: node (114) has bad min hash
+Problem in HTREE directory inode 24001: node (114) has bad max hash
+Problem in HTREE directory inode 24001: node (115) has bad min hash
+Problem in HTREE directory inode 24001: node (115) has bad max hash
+Problem in HTREE directory inode 24001: node (116) has bad min hash
+Problem in HTREE directory inode 24001: node (116) has bad max hash
+Problem in HTREE directory inode 24001: node (117) has bad min hash
+Problem in HTREE directory inode 24001: node (117) has bad max hash
+Problem in HTREE directory inode 24001: node (118) has bad min hash
+Problem in HTREE directory inode 24001: node (118) has bad max hash
+Problem in HTREE directory inode 24001: node (119) has bad min hash
+Problem in HTREE directory inode 24001: node (119) has bad max hash
+Problem in HTREE directory inode 24001: node (120) has bad min hash
+Problem in HTREE directory inode 24001: node (120) has bad max hash
+Problem in HTREE directory inode 24001: node (121) has bad min hash
+Problem in HTREE directory inode 24001: node (121) has bad max hash
+Problem in HTREE directory inode 24001: node (122) has bad min hash
+Problem in HTREE directory inode 24001: node (122) has bad max hash
+Problem in HTREE directory inode 24001: node (123) has bad min hash
+Problem in HTREE directory inode 24001: node (123) has bad max hash
+Problem in HTREE directory inode 24001: node (124) has bad min hash
+Problem in HTREE directory inode 24001: node (124) has bad max hash
+Problem in HTREE directory inode 24001: node (125) has bad min hash
+Problem in HTREE directory inode 24001: node (125) has bad max hash
+Problem in HTREE directory inode 24001: node (126) has bad min hash
+Problem in HTREE directory inode 24001: node (126) has bad max hash
+Problem in HTREE directory inode 24001: node (127) has bad min hash
+Problem in HTREE directory inode 24001: node (128) has bad max hash
+Problem in HTREE directory inode 24001: node (129) has bad min hash
+Problem in HTREE directory inode 24001: node (129) has bad max hash
+Problem in HTREE directory inode 24001: node (130) has bad min hash
+Problem in HTREE directory inode 24001: node (130) has bad max hash
+Problem in HTREE directory inode 24001: node (131) has bad min hash
+Problem in HTREE directory inode 24001: node (131) has bad max hash
+Problem in HTREE directory inode 24001: node (132) has bad min hash
+Problem in HTREE directory inode 24001: node (132) has bad max hash
+Problem in HTREE directory inode 24001: node (133) has bad min hash
+Problem in HTREE directory inode 24001: node (133) has bad max hash
+Problem in HTREE directory inode 24001: node (134) has bad min hash
+Problem in HTREE directory inode 24001: node (134) has bad max hash
+Problem in HTREE directory inode 24001: node (135) has bad min hash
+Problem in HTREE directory inode 24001: node (135) has bad max hash
+Problem in HTREE directory inode 24001: node (136) has bad min hash
+Problem in HTREE directory inode 24001: node (136) has bad max hash
+Problem in HTREE directory inode 24001: node (137) has bad min hash
+Problem in HTREE directory inode 24001: node (137) has bad max hash
+Problem in HTREE directory inode 24001: node (138) has bad min hash
+Problem in HTREE directory inode 24001: node (138) has bad max hash
+Problem in HTREE directory inode 24001: node (139) has bad min hash
+Problem in HTREE directory inode 24001: node (139) has bad max hash
+Problem in HTREE directory inode 24001: node (140) has bad min hash
+Problem in HTREE directory inode 24001: node (140) has bad max hash
+Problem in HTREE directory inode 24001: node (141) has bad min hash
+Problem in HTREE directory inode 24001: node (141) has bad max hash
+Problem in HTREE directory inode 24001: node (142) has bad min hash
+Problem in HTREE directory inode 24001: node (142) has bad max hash
+Problem in HTREE directory inode 24001: node (143) has bad min hash
+Problem in HTREE directory inode 24001: node (143) has bad max hash
+Problem in HTREE directory inode 24001: node (144) has bad min hash
+Problem in HTREE directory inode 24001: node (144) has bad max hash
+Problem in HTREE directory inode 24001: node (145) has bad min hash
+Problem in HTREE directory inode 24001: node (145) has bad max hash
+Problem in HTREE directory inode 24001: node (146) has bad min hash
+Problem in HTREE directory inode 24001: node (146) has bad max hash
+Problem in HTREE directory inode 24001: node (147) has bad min hash
+Problem in HTREE directory inode 24001: node (147) has bad max hash
+Problem in HTREE directory inode 24001: node (148) has bad min hash
+Problem in HTREE directory inode 24001: node (148) has bad max hash
+Problem in HTREE directory inode 24001: node (149) has bad min hash
+Problem in HTREE directory inode 24001: node (149) has bad max hash
+Problem in HTREE directory inode 24001: node (150) has bad min hash
+Problem in HTREE directory inode 24001: node (150) has bad max hash
+Problem in HTREE directory inode 24001: node (151) has bad min hash
+Problem in HTREE directory inode 24001: node (151) has bad max hash
+Problem in HTREE directory inode 24001: node (152) has bad min hash
+Problem in HTREE directory inode 24001: node (152) has bad max hash
+Problem in HTREE directory inode 24001: node (153) has bad min hash
+Problem in HTREE directory inode 24001: node (153) has bad max hash
+Problem in HTREE directory inode 24001: node (154) has bad min hash
+Problem in HTREE directory inode 24001: node (154) has bad max hash
+Problem in HTREE directory inode 24001: node (155) has bad min hash
+Problem in HTREE directory inode 24001: node (155) has bad max hash
+Problem in HTREE directory inode 24001: node (156) has bad min hash
+Problem in HTREE directory inode 24001: node (156) has bad max hash
+Problem in HTREE directory inode 24001: node (157) has bad min hash
+Problem in HTREE directory inode 24001: node (157) has bad max hash
+Problem in HTREE directory inode 24001: node (158) has bad min hash
+Problem in HTREE directory inode 24001: node (158) has bad max hash
+Problem in HTREE directory inode 24001: node (159) has bad min hash
+Problem in HTREE directory inode 24001: node (159) has bad max hash
+Problem in HTREE directory inode 24001: node (160) has bad min hash
+Problem in HTREE directory inode 24001: node (160) has bad max hash
+Problem in HTREE directory inode 24001: node (161) has bad min hash
+Problem in HTREE directory inode 24001: node (161) has bad max hash
+Problem in HTREE directory inode 24001: node (162) has bad min hash
+Problem in HTREE directory inode 24001: node (162) has bad max hash
+Problem in HTREE directory inode 24001: node (163) has bad min hash
+Problem in HTREE directory inode 24001: node (163) has bad max hash
+Problem in HTREE directory inode 24001: node (164) has bad min hash
+Problem in HTREE directory inode 24001: node (164) has bad max hash
+Problem in HTREE directory inode 24001: node (165) has bad min hash
+Problem in HTREE directory inode 24001: node (165) has bad max hash
+Problem in HTREE directory inode 24001: node (166) has bad min hash
+Problem in HTREE directory inode 24001: node (166) has bad max hash
+Problem in HTREE directory inode 24001: node (167) has bad min hash
+Problem in HTREE directory inode 24001: node (167) has bad max hash
+Problem in HTREE directory inode 24001: node (168) has bad min hash
+Problem in HTREE directory inode 24001: node (168) has bad max hash
+Problem in HTREE directory inode 24001: node (169) has bad min hash
+Problem in HTREE directory inode 24001: node (169) has bad max hash
+Problem in HTREE directory inode 24001: node (170) has bad min hash
+Problem in HTREE directory inode 24001: node (170) has bad max hash
+Problem in HTREE directory inode 24001: node (171) has bad min hash
+Problem in HTREE directory inode 24001: node (171) has bad max hash
+Problem in HTREE directory inode 24001: node (172) has bad min hash
+Problem in HTREE directory inode 24001: node (172) has bad max hash
+Problem in HTREE directory inode 24001: node (173) has bad min hash
+Problem in HTREE directory inode 24001: node (173) has bad max hash
+Problem in HTREE directory inode 24001: node (174) has bad min hash
+Problem in HTREE directory inode 24001: node (174) has bad max hash
+Problem in HTREE directory inode 24001: node (175) has bad min hash
+Problem in HTREE directory inode 24001: node (175) has bad max hash
+Problem in HTREE directory inode 24001: node (176) has bad min hash
+Problem in HTREE directory inode 24001: node (176) has bad max hash
+Problem in HTREE directory inode 24001: node (177) has bad min hash
+Problem in HTREE directory inode 24001: node (177) has bad max hash
+Problem in HTREE directory inode 24001: node (178) has bad min hash
+Problem in HTREE directory inode 24001: node (178) has bad max hash
+Problem in HTREE directory inode 24001: node (179) has bad min hash
+Problem in HTREE directory inode 24001: node (179) has bad max hash
+Problem in HTREE directory inode 24001: node (180) has bad min hash
+Problem in HTREE directory inode 24001: node (180) has bad max hash
+Problem in HTREE directory inode 24001: node (181) has bad min hash
+Problem in HTREE directory inode 24001: node (181) has bad max hash
+Problem in HTREE directory inode 24001: node (182) has bad min hash
+Problem in HTREE directory inode 24001: node (182) has bad max hash
+Problem in HTREE directory inode 24001: node (183) has bad min hash
+Problem in HTREE directory inode 24001: node (183) has bad max hash
+Problem in HTREE directory inode 24001: node (184) has bad min hash
+Problem in HTREE directory inode 24001: node (184) has bad max hash
+Problem in HTREE directory inode 24001: node (185) has bad min hash
+Problem in HTREE directory inode 24001: node (185) has bad max hash
+Problem in HTREE directory inode 24001: node (186) has bad min hash
+Problem in HTREE directory inode 24001: node (186) has bad max hash
+Problem in HTREE directory inode 24001: node (187) has bad min hash
+Problem in HTREE directory inode 24001: node (187) has bad max hash
+Problem in HTREE directory inode 24001: node (188) has bad min hash
+Problem in HTREE directory inode 24001: node (188) has bad max hash
+Problem in HTREE directory inode 24001: node (189) has bad min hash
+Problem in HTREE directory inode 24001: node (189) has bad max hash
+Problem in HTREE directory inode 24001: node (190) has bad min hash
+Problem in HTREE directory inode 24001: node (190) has bad max hash
+Problem in HTREE directory inode 24001: node (191) has bad min hash
+Problem in HTREE directory inode 24001: node (191) has bad max hash
+Problem in HTREE directory inode 24001: node (192) has bad min hash
+Problem in HTREE directory inode 24001: node (192) has bad max hash
+Problem in HTREE directory inode 24001: node (193) has bad min hash
+Problem in HTREE directory inode 24001: node (193) has bad max hash
+Problem in HTREE directory inode 24001: node (194) has bad min hash
+Problem in HTREE directory inode 24001: node (194) has bad max hash
+Problem in HTREE directory inode 24001: node (195) has bad min hash
+Problem in HTREE directory inode 24001: node (195) has bad max hash
+Problem in HTREE directory inode 24001: node (196) has bad min hash
+Problem in HTREE directory inode 24001: node (196) has bad max hash
+Problem in HTREE directory inode 24001: node (197) has bad min hash
+Problem in HTREE directory inode 24001: node (197) has bad max hash
+Problem in HTREE directory inode 24001: node (198) has bad min hash
+Problem in HTREE directory inode 24001: node (198) has bad max hash
+Problem in HTREE directory inode 24001: node (199) has bad min hash
+Problem in HTREE directory inode 24001: node (199) has bad max hash
+Problem in HTREE directory inode 24001: node (200) has bad min hash
+Problem in HTREE directory inode 24001: node (200) has bad max hash
+Problem in HTREE directory inode 24001: node (201) has bad min hash
+Problem in HTREE directory inode 24001: node (201) has bad max hash
+Problem in HTREE directory inode 24001: node (202) has bad min hash
+Problem in HTREE directory inode 24001: node (202) has bad max hash
+Problem in HTREE directory inode 24001: node (203) has bad min hash
+Problem in HTREE directory inode 24001: node (203) has bad max hash
+Problem in HTREE directory inode 24001: node (204) has bad min hash
+Problem in HTREE directory inode 24001: node (204) has bad max hash
+Problem in HTREE directory inode 24001: node (205) has bad min hash
+Problem in HTREE directory inode 24001: node (205) has bad max hash
+Problem in HTREE directory inode 24001: node (206) has bad min hash
+Problem in HTREE directory inode 24001: node (206) has bad max hash
+Problem in HTREE directory inode 24001: node (207) has bad min hash
+Problem in HTREE directory inode 24001: node (207) has bad max hash
+Problem in HTREE directory inode 24001: node (208) has bad min hash
+Problem in HTREE directory inode 24001: node (208) has bad max hash
+Problem in HTREE directory inode 24001: node (209) has bad min hash
+Problem in HTREE directory inode 24001: node (209) has bad max hash
+Problem in HTREE directory inode 24001: node (210) has bad min hash
+Problem in HTREE directory inode 24001: node (210) has bad max hash
+Problem in HTREE directory inode 24001: node (211) has bad min hash
+Problem in HTREE directory inode 24001: node (211) has bad max hash
+Problem in HTREE directory inode 24001: node (212) has bad min hash
+Problem in HTREE directory inode 24001: node (212) has bad max hash
+Problem in HTREE directory inode 24001: node (213) has bad min hash
+Problem in HTREE directory inode 24001: node (213) has bad max hash
+Problem in HTREE directory inode 24001: node (214) has bad min hash
+Problem in HTREE directory inode 24001: node (214) has bad max hash
+Problem in HTREE directory inode 24001: node (215) has bad min hash
+Problem in HTREE directory inode 24001: node (215) has bad max hash
+Problem in HTREE directory inode 24001: node (216) has bad min hash
+Problem in HTREE directory inode 24001: node (216) has bad max hash
+Problem in HTREE directory inode 24001: node (217) has bad min hash
+Problem in HTREE directory inode 24001: node (217) has bad max hash
+Problem in HTREE directory inode 24001: node (218) has bad min hash
+Problem in HTREE directory inode 24001: node (218) has bad max hash
+Problem in HTREE directory inode 24001: node (219) has bad min hash
+Problem in HTREE directory inode 24001: node (219) has bad max hash
+Problem in HTREE directory inode 24001: node (220) has bad min hash
+Problem in HTREE directory inode 24001: node (220) has bad max hash
+Problem in HTREE directory inode 24001: node (221) has bad min hash
+Problem in HTREE directory inode 24001: node (221) has bad max hash
+Problem in HTREE directory inode 24001: node (222) has bad min hash
+Problem in HTREE directory inode 24001: node (222) has bad max hash
+Problem in HTREE directory inode 24001: node (223) has bad min hash
+Problem in HTREE directory inode 24001: node (223) has bad max hash
+Problem in HTREE directory inode 24001: node (224) has bad min hash
+Problem in HTREE directory inode 24001: node (224) has bad max hash
+Problem in HTREE directory inode 24001: node (225) has bad min hash
+Problem in HTREE directory inode 24001: node (225) has bad max hash
+Problem in HTREE directory inode 24001: node (226) has bad min hash
+Problem in HTREE directory inode 24001: node (226) has bad max hash
+Problem in HTREE directory inode 24001: node (227) has bad min hash
+Problem in HTREE directory inode 24001: node (227) has bad max hash
+Problem in HTREE directory inode 24001: node (228) has bad min hash
+Problem in HTREE directory inode 24001: node (228) has bad max hash
+Problem in HTREE directory inode 24001: node (229) has bad min hash
+Problem in HTREE directory inode 24001: node (229) has bad max hash
+Problem in HTREE directory inode 24001: node (230) has bad min hash
+Problem in HTREE directory inode 24001: node (230) has bad max hash
+Problem in HTREE directory inode 24001: node (231) has bad min hash
+Problem in HTREE directory inode 24001: node (231) has bad max hash
+Problem in HTREE directory inode 24001: node (232) has bad min hash
+Problem in HTREE directory inode 24001: node (232) has bad max hash
+Problem in HTREE directory inode 24001: node (233) has bad min hash
+Problem in HTREE directory inode 24001: node (233) has bad max hash
+Problem in HTREE directory inode 24001: node (234) has bad min hash
+Problem in HTREE directory inode 24001: node (234) has bad max hash
+Problem in HTREE directory inode 24001: node (235) has bad min hash
+Problem in HTREE directory inode 24001: node (235) has bad max hash
+Problem in HTREE directory inode 24001: node (236) has bad min hash
+Problem in HTREE directory inode 24001: node (236) has bad max hash
+Problem in HTREE directory inode 24001: node (237) has bad min hash
+Problem in HTREE directory inode 24001: node (237) has bad max hash
+Problem in HTREE directory inode 24001: node (238) has bad min hash
+Problem in HTREE directory inode 24001: node (238) has bad max hash
+Problem in HTREE directory inode 24001: node (239) has bad min hash
+Problem in HTREE directory inode 24001: node (239) has bad max hash
+Problem in HTREE directory inode 24001: node (240) has bad min hash
+Problem in HTREE directory inode 24001: node (240) has bad max hash
+Problem in HTREE directory inode 24001: node (241) has bad min hash
+Problem in HTREE directory inode 24001: node (241) has bad max hash
+Problem in HTREE directory inode 24001: node (242) has bad min hash
+Problem in HTREE directory inode 24001: node (242) has bad max hash
+Problem in HTREE directory inode 24001: node (243) has bad min hash
+Problem in HTREE directory inode 24001: node (243) has bad max hash
+Problem in HTREE directory inode 24001: node (244) has bad min hash
+Problem in HTREE directory inode 24001: node (244) has bad max hash
+Problem in HTREE directory inode 24001: node (245) has bad min hash
+Problem in HTREE directory inode 24001: node (245) has bad max hash
+Problem in HTREE directory inode 24001: node (246) has bad min hash
+Problem in HTREE directory inode 24001: node (246) has bad max hash
+Problem in HTREE directory inode 24001: node (247) has bad min hash
+Problem in HTREE directory inode 24001: node (247) has bad max hash
+Problem in HTREE directory inode 24001: node (248) has bad min hash
+Problem in HTREE directory inode 24001: node (248) has bad max hash
+Problem in HTREE directory inode 24001: node (249) has bad min hash
+Problem in HTREE directory inode 24001: node (249) has bad max hash
+Problem in HTREE directory inode 24001: node (250) has bad min hash
+Problem in HTREE directory inode 24001: node (250) has bad max hash
+Problem in HTREE directory inode 24001: node (251) has bad min hash
+Problem in HTREE directory inode 24001: node (251) has bad max hash
+Problem in HTREE directory inode 24001: node (252) has bad min hash
+Problem in HTREE directory inode 24001: node (252) has bad max hash
+Problem in HTREE directory inode 24001: node (253) has bad min hash
+Problem in HTREE directory inode 24001: node (253) has bad max hash
+Problem in HTREE directory inode 24001: node (254) has bad min hash
+Problem in HTREE directory inode 24001: node (255) has bad max hash
+Problem in HTREE directory inode 24001: node (256) has bad min hash
+Problem in HTREE directory inode 24001: node (256) has bad max hash
+Problem in HTREE directory inode 24001: node (257) has bad min hash
+Problem in HTREE directory inode 24001: node (257) has bad max hash
+Problem in HTREE directory inode 24001: node (258) has bad min hash
+Problem in HTREE directory inode 24001: node (258) has bad max hash
+Problem in HTREE directory inode 24001: node (259) has bad min hash
+Problem in HTREE directory inode 24001: node (259) has bad max hash
+Problem in HTREE directory inode 24001: node (260) has bad min hash
+Problem in HTREE directory inode 24001: node (260) has bad max hash
+Problem in HTREE directory inode 24001: node (261) has bad min hash
+Problem in HTREE directory inode 24001: node (261) has bad max hash
+Problem in HTREE directory inode 24001: node (262) has bad min hash
+Problem in HTREE directory inode 24001: node (262) has bad max hash
+Problem in HTREE directory inode 24001: node (263) has bad min hash
+Problem in HTREE directory inode 24001: node (263) has bad max hash
+Problem in HTREE directory inode 24001: node (264) has bad min hash
+Problem in HTREE directory inode 24001: node (264) has bad max hash
+Problem in HTREE directory inode 24001: node (265) has bad min hash
+Problem in HTREE directory inode 24001: node (265) has bad max hash
+Problem in HTREE directory inode 24001: node (266) has bad min hash
+Problem in HTREE directory inode 24001: node (266) has bad max hash
+Problem in HTREE directory inode 24001: node (267) has bad min hash
+Problem in HTREE directory inode 24001: node (267) has bad max hash
+Problem in HTREE directory inode 24001: node (268) has bad min hash
+Problem in HTREE directory inode 24001: node (268) has bad max hash
+Problem in HTREE directory inode 24001: node (269) has bad min hash
+Problem in HTREE directory inode 24001: node (269) has bad max hash
+Problem in HTREE directory inode 24001: node (270) has bad min hash
+Problem in HTREE directory inode 24001: node (270) has bad max hash
+Problem in HTREE directory inode 24001: node (271) has bad min hash
+Problem in HTREE directory inode 24001: node (271) has bad max hash
+Problem in HTREE directory inode 24001: node (272) has bad min hash
+Problem in HTREE directory inode 24001: node (272) has bad max hash
+Problem in HTREE directory inode 24001: node (273) has bad min hash
+Problem in HTREE directory inode 24001: node (273) has bad max hash
+Problem in HTREE directory inode 24001: node (274) has bad min hash
+Problem in HTREE directory inode 24001: node (274) has bad max hash
+Problem in HTREE directory inode 24001: node (275) has bad min hash
+Problem in HTREE directory inode 24001: node (275) has bad max hash
+Problem in HTREE directory inode 24001: node (276) has bad min hash
+Problem in HTREE directory inode 24001: node (276) has bad max hash
+Problem in HTREE directory inode 24001: node (277) has bad min hash
+Problem in HTREE directory inode 24001: node (277) has bad max hash
+Problem in HTREE directory inode 24001: node (278) has bad min hash
+Problem in HTREE directory inode 24001: node (278) has bad max hash
+Problem in HTREE directory inode 24001: node (279) has bad min hash
+Problem in HTREE directory inode 24001: node (279) has bad max hash
+Problem in HTREE directory inode 24001: node (280) has bad min hash
+Problem in HTREE directory inode 24001: node (280) has bad max hash
+Problem in HTREE directory inode 24001: node (281) has bad min hash
+Problem in HTREE directory inode 24001: node (281) has bad max hash
+Problem in HTREE directory inode 24001: node (282) has bad min hash
+Problem in HTREE directory inode 24001: node (282) has bad max hash
+Problem in HTREE directory inode 24001: node (283) has bad min hash
+Problem in HTREE directory inode 24001: node (283) has bad max hash
+Problem in HTREE directory inode 24001: node (284) has bad min hash
+Problem in HTREE directory inode 24001: node (284) has bad max hash
+Problem in HTREE directory inode 24001: node (285) has bad min hash
+Problem in HTREE directory inode 24001: node (285) has bad max hash
+Problem in HTREE directory inode 24001: node (286) has bad min hash
+Problem in HTREE directory inode 24001: node (286) has bad max hash
+Problem in HTREE directory inode 24001: node (287) has bad min hash
+Problem in HTREE directory inode 24001: node (287) has bad max hash
+Problem in HTREE directory inode 24001: node (288) has bad min hash
+Problem in HTREE directory inode 24001: node (288) has bad max hash
+Problem in HTREE directory inode 24001: node (289) has bad min hash
+Problem in HTREE directory inode 24001: node (289) has bad max hash
+Problem in HTREE directory inode 24001: node (290) has bad min hash
+Problem in HTREE directory inode 24001: node (290) has bad max hash
+Problem in HTREE directory inode 24001: node (291) has bad min hash
+Problem in HTREE directory inode 24001: node (291) has bad max hash
+Problem in HTREE directory inode 24001: node (292) has bad min hash
+Problem in HTREE directory inode 24001: node (292) has bad max hash
+Problem in HTREE directory inode 24001: node (293) has bad min hash
+Problem in HTREE directory inode 24001: node (293) has bad max hash
+Problem in HTREE directory inode 24001: node (294) has bad min hash
+Problem in HTREE directory inode 24001: node (294) has bad max hash
+Problem in HTREE directory inode 24001: node (295) has bad min hash
+Problem in HTREE directory inode 24001: node (295) has bad max hash
+Problem in HTREE directory inode 24001: node (296) has bad min hash
+Problem in HTREE directory inode 24001: node (296) has bad max hash
+Problem in HTREE directory inode 24001: node (297) has bad min hash
+Problem in HTREE directory inode 24001: node (297) has bad max hash
+Problem in HTREE directory inode 24001: node (298) has bad min hash
+Problem in HTREE directory inode 24001: node (298) has bad max hash
+Problem in HTREE directory inode 24001: node (299) has bad min hash
+Problem in HTREE directory inode 24001: node (299) has bad max hash
+Problem in HTREE directory inode 24001: node (300) has bad min hash
+Problem in HTREE directory inode 24001: node (300) has bad max hash
+Problem in HTREE directory inode 24001: node (301) has bad min hash
+Problem in HTREE directory inode 24001: node (301) has bad max hash
+Problem in HTREE directory inode 24001: node (302) has bad min hash
+Problem in HTREE directory inode 24001: node (302) has bad max hash
+Problem in HTREE directory inode 24001: node (303) has bad min hash
+Problem in HTREE directory inode 24001: node (303) has bad max hash
+Problem in HTREE directory inode 24001: node (304) has bad min hash
+Problem in HTREE directory inode 24001: node (304) has bad max hash
+Problem in HTREE directory inode 24001: node (305) has bad min hash
+Problem in HTREE directory inode 24001: node (305) has bad max hash
+Problem in HTREE directory inode 24001: node (306) has bad min hash
+Problem in HTREE directory inode 24001: node (306) has bad max hash
+Problem in HTREE directory inode 24001: node (307) has bad min hash
+Problem in HTREE directory inode 24001: node (307) has bad max hash
+Problem in HTREE directory inode 24001: node (308) has bad min hash
+Problem in HTREE directory inode 24001: node (308) has bad max hash
+Problem in HTREE directory inode 24001: node (309) has bad min hash
+Problem in HTREE directory inode 24001: node (309) has bad max hash
+Problem in HTREE directory inode 24001: node (310) has bad min hash
+Problem in HTREE directory inode 24001: node (310) has bad max hash
+Problem in HTREE directory inode 24001: node (311) has bad min hash
+Problem in HTREE directory inode 24001: node (311) has bad max hash
+Problem in HTREE directory inode 24001: node (312) has bad min hash
+Problem in HTREE directory inode 24001: node (312) has bad max hash
+Problem in HTREE directory inode 24001: node (313) has bad min hash
+Problem in HTREE directory inode 24001: node (313) has bad max hash
+Problem in HTREE directory inode 24001: node (314) has bad min hash
+Problem in HTREE directory inode 24001: node (314) has bad max hash
+Problem in HTREE directory inode 24001: node (315) has bad min hash
+Problem in HTREE directory inode 24001: node (315) has bad max hash
+Problem in HTREE directory inode 24001: node (316) has bad min hash
+Problem in HTREE directory inode 24001: node (316) has bad max hash
+Problem in HTREE directory inode 24001: node (317) has bad min hash
+Problem in HTREE directory inode 24001: node (317) has bad max hash
+Problem in HTREE directory inode 24001: node (318) has bad min hash
+Problem in HTREE directory inode 24001: node (318) has bad max hash
+Problem in HTREE directory inode 24001: node (319) has bad min hash
+Problem in HTREE directory inode 24001: node (319) has bad max hash
+Problem in HTREE directory inode 24001: node (320) has bad min hash
+Problem in HTREE directory inode 24001: node (320) has bad max hash
+Problem in HTREE directory inode 24001: node (321) has bad min hash
+Problem in HTREE directory inode 24001: node (321) has bad max hash
+Problem in HTREE directory inode 24001: node (322) has bad min hash
+Problem in HTREE directory inode 24001: node (322) has bad max hash
+Problem in HTREE directory inode 24001: node (323) has bad min hash
+Problem in HTREE directory inode 24001: node (323) has bad max hash
+Problem in HTREE directory inode 24001: node (324) has bad min hash
+Problem in HTREE directory inode 24001: node (324) has bad max hash
+Problem in HTREE directory inode 24001: node (325) has bad min hash
+Problem in HTREE directory inode 24001: node (325) has bad max hash
+Problem in HTREE directory inode 24001: node (326) has bad min hash
+Problem in HTREE directory inode 24001: node (326) has bad max hash
+Problem in HTREE directory inode 24001: node (327) has bad min hash
+Problem in HTREE directory inode 24001: node (327) has bad max hash
+Problem in HTREE directory inode 24001: node (328) has bad min hash
+Problem in HTREE directory inode 24001: node (328) has bad max hash
+Problem in HTREE directory inode 24001: node (329) has bad min hash
+Problem in HTREE directory inode 24001: node (329) has bad max hash
+Problem in HTREE directory inode 24001: node (330) has bad min hash
+Problem in HTREE directory inode 24001: node (330) has bad max hash
+Problem in HTREE directory inode 24001: node (331) has bad min hash
+Problem in HTREE directory inode 24001: node (331) has bad max hash
+Problem in HTREE directory inode 24001: node (332) has bad min hash
+Problem in HTREE directory inode 24001: node (332) has bad max hash
+Problem in HTREE directory inode 24001: node (333) has bad min hash
+Problem in HTREE directory inode 24001: node (333) has bad max hash
+Problem in HTREE directory inode 24001: node (334) has bad min hash
+Problem in HTREE directory inode 24001: node (334) has bad max hash
+Problem in HTREE directory inode 24001: node (335) has bad min hash
+Problem in HTREE directory inode 24001: node (335) has bad max hash
+Problem in HTREE directory inode 24001: node (336) has bad min hash
+Problem in HTREE directory inode 24001: node (336) has bad max hash
+Problem in HTREE directory inode 24001: node (337) has bad min hash
+Problem in HTREE directory inode 24001: node (337) has bad max hash
+Problem in HTREE directory inode 24001: node (338) has bad min hash
+Problem in HTREE directory inode 24001: node (338) has bad max hash
+Problem in HTREE directory inode 24001: node (339) has bad min hash
+Problem in HTREE directory inode 24001: node (339) has bad max hash
+Problem in HTREE directory inode 24001: node (340) has bad min hash
+Problem in HTREE directory inode 24001: node (340) has bad max hash
+Problem in HTREE directory inode 24001: node (341) has bad min hash
+Problem in HTREE directory inode 24001: node (341) has bad max hash
+Problem in HTREE directory inode 24001: node (342) has bad min hash
+Problem in HTREE directory inode 24001: node (342) has bad max hash
+Problem in HTREE directory inode 24001: node (343) has bad min hash
+Problem in HTREE directory inode 24001: node (343) has bad max hash
+Problem in HTREE directory inode 24001: node (344) has bad min hash
+Problem in HTREE directory inode 24001: node (344) has bad max hash
+Problem in HTREE directory inode 24001: node (345) has bad min hash
+Problem in HTREE directory inode 24001: node (345) has bad max hash
+Problem in HTREE directory inode 24001: node (346) has bad min hash
+Problem in HTREE directory inode 24001: node (346) has bad max hash
+Problem in HTREE directory inode 24001: node (347) has bad min hash
+Problem in HTREE directory inode 24001: node (347) has bad max hash
+Problem in HTREE directory inode 24001: node (348) has bad min hash
+Problem in HTREE directory inode 24001: node (348) has bad max hash
+Problem in HTREE directory inode 24001: node (349) has bad min hash
+Problem in HTREE directory inode 24001: node (349) has bad max hash
+Problem in HTREE directory inode 24001: node (350) has bad min hash
+Problem in HTREE directory inode 24001: node (350) has bad max hash
+Problem in HTREE directory inode 24001: node (351) has bad min hash
+Problem in HTREE directory inode 24001: node (351) has bad max hash
+Problem in HTREE directory inode 24001: node (352) has bad min hash
+Problem in HTREE directory inode 24001: node (352) has bad max hash
+Problem in HTREE directory inode 24001: node (353) has bad min hash
+Problem in HTREE directory inode 24001: node (353) has bad max hash
+Problem in HTREE directory inode 24001: node (354) has bad min hash
+Problem in HTREE directory inode 24001: node (354) has bad max hash
+Problem in HTREE directory inode 24001: node (355) has bad min hash
+Problem in HTREE directory inode 24001: node (355) has bad max hash
+Problem in HTREE directory inode 24001: node (356) has bad min hash
+Problem in HTREE directory inode 24001: node (356) has bad max hash
+Problem in HTREE directory inode 24001: node (357) has bad min hash
+Problem in HTREE directory inode 24001: node (357) has bad max hash
+Problem in HTREE directory inode 24001: node (358) has bad min hash
+Problem in HTREE directory inode 24001: node (358) has bad max hash
+Problem in HTREE directory inode 24001: node (359) has bad min hash
+Problem in HTREE directory inode 24001: node (359) has bad max hash
+Problem in HTREE directory inode 24001: node (360) has bad min hash
+Problem in HTREE directory inode 24001: node (360) has bad max hash
+Problem in HTREE directory inode 24001: node (361) has bad min hash
+Problem in HTREE directory inode 24001: node (361) has bad max hash
+Problem in HTREE directory inode 24001: node (362) has bad min hash
+Problem in HTREE directory inode 24001: node (362) has bad max hash
+Problem in HTREE directory inode 24001: node (363) has bad min hash
+Problem in HTREE directory inode 24001: node (363) has bad max hash
+Problem in HTREE directory inode 24001: node (364) has bad min hash
+Problem in HTREE directory inode 24001: node (364) has bad max hash
+Problem in HTREE directory inode 24001: node (365) has bad min hash
+Problem in HTREE directory inode 24001: node (365) has bad max hash
+Problem in HTREE directory inode 24001: node (366) has bad min hash
+Problem in HTREE directory inode 24001: node (366) has bad max hash
+Problem in HTREE directory inode 24001: node (367) has bad min hash
+Problem in HTREE directory inode 24001: node (367) has bad max hash
+Problem in HTREE directory inode 24001: node (368) has bad min hash
+Problem in HTREE directory inode 24001: node (368) has bad max hash
+Problem in HTREE directory inode 24001: node (369) has bad min hash
+Problem in HTREE directory inode 24001: node (369) has bad max hash
+Problem in HTREE directory inode 24001: node (370) has bad min hash
+Problem in HTREE directory inode 24001: node (370) has bad max hash
+Problem in HTREE directory inode 24001: node (371) has bad min hash
+Problem in HTREE directory inode 24001: node (371) has bad max hash
+Problem in HTREE directory inode 24001: node (372) has bad min hash
+Problem in HTREE directory inode 24001: node (372) has bad max hash
+Problem in HTREE directory inode 24001: node (373) has bad min hash
+Problem in HTREE directory inode 24001: node (373) has bad max hash
+Problem in HTREE directory inode 24001: node (374) has bad min hash
+Problem in HTREE directory inode 24001: node (374) has bad max hash
+Problem in HTREE directory inode 24001: node (375) has bad min hash
+Problem in HTREE directory inode 24001: node (375) has bad max hash
+Problem in HTREE directory inode 24001: node (376) has bad min hash
+Problem in HTREE directory inode 24001: node (376) has bad max hash
+Problem in HTREE directory inode 24001: node (377) has bad min hash
+Problem in HTREE directory inode 24001: node (377) has bad max hash
+Problem in HTREE directory inode 24001: node (378) has bad min hash
+Problem in HTREE directory inode 24001: node (378) has bad max hash
+Problem in HTREE directory inode 24001: node (379) has bad min hash
+Problem in HTREE directory inode 24001: node (379) has bad max hash
+Problem in HTREE directory inode 24001: node (380) has bad min hash
+Problem in HTREE directory inode 24001: node (380) has bad max hash
+Problem in HTREE directory inode 24001: node (381) has bad min hash
+Problem in HTREE directory inode 24001: node (382) has bad max hash
+Problem in HTREE directory inode 24001: node (383) has bad min hash
+Problem in HTREE directory inode 24001: node (383) has bad max hash
+Problem in HTREE directory inode 24001: node (384) has bad min hash
+Problem in HTREE directory inode 24001: node (384) has bad max hash
+Problem in HTREE directory inode 24001: node (385) has bad min hash
+Problem in HTREE directory inode 24001: node (385) has bad max hash
+Problem in HTREE directory inode 24001: node (386) has bad min hash
+Problem in HTREE directory inode 24001: node (386) has bad max hash
+Problem in HTREE directory inode 24001: node (387) has bad min hash
+Problem in HTREE directory inode 24001: node (387) has bad max hash
+Problem in HTREE directory inode 24001: node (388) has bad min hash
+Problem in HTREE directory inode 24001: node (388) has bad max hash
+Problem in HTREE directory inode 24001: node (389) has bad min hash
+Problem in HTREE directory inode 24001: node (389) has bad max hash
+Problem in HTREE directory inode 24001: node (390) has bad min hash
+Problem in HTREE directory inode 24001: node (390) has bad max hash
+Problem in HTREE directory inode 24001: node (391) has bad min hash
+Problem in HTREE directory inode 24001: node (391) has bad max hash
+Problem in HTREE directory inode 24001: node (392) has bad min hash
+Problem in HTREE directory inode 24001: node (392) has bad max hash
+Problem in HTREE directory inode 24001: node (393) has bad min hash
+Problem in HTREE directory inode 24001: node (393) has bad max hash
+Problem in HTREE directory inode 24001: node (394) has bad min hash
+Problem in HTREE directory inode 24001: node (394) has bad max hash
+Problem in HTREE directory inode 24001: node (395) has bad min hash
+Problem in HTREE directory inode 24001: node (395) has bad max hash
+Problem in HTREE directory inode 24001: node (396) has bad min hash
+Problem in HTREE directory inode 24001: node (396) has bad max hash
+Problem in HTREE directory inode 24001: node (397) has bad min hash
+Problem in HTREE directory inode 24001: node (397) has bad max hash
+Problem in HTREE directory inode 24001: node (398) has bad min hash
+Problem in HTREE directory inode 24001: node (398) has bad max hash
+Problem in HTREE directory inode 24001: node (399) has bad min hash
+Problem in HTREE directory inode 24001: node (399) has bad max hash
+Problem in HTREE directory inode 24001: node (400) has bad min hash
+Problem in HTREE directory inode 24001: node (400) has bad max hash
+Problem in HTREE directory inode 24001: node (401) has bad min hash
+Problem in HTREE directory inode 24001: node (401) has bad max hash
+Problem in HTREE directory inode 24001: node (402) has bad min hash
+Problem in HTREE directory inode 24001: node (402) has bad max hash
+Problem in HTREE directory inode 24001: node (403) has bad min hash
+Problem in HTREE directory inode 24001: node (403) has bad max hash
+Problem in HTREE directory inode 24001: node (404) has bad min hash
+Problem in HTREE directory inode 24001: node (404) has bad max hash
+Problem in HTREE directory inode 24001: node (405) has bad min hash
+Problem in HTREE directory inode 24001: node (405) has bad max hash
+Problem in HTREE directory inode 24001: node (406) has bad min hash
+Problem in HTREE directory inode 24001: node (406) has bad max hash
+Problem in HTREE directory inode 24001: node (407) has bad min hash
+Problem in HTREE directory inode 24001: node (407) has bad max hash
+Problem in HTREE directory inode 24001: node (408) has bad min hash
+Problem in HTREE directory inode 24001: node (408) has bad max hash
+Problem in HTREE directory inode 24001: node (409) has bad min hash
+Problem in HTREE directory inode 24001: node (409) has bad max hash
+Problem in HTREE directory inode 24001: node (410) has bad min hash
+Problem in HTREE directory inode 24001: node (410) has bad max hash
+Problem in HTREE directory inode 24001: node (411) has bad min hash
+Problem in HTREE directory inode 24001: node (411) has bad max hash
+Problem in HTREE directory inode 24001: node (412) has bad min hash
+Problem in HTREE directory inode 24001: node (412) has bad max hash
+Problem in HTREE directory inode 24001: node (413) has bad min hash
+Problem in HTREE directory inode 24001: node (413) has bad max hash
+Problem in HTREE directory inode 24001: node (414) has bad min hash
+Problem in HTREE directory inode 24001: node (414) has bad max hash
+Problem in HTREE directory inode 24001: node (415) has bad min hash
+Problem in HTREE directory inode 24001: node (415) has bad max hash
+Problem in HTREE directory inode 24001: node (416) has bad min hash
+Problem in HTREE directory inode 24001: node (416) has bad max hash
+Problem in HTREE directory inode 24001: node (417) has bad min hash
+Problem in HTREE directory inode 24001: node (417) has bad max hash
+Problem in HTREE directory inode 24001: node (418) has bad min hash
+Problem in HTREE directory inode 24001: node (418) has bad max hash
+Problem in HTREE directory inode 24001: node (419) has bad min hash
+Problem in HTREE directory inode 24001: node (419) has bad max hash
+Problem in HTREE directory inode 24001: node (420) has bad min hash
+Problem in HTREE directory inode 24001: node (420) has bad max hash
+Problem in HTREE directory inode 24001: node (421) has bad min hash
+Problem in HTREE directory inode 24001: node (421) has bad max hash
+Problem in HTREE directory inode 24001: node (422) has bad min hash
+Problem in HTREE directory inode 24001: node (422) has bad max hash
+Problem in HTREE directory inode 24001: node (423) has bad min hash
+Problem in HTREE directory inode 24001: node (423) has bad max hash
+Problem in HTREE directory inode 24001: node (424) has bad min hash
+Problem in HTREE directory inode 24001: node (424) has bad max hash
+Problem in HTREE directory inode 24001: node (425) has bad min hash
+Problem in HTREE directory inode 24001: node (425) has bad max hash
+Problem in HTREE directory inode 24001: node (426) has bad min hash
+Problem in HTREE directory inode 24001: node (426) has bad max hash
+Problem in HTREE directory inode 24001: node (427) has bad min hash
+Problem in HTREE directory inode 24001: node (427) has bad max hash
+Problem in HTREE directory inode 24001: node (428) has bad min hash
+Problem in HTREE directory inode 24001: node (428) has bad max hash
+Problem in HTREE directory inode 24001: node (429) has bad min hash
+Problem in HTREE directory inode 24001: node (429) has bad max hash
+Problem in HTREE directory inode 24001: node (430) has bad min hash
+Problem in HTREE directory inode 24001: node (430) has bad max hash
+Problem in HTREE directory inode 24001: node (431) has bad min hash
+Problem in HTREE directory inode 24001: node (431) has bad max hash
+Problem in HTREE directory inode 24001: node (432) has bad min hash
+Problem in HTREE directory inode 24001: node (432) has bad max hash
+Problem in HTREE directory inode 24001: node (433) has bad min hash
+Problem in HTREE directory inode 24001: node (433) has bad max hash
+Problem in HTREE directory inode 24001: node (434) has bad min hash
+Problem in HTREE directory inode 24001: node (434) has bad max hash
+Problem in HTREE directory inode 24001: node (435) has bad min hash
+Problem in HTREE directory inode 24001: node (435) has bad max hash
+Problem in HTREE directory inode 24001: node (436) has bad min hash
+Problem in HTREE directory inode 24001: node (436) has bad max hash
+Problem in HTREE directory inode 24001: node (437) has bad min hash
+Problem in HTREE directory inode 24001: node (437) has bad max hash
+Problem in HTREE directory inode 24001: node (438) has bad min hash
+Problem in HTREE directory inode 24001: node (438) has bad max hash
+Problem in HTREE directory inode 24001: node (439) has bad min hash
+Problem in HTREE directory inode 24001: node (439) has bad max hash
+Problem in HTREE directory inode 24001: node (440) has bad min hash
+Problem in HTREE directory inode 24001: node (440) has bad max hash
+Problem in HTREE directory inode 24001: node (441) has bad min hash
+Problem in HTREE directory inode 24001: node (441) has bad max hash
+Problem in HTREE directory inode 24001: node (442) has bad min hash
+Problem in HTREE directory inode 24001: node (442) has bad max hash
+Problem in HTREE directory inode 24001: node (443) has bad min hash
+Problem in HTREE directory inode 24001: node (443) has bad max hash
+Problem in HTREE directory inode 24001: node (444) has bad min hash
+Problem in HTREE directory inode 24001: node (444) has bad max hash
+Problem in HTREE directory inode 24001: node (445) has bad min hash
+Problem in HTREE directory inode 24001: node (445) has bad max hash
+Problem in HTREE directory inode 24001: node (446) has bad min hash
+Problem in HTREE directory inode 24001: node (446) has bad max hash
+Problem in HTREE directory inode 24001: node (447) has bad min hash
+Problem in HTREE directory inode 24001: node (447) has bad max hash
+Problem in HTREE directory inode 24001: node (448) has bad min hash
+Problem in HTREE directory inode 24001: node (448) has bad max hash
+Problem in HTREE directory inode 24001: node (449) has bad min hash
+Problem in HTREE directory inode 24001: node (449) has bad max hash
+Problem in HTREE directory inode 24001: node (450) has bad min hash
+Problem in HTREE directory inode 24001: node (450) has bad max hash
+Problem in HTREE directory inode 24001: node (451) has bad min hash
+Problem in HTREE directory inode 24001: node (451) has bad max hash
+Problem in HTREE directory inode 24001: node (452) has bad min hash
+Problem in HTREE directory inode 24001: node (452) has bad max hash
+Problem in HTREE directory inode 24001: node (453) has bad min hash
+Problem in HTREE directory inode 24001: node (453) has bad max hash
+Problem in HTREE directory inode 24001: node (454) has bad min hash
+Problem in HTREE directory inode 24001: node (454) has bad max hash
+Problem in HTREE directory inode 24001: node (455) has bad min hash
+Problem in HTREE directory inode 24001: node (455) has bad max hash
+Problem in HTREE directory inode 24001: node (456) has bad min hash
+Problem in HTREE directory inode 24001: node (457) has bad min hash
+Problem in HTREE directory inode 24001: node (457) has bad max hash
+Problem in HTREE directory inode 24001: node (458) has bad min hash
+Problem in HTREE directory inode 24001: node (458) has bad max hash
+Problem in HTREE directory inode 24001: node (459) has bad min hash
+Problem in HTREE directory inode 24001: node (459) has bad max hash
+Problem in HTREE directory inode 24001: node (460) has bad min hash
+Problem in HTREE directory inode 24001: node (460) has bad max hash
+Problem in HTREE directory inode 24001: node (461) has bad min hash
+Problem in HTREE directory inode 24001: node (461) has bad max hash
+Problem in HTREE directory inode 24001: node (462) has bad min hash
+Problem in HTREE directory inode 24001: node (463) has bad min hash
+Problem in HTREE directory inode 24001: node (463) has bad max hash
+Problem in HTREE directory inode 24001: node (464) has bad min hash
+Problem in HTREE directory inode 24001: node (464) has bad max hash
+Problem in HTREE directory inode 24001: node (465) has bad min hash
+Problem in HTREE directory inode 24001: node (466) has bad min hash
+Problem in HTREE directory inode 24001: node (466) has bad max hash
+Problem in HTREE directory inode 24001: node (467) has bad min hash
+Problem in HTREE directory inode 24001: node (468) has bad min hash
+Problem in HTREE directory inode 24001: node (468) has bad max hash
+Problem in HTREE directory inode 24001: node (469) has bad min hash
+Problem in HTREE directory inode 24001: node (470) has bad max hash
+Problem in HTREE directory inode 24001: node (471) has bad min hash
+Problem in HTREE directory inode 24001: node (471) has bad max hash
+Problem in HTREE directory inode 24001: node (472) has bad min hash
+Problem in HTREE directory inode 24001: node (472) has bad max hash
+Problem in HTREE directory inode 24001: node (473) has bad min hash
+Invalid HTREE directory inode 24001 (/test2). Clear HTree index? yes
+
+Pass 3: Checking directory connectivity
+Pass 3A: Optimizing directories
+Pass 4: Checking reference counts
+Pass 5: Checking group summary information
+
+test_filesys: ***** FILE SYSTEM WAS MODIFIED *****
+test_filesys: 30514/32000 files (0.0% non-contiguous), 5558/8000 blocks
+Exit status is 1
diff --git a/tests/f_h_reindex/expect.1.gz b/tests/f_h_reindex/expect.1.gz
deleted file mode 100644
index b5c5017d..00000000
--- a/tests/f_h_reindex/expect.1.gz
+++ /dev/null
Binary files differ
diff --git a/tests/f_holedir/expect.1 b/tests/f_holedir/expect.1
index 05e0cbbc..ad74fa6d 100644
--- a/tests/f_holedir/expect.1
+++ b/tests/f_holedir/expect.1
@@ -15,12 +15,19 @@ Directory inode 11 has an unallocated block #3. Allocate? yes
Directory inode 11 has an unallocated block #6. Allocate? yes
-Directory inode 11 has an unallocated block #11. Allocate? yes
-
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
+Block bitmap differences: -21
+Fix? yes
+
+Free blocks count wrong for group #0 (78, counted=79).
+Fix? yes
+
+Free blocks count wrong (78, counted=79).
+Fix? yes
+
test_filesys: ***** FILE SYSTEM WAS MODIFIED *****
-test_filesys: 11/32 files (9.1% non-contiguous), 22/100 blocks
+test_filesys: 11/32 files (9.1% non-contiguous), 21/100 blocks
Exit status is 1
diff --git a/tests/f_holedir/expect.2 b/tests/f_holedir/expect.2
index a821f878..4c0b4f28 100644
--- a/tests/f_holedir/expect.2
+++ b/tests/f_holedir/expect.2
@@ -3,5 +3,5 @@ Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
-test_filesys: 11/32 files (0.0% non-contiguous), 22/100 blocks
+test_filesys: 11/32 files (0.0% non-contiguous), 21/100 blocks
Exit status is 0