]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Update xfsprogs - minor xfs_io update, fix xfs_logprint handling of a
authorNathan Scott <nathans@sgi.com>
Fri, 30 May 2003 05:13:23 +0000 (05:13 +0000)
committerNathan Scott <nathans@sgi.com>
Fri, 30 May 2003 05:13:23 +0000 (05:13 +0000)
corrupt v2 log device should that occur.

VERSION
debian/changelog
doc/CHANGES
io/open.c
libxlog/xfs_log_recover.c
po/xfsprogs.pot

diff --git a/VERSION b/VERSION
index d8cc09c5c5ae62954b565ffff8054d02c1043526..00178f9a871b7bbcc1d5031b0b77e0390cad7880 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
 #
 PKG_MAJOR=2
 PKG_MINOR=4
-PKG_REVISION=10
+PKG_REVISION=11
 PKG_BUILD=0
index 0be4297ac60f8ac59799c138b1cd58f550daba0a..4fea2e1524760d572dea10da1cc5213bf9a39ad6 100644 (file)
@@ -1,3 +1,9 @@
+xfsprogs (2.4.11-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Nathan Scott <nathans@debian.org>  Fri, 30 May 2003 14:57:17 +1000
+
 xfsprogs (2.4.10-1) unstable; urgency=low
 
   * New upstream release
index 59e9c8009c8dda981ded25ae852b17e27be4e835..6e0f3012fc1f8e707a12bbd01ea598498d35a22e 100644 (file)
@@ -1,9 +1,11 @@
-[cvs]
+xfsprogs-2.4.11 (30 May 2003)
        - Extract device sector size at mkfs time and issue warnings
          if the requested filesystem sector size is too small.
        - Sync up user/kernel source in libxfs, libxlog and headers.
        - Skip realtime initialisation in libxfs mount path if the
          caller is xfs_db, otherwise we get nonsense warnings.
+       - Update xfs_io with a couple of additional commands.
+       - Fix xfs_logprint handling of corrupt v2 log devices.
 
 xfsprogs-2.4.10 (12 May 2003)
        - Fix a bug in mkfs - creating version 2 logs, an incorrect
index 49caec41a60e4bbd27b66873b00d6fce8df12883..32c6ef16d257d598e014109135b62e7e2b6288c7 100644 (file)
--- a/io/open.c
+++ b/io/open.c
@@ -36,7 +36,9 @@
 
 static cmdinfo_t open_cmd;
 static cmdinfo_t stat_cmd;
+static cmdinfo_t setfl_cmd;
 static cmdinfo_t statfs_cmd;
+static cmdinfo_t extsize_cmd;
 static int stat_f(int, char **);
 
 int
@@ -278,11 +280,78 @@ stat_f(
                perror("xfsctl(XFS_IOC_FSGETXATTR)");
        } else {
                printf(_("xattr.xflags = 0x%x\n"), fsx.fsx_xflags);
+               printf(_("xattr.extsize = %u\n"), fsx.fsx_extsize);
                printf(_("xattr.nextents = %u\n"), fsx.fsx_nextents);
        }
        return 0;
 }
 
+static int
+setfl_f(
+       int                     argc,
+       char                    **argv)
+{
+       int                     c, flags;
+
+       flags = fcntl(fdesc, F_GETFL, 0);
+       if (flags < 0) {
+               perror("fcntl(F_GETFL)");
+               return 0;
+       }
+
+       while ((c = getopt(argc, argv, "ad")) != EOF) {
+               switch (c) {
+               case 'a':
+                       if (flags & O_APPEND)
+                               flags |= O_APPEND;
+                       else
+                               flags &= ~O_APPEND;
+                       break;
+               case 'd':
+                       if (flags & O_DIRECT)
+                               flags |= O_DIRECT;
+                       else
+                               flags &= ~O_DIRECT;
+                       break;
+               default:
+                       printf(_("invalid setfl argument -- '%c'\n"), c);
+                       return 0;
+               }
+       }
+
+       if (fcntl(fdesc, F_SETFL, flags)  < 0)
+               perror("fcntl(F_SETFL)");
+
+       return 0;
+}
+
+static int
+extsize_f(
+       int                     argc,
+       char                    **argv)
+{
+       struct fsxattr          fsx;
+       unsigned int            extsize;
+       char                    *sp;
+
+       extsize = strtoul(argv[1], &sp, 10);
+       if (!sp || sp == argv[1]) {
+               printf(_("non-numeric extsize argument -- %s\n"), argv[1]);
+               return 0;
+       }
+       if ((xfsctl(fname, fdesc, XFS_IOC_FSGETXATTR, &fsx)) < 0) {
+               perror("xfsctl(XFS_IOC_FSGETXATTR)");
+               return 0;
+       }
+       fsx.fsx_extsize = extsize;
+       if ((xfsctl(fname, fdesc, XFS_IOC_FSSETXATTR, &fsx)) < 0) {
+               perror("xfsctl(XFS_IOC_FSSETXATTR)");
+               return 0;
+       }
+
+       return 0;
+}
+
 static int
 statfs_f(
        int                     argc,
@@ -343,12 +412,27 @@ open_init(void)
        stat_cmd.oneline =
                _("statistics on the currently open file");
 
+       setfl_cmd.name = _("setfl");
+       setfl_cmd.cfunc = setfl_f;
+       setfl_cmd.args = _("[-adx]");
+       setfl_cmd.oneline =
+               _("set/clear append/direct flags on the open file");
+
        statfs_cmd.name = _("statfs");
        statfs_cmd.cfunc = statfs_f;
        statfs_cmd.oneline =
                _("statistics on the filesystem of the currently open file");
 
+       extsize_cmd.name = _("extsize");
+       extsize_cmd.cfunc = extsize_f;
+       extsize_cmd.argmin = 1;
+       extsize_cmd.argmax = 1;
+       extsize_cmd.oneline =
+               _("set prefered extent size (in bytes) for the open file");
+
        add_command(&open_cmd);
        add_command(&stat_cmd);
+       add_command(&setfl_cmd);
        add_command(&statfs_cmd);
+       add_command(&extsize_cmd);
 }
index 2ce5a5845d78c281d1d07528cf70a8afd22d326b..09fa2797cf7d7a22685ab122b5f5b4bf3d98f184 100644 (file)
@@ -1228,12 +1228,16 @@ xlog_do_recovery_pass(
                        goto bread_err1;
                offset = xlog_align(log, tail_blk, 1, hbp);
                rhead = (xlog_rec_header_t *)offset;
-               ASSERT(INT_GET(rhead->h_magicno, ARCH_CONVERT) ==
-                                               XLOG_HEADER_MAGIC_NUM);
-               if ((INT_GET(rhead->h_version, ARCH_CONVERT) &
-                               (~XLOG_VERSION_OKBITS)) != 0) {
-                       xlog_warn(
-       "XFS: xlog_do_recovery_pass: unrecognised log version number.");
+               if (unlikely(
+                   (INT_GET(rhead->h_magicno, ARCH_CONVERT) !=
+                                       XLOG_HEADER_MAGIC_NUM) ||
+                   (INT_ISZERO(rhead->h_version, ARCH_CONVERT)) ||
+                   (INT_GET(rhead->h_version, ARCH_CONVERT) &
+                                       (~XLOG_VERSION_OKBITS)) != 0)) {
+                       xlog_warn("XFS: %s: bad log magic/version (0x%x/%d)",
+                               __FUNCTION__,
+                               INT_GET(rhead->h_magicno, ARCH_CONVERT),
+                               INT_GET(rhead->h_version, ARCH_CONVERT));
                        error = XFS_ERROR(EIO);
                        goto bread_err1;
                }
index 96f63d1ff1d57bea625b1f8dde35e073c044acf6..06228f8516111d140fd9cdada80036c2f3d7c8f7 100644 (file)
@@ -1,65 +1,77 @@
+#: ../freeze/xfs_freeze.c:41
 #, c-format
 msgid ""
 "Usage: %s [options] mountpoint\n"
 "\n"
 "Options:\n"
-"        -f          freeze filesystem access\n"
-"        -u          unfreeze filesystem access\n"
+"\t-f          freeze filesystem access\n"
+"\t-u          unfreeze filesystem access\n"
 msgstr ""
 
+#: ../freeze/xfs_freeze.c:90 ../growfs/xfs_growfs.c:214 ../imap/xfs_imap.c:66
+#: ../io/open.c:76
 #, c-format
 msgid "%s: specified file [\"%s\"] is not on an XFS filesystem\n"
 msgstr ""
 
+#: ../freeze/xfs_freeze.c:99
 #, c-format
 msgid "%s: cannot freeze filesystem mounted at %s: %s\n"
 msgstr ""
 
+#: ../freeze/xfs_freeze.c:108
 #, c-format
 msgid "%s: cannot unfreeze filesystem mounted at %s: %s\n"
 msgstr ""
 
+#: ../growfs/explore.c:55
 #, c-format
 msgid "%s: cannot access mount list %s: %s\n"
 msgstr ""
 
+#: ../growfs/explore.c:60
 #, c-format
 msgid "%s: cannot access mount point %s: %s\n"
 msgstr ""
 
+#: ../growfs/explore.c:67
 #, c-format
 msgid "%s: ignoring entry %s in %s: %s\n"
 msgstr ""
 
+#: ../growfs/explore.c:75
 #, c-format
 msgid "%s: %s is not an XFS filesystem\n"
 msgstr ""
 
+#: ../growfs/explore.c:84
 #, c-format
 msgid "%s: %s is not a filesystem mount point, according to %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:53
 #, c-format
 msgid ""
 "Usage: %s [options] mountpoint\n"
 "\n"
 "Options:\n"
-"        -d          grow data/metadata section\n"
-"        -l          grow log section\n"
-"        -r          grow realtime section\n"
-"        -n          don't change anything, just show geometry\n"
-"        -I          allow inode numbers to exceed %d significant bits\n"
-"        -i          convert log from external to internal format\n"
-"        -t          alternate location for mount table (/etc/mtab)\n"
-"        -x          convert log from internal to external format\n"
-"        -D size     grow data/metadata section to size blks\n"
-"        -L size     grow/shrink log section to size blks\n"
-"        -R size     grow realtime section to size blks\n"
-"        -e size     set realtime extent size to size blks\n"
-"        -m imaxpct  set inode max percent to imaxpct\n"
-"        -V          print version information\n"
-msgstr ""
-
+"\t-d          grow data/metadata section\n"
+"\t-l          grow log section\n"
+"\t-r          grow realtime section\n"
+"\t-n          don't change anything, just show geometry\n"
+"\t-I          allow inode numbers to exceed %d significant bits\n"
+"\t-i          convert log from external to internal format\n"
+"\t-t          alternate location for mount table (/etc/mtab)\n"
+"\t-x          convert log from internal to external format\n"
+"\t-D size     grow data/metadata section to size blks\n"
+"\t-L size     grow/shrink log section to size blks\n"
+"\t-R size     grow realtime section to size blks\n"
+"\t-e size     set realtime extent size to size blks\n"
+"\t-m imaxpct  set inode max percent to imaxpct\n"
+"\t-V          print version information\n"
+msgstr ""
+
+#: ../growfs/xfs_growfs.c:83
 #, c-format
 msgid ""
 "meta-data=%-22s isize=%-6u agcount=%u, agsize=%u blks\n"
@@ -72,119 +84,154 @@ msgid ""
 "realtime =%-22s extsz=%-6u blocks=%llu, rtextents=%llu\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:98 ../growfs/xfs_growfs.c:442
+#: ../growfs/xfs_growfs.c:443
 msgid "internal"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:98 ../growfs/xfs_growfs.c:101
+#: ../growfs/xfs_growfs.c:442 ../growfs/xfs_growfs.c:443
 msgid "external"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:101 ../mkfs/xfs_mkfs.c:1366
 msgid "none"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:191 ../io/init.c:109 ../mkfile/xfs_mkfile.c:113
+#: ../mkfs/xfs_mkfs.c:1054 ../repair/xfs_repair.c:245 ../rtcp/xfs_rtcp.c:71
 #, c-format
 msgid "%s version %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:231
 #, c-format
 msgid "%s: cannot determine geometry of filesystem mounted at %s: %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:264
 #, c-format
 msgid "%s: failed to access data device for %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:269
 #, c-format
 msgid "%s: failed to access external log for %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:275
 #, c-format
 msgid "%s: failed to access realtime device for %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:309
 #, c-format
 msgid "data size %lld too large, maximum is %lld\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:319
 #, c-format
 msgid "data size %lld too small, old size is %lld\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:327
 msgid "data size unchanged, skipping\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:330
 msgid "inode max pct unchanged, skipping\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:337 ../growfs/xfs_growfs.c:376
+#: ../growfs/xfs_growfs.c:411
 #, c-format
 msgid "%s: growfs operation in progress already\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:341
 #, c-format
 msgid "%s: XFS_IOC_FSGROWFSDATA xfsctl failed: %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:357
 #, c-format
 msgid "realtime size %lld too large, maximum is %lld\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:363
 #, c-format
 msgid "realtime size %lld too small, old size is %lld\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:369
 msgid "realtime size unchanged, skipping\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:380
 #, c-format
 msgid "%s: realtime growth not implemented\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:384
 #, c-format
 msgid "%s: XFS_IOC_FSGROWFSRT xfsctl failed: %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:405
 msgid "log size unchanged, skipping\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:415
 #, c-format
 msgid "%s: log growth not supported yet\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:419
 #, c-format
 msgid "%s: XFS_IOC_FSGROWFSLOG xfsctl failed: %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:427
 #, c-format
 msgid "%s: XFS_IOC_FSGEOMETRY xfsctl failed: %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:432
 #, c-format
 msgid "data blocks changed from %lld to %lld\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:435
 #, c-format
 msgid "inode max percent changed from %d to %d\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:438
 #, c-format
 msgid "log blocks changed from %d to %d\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:441
 #, c-format
 msgid "log changed from %s to %s\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:445
 #, c-format
 msgid "realtime blocks changed from %lld to %lld\n"
 msgstr ""
 
+#: ../growfs/xfs_growfs.c:448
 #, c-format
 msgid "realtime extent size changed from %d to %d\n"
 msgstr ""
 
+#: ../imap/xfs_imap.c:88
 #, c-format
 msgid "ino %10llu count %2d mask %016llx\n"
 msgstr ""
 
+#: ../io/bmap.c:50
 msgid ""
 "\n"
 " prints the block mapping for an XFS file's data or attribute forks\n"
@@ -206,142 +253,182 @@ msgid ""
 "\n"
 msgstr ""
 
+#: ../io/bmap.c:135
 #, c-format
 msgid "%s: can't get geometry [\"%s\"]: %s\n"
 msgstr ""
 
+#: ../io/bmap.c:142
 #, c-format
 msgid "%s: cannot read attrs on \"%s\": %s\n"
 msgstr ""
 
+#: ../io/bmap.c:160
 #, c-format
 msgid "%s: malloc of %d bytes failed.\n"
 msgstr ""
 
+#: ../io/bmap.c:208
 #, c-format
 msgid "%s: xfsctl(XFS_IOC_GETBMAPX) iflags=0x%x [\"%s\"]: %s\n"
 msgstr ""
 
+#: ../io/bmap.c:239
 #, c-format
 msgid "%s: cannot realloc %d bytes\n"
 msgstr ""
 
+#: ../io/bmap.c:248
 #, c-format
 msgid "%s: no extents\n"
 msgstr ""
 
+#: ../io/bmap.c:261 ../io/bmap.c:367
 msgid "hole"
 msgstr ""
 
+#: ../io/bmap.c:270
 #, c-format
 msgid " %lld blocks\n"
 msgstr ""
 
+#: ../io/bmap.c:335
 msgid "EXT"
 msgstr ""
 
+#: ../io/bmap.c:336
 msgid "FILE-OFFSET"
 msgstr ""
 
+#: ../io/bmap.c:337
 msgid "BLOCK-RANGE"
 msgstr ""
 
+#: ../io/bmap.c:338
 msgid "AG"
 msgstr ""
 
+#: ../io/bmap.c:339
 msgid "AG-OFFSET"
 msgstr ""
 
+#: ../io/bmap.c:340
 msgid "TOTAL"
 msgstr ""
 
+#: ../io/bmap.c:396
 msgid " FLG Values:\n"
 msgstr ""
 
+#: ../io/bmap.c:397
 #, c-format
 msgid "    %5.5o Doesn't begin on stripe unit\n"
 msgstr ""
 
+#: ../io/bmap.c:399
 #, c-format
 msgid "    %5.5o Doesn't end   on stripe unit\n"
 msgstr ""
 
+#: ../io/bmap.c:401
 #, c-format
 msgid "    %5.5o Doesn't begin on stripe width\n"
 msgstr ""
 
+#: ../io/bmap.c:403
 #, c-format
 msgid "    %5.5o Doesn't end   on stripe width\n"
 msgstr ""
 
+#: ../io/bmap.c:414
 msgid "bmap"
 msgstr ""
 
+#: ../io/bmap.c:418
 msgid "[-adlpv] [-n nx]"
 msgstr ""
 
+#: ../io/bmap.c:419
 msgid "print block mapping for an XFS file"
 msgstr ""
 
+#: ../io/command.c:66
 #, c-format
 msgid "command \"%s\" not found\n"
 msgstr ""
 
+#: ../io/command.c:72
 #, c-format
 msgid "bad argument count %d to %s, expected at least %d arguments\n"
 msgstr ""
 
+#: ../io/command.c:76
 #, c-format
 msgid "bad argument count %d to %s, expected %d arguments\n"
 msgstr ""
 
+#: ../io/command.c:80
 #, c-format
 msgid "bad argument count %d to %s, expected between %d and %d arguments\n"
 msgstr ""
 
+#: ../io/fsync.c:67
 msgid "fsync"
 msgstr ""
 
+#: ../io/fsync.c:68
 msgid "s"
 msgstr ""
 
+#: ../io/fsync.c:71
 msgid "calls fsync(2) to flush all in-core file state to disk"
 msgstr ""
 
+#: ../io/fsync.c:73
 msgid "fdatasync"
 msgstr ""
 
+#: ../io/fsync.c:74
 msgid "ds"
 msgstr ""
 
+#: ../io/fsync.c:77
 msgid "calls fdatasync(2) to flush the files in-core data to disk"
 msgstr ""
 
+#: ../io/help.c:47
 msgid ""
 "\n"
 "Use 'help commandname' for extended help.\n"
 msgstr ""
 
+#: ../io/help.c:63
 #, c-format
 msgid "command %s not found\n"
 msgstr ""
 
+#: ../io/help.c:100
 msgid "help"
 msgstr ""
 
+#: ../io/help.c:101
 msgid "?"
 msgstr ""
 
+#: ../io/help.c:105
 msgid "[command]"
 msgstr ""
 
+#: ../io/help.c:106
 msgid "help for one or all commands"
 msgstr ""
 
+#: ../io/init.c:56
 #, c-format
 msgid "Usage: %s [-r] [-p prog] [-c cmd]... file\n"
 msgstr ""
 
+#: ../io/open.c:114
 msgid ""
 "\n"
 " opens a new file in the requested mode, after closing the current file\n"
@@ -364,170 +451,253 @@ msgid ""
 "\n"
 msgstr ""
 
+#: ../io/open.c:232
 msgid "socket"
 msgstr ""
 
+#: ../io/open.c:234
 msgid "directory"
 msgstr ""
 
+#: ../io/open.c:236
 msgid "char device"
 msgstr ""
 
+#: ../io/open.c:238
 msgid "block device"
 msgstr ""
 
+#: ../io/open.c:240
 msgid "regular file"
 msgstr ""
 
+#: ../io/open.c:242
 msgid "symbolic link"
 msgstr ""
 
+#: ../io/open.c:244
 msgid "fifo"
 msgstr ""
 
+#: ../io/open.c:258 ../io/open.c:364
 #, c-format
 msgid "fd.path = \"%s\"\n"
 msgstr ""
 
+#: ../io/open.c:260
 #, c-format
 msgid "fd.flags = %s,%s,%s%s%s\n"
 msgstr ""
 
+#: ../io/open.c:261
 msgid "sync"
 msgstr ""
 
+#: ../io/open.c:261
 msgid "non-sync"
 msgstr ""
 
+#: ../io/open.c:262
 msgid "direct"
 msgstr ""
 
+#: ../io/open.c:262
 msgid "non-direct"
 msgstr ""
 
+#: ../io/open.c:263
 msgid "read-only"
 msgstr ""
 
+#: ../io/open.c:263
 msgid "read-write"
 msgstr ""
 
+#: ../io/open.c:264
 msgid ",real-time"
 msgstr ""
 
+#: ../io/open.c:265
 msgid ",append-only"
 msgstr ""
 
+#: ../io/open.c:269
 #, c-format
 msgid "stat.ino = %lld\n"
 msgstr ""
 
+#: ../io/open.c:270
 #, c-format
 msgid "stat.type = %s\n"
 msgstr ""
 
+#: ../io/open.c:271
 #, c-format
 msgid "stat.size = %lld\n"
 msgstr ""
 
+#: ../io/open.c:272
 #, c-format
 msgid "stat.blocks = %lld\n"
 msgstr ""
 
+#: ../io/open.c:274
 #, c-format
 msgid "stat.atime = %s"
 msgstr ""
 
+#: ../io/open.c:275
 #, c-format
 msgid "stat.mtime = %s"
 msgstr ""
 
+#: ../io/open.c:276
 #, c-format
 msgid "stat.ctime = %s"
 msgstr ""
 
+#: ../io/open.c:282
 #, c-format
 msgid "xattr.xflags = 0x%x\n"
 msgstr ""
 
+#: ../io/open.c:283
+#, c-format
+msgid "xattr.extsize = %u\n"
+msgstr ""
+
+#: ../io/open.c:284
 #, c-format
 msgid "xattr.nextents = %u\n"
 msgstr ""
 
+#: ../io/open.c:317
+#, c-format
+msgid "invalid setfl argument -- '%c'\n"
+msgstr ""
+
+#: ../io/open.c:339
+#, c-format
+msgid "non-numeric extsize argument -- %s\n"
+msgstr ""
+
+#: ../io/open.c:369
 #, c-format
 msgid "statfs.f_bsize = %lld\n"
 msgstr ""
 
+#: ../io/open.c:370
 #, c-format
 msgid "statfs.f_blocks = %lld\n"
 msgstr ""
 
+#: ../io/open.c:372
 #, c-format
 msgid "statfs.f_bavail = %lld\n"
 msgstr ""
 
+#: ../io/open.c:378
 #, c-format
 msgid "geom.bsize = %u\n"
 msgstr ""
 
+#: ../io/open.c:379
 #, c-format
 msgid "geom.agcount = %u\n"
 msgstr ""
 
+#: ../io/open.c:380
 #, c-format
 msgid "geom.agblocks = %u\n"
 msgstr ""
 
+#: ../io/open.c:381
 #, c-format
 msgid "geom.datablocks = %llu\n"
 msgstr ""
 
+#: ../io/open.c:383
 #, c-format
 msgid "geom.rtblocks = %llu\n"
 msgstr ""
 
+#: ../io/open.c:385
 #, c-format
 msgid "geom.rtextents = %llu\n"
 msgstr ""
 
+#: ../io/open.c:387
 #, c-format
 msgid "geom.rtextsize = %u\n"
 msgstr ""
 
+#: ../io/open.c:388
 #, c-format
 msgid "geom.sunit = %u\n"
 msgstr ""
 
+#: ../io/open.c:389
 #, c-format
 msgid "geom.swidth = %u\n"
 msgstr ""
 
+#: ../io/open.c:397
 msgid "open"
 msgstr ""
 
+#: ../io/open.c:398
 msgid "o"
 msgstr ""
 
+#: ../io/open.c:402
 msgid "[-acdrstx] [path]"
 msgstr ""
 
+#: ../io/open.c:404
 msgid "close the current file, open file specified by path"
 msgstr ""
 
+#: ../io/open.c:407
 msgid "stat"
 msgstr ""
 
+#: ../io/open.c:411
 msgid "[-v]"
 msgstr ""
 
+#: ../io/open.c:413
 msgid "statistics on the currently open file"
 msgstr ""
 
+#: ../io/open.c:415
+msgid "setfl"
+msgstr ""
+
+#: ../io/open.c:417
+msgid "[-adx]"
+msgstr ""
+
+#: ../io/open.c:419
+msgid "set/clear append/direct flags on the open file"
+msgstr ""
+
+#: ../io/open.c:421
 msgid "statfs"
 msgstr ""
 
+#: ../io/open.c:424
 msgid "statistics on the filesystem of the currently open file"
 msgstr ""
 
+#: ../io/open.c:426
+msgid "extsize"
+msgstr ""
+
+#: ../io/open.c:431
+msgid "set prefered extent size (in bytes) for the open file"
+msgstr ""
+
+#: ../io/pread.c:45
 msgid ""
 "\n"
 " reads a range of bytes in a specified block size from the given offset\n"
@@ -542,61 +712,80 @@ msgid ""
 "\n"
 msgstr ""
 
+#: ../io/pread.c:153 ../io/pwrite.c:111
 #, c-format
 msgid "non-numeric bsize -- %s\n"
 msgstr ""
 
+#: ../io/pread.c:171 ../io/prealloc.c:54 ../io/pwrite.c:147
 #, c-format
 msgid "non-numeric offset argument -- %s\n"
 msgstr ""
 
+#: ../io/pread.c:177 ../io/prealloc.c:59 ../io/pwrite.c:153
 #, c-format
 msgid "non-numeric length argument -- %s\n"
 msgstr ""
 
+#: ../io/pread.c:187
 #, c-format
 msgid "read %u/%u bytes at offset %llu\n"
 msgstr ""
 
+#: ../io/pread.c:194
 msgid "pread"
 msgstr ""
 
+#: ../io/pread.c:195
 msgid "r"
 msgstr ""
 
+#: ../io/pread.c:199
 msgid "[-b bs] [-v] off len"
 msgstr ""
 
+#: ../io/pread.c:200
 msgid "reads a number of bytes at a specified offset"
 msgstr ""
 
+#: ../io/prealloc.c:136
 msgid "allocsp"
 msgstr ""
 
+#: ../io/prealloc.c:140 ../io/prealloc.c:147 ../io/prealloc.c:154
+#: ../io/prealloc.c:162
 msgid "off len"
 msgstr ""
 
+#: ../io/prealloc.c:141
 msgid "allocates zeroed space for part of a file"
 msgstr ""
 
+#: ../io/prealloc.c:143
 msgid "freesp"
 msgstr ""
 
+#: ../io/prealloc.c:148
 msgid "frees space associated with part of a file"
 msgstr ""
 
+#: ../io/prealloc.c:150
 msgid "resvsp"
 msgstr ""
 
+#: ../io/prealloc.c:156
 msgid "reserves space associated with part of a file"
 msgstr ""
 
+#: ../io/prealloc.c:158
 msgid "unresvsp"
 msgstr ""
 
+#: ../io/prealloc.c:164
 msgid "frees reserved space associated with part of a file"
 msgstr ""
 
+#: ../io/pwrite.c:44
 msgid ""
 "\n"
 " writes a range of bytes (in block size increments) from the given offset\n"
@@ -615,462 +804,617 @@ msgid ""
 "\n"
 msgstr ""
 
+#: ../io/pwrite.c:125
 #, c-format
 msgid "non-numeric skip -- %s\n"
 msgstr ""
 
+#: ../io/pwrite.c:132
 #, c-format
 msgid "non-numeric seed -- %s\n"
 msgstr ""
 
+#: ../io/pwrite.c:167
 #, c-format
 msgid "wrote %u/%u bytes at offset %llu\n"
 msgstr ""
 
+#: ../io/pwrite.c:175
 msgid "pwrite"
 msgstr ""
 
+#: ../io/pwrite.c:176
 msgid "w"
 msgstr ""
 
+#: ../io/pwrite.c:181
 msgid "[-i infile [-d] [-s skip]] [-b bs] [-S seed] off len"
 msgstr ""
 
+#: ../io/pwrite.c:183
 msgid "writes a number of bytes at a specified offset"
 msgstr ""
 
+#: ../io/quit.c:49
 msgid "quit"
 msgstr ""
 
+#: ../io/quit.c:50
 msgid "q"
 msgstr ""
 
+#: ../io/quit.c:52
 msgid "exit xfs_io"
 msgstr ""
 
+#: ../io/resblks.c:51
 #, c-format
 msgid "non-numeric argument -- %s\n"
 msgstr ""
 
+#: ../io/resblks.c:62
 #, c-format
 msgid "reserved blocks = %llu\n"
 msgstr ""
 
+#: ../io/resblks.c:64
 #, c-format
 msgid "available reserved blocks = %llu\n"
 msgstr ""
 
+#: ../io/resblks.c:72
 msgid "resblks"
 msgstr ""
 
+#: ../io/resblks.c:76
 msgid "[blocks]"
 msgstr ""
 
+#: ../io/resblks.c:78
 msgid "get and/or set count of reserved filesystem blocks"
 msgstr ""
 
+#: ../io/truncate.c:49
 #, c-format
 msgid "non-numeric truncate argument -- %s\n"
 msgstr ""
 
+#: ../io/truncate.c:63
 msgid "truncate"
 msgstr ""
 
+#: ../io/truncate.c:67
 msgid "off"
 msgstr ""
 
+#: ../io/truncate.c:69
 msgid "truncates the current file at the given offset"
 msgstr ""
 
+#: ../mkfile/xfs_mkfile.c:47
 #, c-format
 msgid "%s: [-npv] <size> <name1> [<name2>] ...\n"
 msgstr ""
 
+#: ../mkfile/xfs_mkfile.c:64
 #, c-format
 msgid "%s: file [\"%s\"] is not on an XFS filesystem\n"
 msgstr ""
 
+#: ../mkfile/xfs_mkfile.c:150
 #, c-format
 msgid "unknown size %s\n"
 msgstr ""
 
+#: ../mkfile/xfs_mkfile.c:163
 #, c-format
 msgid "%s %lld bytes %s\n"
 msgstr ""
 
+#: ../mkfile/xfs_mkfile.c:166
 msgid "(pre-allocated)"
 msgstr ""
 
+#: ../mkfile/xfs_mkfile.c:200
 #, c-format
 msgid "lseek64 error, result = %lld\n"
 msgstr ""
 
+#: ../mkfs/proto.c:77
 #, c-format
 msgid "%s: failed to open %s: %s\n"
 msgstr ""
 
+#: ../mkfs/proto.c:83 ../mkfs/proto.c:308
 #, c-format
 msgid "%s: read failed on %s: %s\n"
 msgstr ""
 
+#: ../mkfs/proto.c:88
 #, c-format
 msgid "%s: proto file %s premature EOF\n"
 msgstr ""
 
+#: ../mkfs/proto.c:125
 msgid "cannot reserve space"
 msgstr ""
 
+#: ../mkfs/proto.c:178
 #, c-format
 msgid "%s: premature EOF in prototype file\n"
 msgstr ""
 
+#: ../mkfs/proto.c:197
 msgid "error reserving space for a file"
 msgstr ""
 
+#: ../mkfs/proto.c:266
 msgid "error allocating space for a file"
 msgstr ""
 
+#: ../mkfs/proto.c:270
 #, c-format
 msgid "%s: cannot allocate space for file\n"
 msgstr ""
 
+#: ../mkfs/proto.c:301 ../libxfs/init.c:107
 #, c-format
 msgid "%s: cannot open %s: %s\n"
 msgstr ""
 
+#: ../mkfs/proto.c:339
 msgid "directory createname error"
 msgstr ""
 
+#: ../mkfs/proto.c:356
 msgid "directory create error"
 msgstr ""
 
+#: ../mkfs/proto.c:420 ../mkfs/proto.c:432 ../mkfs/proto.c:443
+#: ../mkfs/proto.c:450
 #, c-format
 msgid "%s: bad format string %s\n"
 msgstr ""
 
+#: ../mkfs/proto.c:469 ../mkfs/proto.c:510 ../mkfs/proto.c:526
+#: ../mkfs/proto.c:539 ../mkfs/proto.c:552 ../mkfs/proto.c:564
 msgid "Inode allocation failed"
 msgstr ""
 
+#: ../mkfs/proto.c:487
 msgid "Inode pre-allocation failed"
 msgstr ""
 
+#: ../mkfs/proto.c:498
 msgid "Pre-allocated file creation failed"
 msgstr ""
 
+#: ../mkfs/proto.c:585
 msgid "Directory creation failed"
 msgstr ""
 
+#: ../mkfs/proto.c:607
 msgid "Error encountered creating file from prototype file"
 msgstr ""
 
+#: ../mkfs/proto.c:646
 msgid "Realtime bitmap inode allocation failed"
 msgstr ""
 
+#: ../mkfs/proto.c:664
 msgid "Realtime summary inode allocation failed"
 msgstr ""
 
+#: ../mkfs/proto.c:690
 msgid "Allocation of the realtime bitmap failed"
 msgstr ""
 
+#: ../mkfs/proto.c:703
 msgid "Completion of the realtime bitmap failed"
 msgstr ""
 
+#: ../mkfs/proto.c:726
 msgid "Allocation of the realtime summary failed"
 msgstr ""
 
+#: ../mkfs/proto.c:738
 msgid "Completion of the realtime summary failed"
 msgstr ""
 
+#: ../mkfs/proto.c:755
 msgid "Error initializing the realtime space"
 msgstr ""
 
+#: ../mkfs/proto.c:760
 msgid "Error completing the realtime space"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:199
 msgid "data su/sw must not be used in conjunction with data sunit/swidth\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:206
 msgid "both data sunit and data swidth options must be specified\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:215
 msgid "data sunit/swidth must not be used in conjunction with data su/sw\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:222
 msgid "both data su and data sw options must be specified\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:229
 #, c-format
 msgid "data su must be a multiple of the sector size (%d)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:240
 #, c-format
 msgid ""
 "data stripe width (%d) must be a multiple of the data stripe unit (%d)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:250
 msgid "log su should not be used in conjunction with log sunit\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:259
 msgid "log sunit should not be used in conjunction with log su\n"
 msgstr ""
 
-#, c-format
-msgid "log su must be a multiple of the sector size (%d)\n"
-msgstr ""
-
+#: ../mkfs/xfs_mkfs.c:276
 #, c-format
 msgid "%s: %s appears to contain an existing filesystem (%s).\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:282
 #, c-format
 msgid "%s: %s appears to contain a partition table (%s).\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:322
 #, c-format
 msgid "internal log size %lld is not a multiple of the log stripe unit %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:331
 #, c-format
 msgid "Due to stripe alignment, the internal log size (%lld) is too large.\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:333
 msgid "Must fit within an allocation group.\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:569
 #, c-format
 msgid "%s: Specify data sunit in 512-byte blocks, no unit suffix\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:582
 #, c-format
 msgid "%s: Specify data swidth in 512-byte blocks, no unit suffix\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:603
 #, c-format
 msgid "%s: Specify data sw as multiple of su, no unit suffix\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:752
 msgid "Must specify log device\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:817
 msgid "Specify log sunit in 512-byte blocks, no size suffix\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1061
 msgid "extra arguments\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1067
 #, c-format
 msgid "cannot specify both %s and -d name=%s\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1082
 #, c-format
 msgid "illegal block size %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1087
 #, c-format
 msgid "illegal sector size %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1092
 #, c-format
 msgid "illegal log sector size %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1105
+#, c-format
+msgid "unsupported sector size %d\n"
+msgstr ""
+
+#: ../mkfs/xfs_mkfs.c:1109
+#, c-format
+msgid "unsupported log sector size %d\n"
+msgstr ""
+
+#: ../mkfs/xfs_mkfs.c:1119 ../mkfs/xfs_mkfs.c:1129
 #, c-format
 msgid "illegal directory block size %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1145
 msgid "both -d agcount= and agsize= specified, use one or the other\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1154
 msgid "if -d file then -d name and -d size are required\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1163
 #, c-format
 msgid "illegal data length %lld, not a multiple of %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1169
 #, c-format
 msgid "warning: data length %lld not a multiple of %d, truncated to %lld\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1184
 msgid "if -l file then -l name and -l size are required\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1194
 #, c-format
 msgid "illegal log length %lld, not a multiple of %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1201
 #, c-format
 msgid "warning: log length %lld not a multiple of %d, truncated to %lld\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1208
 msgid "if -r file then -r name and -r size are required\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1218
 #, c-format
 msgid "illegal rt length %lld, not a multiple of %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1225
 #, c-format
 msgid "warning: rt length %lld not a multiple of %d, truncated to %lld\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1238
 #, c-format
 msgid "illegal rt extent size %lld, not a multiple of %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1244
 #, c-format
 msgid "rt extent size %s too large, maximum %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1250
 #, c-format
 msgid "rt extent size %s too small, minimum %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1292
 #, c-format
 msgid "illegal inode size %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1297
 #, c-format
 msgid "allowable inode size with %d byte blocks is %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1301
 #, c-format
 msgid "allowable inode size with %d byte blocks is between %d and %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1309
 msgid "log stripe unit specified, using v2 logs\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1322
 msgid "no device name given in argument list\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1342
 #, c-format
 msgid "%s: Use the -f option to force overwrite.\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1353
 msgid "internal log"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1355
 msgid "volume log"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1357
 msgid "no log subvolume or internal log\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1364
 msgid "volume rt"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1369
 #, c-format
 msgid ""
 "size %s specified for data subvolume is too large, maximum is %lld blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1376
 msgid "can't get size of data subvolume\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1381
 #, c-format
 msgid "size %lld of data subvolume is too small, minimum %d blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1388
 msgid "can't have both external and internal logs\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1392
 msgid "data and log sector sizes must be equal for internal logs\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1398
+#, c-format
+msgid ""
+"Warning: the data subvolume sector size %u is less than the sector size \n"
+"reported by the device (%u).\n"
+msgstr ""
+
+#: ../mkfs/xfs_mkfs.c:1404
+#, c-format
+msgid ""
+"Warning: the log subvolume sector size %u is less than the sector size\n"
+"reported by the device (%u).\n"
+msgstr ""
+
+#: ../mkfs/xfs_mkfs.c:1410
+#, c-format
+msgid ""
+"Warning: the realtime subvolume sector size %u is less than the sector size\n"
+"reported by the device (%u).\n"
+msgstr ""
+
+#: ../mkfs/xfs_mkfs.c:1428
 #, c-format
 msgid ""
 "size %s specified for log subvolume is too large, maximum is %lld blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1435
 msgid "size specified for non-existent log subvolume\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1438
 #, c-format
 msgid "size %lld too large for internal log\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1462
 #, c-format
 msgid "log size %lld blocks too small, minimum size is %d blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1468
 #, c-format
 msgid "log size %lld blocks too large, maximum size is %d blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1474
 #, c-format
 msgid "log size %lld bytes too large, maximum size is %d bytes\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1480
 #, c-format
 msgid ""
 "size %s specified for rt subvolume is too large, maximum is %lld blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1488
 msgid "size specified for non-existent rt subvolume\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1506
 #, c-format
 msgid "agsize (%lld) not a multiple of fs blk size (%d)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1519
 #, c-format
 msgid "agsize (%lldb) too small, need at least %lld blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1527
 #, c-format
 msgid "agsize (%lldb) too big, maximum is %lld blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1535
 #, c-format
 msgid "agsize (%lldb) too big, data area is %lld blocks\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1552
 #, c-format
 msgid "too many allocation groups for size = %lld\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1555
 #, c-format
 msgid "need at most %lld allocation groups\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1578
 #, c-format
 msgid "too few allocation groups for size = %lld\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1581
 #, c-format
 msgid "need at least %lld allocation groups\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1631
 #, c-format
 msgid "agsize set to %lld, agcount %lld > max (%lld)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1639
 #, c-format
 msgid "%s: can't compute agsize/agcount\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1653
 #, c-format
 msgid ""
-"%s: Specified data stripe unit %d is not the same as the volume stripe unit "
-"%d\n"
+"%s: Specified data stripe unit %d is not the same as the volume stripe unit %"
+"d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1659
 #, c-format
 msgid ""
 "%s: Specified data stripe width %d is not the same as the volume stripe "
 "width %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1704
 #, c-format
 msgid "agsize rounded to %lld, swidth = %d\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1711
 #, c-format
 msgid ""
 "Allocation group size (%lld) is not a multiple of the stripe unit (%d)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1733
 #, c-format
 msgid ""
 "Warning: AG size is a multiple of stripe width.  This can cause performance\n"
@@ -1079,29 +1423,35 @@ msgid ""
 "an AG size that is one stripe unit smaller, for example %llu.\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1758
 #, c-format
 msgid ""
-"%s: Stripe unit(%d) or stripe width(%d) is not a multiple of the block "
-"size(%d)\n"
+"%s: Stripe unit(%d) or stripe width(%d) is not a multiple of the block size(%"
+"d)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1773
 #, c-format
 msgid "log stripe unit (%d) must be a multiple of the block size (%d)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1786
 #, c-format
 msgid ""
 "log stripe unit (%d bytes) is too large for kernel to handle (max 256k)\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1813
 #, c-format
 msgid "internal log size %lld too large, must fit in allocation group\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1820
 #, c-format
 msgid "log ag number %d too large, must be less than %lld\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1846
 #, c-format
 msgid ""
 "meta-data=%-22s isize=%-6d agcount=%lld, agsize=%lld blks\n"
@@ -1114,54 +1464,65 @@ msgid ""
 "realtime =%-22s extsz=%-6d blocks=%lld, rtextents=%lld\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1951
 #, c-format
 msgid "%s: Growing the data section file failed\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1979
 #, c-format
 msgid "%s: filesystem failed to initialize\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:1987
 #, c-format
 msgid "%s: log size (%lld) is too small for transaction reservations\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2205
 #, c-format
 msgid "%s: root inode created in AG %u, not AG 0\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2281
 #, c-format
 msgid "Cannot specify both -%c %s and -%c %s\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2292
 #, c-format
 msgid "Illegal value %s for -%s option\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2309
 #, c-format
 msgid "-%c %s option requires a value\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2322 ../repair/xfs_repair.c:143
 msgid "option respecified\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2331 ../repair/xfs_repair.c:150
 #, c-format
 msgid "unknown option -%c %s\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2370
 msgid "blocksize not available yet.\n"
 msgstr ""
 
+#: ../mkfs/xfs_mkfs.c:2390
 #, c-format
 msgid ""
 "Usage: %s\n"
 "/* blocksize */\t\t[-b log=n|size=num]\n"
 "/* data subvol */\t[-d agcount=n,agsize=n,file,name=xxx,size=num,\n"
 "\t\t\t    (sunit=value,swidth=value|su=num,sw=num),\n"
-"\t\t\t    unwritten=0|1]\n"
+"\t\t\t    sectlog=n|sectsize=num,unwritten=0|1]\n"
 "/* inode size */\t[-i log=n|perblock=n|size=num,maxpct=n]\n"
-"/* log subvol */\t[-l agnum=n,internal,size=num,logdev=xxx\n"
-"\t\t\t    version=n,sunit=value|su=num]\n"
+"/* log subvol */\t[-l agnum=n,internal,size=num,logdev=xxx,version=n\n"
+"\t\t\t    sunit=value|su=num,sectlog=n|sectsize=num]\n"
 "/* label */\t\t[-L label (maximum 12 characters)]\n"
 "/* naming */\t\t[-n log=n|size=num,version=n]\n"
 "/* prototype file */\t[-p fname]\n"
@@ -1180,252 +1541,311 @@ msgid ""
 "<value> is xxx (512 blocks).\n"
 msgstr ""
 
+#: ../libdisk/drivers.c:44
 #, c-format
 msgid "Cannot stat %s: %s\n"
 msgstr ""
 
+#: ../libdisk/lvm.c:92
 msgid "Could not open pipe\n"
 msgstr ""
 
+#: ../libdisk/lvm.c:107
 #, c-format
 msgid "Failed to execute %s\n"
 msgstr ""
 
+#: ../libdisk/lvm.c:111
 msgid "Failed forking lvdisplay process\n"
 msgstr ""
 
+#: ../libdisk/md.c:66
 #, c-format
 msgid "Error getting MD array info from %s\n"
 msgstr ""
 
+#: ../libdisk/md.c:75
 #, c-format
 msgid "warning - MD array %s not in clean state\n"
 msgstr ""
 
+#: ../libdisk/md.c:80
 #, c-format
 msgid "warning - MD array %s in error state\n"
 msgstr ""
 
+#: ../libxfs/darwin.c:53 ../libxfs/darwin.c:103 ../libxfs/freebsd.c:190
+#: ../libxfs/linux.c:162
 #, c-format
 msgid "%s: error opening the device special file \"%s\": %s\n"
 msgstr ""
 
+#: ../libxfs/darwin.c:60
 #, c-format
 msgid "%s: can't tell if \"%s\" is writable: %s\n"
 msgstr ""
 
+#: ../libxfs/darwin.c:95 ../libxfs/irix.c:75 ../libxfs/linux.c:153
 #, c-format
 msgid "%s: cannot stat the device file \"%s\": %s\n"
 msgstr ""
 
+#: ../libxfs/darwin.c:110
 #, c-format
 msgid "%s: can't determine device size: %s\n"
 msgstr ""
 
+#: ../libxfs/freebsd.c:125
 #, c-format
 msgid "%s: can't figure out partition info\n"
 msgstr ""
 
+#: ../libxfs/freebsd.c:149
 #, c-format
 msgid "%s: can't read disk label: %s\n"
 msgstr ""
 
+#: ../libxfs/freebsd.c:159
 #, c-format
 msgid "%s: partition %s is unavailable\n"
 msgstr ""
 
+#: ../libxfs/freebsd.c:180
 #, c-format
 msgid "%s: cannot stat the device special file \"%s\": %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:87 ../libxfs/init.c:168
 #, c-format
 msgid "%s: %s: device %lld is not open\n"
 msgstr ""
 
+#: ../libxfs/init.c:113
 #, c-format
 msgid "%s: cannot stat %s: %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:131
 #, c-format
 msgid "%s: device %lld is already open\n"
 msgstr ""
 
+#: ../libxfs/init.c:144
 #, c-format
 msgid "%s: %s: too many open devices\n"
 msgstr ""
 
+#: ../libxfs/init.c:186
 #, c-format
 msgid "%s: can't find a character device matching %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:192
 #, c-format
 msgid "%s: can't find a block device matching %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:262
 #, c-format
 msgid "%s: %s is not a volume device name\n"
 msgstr ""
 
+#: ../libxfs/init.c:271
 #, c-format
 msgid "%s: %s has a data subvolume, cannot specify %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:277
 #, c-format
 msgid "%s: %s has a log subvolume, cannot specify %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:283
 #, c-format
 msgid "%s: %s has a realtime subvolume, cannot specify %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:293 ../libxfs/init.c:304 ../libxfs/init.c:315
 #, c-format
 msgid "%s: mknod failed: %s\n"
 msgstr ""
 
-#, c-format
-msgid "%s: stat64 failed on %s: %s\n"
-msgstr ""
-
-#, c-format
-msgid "%s: can't find a char device matching %s\n"
-msgstr ""
-
+#: ../libxfs/init.c:382
 #, c-format
 msgid "%s: can't get size for data subvolume\n"
 msgstr ""
 
+#: ../libxfs/init.c:387
 #, c-format
 msgid "%s: can't get size for log subvolume\n"
 msgstr ""
 
+#: ../libxfs/init.c:392
 #, c-format
 msgid "%s: can't get size for realtime subvolume\n"
 msgstr ""
 
+#: ../libxfs/init.c:477
 #, c-format
 msgid "%s: cannot read realtime bitmap inode (%d)\n"
 msgstr ""
 
+#: ../libxfs/init.c:486
 #, c-format
 msgid "%s: cannot read realtime summary inode (%d)\n"
 msgstr ""
 
+#: ../libxfs/init.c:509
 #, c-format
 msgid "%s: filesystem has a realtime subvolume\n"
 msgstr ""
 
+#: ../libxfs/init.c:524
 #, c-format
 msgid "%s: realtime init - %llu != %llu\n"
 msgstr ""
 
+#: ../libxfs/init.c:532
 #, c-format
 msgid "%s: realtime size check failed\n"
 msgstr ""
 
+#: ../libxfs/init.c:612
 #, c-format
 msgid "%s: size check failed\n"
 msgstr ""
 
+#: ../libxfs/init.c:633
 #, c-format
 msgid "%s: data size check failed\n"
 msgstr ""
 
+#: ../libxfs/init.c:646
 #, c-format
 msgid "%s: log size checks failed\n"
 msgstr ""
 
+#: ../libxfs/init.c:656
 #, c-format
 msgid "%s: realtime device init failed\n"
 msgstr ""
 
+#: ../libxfs/init.c:664
 #, c-format
 msgid "%s: failed to alloc %ld bytes: %s\n"
 msgstr ""
 
+#: ../libxfs/init.c:678
 #, c-format
 msgid "%s: cannot read root inode (%d)\n"
 msgstr ""
 
+#: ../libxfs/linux.c:73
 #, c-format
 msgid "%s: %s contains a mounted filesystem\n"
 msgstr ""
 
+#: ../libxfs/linux.c:91
 #, c-format
 msgid "%s: %s contains a possibly writable, mounted filesystem\n"
 msgstr ""
 
+#: ../libxfs/linux.c:105
 #, c-format
 msgid "%s: %s contains a mounted and writable filesystem\n"
 msgstr ""
 
+#: ../libxfs/linux.c:117
 #, c-format
 msgid "%s: warning - cannot set blocksize on block device %s: %s\n"
 msgstr ""
 
+#: ../libxfs/linux.c:129
+#, c-format
+msgid "%s: warning - cannot get sector size from block device %s: %s\n"
+msgstr ""
+
+#: ../libxfs/linux.c:177
 #, c-format
 msgid "%s: can't determine device size\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:52
 #, c-format
 msgid "%s: %s can't memalign %d bytes: %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:65
 #, c-format
 msgid "%s: %s write failed: %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:189
 #, c-format
 msgid "%s: buf calloc failed (%ld bytes): %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:216
 #, c-format
 msgid "%s: read failed: %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:263
 #, c-format
 msgid "%s: pwrite64 failed: %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:270
 #, c-format
 msgid "%s: error - wrote only %d of %d bytes\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:318
 #, c-format
 msgid "%s: zone init failed (%s, %d bytes): %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:337
 #, c-format
 msgid "%s: zone calloc failed (%s, %d bytes): %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:372
 #, c-format
 msgid "%s: calloc failed (%d bytes): %s\n"
 msgstr ""
 
+#: ../libxfs/rdwr.c:403
 #, c-format
 msgid "%s: realloc failed (%d bytes): %s\n"
 msgstr ""
 
+#: ../libxfs/trans.c:47
 #, c-format
 msgid "%s: xact calloc failed (%d bytes): %s\n"
 msgstr ""
 
+#: ../libxfs/trans.c:570
 #, c-format
 msgid "%s: warning - itobp failed (%d)\n"
 msgstr ""
 
+#: ../libxfs/trans.c:578
 #, c-format
 msgid "%s: warning - iflush_int failed (%d)\n"
 msgstr ""
 
+#: ../libxfs/trans.c:659 ../libxfs/trans.c:743
 #, c-format
 msgid "%s: unrecognised log item type\n"
 msgstr ""
 
+#: ../libxfs/util.c:73
 #, c-format
 msgid "%s: cannot reserve space: %s\n"
 msgstr ""
 
+#: ../libxlog/util.c:49
 #, c-format
 msgid ""
 "* ERROR: mismatched uuid in log\n"
@@ -1433,1978 +1853,2494 @@ msgid ""
 "*            log: %s\n"
 msgstr ""
 
+#: ../libxlog/util.c:62
 #, c-format
 msgid ""
 "\n"
 "LOG REC AT LSN cycle %d block %d (0x%x, 0x%x)\n"
 msgstr ""
 
+#: ../libxlog/util.c:70
 #, c-format
 msgid "* ERROR: bad magic number in log header: 0x%x\n"
 msgstr ""
 
+#: ../libxlog/util.c:79
 #, c-format
 msgid "* ERROR: log format incompatible (log=%d, ours=%d)\n"
 msgstr ""
 
+#: ../libxlog/util.c:89 ../libxlog/util.c:101
 msgid "Bad log"
 msgstr ""
 
+#: ../repair/agheader.c:49
 #, c-format
 msgid "bad magic # 0x%x for agf %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:58
 #, c-format
 msgid "bad version # %d for agf %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:68
 #, c-format
 msgid "bad sequence # %d for agf %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:78
 #, c-format
 msgid "bad length %d for agf %d, should be %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:91
 #, c-format
 msgid "bad length %d for agf %d, should be %llu\n"
 msgstr ""
 
+#: ../repair/agheader.c:106
 #, c-format
 msgid "flfirst %d in agf %d too large (max = %d)\n"
 msgstr ""
 
+#: ../repair/agheader.c:114
 #, c-format
 msgid "fllast %d in agf %d too large (max = %d)\n"
 msgstr ""
 
+#: ../repair/agheader.c:136
 #, c-format
 msgid "bad magic # 0x%x for agi %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:145
 #, c-format
 msgid "bad version # %d for agi %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:155
 #, c-format
 msgid "bad sequence # %d for agi %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:165
 #, c-format
 msgid "bad length # %d for agi %d, should be %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:178
 #, c-format
 msgid "bad length # %d for agi %d, should be %llu\n"
 msgstr ""
 
+#: ../repair/agheader.c:287
 #, c-format
 msgid "zeroing unused portion of %s superblock (AG #%u)\n"
 msgstr ""
 
+#: ../repair/agheader.c:288 ../repair/agheader.c:294
 msgid "primary"
 msgstr ""
 
+#: ../repair/agheader.c:288 ../repair/agheader.c:294
 msgid "secondary"
 msgstr ""
 
+#: ../repair/agheader.c:293
 #, c-format
 msgid "would zero unused portion of %s superblock (AG #%u)\n"
 msgstr ""
 
+#: ../repair/agheader.c:312
 #, c-format
 msgid "bad flags field in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:329
 #, c-format
 msgid "non-null user quota inode field in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:342
 #, c-format
 msgid "non-null group quota inode field in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:354
 #, c-format
 msgid "non-null quota flags in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:372
 #, c-format
 msgid "bad shared version number in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:384
 #, c-format
 msgid "bad inode alignment field in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:397
 #, c-format
 msgid "bad stripe unit/width fields in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:415
 #, c-format
 msgid "bad log/data device sector size fields in superblock %d\n"
 msgstr ""
 
+#: ../repair/agheader.c:446
 #, c-format
 msgid "bad on-disk superblock %d - %s\n"
 msgstr ""
 
+#: ../repair/agheader.c:453
 #, c-format
 msgid "primary/secondary superblock %d conflict - %s\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:122
 msgid ""
 "entry contains illegal value in attribute named SGI_ACL_FILE or "
 "SGI_ACL_DEFAULT\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:144
 msgid "entry contains illegal value in attribute named SGI_MAC_LABEL\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:150
 msgid "entry contains illegal value in attribute named SGI_CAP_FILE\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:189
 #, c-format
 msgid "there are no attributes in the fork for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:197
 #, c-format
 msgid "would junk the attribute fork since count is 0 for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:217
 msgid "zero length name entry in attribute fork,"
 msgstr ""
 
+#: ../repair/attr_repair.c:220 ../repair/attr_repair.c:242
 #, c-format
 msgid " truncating attributes for inode %llu to %d\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:225 ../repair/attr_repair.c:248
 #, c-format
 msgid " would truncate attributes for inode %llu to %d\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:239
 msgid "name or value attribute lengths are too large,\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:261
 msgid "entry contains illegal character in shortform attribute name\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:267
 msgid "entry has INCOMPLETE flag on in shortform attribute\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:285
 #, c-format
 msgid "removing attribute entry %d for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:297
 #, c-format
 msgid "would remove attribute entry %d for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:312
 #, c-format
 msgid ""
 "would have corrected attribute entry count in inode %llu from %d to %d\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:316
 #, c-format
 msgid "corrected attribute entry count in inode %llu, was %d, now %d\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:327
 #, c-format
 msgid "would have corrected attribute totsize in inode %llu from %d to %d\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:332
 #, c-format
 msgid "corrected attribute entry totsize in inode %llu, was %d, now %d\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:362
 #, c-format
 msgid "remote block for attributes of inode %llu is missing\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:370
 #, c-format
 msgid "can't read remote block for attributes of inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:427
 #, c-format
 msgid "bad attribute count %d in attr block %u, inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:444
 #, c-format
 msgid "bad attribute nameidx %d in attr block %u, inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:454
 #, c-format
 msgid "attribute entry #%d in attr block %u, inode %llu is INCOMPLETE\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:465
 #, c-format
 msgid ""
 "attribute entry %d in attr block %u, inode %llu claims already used space\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:479
 #, c-format
 msgid ""
 "attribute entry %d in attr block %u, inode %llu has bad name (namelen = %d)\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:502
 #, c-format
 msgid "bad hashvalue for attribute entry %d in attr block %u, inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:515
 #, c-format
 msgid ""
 "bad security value for attribute entry %d in attr block %u, inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:543
 #, c-format
 msgid "inconsistent remote attribute entry %d in attr block %u, ino %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:556
 #, c-format
 msgid "cannot malloc enough for remotevalue attribute for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:559
 msgid "SKIPPING this remote attribute\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:568
 #, c-format
 msgid "remote attribute get failed for entry %d, inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:579
 #, c-format
 msgid "remote attribute value check failed for entry %d, inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:596
 #, c-format
 msgid "attribute entry %d in attr block %u, inode %llu claims used space\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:621
 #, c-format
 msgid ""
 "- resetting first used heap value from %d to %d in block %u of attribute "
 "fork of inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:631
 #, c-format
 msgid ""
 "- would reset first used value from %d to %d in block %u of attribute fork "
 "of inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:642
 #, c-format
 msgid ""
 "- resetting usedbytes cnt from %d to %d in block %u of attribute fork of "
 "inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:651
 #, c-format
 msgid ""
-"- would reset usedbytes cnt from %d to %d in block %u of attribute fork of "
-"%llu\n"
+"- would reset usedbytes cnt from %d to %d in block %u of attribute fork of %"
+"llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:700
 #, c-format
 msgid "can't map block %u for attribute fork for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:708
 #, c-format
 msgid ""
 "can't read file block %u (fsbno %llu) for attribute fork of inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:719
 #, c-format
 msgid "bad attribute leaf magic %#x for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:751
 #, c-format
 msgid ""
 "bad sibling back pointer for block %u in attribute fork for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:780
 #, c-format
 msgid "bad hash path in attribute fork for inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:881
 #, c-format
 msgid "block 0 of inode %llu attribute fork is missing\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:888
 #, c-format
 msgid "agno of attribute fork of inode %llu out of regular partition\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:896
 #, c-format
 msgid "can't read block 0 of inode %llu attribute fork\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:910
 #, c-format
 msgid "clearing forw/back pointers in block 0 for attributes in inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:916
 #, c-format
 msgid ""
 "would clear forw/back pointers in block 0 for attributes in inode %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:946
 #, c-format
 msgid "bad attribute leaf magic # %#x for dir ino %llu\n"
 msgstr ""
 
+#: ../repair/attr_repair.c:1006 ../repair/dinode.c:2472
 #, c-format
 msgid "illegal attribute format %d, ino %llu\n"
 msgstr ""
 
+#: ../repair/avl.c:1056 ../repair/avl64.c:1048
 #, c-format
 msgid "avl_insert: Warning! duplicate range [%llu,%llu]\n"
 msgstr ""
 
+#: ../repair/bmap.c:57
 #, c-format
 msgid "realloc failed in blkent_append (%u bytes)\n"
 msgstr ""
 
+#: ../repair/bmap.c:79
 #, c-format
 msgid "malloc failed in blkent_new (%u bytes)\n"
 msgstr ""
 
+#: ../repair/bmap.c:105
 #, c-format
 msgid "malloc failed in blkent_prepend (%u bytes)\n"
 msgstr ""
 
+#: ../repair/bmap.c:132
 #, c-format
 msgid "malloc failed in blkmap_alloc (%u bytes)\n"
 msgstr ""
 
+#: ../repair/bmap.c:217
 #, c-format
 msgid "blkmap_getn realloc failed (%u bytes)\n"
 msgstr ""
 
+#: ../repair/bmap.c:253
 #, c-format
 msgid "realloc failed in blkmap_grow (%u bytes)\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:71
 #, c-format
 msgid "cannot read agbno (%u/%u), disk block %lld\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:167
 #, c-format
 msgid "uncertain inode block %d/%d already known\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:183 ../repair/dino_chunks.c:449
+#: ../repair/dino_chunks.c:506
 #, c-format
 msgid "inode block %d/%d multiply claimed, (state %d)\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:189 ../repair/dino_chunks.c:511
 #, c-format
 msgid "inode block %d/%d bad state, (state %d)\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:456
 #, c-format
 msgid "uncertain inode block overlap, agbno = %d, ino = %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:493
 #, c-format
 msgid "uncertain inode block %llu already known\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:608
 #, c-format
 msgid "cannot read inode %llu, disk block %lld, cnt %d\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:705
 #, c-format
 msgid "can't read inode %llu, disk block %lld, cnt %d\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:725 ../repair/dino_chunks.c:894
+#: ../repair/phase3.c:84
 #, c-format
 msgid "bad state in block map %d\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:729 ../repair/dino_chunks.c:899
 #, c-format
 msgid "inode block %llu multiply claimed, state was %d\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:766
 #, c-format
 msgid "imap claims in-use inode %llu is free, "
 msgstr ""
 
+#: ../repair/dino_chunks.c:775
 msgid "correcting imap\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:777
 msgid "would correct imap\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:814
 #, c-format
 msgid "cleared root inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:818
 #, c-format
 msgid "would clear root inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:827
 #, c-format
 msgid "cleared realtime bitmap inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:832
 #, c-format
 msgid "would clear realtime bitmap inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:842
 #, c-format
 msgid "cleared realtime summary inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:847
 #, c-format
 msgid "would clear realtime summary inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:853
 #, c-format
 msgid "cleared inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:856
 #, c-format
 msgid "would have cleared inode %llu\n"
 msgstr ""
 
+#: ../repair/dino_chunks.c:1032 ../repair/dino_chunks.c:1067
+#: ../repair/dino_chunks.c:1181
 msgid "found inodes not in the inode allocation tree\n"
 msgstr ""
 
+#: ../repair/dinode.c:84
 msgid "Unknown inode format.\n"
 msgstr ""
 
+#: ../repair/dinode.c:101
 #, c-format
 msgid "clearing inode %llu attributes\n"
 msgstr ""
 
+#: ../repair/dinode.c:104
 #, c-format
 msgid "would have cleared inode %llu attributes\n"
 msgstr ""
 
+#: ../repair/dinode.c:530 ../repair/dinode.c:1145 ../repair/scan.c:172
 msgid "data"
 msgstr ""
 
+#: ../repair/dinode.c:532 ../repair/dinode.c:1147 ../repair/scan.c:174
 msgid "attr"
 msgstr ""
 
+#: ../repair/dinode.c:535
 msgid "real-time"
 msgstr ""
 
+#: ../repair/dinode.c:537
 msgid "regular"
 msgstr ""
 
+#: ../repair/dinode.c:547
 #, c-format
 msgid ""
-"bmap rec out of order, inode %llu entry %d [o s c] [%llu %llu %llu], %d "
-"[%llu %llu %llu]\n"
+"bmap rec out of order, inode %llu entry %d [o s c] [%llu %llu %llu], %d [%"
+"llu %llu %llu]\n"
 msgstr ""
 
+#: ../repair/dinode.c:561
 #, c-format
 msgid "zero length extent (off = %llu, fsbno = %llu) in ino %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:568
 #, c-format
 msgid "inode %llu - bad rt extent start block number %llu, offset %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:574
 #, c-format
 msgid "inode %llu - bad rt extent last block number %llu, offset %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:580
 #, c-format
 msgid ""
 "inode %llu - bad rt extent overflows - start %llu, end %llu, offset %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:588
 #, c-format
 msgid "inode %llu - bad extent starting block number %llu, offset %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:594
 #, c-format
 msgid "inode %llu - bad extent last block number %llu, offset %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:600
 #, c-format
 msgid "inode %llu - bad extent overflows - start %llu, end %llu, offset %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:607
 #, c-format
 msgid ""
 "inode %llu - extent offset too large - start %llu, count %llu, offset %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:626
 #, c-format
 msgid "malformed rt inode extent [%llu %llu] (fs rtext size = %u)\n"
 msgstr ""
 
+#: ../repair/dinode.c:640
 #, c-format
 msgid ""
 "data fork in rt ino %llu claims dup rt extent, off - %llu, start - %llu, "
 "count %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:664
 #, c-format
 msgid "bad state in rt block map %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:671
 #, c-format
 msgid "%s fork in rt inode %llu found metadata block %llu in %s bmap\n"
 msgstr ""
 
+#: ../repair/dinode.c:677
 #, c-format
 msgid "%s fork in rt inode %llu claims used rt block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:683
 #, c-format
 msgid "illegal state %d in %s block map %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:718
 #, c-format
 msgid ""
 "%s fork in ino %llu claims dup extent, off - %llu, start - %llu, cnt %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:740
 #, c-format
 msgid "%s fork in ino %llu claims free block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:747
 #, c-format
 msgid "bad state in block map %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:754
 #, c-format
 msgid "%s fork in inode %llu claims metadata block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:761
 #, c-format
 msgid "%s fork in %s inode %llu claims used block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:766
 #, c-format
 msgid "illegal state %d in block map %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:844
 #, c-format
 msgid "cannot read inode (%u/%u), disk block %lld\n"
 msgstr ""
 
+#: ../repair/dinode.c:960 ../repair/dinode.c:1021
 #, c-format
 msgid "cannot read bmap block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:977
 #, c-format
 msgid "# of bmap records in inode %llu exceeds max (%u, max - %u)\n"
 msgstr ""
 
+#: ../repair/dinode.c:986
 #, c-format
 msgid ""
 "- # of bmap records in inode %llu less than minimum (%u, min - %u), "
 "proceeding ...\n"
 msgstr ""
 
+#: ../repair/dinode.c:1032
 #, c-format
 msgid "# of bmap records in inode %llu greater than maximum (%u, max - %u)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1041
 #, c-format
 msgid ""
 "- # of bmap records in inode %llu less than minimum (%u, min - %u), "
 "continuing...\n"
 msgstr ""
 
+#: ../repair/dinode.c:1059
 #, c-format
 msgid "could not map block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1091
 #, c-format
 msgid "get_bmapi() called for local inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1099
 #, c-format
 msgid "bad inode format for inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1163
 #, c-format
 msgid "bad level 0 in inode %llu bmap btree root block\n"
 msgstr ""
 
+#: ../repair/dinode.c:1177
 #, c-format
 msgid ""
-"indicated size of %s btree root (%d bytes) greater than space in inode %llu "
-"%s fork\n"
+"indicated size of %s btree root (%d bytes) greater than space in inode %llu %"
+"s fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:1207 ../repair/scan.c:398
 #, c-format
 msgid "bad bmap btree ptr 0x%llx in ino %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1229
 #, c-format
 msgid ""
 "correcting key in bmbt root (was %llu, now %llu) in inode %llu %s fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:1243
 #, c-format
 msgid ""
 "bad key in bmbt root (is %llu, would reset to %llu) in inode %llu %s fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:1262
 #, c-format
 msgid "out of order bmbt root key %llu in inode %llu %s fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:1279
 #, c-format
 msgid "bad fwd (right) sibling pointer (saw %llu should be NULLDFSBNO)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1282
 #, c-format
 msgid "\tin inode %u (%s fork) bmap btree block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1363
 #, c-format
 msgid "local inode %llu data fork is too large (size = %lld, max = %d)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1373
 #, c-format
 msgid "local inode %llu attr fork too large (size %d, max = %d)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1381
 #, c-format
 msgid "local inode %llu attr too small (size = %d, min size = %d)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1411
 #, c-format
 msgid "mismatch between format (%d) and size (%lld) in symlink ino %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1419
 #, c-format
 msgid "mismatch between format (%d) and size (%lld) in symlink inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1435
 #, c-format
 msgid "bad number of extents (%d) in symlink %llu data fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:1448
 #, c-format
 msgid "bad extent #%d offset (%llu) in symlink %llu data fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:1454
 #, c-format
 msgid "bad extent #%d count (%llu) in symlink %llu data fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:1507
 #, c-format
 msgid "symlink in inode %llu too long (%lld chars)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1541
 #, c-format
 msgid "cannot read inode %llu, file block %d, disk block %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1563
 #, c-format
 msgid "found illegal null character in symlink inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1577 ../repair/dinode.c:1587
 #, c-format
 msgid "component of symlink in inode %llu too long\n"
 msgstr ""
 
+#: ../repair/dinode.c:1613
 #, c-format
 msgid "inode %llu has bad inode type (IFMNT)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1623
 #, c-format
 msgid "size of character device inode %llu != 0 (%lld bytes)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1628
 #, c-format
 msgid "size of block device inode %llu != 0 (%lld bytes)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1633
 #, c-format
 msgid "size of socket inode %llu != 0 (%lld bytes)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1638
 #, c-format
 msgid "size of fifo inode %llu != 0 (%lld bytes)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1643
 #, c-format
 msgid "Internal error - process_misc_ino_types, illegal type %d\n"
 msgstr ""
 
+#: ../repair/dinode.c:1670
 #, c-format
 msgid "size of character device inode %llu != 0 (%llu blocks)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1675
 #, c-format
 msgid "size of block device inode %llu != 0 (%llu blocks)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1680
 #, c-format
 msgid "size of socket inode %llu != 0 (%llu blocks)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1685
 #, c-format
 msgid "size of fifo inode %llu != 0 (%llu blocks)\n"
 msgstr ""
 
+#: ../repair/dinode.c:1789
 #, c-format
 msgid "bad magic number 0x%x on inode %llu, "
 msgstr ""
 
+#: ../repair/dinode.c:1792
 msgid "resetting magic number\n"
 msgstr ""
 
+#: ../repair/dinode.c:1797
 msgid "would reset magic number\n"
 msgstr ""
 
+#: ../repair/dinode.c:1800
 #, c-format
 msgid "bad magic number 0x%x on inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1809
 #, c-format
 msgid "bad version number 0x%x on inode %llu, "
 msgstr ""
 
+#: ../repair/dinode.c:1812
 msgid "resetting version number\n"
 msgstr ""
 
+#: ../repair/dinode.c:1818
 msgid "would reset version number\n"
 msgstr ""
 
+#: ../repair/dinode.c:1821
 #, c-format
 msgid "bad version number 0x%x on inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1832 ../repair/dinode.c:1843
 #, c-format
 msgid "bad (negative) size %lld on inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1874
 #, c-format
 msgid "imap claims a free inode %llu is in use, "
 msgstr ""
 
+#: ../repair/dinode.c:1877
 msgid "correcting imap and clearing inode\n"
 msgstr ""
 
+#: ../repair/dinode.c:1886
 msgid "would correct imap and clear inode\n"
 msgstr ""
 
+#: ../repair/dinode.c:1915
 #, c-format
 msgid "bad inode format in inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1979
 #, c-format
 msgid "Unexpected inode type %#o inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:1989
 #, c-format
 msgid "bad inode type for root inode %llu, "
 msgstr ""
 
+#: ../repair/dinode.c:1993
 msgid "resetting to directory\n"
 msgstr ""
 
+#: ../repair/dinode.c:1999
 msgid "would reset to directory\n"
 msgstr ""
 
+#: ../repair/dinode.c:2003
 msgid "summary"
 msgstr ""
 
+#: ../repair/dinode.c:2007
 msgid "bitmap"
 msgstr ""
 
+#: ../repair/dinode.c:2011
 #, c-format
 msgid "user quota inode has bad type 0x%x\n"
 msgstr ""
 
+#: ../repair/dinode.c:2029
 #, c-format
 msgid "group quota inode has bad type 0x%x\n"
 msgstr ""
 
+#: ../repair/dinode.c:2050
 #, c-format
 msgid "bad inode type for realtime %s inode %llu, "
 msgstr ""
 
+#: ../repair/dinode.c:2054
 msgid "resetting to regular file\n"
 msgstr ""
 
+#: ../repair/dinode.c:2060
 msgid "would reset to regular file\n"
 msgstr ""
 
+#: ../repair/dinode.c:2069
 #, c-format
 msgid "bad non-zero extent size value %u for non-realtime inode %llu, "
 msgstr ""
 
+#: ../repair/dinode.c:2073
 msgid "resetting to zero\n"
 msgstr ""
 
+#: ../repair/dinode.c:2077
 msgid "would reset to zero\n"
 msgstr ""
 
+#: ../repair/dinode.c:2095
 #, c-format
 msgid "bad size %llu for realtime %s inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2111
 #, c-format
 msgid "bad # of extents (%u) for realtime %s inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2153
 #, c-format
 msgid "mismatch between format (%d) and size (%lld) in directory ino %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2175
 #, c-format
 msgid "bad data fork in symlink %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2217
 #, c-format
 msgid "found inode %llu claiming to be a real-time file\n"
 msgstr ""
 
+#: ../repair/dinode.c:2236
 #, c-format
 msgid "realtime bitmap inode %llu has bad size %lld (should be %lld)\n"
 msgstr ""
 
+#: ../repair/dinode.c:2257
 #, c-format
 msgid "realtime summary inode %llu has bad size %lld (should be %d)\n"
 msgstr ""
 
+#: ../repair/dinode.c:2288
 #, c-format
 msgid "bad attr fork offset %d in dev inode %llu, should be %d\n"
 msgstr ""
 
+#: ../repair/dinode.c:2299
 #, c-format
 msgid "bad attr fork offset %d in uuid inode %llu, should be %d\n"
 msgstr ""
 
+#: ../repair/dinode.c:2311
 #, c-format
 msgid "bad attr fork offset %d in inode %llu, should be %d\n"
 msgstr ""
 
+#: ../repair/dinode.c:2319
 #, c-format
 msgid "unexpected inode format %d\n"
 msgstr ""
 
+#: ../repair/dinode.c:2363 ../repair/dinode.c:2415
 #, c-format
 msgid "unknown format %d, ino %llu (mode = %d)\n"
 msgstr ""
 
+#: ../repair/dinode.c:2373
 #, c-format
 msgid "bad data fork in inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2439
 #, c-format
 msgid "bad attribute format %d in inode %llu, "
 msgstr ""
 
+#: ../repair/dinode.c:2442
 msgid "resetting value\n"
 msgstr ""
 
+#: ../repair/dinode.c:2446
 msgid "would reset value\n"
 msgstr ""
 
+#: ../repair/dinode.c:2487
 #, c-format
 msgid "bad attribute fork in inode %llu"
 msgstr ""
 
+#: ../repair/dinode.c:2491
 msgid ", clearing attr fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:2501
 msgid ", would clear attr fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:2538
 #, c-format
 msgid "illegal attribute fmt %d, ino %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2564
 #, c-format
 msgid "problem with attribute contents in inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2574
 msgid "would clear attr fork\n"
 msgstr ""
 
+#: ../repair/dinode.c:2611
 #, c-format
 msgid "correcting nblocks for inode %llu, was %llu - counted %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2618
 #, c-format
 msgid "bad nblocks %llu for inode %llu, would reset to %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2625
 #, c-format
 msgid "too many data fork extents (%llu) in inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2642
 #, c-format
 msgid "correcting nextents for inode %llu, was %d - counted %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2650
 #, c-format
 msgid "bad nextents %d for inode %llu, would reset to %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2657
 #, c-format
 msgid "too many attr fork extents (%llu) in inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2674
 #, c-format
 msgid "correcting anextents for inode %llu, was %d - counted %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2683
 #, c-format
 msgid "bad anextents %d for inode %llu, would reset to %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2702
 #, c-format
 msgid "problem with directory contents in inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2715
 #, c-format
 msgid "problem with symbolic link in inode %llu\n"
 msgstr ""
 
+#: ../repair/dinode.c:2727
 msgid "Unexpected inode type\n"
 msgstr ""
 
+#: ../repair/dinode.c:2771
 #, c-format
 msgid "version 2 inode %llu claims > %u links, "
 msgstr ""
 
+#: ../repair/dinode.c:2775
 msgid "updating superblock version number\n"
 msgstr ""
 
+#: ../repair/dinode.c:2778
 msgid "would update superblock version number\n"
 msgstr ""
 
+#: ../repair/dinode.c:2786
 #, c-format
 msgid "WARNING:  version 2 inode %llu claims > %u links, "
 msgstr ""
 
+#: ../repair/dinode.c:2790
 #, c-format
 msgid ""
 "converting back to version 1,\n"
 "\tthis may destroy %d links\n"
 msgstr ""
 
+#: ../repair/dinode.c:2805
 #, c-format
 msgid ""
 "would convert back to version 1,\n"
 "\tthis might destroy %d links\n"
 msgstr ""
 
+#: ../repair/dinode.c:2820
 #, c-format
 msgid "found version 2 inode %llu, "
 msgstr ""
 
+#: ../repair/dinode.c:2822
 msgid "converting back to version 1\n"
 msgstr ""
 
+#: ../repair/dinode.c:2831
 msgid "would convert back to version 1\n"
 msgstr ""
 
+#: ../repair/dinode.c:2846
 #, c-format
 msgid "clearing obsolete nlink field in version 2 inode %llu, was %d, now 0\n"
 msgstr ""
 
+#: ../repair/dinode.c:2852
 #, c-format
 msgid ""
 "would clear obsolete nlink field in version 2 inode %llu, currently %d\n"
 msgstr ""
 
+#: ../repair/dir.c:168
 #, c-format
 msgid "invalid inode number %llu in directory %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:173
 #, c-format
 msgid "entry in shortform dir %llu references rt bitmap inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:178
 #, c-format
 msgid "entry in shortform dir %llu references rt summary inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:183
 #, c-format
 msgid "entry in shortform dir %llu references user quota inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:188
 #, c-format
 msgid "entry in shortform dir %llu references group quota inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:208
 #, c-format
 msgid "entry references free inode %llu in shortform directory %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:227
 #, c-format
 msgid "entry references non-existent inode %llu in shortform dir %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:251 ../repair/dir2.c:983
 #, c-format
 msgid "zero length entry in shortform dir %llu, resetting to %d\n"
 msgstr ""
 
+#: ../repair/dir.c:256 ../repair/dir2.c:989
 #, c-format
 msgid "zero length entry in shortform dir %llu, would set to %d\n"
 msgstr ""
 
+#: ../repair/dir.c:261
 #, c-format
 msgid "zero length entry in shortform dir %llu, "
 msgstr ""
 
+#: ../repair/dir.c:264 ../repair/dir.c:307 ../repair/dir2.c:1042
 #, c-format
 msgid "junking %d entries\n"
 msgstr ""
 
+#: ../repair/dir.c:267 ../repair/dir.c:316 ../repair/dir2.c:1051
 #, c-format
 msgid "would junk %d entries\n"
 msgstr ""
 
+#: ../repair/dir.c:285 ../repair/dir2.c:1019
 #, c-format
 msgid "size of last entry overflows space left in in shortform dir %llu, "
 msgstr ""
 
+#: ../repair/dir.c:288 ../repair/dir2.c:1023
 #, c-format
 msgid "resetting to %d\n"
 msgstr ""
 
+#: ../repair/dir.c:293 ../repair/dir2.c:1028
 #, c-format
 msgid "would reset to %d\n"
 msgstr ""
 
+#: ../repair/dir.c:298 ../repair/dir2.c:1032
 #, c-format
 msgid "size of entry #%d overflows space left in in shortform dir %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:303 ../repair/dir2.c:1038
 #, c-format
 msgid "junking entry #%d\n"
 msgstr ""
 
+#: ../repair/dir.c:312 ../repair/dir2.c:1047
 #, c-format
 msgid "would junk entry #%d\n"
 msgstr ""
 
+#: ../repair/dir.c:335 ../repair/dir2.c:1069
 #, c-format
 msgid "entry contains illegal character in shortform dir %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:390 ../repair/dir2.c:1134 ../repair/phase6.c:3001
+#: ../repair/phase6.c:3396
 #, c-format
 msgid "junking entry \"%s\" in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:394 ../repair/dir2.c:1138
 #, c-format
 msgid "would have junked entry \"%s\" in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:420 ../repair/dir2.c:1165
 #, c-format
 msgid "would have corrected entry count in directory %llu from %d to %d\n"
 msgstr ""
 
+#: ../repair/dir.c:424 ../repair/dir2.c:1169
 #, c-format
 msgid "corrected entry count in directory %llu, was %d, now %d\n"
 msgstr ""
 
+#: ../repair/dir.c:435 ../repair/dir2.c:1198
 #, c-format
 msgid "would have corrected directory %llu size from %lld to %lld\n"
 msgstr ""
 
+#: ../repair/dir.c:440 ../repair/dir2.c:1204
 #, c-format
 msgid "corrected directory %llu size, was %lld, now %lld\n"
 msgstr ""
 
+#: ../repair/dir.c:463 ../repair/dir2.c:1250
 #, c-format
 msgid "bogus .. inode number (%llu) in directory inode %llu, "
 msgstr ""
 
+#: ../repair/dir.c:466 ../repair/dir.c:502 ../repair/dir2.c:1255
+#: ../repair/dir2.c:1292
 msgid "clearing inode number\n"
 msgstr ""
 
+#: ../repair/dir.c:473 ../repair/dir.c:509 ../repair/dir2.c:1262
+#: ../repair/dir2.c:1299
 msgid "would clear inode number\n"
 msgstr ""
 
+#: ../repair/dir.c:481 ../repair/dir2.c:1269
 #, c-format
 msgid "corrected root directory %llu .. entry, was %llu, now %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:490 ../repair/dir2.c:1278
 #, c-format
 msgid "would have corrected root directory %llu .. entry from %llu to %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:499
 #, c-format
 msgid "bad .. entry in dir ino %llu, points to self, "
 msgstr ""
 
+#: ../repair/dir.c:563
 #, c-format
 msgid "bad range claimed [%d, %d) in da block\n"
 msgstr ""
 
+#: ../repair/dir.c:570
 #, c-format
 msgid "byte range end [%d %d) in da block larger than blocksize %d\n"
 msgstr ""
 
+#: ../repair/dir.c:577
 #, c-format
 msgid "multiply claimed byte %d in da block\n"
 msgstr ""
 
+#: ../repair/dir.c:607
 #, c-format
 msgid "hole (start %d, len %d) out of range, block %d, dir ino %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:618
 #, c-format
 msgid "hole claims used byte %d, block %d, dir ino %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:733
 #, c-format
 msgid "- derived hole value %d, saw %d, block %d, dir ino %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:752
 #, c-format
 msgid ""
 "- derived hole (base %d, size %d) in block %d, dir inode %llu not found\n"
 msgstr ""
 
+#: ../repair/dir.c:828 ../repair/dir.c:1006 ../repair/phase4.c:248
+#: ../repair/phase4.c:733 ../repair/phase6.c:1052 ../repair/phase6.c:1570
 #, c-format
 msgid "can't read block %u (fsbno %llu) for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:832
 #, c-format
 msgid "can't read block %u (fsbno %llu) for attrbute fork of inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:841 ../repair/dir.c:1016 ../repair/phase6.c:1062
 #, c-format
 msgid "bad dir/attr magic number in inode %llu, file bno = %u, fsbno = %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:849 ../repair/dir2.c:325
 #, c-format
 msgid "bad record count in inode %llu, count = %d, max = %d\n"
 msgstr ""
 
+#: ../repair/dir.c:868 ../repair/dir2.c:342
 #, c-format
 msgid "bad directory btree for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:872
 #, c-format
 msgid "bad attribute fork btree for inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:926
 #, c-format
 msgid "release_da_cursor_int got unexpected non-null bp, dabno = %u\n"
 msgstr ""
 
+#: ../repair/dir.c:987 ../repair/dir.c:1032
 #, c-format
 msgid "bmap of block #%u of inode %llu failed\n"
 msgstr ""
 
+#: ../repair/dir.c:1078
 #, c-format
 msgid "directory/attribute block used/count inconsistency - %d/%hu\n"
 msgstr ""
 
+#: ../repair/dir.c:1088 ../repair/dir2.c:465
 #, c-format
 msgid ""
 "directory/attribute block hashvalue inconsistency, expected > %u / saw %u\n"
 msgstr ""
 
+#: ../repair/dir.c:1095 ../repair/dir2.c:472
 #, c-format
 msgid "bad directory/attribute forward block pointer, expected 0, saw %u\n"
 msgstr ""
 
+#: ../repair/dir.c:1101
 #, c-format
 msgid "bad directory block in dir ino %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1131
 #, c-format
 msgid ""
 "correcting bad hashval in non-leaf dir/attr block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir.c:1139
 #, c-format
 msgid ""
 "would correct bad hashval in non-leaf dir/attr block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir.c:1277 ../repair/dir2.c:637
 #, c-format
 msgid "can't get map info for block %u of directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1286
 #, c-format
 msgid "can't read block %u (%llu) for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1300
 #, c-format
 msgid "bad magic number %x in block %u (%llu) for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1308
 #, c-format
 msgid "bad back pointer in block %u (%llu) for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1315
 #, c-format
 msgid "entry count %d too large in block %u (%llu) for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1322
 #, c-format
 msgid "bad level %d in block %u (%llu) for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1380
 #, c-format
 msgid ""
 "correcting bad hashval in interior dir/attr block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir.c:1388
 #, c-format
 msgid ""
 "would correct bad hashval in interior dir/attr block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir.c:1508
 #, c-format
 msgid "marking bad entry in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1534
 #, c-format
 msgid "deleting zero length entry in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1633
 #, c-format
 msgid "deleting entry in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1782
 msgid "couldn't allocate directory block freemap\n"
 msgstr ""
 
+#: ../repair/dir.c:1795
 #, c-format
 msgid ""
 "directory block header conflicts with used space in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1824
 #, c-format
 msgid ""
 "nameidx %d for entry #%d, bno %d, ino %llu > fs blocksize, deleting entry\n"
 msgstr ""
 
+#: ../repair/dir.c:1864
 #, c-format
 msgid ""
 "nameidx %d, entry #%d, bno %d, ino %llu > fs blocksize, marking entry bad\n"
 msgstr ""
 
+#: ../repair/dir.c:1881
 #, c-format
 msgid ""
 "nameidx %d, entry #%d, bno %d, ino %llu > fs blocksize, would delete entry\n"
 msgstr ""
 
+#: ../repair/dir.c:1918
 #, c-format
 msgid "invalid ino number %llu in dir ino %llu, entry #%d, bno %d\n"
 msgstr ""
 
+#: ../repair/dir.c:1922 ../repair/dir.c:1939 ../repair/dir.c:1957
+#: ../repair/dir.c:1974 ../repair/dir.c:1992
 #, c-format
 msgid "\tclearing ino number in entry %d...\n"
 msgstr ""
 
+#: ../repair/dir.c:1930 ../repair/dir.c:1948 ../repair/dir.c:1965
+#: ../repair/dir.c:1983 ../repair/dir.c:2001
 #, c-format
 msgid "\twould clear ino number in entry %d...\n"
 msgstr ""
 
+#: ../repair/dir.c:1935
 #, c-format
 msgid ""
 "entry #%d, bno %d in directory %llu references realtime bitmap inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1953
 #, c-format
 msgid ""
 "entry #%d, bno %d in directory %llu references realtime summary inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1970
 #, c-format
 msgid "entry #%d, bno %d in directory %llu references user quota inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:1988
 #, c-format
 msgid "entry #%d, bno %d in directory %llu references group quota inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2032
 #, c-format
 msgid "entry references free inode %llu in directory %llu, will clear entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2040
 #, c-format
 msgid "entry references free inode %llu in directory %llu, would clear entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2048
 #, c-format
 msgid "bad ino number %llu in dir ino %llu, entry #%d, bno %d\n"
 msgstr ""
 
+#: ../repair/dir.c:2051
 msgid "clearing inode number...\n"
 msgstr ""
 
+#: ../repair/dir.c:2057
 msgid "would clear inode number...\n"
 msgstr ""
 
+#: ../repair/dir.c:2077
 #, c-format
 msgid "entry #%d, dir inode %llu, has zero-len name, deleting entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2116
 #, c-format
 msgid "entry #%d, dir inode %llu, has zero-len name, marking entry bad\n"
 msgstr ""
 
+#: ../repair/dir.c:2131
 #, c-format
 msgid ""
 "bad size, entry #%d in dir inode %llu, block %u -- entry overflows block\n"
 msgstr ""
 
+#: ../repair/dir.c:2142
 #, c-format
 msgid ""
 "dir entry slot %d in block %u conflicts with used space in dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2181
 #, c-format
 msgid "illegal name \"%s\" in directory inode %llu, entry will be cleared\n"
 msgstr ""
 
+#: ../repair/dir.c:2187
 #, c-format
 msgid "illegal name \"%s\" in directory inode %llu, entry would be cleared\n"
 msgstr ""
 
+#: ../repair/dir.c:2197
 #, c-format
 msgid "\tmismatched hash value for entry \"%s\"\n"
 msgstr ""
 
+#: ../repair/dir.c:2201
 #, c-format
 msgid "\t\tin directory inode %llu.  resetting hash value.\n"
 msgstr ""
 
+#: ../repair/dir.c:2207
 #, c-format
 msgid "\t\tin directory inode %llu.  would reset hash value.\n"
 msgstr ""
 
+#: ../repair/dir.c:2237
 #, c-format
 msgid "\tbad hash ordering for entry \"%s\"\n"
 msgstr ""
 
+#: ../repair/dir.c:2241
 #, c-format
 msgid "\t\tin directory inode %llu.  will clear entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2249
 #, c-format
 msgid "\t\tin directory inode %llu.  would clear entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2266
 #, c-format
 msgid ""
 "name \"%s\" (block %u, slot %d) conflicts with used space in dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2273
 #, c-format
 msgid "will clear entry \"%s\" (#%d) in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2277
 #, c-format
 msgid "would clear entry \"%s\" (#%d)in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2313
 #, c-format
 msgid "bad .. entry in dir ino %llu, points to self"
 msgstr ""
 
+#: ../repair/dir.c:2317 ../repair/dir.c:2416
 msgid "will clear entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2322 ../repair/dir.c:2420 ../repair/dir2.c:1647
 msgid "would clear entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2332
 #, c-format
 msgid "correcting .. entry in root inode %llu, was %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2340
 #, c-format
 msgid "bad .. entry (%llu) in root inode %llu should be %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2357
 #, c-format
 msgid "multiple .. entries in directory inode %llu, will clear second entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2363
 #, c-format
 msgid "multiple .. entries in directory inode %llu, would clear second entry\n"
 msgstr ""
 
+#: ../repair/dir.c:2376
 #, c-format
 msgid ". in directory inode %llu has wrong value (%llu), fixing entry...\n"
 msgstr ""
 
+#: ../repair/dir.c:2384
 #, c-format
 msgid ". in directory inode %llu has wrong value (%llu)\n"
 msgstr ""
 
+#: ../repair/dir.c:2390
 #, c-format
 msgid "multiple . entries in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2397
 #, c-format
 msgid "will clear one . entry in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2403
 #, c-format
 msgid "would clear one . entry in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2413
 #, c-format
 msgid "entry \"%s\" in directory inode %llu points to self, "
 msgstr ""
 
+#: ../repair/dir.c:2438
 #, c-format
 msgid ""
 "- resetting first used heap value from %d to %d in block %u of dir ino %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2447
 #, c-format
 msgid ""
 "- would reset first used value from %d to %d in block %u of dir ino %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2458
 #, c-format
 msgid "- resetting namebytes cnt from %d to %d in block %u of dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2467
 #, c-format
 msgid ""
 "- would reset namebytes cnt from %d to %d in block %u of dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2503
 #, c-format
 msgid "- found unexpected lost holes in block %u, dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2511
 #, c-format
 msgid "- hole info non-optimal in block %u, dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2518
 #, c-format
 msgid "- hole info incorrect in block %u, dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2529
 #, c-format
 msgid "- existing hole info for block %d, dir inode %llu (base, size) - \n"
 msgstr ""
 
+#: ../repair/dir.c:2537
 #, c-format
 msgid "- holes flag = %d\n"
 msgstr ""
 
+#: ../repair/dir.c:2543
 #, c-format
 msgid "- compacting block %u in dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2584
 #, c-format
 msgid "not enough space in block %u of dir inode %llu for all entries\n"
 msgstr ""
 
+#: ../repair/dir.c:2652
 #, c-format
 msgid "- would compact block %u in dir inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2714 ../repair/dir2.c:1829
 #, c-format
 msgid "can't map block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2725
 #, c-format
 msgid ""
 "can't read file block %u (fsbno %llu, daddr %lld) for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2739 ../repair/dir.c:3001
 #, c-format
 msgid "bad directory leaf magic # %#x for dir ino %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2778
 #, c-format
 msgid ""
 "bad sibling back pointer for directory block %u in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2810 ../repair/dir2.c:1905
 #, c-format
 msgid "bad hash path in directory %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:2920
 #, c-format
 msgid "out of range internal directory block numbers (inode %llu)\n"
 msgstr ""
 
+#: ../repair/dir.c:2926
 #, c-format
 msgid "setting directory inode (%llu) size to %llu bytes, was %lld bytes\n"
 msgstr ""
 
+#: ../repair/dir.c:2981
 #, c-format
 msgid "block 0 for directory inode %llu is missing\n"
 msgstr ""
 
+#: ../repair/dir.c:2988
 #, c-format
 msgid "can't read block 0 for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:3025
 #, c-format
 msgid "clearing forw/back pointers for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:3031
 #, c-format
 msgid "would clear forw/back pointers for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:3101 ../repair/dir2.c:2111
 #, c-format
 msgid "no . entry for directory %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:3111 ../repair/dir2.c:2121
 #, c-format
 msgid "no .. entry for directory %llu\n"
 msgstr ""
 
+#: ../repair/dir.c:3113 ../repair/dir2.c:2123
 #, c-format
 msgid "no .. entry for root directory %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:68
 #, c-format
 msgid "malloc failed (%u bytes) dir2_add_badlist:ino %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:107 ../repair/dir2.c:200 ../repair/dir2.c:236
 msgid "couldn't malloc dir2 buffer list\n"
 msgstr ""
 
+#: ../repair/dir2.c:119
 msgid "couldn't malloc dir2 buffer header\n"
 msgstr ""
 
+#: ../repair/dir2.c:136
 msgid "couldn't malloc dir2 buffer data\n"
 msgstr ""
 
+#: ../repair/dir2.c:289 ../repair/dir2.c:646 ../repair/dir2.c:1710
+#: ../repair/phase6.c:2114 ../repair/phase6.c:2189 ../repair/phase6.c:2234
+#: ../repair/phase6.c:2332 ../repair/phase6.c:2464 ../repair/phase6.c:2478
+#: ../repair/phase6.c:2723
 #, c-format
 msgid "can't read block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:300
 #, c-format
 msgid "found non-root LEAFN node in inode %llu bno = %u\n"
 msgstr ""
 
+#: ../repair/dir2.c:305
 #, c-format
 msgid "LEAFN node level is %d inode %llu bno = %u\n"
 msgstr ""
 
+#: ../repair/dir2.c:316
 #, c-format
 msgid "bad dir magic number 0x%x in inode %llu bno = %u\n"
 msgstr ""
 
+#: ../repair/dir2.c:393
 #, c-format
 msgid "release_dir2_cursor_int got unexpected non-null bp, dabno = %u\n"
 msgstr ""
 
+#: ../repair/dir2.c:456
 #, c-format
 msgid "directory block used/count inconsistency - %d / %hu\n"
 msgstr ""
 
+#: ../repair/dir2.c:478
 #, c-format
 msgid "bad directory block in inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:499
 #, c-format
 msgid ""
 "correcting bad hashval in non-leaf dir block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir2.c:506
 #, c-format
 msgid ""
 "would correct bad hashval in non-leaf dir block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir2.c:660
 #, c-format
 msgid "bad magic number %x in block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:668
 #, c-format
 msgid "bad back pointer in block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:675
 #, c-format
 msgid "entry count %d too large in block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:682
 #, c-format
 msgid "bad level %d in block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:726
 #, c-format
 msgid ""
 "correcting bad hashval in interior dir block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir2.c:733
 #, c-format
 msgid ""
 "would correct bad hashval in interior dir block\n"
 "\tin (level %d) in inode %llu.\n"
 msgstr ""
 
+#: ../repair/dir2.c:767
 msgid "couldn't malloc dir2 shortform copy\n"
 msgstr ""
 
+#: ../repair/dir2.c:910
 msgid "current"
 msgstr ""
 
+#: ../repair/dir2.c:913 ../repair/dir2.c:1441
 msgid "invalid"
 msgstr ""
 
+#: ../repair/dir2.c:916 ../repair/dir2.c:1444
 msgid "realtime bitmap"
 msgstr ""
 
+#: ../repair/dir2.c:919 ../repair/dir2.c:1447
 msgid "realtime summary"
 msgstr ""
 
+#: ../repair/dir2.c:922 ../repair/dir2.c:1450
 msgid "user quota"
 msgstr ""
 
+#: ../repair/dir2.c:925 ../repair/dir2.c:1453
 msgid "group quota"
 msgstr ""
 
+#: ../repair/dir2.c:942 ../repair/dir2.c:1482
 msgid "free"
 msgstr ""
 
+#: ../repair/dir2.c:959 ../repair/dir2.c:1490
 msgid "non-existent"
 msgstr ""
 
+#: ../repair/dir2.c:963
 #, c-format
 msgid "entry \"%*.*s\" in shortform directory %llu references %s inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:995
 #, c-format
 msgid "zero length entry in shortform dir %llu"
 msgstr ""
 
+#: ../repair/dir2.c:999
 #, c-format
 msgid ", junking %d entries\n"
 msgstr ""
 
+#: ../repair/dir2.c:1002
 #, c-format
 msgid ", would junk %d entries\n"
 msgstr ""
 
+#: ../repair/dir2.c:1076
 #, c-format
 msgid "entry contains offset out of order in shortform dir %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1180
 #, c-format
 msgid "would have corrected i8 count in directory %llu from %d to %d\n"
 msgstr ""
 
+#: ../repair/dir2.c:1184
 #, c-format
 msgid "corrected i8 count in directory %llu, was %d, now %d\n"
 msgstr ""
 
+#: ../repair/dir2.c:1221
 #, c-format
 msgid "directory %llu offsets too high\n"
 msgstr ""
 
+#: ../repair/dir2.c:1226
 #, c-format
 msgid "would have corrected entry offsets in directory %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1230
 #, c-format
 msgid "corrected entry offsets in directory %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1288
 #, c-format
 msgid "bad .. entry in directory inode %llu, points to self, "
 msgstr ""
 
+#: ../repair/dir2.c:1402
 #, c-format
 msgid "corrupt block %u in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1405
 msgid "\twill junk block\n"
 msgstr ""
 
+#: ../repair/dir2.c:1407
 msgid "\twould junk block\n"
 msgstr ""
 
+#: ../repair/dir2.c:1493
 #, c-format
 msgid ""
 "entry \"%*.*s\" at block %u offset %d in directory inode %llu references %s "
 "inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1505
 #, c-format
 msgid "entry at block %u offset %d in directory inode %llu has 0 namelength\n"
 msgstr ""
 
+#: ../repair/dir2.c:1517
 #, c-format
 msgid "\tclearing inode number in entry at offset %d...\n"
 msgstr ""
 
+#: ../repair/dir2.c:1523
 #, c-format
 msgid "\twould clear inode number in entry at offset %d...\n"
 msgstr ""
 
+#: ../repair/dir2.c:1536
 #, c-format
 msgid ""
-"entry at block %u offset %d in directory inode %llu has illegal name "
-"\"%*.*s\": "
+"entry at block %u offset %d in directory inode %llu has illegal name \"%*.*s"
+"\": "
 msgstr ""
 
+#: ../repair/dir2.c:1567
 #, c-format
 msgid "bad .. entry in directory inode %llu, points to self: "
 msgstr ""
 
+#: ../repair/dir2.c:1578
 #, c-format
 msgid "bad .. entry in root directory inode %llu, was %llu: "
 msgstr ""
 
+#: ../repair/dir2.c:1583 ../repair/dir2.c:1615 ../repair/phase2.c:192
+#: ../repair/phase2.c:201 ../repair/phase2.c:210
 msgid "correcting\n"
 msgstr ""
 
+#: ../repair/dir2.c:1587 ../repair/dir2.c:1619 ../repair/phase2.c:194
+#: ../repair/phase2.c:203 ../repair/phase2.c:212
 msgid "would correct\n"
 msgstr ""
 
+#: ../repair/dir2.c:1598
 #, c-format
 msgid "multiple .. entries in directory inode %llu: "
 msgstr ""
 
+#: ../repair/dir2.c:1611
 #, c-format
 msgid "bad . entry in directory inode %llu, was %llu: "
 msgstr ""
 
+#: ../repair/dir2.c:1623
 #, c-format
 msgid "multiple . entries in directory inode %llu: "
 msgstr ""
 
+#: ../repair/dir2.c:1633
 #, c-format
 msgid "entry \"%*.*s\" in directory inode %llu points to self: "
 msgstr ""
 
+#: ../repair/dir2.c:1645
 msgid "clearing entry\n"
 msgstr ""
 
+#: ../repair/dir2.c:1659
 #, c-format
 msgid "bad bestfree table in block %u in directory inode %llu: "
 msgstr ""
 
+#: ../repair/dir2.c:1663
 msgid "repairing table\n"
 msgstr ""
 
+#: ../repair/dir2.c:1667
 msgid "would repair table\n"
 msgstr ""
 
+#: ../repair/dir2.c:1703
 #, c-format
 msgid "block %u for directory inode %llu is missing\n"
 msgstr ""
 
+#: ../repair/dir2.c:1719
 #, c-format
 msgid "bad directory block magic # %#x in block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1764
 #, c-format
 msgid "bad entry count in block %u of directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1774
 #, c-format
 msgid "bad hash ordering in block %u of directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1783
 #, c-format
 msgid "bad stale count in block %u of directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1838
 #, c-format
 msgid "can't read file block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:1849
 #, c-format
 msgid "bad directory leaf magic # %#x for directory inode %llu block %u\n"
 msgstr ""
 
+#: ../repair/dir2.c:1879
 #, c-format
 msgid "bad sibling back pointer for block %u in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:2008
 #, c-format
 msgid "block %llu for directory inode %llu is missing\n"
 msgstr ""
 
+#: ../repair/dir2.c:2016
 #, c-format
 msgid "can't read block %llu for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:2024
 #, c-format
 msgid ""
 "bad directory block magic # %#x in block %llu for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/dir2.c:2104
 #, c-format
 msgid "bad size/format for directory %llu\n"
 msgstr ""
 
+#: ../repair/dir_stack.c:105
 msgid "couldn't malloc dir stack element, try more swap\n"
 msgstr ""
 
+#: ../repair/incore.c:78
 msgid "couldn't allocate block map pointers\n"
 msgstr ""
 
+#: ../repair/incore.c:86
 #, c-format
 msgid "couldn't allocate block map, size = %d\n"
 msgstr ""
 
+#: ../repair/incore.c:103
 #, c-format
 msgid "couldn't allocate realtime block map, size = %llu\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:126 ../repair/incore_ext.c:671
 msgid "couldn't allocate new extent descriptors.\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:255
 msgid "duplicate bno extent range\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:371
 msgid ":  duplicate bno extent range\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:533 ../repair/incore_ext.c:584
+#: ../repair/incore_ext.c:784 ../repair/incore_ext.c:836
 msgid "duplicate extent range\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:885
 msgid "couldn't malloc dup extent tree descriptor table\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:890
 msgid "couldn't malloc free by-bno extent tree descriptor table\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:895
 msgid "couldn't malloc free by-bcnt extent tree descriptor table\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:901
 msgid "couldn't malloc dup extent tree descriptor\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:905
 msgid "couldn't malloc bno extent tree descriptor\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:909
 msgid "couldn't malloc bcnt extent tree descriptor\n"
 msgstr ""
 
+#: ../repair/incore_ext.c:919
 msgid "couldn't malloc dup rt extent tree descriptor\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:91
 msgid "inode map malloc failed\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:204
 msgid "add_aginode_uncertain - duplicate inode range\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:306
 msgid "add_inode - duplicate inode range\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:418
 msgid "good inode list is --\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:421
 msgid "uncertain inode list is --\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:426
 #, c-format
 msgid "agno %d -- no inodes\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:430
 #, c-format
 msgid "agno %d\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:434
 #, c-format
 msgid "\tptr = %lx, start = 0x%x, free = 0x%llx, confirmed = 0x%llx\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:478
 msgid "couldn't malloc parent list table\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:484 ../repair/incore_ino.c:530
 msgid "couldn't memalign pentries table\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:677
 msgid "couldn't malloc ino rec backptrs.\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:703
 msgid "could not malloc back pointer table\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:793
 msgid "couldn't malloc inode tree descriptor table\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:797
 msgid "couldn't malloc uncertain ino tree descriptor table\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:802
 msgid "couldn't malloc inode tree descriptor\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:806
 msgid "couldn't malloc uncertain ino tree descriptor\n"
 msgstr ""
 
+#: ../repair/incore_ino.c:817
 msgid "couldn't malloc uncertain inode cache area\n"
 msgstr ""
 
+#: ../repair/init.c:67
 #, c-format
 msgid "you should never get this message - %s"
 msgstr ""
 
+#: ../repair/init.c:79
 msgid "couldn't initialize XFS library\n"
 msgstr ""
 
+#: ../repair/io.c:49
 #, c-format
 msgid "couldn't open filesystem \"%s\"\n"
 msgstr ""
 
+#: ../repair/io.c:65
 msgid "couldn't malloc io buffer\n"
 msgstr ""
 
+#: ../repair/io.c:68
 msgid "couldn't malloc secondary io buffer\n"
 msgstr ""
 
+#: ../repair/io.c:72
 msgid "couldn't malloc sb io buffers\n"
 msgstr ""
 
+#: ../repair/phase1.c:42
 msgid "Sorry, could not find valid secondary superblock\n"
 msgstr ""
 
+#: ../repair/phase1.c:43
 msgid "Exiting now.\n"
 msgstr ""
 
+#: ../repair/phase1.c:54
 #, c-format
 msgid "could not allocate ag header buffer (%d bytes)\n"
 msgstr ""
 
+#: ../repair/phase1.c:74
 msgid "Phase 1 - find and verify superblock...\n"
 msgstr ""
 
+#: ../repair/phase1.c:91
 msgid "error reading primary superblock\n"
 msgstr ""
 
+#: ../repair/phase1.c:97
 #, c-format
 msgid "bad primary superblock - %s !!!\n"
 msgstr ""
 
+#: ../repair/phase1.c:104
 #, c-format
 msgid "couldn't verify primary superblock - %s !!!\n"
 msgstr ""
 
+#: ../repair/phase1.c:113
 msgid "writing modified primary superblock\n"
 msgstr ""
 
+#: ../repair/phase1.c:116
 msgid "would write modified primary superblock\n"
 msgstr ""
 
+#: ../repair/phase2.c:68
 #, c-format
 msgid ""
 "zero_log: cannot find log head/tail (xlog_find_tail=%d), zeroing it anyway\n"
 msgstr ""
 
+#: ../repair/phase2.c:73
 #, c-format
 msgid "zero_log: head block %lld tail block %lld\n"
 msgstr ""
 
+#: ../repair/phase2.c:79
 msgid ""
 "ALERT: The filesystem has valuable metadata changes in a log which is being\n"
 "destroyed because the -L option was used.\n"
 msgstr ""
 
+#: ../repair/phase2.c:83
 msgid ""
 "ERROR: The filesystem has valuable metadata changes in a log which needs to\n"
 "be replayed.  Mount the filesystem to replay the log, and unmount it before\n"
@@ -3414,1032 +4350,1305 @@ msgid ""
 "of the filesystem before doing this.\n"
 msgstr ""
 
+#: ../repair/phase2.c:125
 msgid ""
 "This filesystem has an external log.  Specify log device with the -l "
 "option.\n"
 msgstr ""
 
+#: ../repair/phase2.c:128
 #, c-format
 msgid "Phase 2 - using external log on %s\n"
 msgstr ""
 
+#: ../repair/phase2.c:130
 msgid "Phase 2 - using internal log\n"
 msgstr ""
 
+#: ../repair/phase2.c:134
 msgid "        - zero log...\n"
 msgstr ""
 
+#: ../repair/phase2.c:138
 msgid "        - scan filesystem freespace and inode maps...\n"
 msgstr ""
 
+#: ../repair/phase2.c:161
 msgid "root inode chunk not found\n"
 msgstr ""
 
+#: ../repair/phase2.c:183
 msgid "        - found root inode chunk\n"
 msgstr ""
 
+#: ../repair/phase2.c:189
 msgid "root inode marked free, "
 msgstr ""
 
+#: ../repair/phase2.c:198
 msgid "realtime bitmap inode marked free, "
 msgstr ""
 
+#: ../repair/phase2.c:207
 msgid "realtime summary inode marked free, "
 msgstr ""
 
+#: ../repair/phase3.c:127
 #, c-format
 msgid "cannot read agi block %lld for ag %u\n"
 msgstr ""
 
+#: ../repair/phase3.c:150
 #, c-format
 msgid "error following ag %d unlinked list\n"
 msgstr ""
 
+#: ../repair/phase3.c:165
 msgid "Phase 3 - for each AG...\n"
 msgstr ""
 
+#: ../repair/phase3.c:167
 msgid "        - scan and clear agi unlinked lists...\n"
 msgstr ""
 
+#: ../repair/phase3.c:169
 msgid "        - scan (but don't clear) agi unlinked lists...\n"
 msgstr ""
 
+#: ../repair/phase3.c:185
 msgid "        - process known inodes and perform inode discovery...\n"
 msgstr ""
 
+#: ../repair/phase3.c:188 ../repair/phase4.c:1327
 #, c-format
 msgid "        - agno = %d\n"
 msgstr ""
 
+#: ../repair/phase3.c:199
 msgid "        - process newly discovered inodes...\n"
 msgstr ""
 
+#: ../repair/phase4.c:142 ../repair/phase4.c:609
 #, c-format
 msgid "couldn't read %s inode %llu\n"
 msgstr ""
 
+#: ../repair/phase4.c:167 ../repair/phase4.c:351 ../repair/phase4.c:634
+#: ../repair/phase4.c:832
 #, c-format
 msgid "        - clearing existing \"%s\" inode\n"
 msgstr ""
 
+#: ../repair/phase4.c:199 ../repair/phase4.c:667
 #, c-format
 msgid "        - marking entry \"%s\" to be deleted\n"
 msgstr ""
 
+#: ../repair/phase4.c:227
 #, c-format
 msgid "couldn't map first leaf block of directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase4.c:256
 #, c-format
 msgid "bad magic # (0x%x) for directory leaf block (bno %u fsbno %llu)\n"
 msgstr ""
 
+#: ../repair/phase4.c:394 ../repair/phase4.c:875
 #, c-format
 msgid "could not read %s inode %llu\n"
 msgstr ""
 
+#: ../repair/phase4.c:445 ../repair/phase4.c:927
 #, c-format
 msgid "        - deleting existing \"%s\" entry\n"
 msgstr ""
 
+#: ../repair/phase4.c:699
 #, c-format
 msgid "malloc failed (%u bytes) in longform2_delete_orphanage, ino %llu\n"
 msgstr ""
 
+#: ../repair/phase4.c:743
 #, c-format
 msgid "bad magic # (0x%x) for directory data block (bno %u fsbno %llu)\n"
 msgstr ""
 
+#: ../repair/phase4.c:1003
 #, c-format
 msgid "could not read buffer for root inode %llu (daddr %lld, size %d)\n"
 msgstr ""
 
+#: ../repair/phase4.c:1049
 #, c-format
 msgid "unknown version #%d in root inode\n"
 msgstr ""
 
+#: ../repair/phase4.c:1153
 msgid "Phase 4 - check for duplicate blocks...\n"
 msgstr ""
 
+#: ../repair/phase4.c:1154
 msgid "        - setting up duplicate extent list...\n"
 msgstr ""
 
+#: ../repair/phase4.c:1166
 msgid "root inode would be lost\n"
 msgstr ""
 
+#: ../repair/phase4.c:1168
 msgid "root inode lost\n"
 msgstr ""
 
+#: ../repair/phase4.c:1176
 msgid "        - clear lost+found (if it exists) ...\n"
 msgstr ""
 
+#: ../repair/phase4.c:1197
 #, c-format
 msgid "unknown block state, ag %d, block %d\n"
 msgstr ""
 
+#: ../repair/phase4.c:1253
 #, c-format
 msgid "unknown rt extent state, extent %llu\n"
 msgstr ""
 
+#: ../repair/phase4.c:1316
 msgid "        - check for inodes claiming duplicate blocks...\n"
 msgstr ""
 
+#: ../repair/phase5.c:230
 msgid "could not set up btree block array\n"
 msgstr ""
 
+#: ../repair/phase5.c:242
 msgid "error - not enough free space in filesystem\n"
 msgstr ""
 
+#: ../repair/phase5.c:465
 #, c-format
 msgid "can't rebuild fs trees -- not enough free space on ag %u\n"
 msgstr ""
 
+#: ../repair/phase5.c:489
 #, c-format
 msgid "ag %u - not enough free space to build freespace btrees\n"
 msgstr ""
 
+#: ../repair/phase5.c:524
 #, c-format
 msgid "not enough free blocks left to describe all free blocks in AG %u\n"
 msgstr ""
 
+#: ../repair/phase5.c:1334
 #, c-format
 msgid "lost %d blocks in ag %u\n"
 msgstr ""
 
+#: ../repair/phase5.c:1337
 #, c-format
 msgid "thought we were going to lose %d blocks in ag %u, actually lost %d\n"
 msgstr ""
 
+#: ../repair/phase5.c:1385 ../repair/xfs_repair.c:586
 msgid "couldn't get superblock\n"
 msgstr ""
 
+#: ../repair/phase5.c:1439
 msgid "Phase 5 - rebuild AG headers and trees...\n"
 msgstr ""
 
+#: ../repair/phase5.c:1488
 #, c-format
 msgid "unable to rebuild AG %u.  Not enough free space in on-disk AG.\n"
 msgstr ""
 
+#: ../repair/phase5.c:1528
 #, c-format
 msgid "unable to rebuild AG %u.  No free space.\n"
 msgstr ""
 
+#: ../repair/phase5.c:1555
 #, c-format
 msgid "lost %d blocks in agno %d, sorry.\n"
 msgstr ""
 
+#: ../repair/phase5.c:1613
 msgid "        - generate realtime summary info and bitmap...\n"
 msgstr ""
 
+#: ../repair/phase5.c:1619
 msgid "        - reset superblock...\n"
 msgstr ""
 
+#: ../repair/phase6.c:102
 #, c-format
 msgid "malloc failed in dir_hash_add (%u bytes)\n"
 msgstr ""
 
+#: ../repair/phase6.c:138
 msgid "ok"
 msgstr ""
 
+#: ../repair/phase6.c:139
 msgid "duplicate leaf"
 msgstr ""
 
+#: ../repair/phase6.c:140
 msgid "hash value mismatch"
 msgstr ""
 
+#: ../repair/phase6.c:141
 msgid "no data entry"
 msgstr ""
 
+#: ../repair/phase6.c:142
 msgid "no leaf entry"
 msgstr ""
 
+#: ../repair/phase6.c:143
 msgid "bad stale count"
 msgstr ""
 
+#: ../repair/phase6.c:151
 #, c-format
 msgid "bad hash table for directory inode %llu (%s): "
 msgstr ""
 
+#: ../repair/phase6.c:154
 msgid "rebuilding\n"
 msgstr ""
 
+#: ../repair/phase6.c:156
 msgid "would rebuild\n"
 msgstr ""
 
+#: ../repair/phase6.c:190
 msgid "calloc failed in dir_hash_init\n"
 msgstr ""
 
+#: ../repair/phase6.c:322
 msgid "ran out of disk space!\n"
 msgstr ""
 
+#: ../repair/phase6.c:324
 #, c-format
 msgid "xfs_trans_reserve returned %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:353 ../repair/phase6.c:446
 #, c-format
 msgid "couldn't iget realtime bitmap inode -- error - %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:403
 #, c-format
 msgid "couldn't allocate realtime bitmap, error = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:416
 #, c-format
 msgid "allocation of the realtime bitmap failed, error = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:459
 #, c-format
 msgid "couldn't map realtime bitmap block %llu, error = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:472
 #, c-format
 msgid "can't access block %llu (fsbno %llu) of realtime bitmap inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:516 ../repair/phase6.c:588
 #, c-format
 msgid "couldn't iget realtime summary inode -- error - %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:529
 #, c-format
 msgid "couldn't map realtime summary inode block %llu, error = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:542
 #, c-format
 msgid "can't access block %llu (fsbno %llu) of realtime summary inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:644
 #, c-format
 msgid "couldn't allocate realtime summary inode, error = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:657
 #, c-format
 msgid "allocation of the realtime summary ino failed, error = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:684
 #, c-format
 msgid "could not iget root inode -- error - %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:752
 #, c-format
 msgid "%d - couldn't iget root inode to make %s\n"
 msgstr ""
 
+#: ../repair/phase6.c:759
 #, c-format
 msgid "%s inode allocation failed %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:779
 #, c-format
 msgid "can't make %s, createname error %d, will try later\n"
 msgstr ""
 
+#: ../repair/phase6.c:797
 #, c-format
 msgid "%s directory creation failed -- bmapf error %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:834
 #, c-format
 msgid "%d - couldn't iget orphanage inode\n"
 msgstr ""
 
+#: ../repair/phase6.c:839
 #, c-format
 msgid "%d - couldn't iget disconnected inode\n"
 msgstr ""
 
+#: ../repair/phase6.c:853 ../repair/phase6.c:892 ../repair/phase6.c:943
 #, c-format
 msgid "space reservation failed (%d), filesystem may be out of space\n"
 msgstr ""
 
+#: ../repair/phase6.c:864 ../repair/phase6.c:904 ../repair/phase6.c:953
 #, c-format
 msgid "name create failed in %s (%d), filesystem may be out of space\n"
 msgstr ""
 
+#: ../repair/phase6.c:873
 #, c-format
 msgid "creation of .. entry failed (%d), filesystem may be out of space\n"
 msgstr ""
 
+#: ../repair/phase6.c:881
 #, c-format
 msgid "bmap finish failed (err - %d), filesystem may be out of space\n"
 msgstr ""
 
+#: ../repair/phase6.c:919
 #, c-format
 msgid "name replace op failed (%d), filesystem may be out of space\n"
 msgstr ""
 
+#: ../repair/phase6.c:926 ../repair/phase6.c:962
 #, c-format
 msgid "bmap finish failed (%d), filesystem may be out of space\n"
 msgstr ""
 
+#: ../repair/phase6.c:1003 ../repair/phase6.c:1160 ../repair/phase6.c:1552
 msgid "dir"
 msgstr ""
 
+#: ../repair/phase6.c:1012 ../repair/phase6.c:1016
 #, c-format
 msgid "can't map block %d in %s inode %llu, xfs_bmapi returns %d, nmap = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:1024 ../repair/phase6.c:1027 ../repair/phase6.c:1631
+#: ../repair/phase6.c:1635
 #, c-format
 msgid "block %d in %s ino %llu doesn't exist\n"
 msgstr ""
 
+#: ../repair/phase6.c:1082 ../repair/phase6.c:1086
 #, c-format
 msgid "can't map block %d in %s ino %llu, xfs_bmapi returns %d, nmap = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:1094 ../repair/phase6.c:1098
 #, c-format
 msgid "block %d in %s inode %llu doesn't exist\n"
 msgstr ""
 
+#: ../repair/phase6.c:1178
 #, c-format
 msgid "can't read directory inode %llu (leaf) block %u (fsbno %llu)\n"
 msgstr ""
 
+#: ../repair/phase6.c:1220
 #, c-format
 msgid "can't map block %d in directory %llu, xfs_bmapi returns %d, nmap = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:1225
 #, c-format
 msgid "%s ino %llu block %d doesn't exist\n"
 msgstr ""
 
+#: ../repair/phase6.c:1280
 #, c-format
 msgid ""
 "couldn't remove bogus entry \"%s\" in\n"
 "\tdirectory inode %llu, errno = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:1416
 #, c-format
 msgid "entry \"%s\" in dir inode %llu points to non-existent inode, "
 msgstr ""
 
+#: ../repair/phase6.c:1422 ../repair/phase6.c:1984
 msgid "marking entry to be junked\n"
 msgstr ""
 
+#: ../repair/phase6.c:1424 ../repair/phase6.c:1986 ../repair/phase6.c:2899
+#: ../repair/phase6.c:3297
 msgid "would junk entry\n"
 msgstr ""
 
+#: ../repair/phase6.c:1444
 #, c-format
 msgid "entry \"%s\" in dir inode %llu points to free inode %llu"
 msgstr ""
 
+#: ../repair/phase6.c:1451 ../repair/phase6.c:2016
 msgid ", marking entry to be junked\n"
 msgstr ""
 
+#: ../repair/phase6.c:1458 ../repair/phase6.c:2022
 msgid ", would junk entry\n"
 msgstr ""
 
+#: ../repair/phase6.c:1486
 #, c-format
 msgid ""
 "entry \"%s\" in dir %llu points to an already connected dir inode %llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:1497
 #, c-format
 msgid ""
-"entry \"%s\" in dir ino %llu not consistent with .. value (%llu) in ino "
-"%llu,\n"
+"entry \"%s\" in dir ino %llu not consistent with .. value (%llu) in ino %"
+"llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:1510 ../repair/phase6.c:2074
 #, c-format
 msgid "\twill clear entry \"%s\"\n"
 msgstr ""
 
+#: ../repair/phase6.c:1513 ../repair/phase6.c:2077
 #, c-format
 msgid "\twould clear entry \"%s\"\n"
 msgstr ""
 
+#: ../repair/phase6.c:1557
 #, c-format
 msgid "cannot map block 0 of directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:1583
 #, c-format
 msgid "bad magic # (0x%x) for dir ino %llu leaf block (bno %u fsbno %llu)\n"
 msgstr ""
 
+#: ../repair/phase6.c:1619 ../repair/phase6.c:1623
 #, c-format
 msgid "can't map leaf block %d in dir %llu, xfs_bmapi returns %d, nmap = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:1685
 #, c-format
 msgid "shrink_inode failed inode %llu block %u\n"
 msgstr ""
 
+#: ../repair/phase6.c:1766
 #, c-format
 msgid "realloc failed in longform_dir2_entry_check_data (%u bytes)\n"
 msgstr ""
 
+#: ../repair/phase6.c:1826
 #, c-format
 msgid "empty data block %u in directory inode %llu: "
 msgstr ""
 
+#: ../repair/phase6.c:1829
 #, c-format
 msgid "corrupt block %u in directory inode %llu: "
 msgstr ""
 
+#: ../repair/phase6.c:1833
 msgid "junking block\n"
 msgstr ""
 
+#: ../repair/phase6.c:1836
 msgid "would junk block\n"
 msgstr ""
 
+#: ../repair/phase6.c:1860
 #, c-format
 msgid "bad directory block magic # %#x for directory inode %llu block %d: "
 msgstr ""
 
+#: ../repair/phase6.c:1864
 #, c-format
 msgid "fixing magic # to %#x\n"
 msgstr ""
 
+#: ../repair/phase6.c:1868
 #, c-format
 msgid "would fix magic # to %#x\n"
 msgstr ""
 
+#: ../repair/phase6.c:1889
 #, c-format
 msgid "directory inode %llu block %u has consecutive free entries: "
 msgstr ""
 
+#: ../repair/phase6.c:1893
 msgid "joining together\n"
 msgstr ""
 
+#: ../repair/phase6.c:1902
 msgid "would join together\n"
 msgstr ""
 
+#: ../repair/phase6.c:1978
 #, c-format
 msgid "entry \"%s\" in directory inode %llu points to non-existent inode, "
 msgstr ""
 
+#: ../repair/phase6.c:2007
 #, c-format
 msgid "entry \"%s\" in directory inode %llu points to free inode %llu"
 msgstr ""
 
+#: ../repair/phase6.c:2046
 #, c-format
 msgid ""
-"entry \"%s\" in dir %llu points to an already connected directory inode "
-"%llu,\n"
+"entry \"%s\" in dir %llu points to an already connected directory inode %"
+"llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:2060
 #, c-format
 msgid ""
-"entry \"%s\" in dir inode %llu inconsistent with .. value (%llu) in ino "
-"%llu,\n"
+"entry \"%s\" in dir inode %llu inconsistent with .. value (%llu) in ino %"
+"llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:2132 ../repair/phase6.c:2212
 #, c-format
 msgid "leaf block %u for directory inode %llu bad header\n"
 msgstr ""
 
+#: ../repair/phase6.c:2150
 #, c-format
 msgid "leaf block %u for directory inode %llu bad tail\n"
 msgstr ""
 
+#: ../repair/phase6.c:2201
 #, c-format
 msgid "unknown magic number %#x for block %u in directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2248
 #, c-format
 msgid "free block %u for directory inode %llu bad header\n"
 msgstr ""
 
+#: ../repair/phase6.c:2261
 #, c-format
 msgid "free block %u entry %i for directory ino %llu bad\n"
 msgstr ""
 
+#: ../repair/phase6.c:2270
 #, c-format
 msgid "free block %u for directory inode %llu bad nused\n"
 msgstr ""
 
+#: ../repair/phase6.c:2280
 #, c-format
 msgid "missing freetab entry %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2375
 #, c-format
 msgid "can't add btree block to directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2408
 #, c-format
 msgid "can't add free block to directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2485
 #, c-format
 msgid "malloc failed in longform_dir2_rebuild_data (%u bytes)\n"
 msgstr ""
 
+#: ../repair/phase6.c:2629
 #, c-format
 msgid "rebuilding directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2639
 #, c-format
 msgid "can't get block %u for directory inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2699
 #, c-format
 msgid "malloc failed in longform_dir2_entry_check (%u bytes)\n"
 msgstr ""
 
+#: ../repair/phase6.c:2811
 #, c-format
 msgid "shortform dir inode %llu has null data entries \n"
 msgstr ""
 
+#: ../repair/phase6.c:2897
 #, c-format
 msgid "entry \"%s\" in shortform dir %llu references non-existent ino %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2919
 #, c-format
 msgid "entry \"%s\" in shortform dir inode %llu points to free inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:2925 ../repair/phase6.c:3004 ../repair/phase6.c:3324
+#: ../repair/phase6.c:3400
 #, c-format
 msgid "would junk entry \"%s\"\n"
 msgstr ""
 
+#: ../repair/phase6.c:2950
 #, c-format
 msgid "entry \"%s\" in dir %llu references already connected dir ino %llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:2962
 #, c-format
 msgid ""
-"entry \"%s\" in dir %llu not consistent with .. value (%llu) in dir ino "
-"%llu,\n"
+"entry \"%s\" in dir %llu not consistent with .. value (%llu) in dir ino %"
+"llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:3043 ../repair/phase6.c:3138 ../repair/phase6.c:3455
 #, c-format
 msgid "setting size to %lld bytes to reflect junked entries\n"
 msgstr ""
 
+#: ../repair/phase6.c:3294
 #, c-format
 msgid ""
 "entry \"%s\" in shortform directory %llu references non-existent inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:3316
 #, c-format
 msgid ""
 "entry \"%s\" in shortform directory inode %llu points to free inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:3343
 #, c-format
 msgid ""
-"entry \"%s\" in directory inode %llu references already connected inode "
-"%llu,\n"
+"entry \"%s\" in directory inode %llu references already connected inode %"
+"llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:3356
 #, c-format
 msgid ""
 "entry \"%s\" in directory inode %llu not consistent with .. value (%llu) in "
 "inode %llu,\n"
 msgstr ""
 
+#: ../repair/phase6.c:3424
 #, c-format
 msgid "would fix i8count in inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:3436
 #, c-format
 msgid "fixing i8count in inode %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:3499 ../repair/phase6.c:3503 ../repair/phase7.c:132
 #, c-format
 msgid "couldn't map inode %llu, err = %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:3625
 #, c-format
 msgid "re-entering %s into root directory\n"
 msgstr ""
 
+#: ../repair/phase6.c:3642
 #, c-format
 msgid "can't make %s entry in root inode %llu, createname error %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:3667
 msgid "recreating root directory .. entry\n"
 msgstr ""
 
+#: ../repair/phase6.c:3690
 #, c-format
 msgid "can't make \"..\" entry in root inode %llu, createname error %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:3703
 msgid "would recreate root directory .. entry\n"
 msgstr ""
 
+#: ../repair/phase6.c:3782
 #, c-format
 msgid "would create missing \".\" entry in dir ino %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:3789
 #, c-format
 msgid "creating missing \".\" entry in dir ino %llu\n"
 msgstr ""
 
+#: ../repair/phase6.c:3814
 #, c-format
 msgid "can't make \".\" entry in dir ino %llu, createname error %d\n"
 msgstr ""
 
+#: ../repair/phase6.c:3894
 msgid "Phase 6 - check inode connectivity...\n"
 msgstr ""
 
+#: ../repair/phase6.c:3913
 msgid "reinitializing root directory\n"
 msgstr ""
 
+#: ../repair/phase6.c:3918
 msgid "would reinitialize root directory\n"
 msgstr ""
 
+#: ../repair/phase6.c:3924
 msgid "reinitializing realtime bitmap inode\n"
 msgstr ""
 
+#: ../repair/phase6.c:3928
 msgid "would reinitialize realtime bitmap inode\n"
 msgstr ""
 
+#: ../repair/phase6.c:3934
 msgid "reinitializing realtime summary inode\n"
 msgstr ""
 
+#: ../repair/phase6.c:3938
 msgid "would reinitialize realtime summary inode\n"
 msgstr ""
 
+#: ../repair/phase6.c:3944
 msgid "        - resetting contents of realtime bitmap and summary inodes\n"
 msgstr ""
 
+#: ../repair/phase6.c:3947 ../repair/phase6.c:3952
 msgid "Warning:  realtime bitmap may be inconsistent\n"
 msgstr ""
 
+#: ../repair/phase6.c:3960
 #, c-format
 msgid "        - ensuring existence of %s directory\n"
 msgstr ""
 
+#: ../repair/phase6.c:3973
 msgid "        - traversing filesystem starting at / ... \n"
 msgstr ""
 
+#: ../repair/phase6.c:3978
 msgid "        - traversal finished ... \n"
 msgstr ""
 
+#: ../repair/phase6.c:3983
 msgid "        - root inode lost, cannot make new one in no modify mode ... \n"
 msgstr ""
 
+#: ../repair/phase6.c:3985
 msgid "        - skipping filesystem traversal from / ... \n"
 msgstr ""
 
+#: ../repair/phase6.c:3988
 msgid "        - traversing all unattached subtrees ... \n"
 msgstr ""
 
+#: ../repair/phase6.c:4039
 msgid "        - traversals finished ... \n"
 msgstr ""
 
+#: ../repair/phase6.c:4040
 msgid "        - moving disconnected inodes to lost+found ... \n"
 msgstr ""
 
+#: ../repair/phase6.c:4064
 #, c-format
 msgid "disconnected dir inode %llu, "
 msgstr ""
 
+#: ../repair/phase6.c:4068
 #, c-format
 msgid "disconnected inode %llu, "
 msgstr ""
 
+#: ../repair/phase6.c:4071
 #, c-format
 msgid "moving to %s\n"
 msgstr ""
 
+#: ../repair/phase6.c:4077
 #, c-format
 msgid "would move to %s\n"
 msgstr ""
 
+#: ../repair/phase7.c:54
 #, c-format
 msgid "resetting inode %llu nlinks from %d to %d\n"
 msgstr ""
 
+#: ../repair/phase7.c:61
 #, c-format
 msgid ""
 "nlinks %d will overflow v1 ino, ino %llu will be converted to version 2\n"
 msgstr ""
 
+#: ../repair/phase7.c:70
 #, c-format
 msgid "would have reset inode %llu nlinks from %d to %d\n"
 msgstr ""
 
+#: ../repair/phase7.c:90
 msgid "Phase 7 - verify and correct link counts...\n"
 msgstr ""
 
+#: ../repair/phase7.c:92
 msgid "Phase 7 - verify link counts...\n"
 msgstr ""
 
+#: ../repair/phase7.c:136
 #, c-format
 msgid "couldn't map inode %llu, err = %d, can't compare link counts\n"
 msgstr ""
 
+#: ../repair/rt.c:61
 msgid "couldn't allocate memory for incore realtime bitmap.\n"
 msgstr ""
 
+#: ../repair/rt.c:65
 msgid "couldn't allocate memory for incore realtime summary info.\n"
 msgstr ""
 
+#: ../repair/rt.c:165
 #, c-format
 msgid "rt summary mismatch, size %d block %llu, file: %d, computed: %d\n"
 msgstr ""
 
+#: ../repair/rt.c:216
 #, c-format
 msgid "can't find block %d for rtbitmap inode\n"
 msgstr ""
 
+#: ../repair/rt.c:224
 #, c-format
 msgid "can't read block %d for rtbitmap inode\n"
 msgstr ""
 
+#: ../repair/rt.c:278
 #, c-format
 msgid "block %d for rtsummary inode is missing\n"
 msgstr ""
 
+#: ../repair/rt.c:286
 #, c-format
 msgid "can't read block %d for rtsummary inode\n"
 msgstr ""
 
+#: ../repair/sb.c:111
 msgid ""
 "\n"
 "attempting to find secondary superblock...\n"
 msgstr ""
 
+#: ../repair/sb.c:116
 msgid "error finding secondary superblock -- failed to memalign buffer\n"
 msgstr ""
 
+#: ../repair/sb.c:154
 msgid "found candidate secondary superblock...\n"
 msgstr ""
 
+#: ../repair/sb.c:166
 msgid "verified secondary superblock...\n"
 msgstr ""
 
+#: ../repair/sb.c:171
 msgid "unable to verify superblock, continuing...\n"
 msgstr ""
 
+#: ../repair/sb.c:433
 msgid "failed to malloc superblock buffer\n"
 msgstr ""
 
+#: ../repair/sb.c:439
 msgid "couldn't seek to offset 0 in filesystem\n"
 msgstr ""
 
+#: ../repair/sb.c:446
 msgid "primary superblock write failed!\n"
 msgstr ""
 
+#: ../repair/sb.c:463
 #, c-format
 msgid "error reading superblock %u -- failed to malloc buffer\n"
 msgstr ""
 
+#: ../repair/sb.c:472
 #, c-format
 msgid "error reading superblock %u -- seek to offset %lld failed\n"
 msgstr ""
 
+#: ../repair/sb.c:480
 #, c-format
 msgid "superblock read failed, offset %lld, size %d, ag %u, rval %d\n"
 msgstr ""
 
+#: ../repair/sb.c:553
 msgid "couldn't malloc geometry structure\n"
 msgstr ""
 
+#: ../repair/sb.c:698
 msgid "calloc failed in verify_set_primary_sb\n"
 msgstr ""
 
+#: ../repair/sb.c:766
 msgid "Only two AGs detected and they do not match - cannot proceed.\n"
 msgstr ""
 
+#: ../repair/sb.c:778
 msgid "Only one AG detected - cannot proceed.\n"
 msgstr ""
 
+#: ../repair/sb.c:790
 msgid "Not enough matching superblocks - cannot proceed.\n"
 msgstr ""
 
+#: ../repair/sb.c:805
 msgid "could not read superblock\n"
 msgstr ""
 
+#: ../repair/scan.c:81 ../repair/scan.c:126
 #, c-format
 msgid "can't read btree block %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:185
 #, c-format
 msgid "bad magic # %#x in inode %llu (%s fork) bmbt block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:192
 #, c-format
 msgid "expected level %d got %d in inode %llu, (%s fork) bmbt block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:212
 #, c-format
 msgid ""
 "bad fwd (right) sibling pointer (saw %llu parent block says %llu)\n"
 "\tin inode %llu (%s fork) bmap btree block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:222
 #, c-format
 msgid ""
 "bad back (left) sibling pointer (saw %llu parent block says %llu)\n"
 "\tin inode %llu (%s fork) bmap btree block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:238
 #, c-format
 msgid ""
 "bad back (left) sibling pointer (saw %llu should be NULL (0))\n"
 "\tin inode %llu (%s fork) bmap btree block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:274 ../repair/scan.c:282
 #, c-format
 msgid "inode 0x%llx bmap block 0x%llx claimed, state is %d\n"
 msgstr ""
 
+#: ../repair/scan.c:298
 #, c-format
 msgid "bad state %d, inode 0x%llx bmap block 0x%llx\n"
 msgstr ""
 
+#: ../repair/scan.c:324 ../repair/scan.c:379
 #, c-format
 msgid "inode 0x%llx bad # of bmap records (%u, min - %u, max - %u)\n"
 msgstr ""
 
+#: ../repair/scan.c:358
 #, c-format
 msgid ""
 "out-of-order bmap key (file offset) in inode %llu, %s fork, fsbno %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:427
 #, c-format
 msgid ""
 "correcting bt key (was %llu, now %llu) in inode %llu\n"
 "\t\t%s fork, btree block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:439
 #, c-format
 msgid ""
 "bad btree key (is %llu, should be %llu) in inode %llu\n"
 "\t\t%s fork, btree block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:457
 #, c-format
 msgid ""
 "bad fwd (right) sibling pointer (saw %llu should be NULLDFSBNO)\n"
 "\tin inode %llu (%s fork) bmap btree block %llu\n"
 msgstr ""
 
+#: ../repair/scan.c:499
 #, c-format
 msgid "bad magic # %#x in btbno block %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:506
 #, c-format
 msgid "expected level %d got %d in btbno block %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:526
 #, c-format
 msgid ""
 "bno freespace btree block claimed (state %d), agno %d, bno %d, suspect %d\n"
 msgstr ""
 
+#: ../repair/scan.c:575
 #, c-format
 msgid "block (%d,%d) multiply claimed by bno space tree, state - %d\n"
 msgstr ""
 
+#: ../repair/scan.c:655
 #, c-format
 msgid "bad magic # %#x in btcnt block %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:662
 #, c-format
 msgid "expected level %d got %d in btcnt block %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:682
 #, c-format
 msgid ""
 "bcnt freespace btree block claimed (state %d), agno %d, bno %d, suspect %d\n"
 msgstr ""
 
+#: ../repair/scan.c:740
 #, c-format
 msgid "block (%d,%d) already used, state %d\n"
 msgstr ""
 
+#: ../repair/scan.c:832
 #, c-format
 msgid "bad magic # %#x in inobt block %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:840
 #, c-format
 msgid "expected level %d got %d in inobt block %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:864
 #, c-format
 msgid "inode btree block claimed (state %d), agno %d, bno %d, suspect %d\n"
 msgstr ""
 
+#: ../repair/scan.c:889
 #, c-format
 msgid "dubious inode btree block header %d/%d\n"
 msgstr ""
 
+#: ../repair/scan.c:927
 #, c-format
 msgid "badly aligned inode rec (starting inode = %llu)\n"
 msgstr ""
 
+#: ../repair/scan.c:943
 #, c-format
 msgid "bad starting inode # (%llu (0x%x 0x%x)) in ino rec, skipping rec\n"
 msgstr ""
 
+#: ../repair/scan.c:952
 #, c-format
 msgid "bad ending inode # (%llu (0x%x 0x%x)) in ino rec, skipping rec\n"
 msgstr ""
 
+#: ../repair/scan.c:981
 #, c-format
 msgid ""
 "inode chunk claims used block, inobt block - agno %d, bno %d, inopb %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1006
 #, c-format
 msgid "inode rec for ino %llu (%d/%d) overlaps existing rec (start %d/%d)\n"
 msgstr ""
 
+#: ../repair/scan.c:1062
 #, c-format
 msgid "ir_freecount/free mismatch, inode chunk %d/%d, freecount %d nfree %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1134
 #, c-format
 msgid "can't read agfl block for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1148
 #, c-format
 msgid "bad agbno %u in agfl, agno %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1157
 #, c-format
 msgid "freeblk count %d != flcount %d in ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1189
 #, c-format
 msgid "can't get root superblock for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1195
 msgid "can't allocate memory for superblock\n"
 msgstr ""
 
+#: ../repair/scan.c:1206
 #, c-format
 msgid "can't read agf block for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1217
 #, c-format
 msgid "can't read agi block for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1241
 #, c-format
 msgid "reset bad sb for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1244
 #, c-format
 msgid "would reset bad sb for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1249
 #, c-format
 msgid "reset bad agf for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1252
 #, c-format
 msgid "would reset bad agf for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1257
 #, c-format
 msgid "reset bad agi for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1260
 #, c-format
 msgid "would reset bad agi for ag %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1270
 #, c-format
 msgid "bad uncorrected agheader %d, skipping ag...\n"
 msgstr ""
 
+#: ../repair/scan.c:1286
 #, c-format
 msgid "bad agbno %u for btbno root, agno %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1298
 #, c-format
 msgid "bad agbno %u for btbcnt root, agno %d\n"
 msgstr ""
 
+#: ../repair/scan.c:1309
 #, c-format
 msgid "bad agbno %u for inobt root, agno %d\n"
 msgstr ""
 
+#: ../repair/versions.c:88
 #, c-format
 msgid "bogus quota flags 0x%x set in superblock"
 msgstr ""
 
+#: ../repair/versions.c:100
 msgid ", bogus flags will be cleared\n"
 msgstr ""
 
+#: ../repair/versions.c:102
 msgid ", bogus flags would be cleared\n"
 msgstr ""
 
+#: ../repair/versions.c:158
 msgid "This filesystem has uninitialized extent flags.\n"
 msgstr ""
 
+#: ../repair/versions.c:166
 msgid "This filesystem is marked shared.\n"
 msgstr ""
 
+#: ../repair/versions.c:172
 msgid ""
 "This filesystem uses feature(s) not yet supported in this release.\n"
 "Please run a more recent version of xfs_repair.\n"
 msgstr ""
 
+#: ../repair/versions.c:178
 #, c-format
 msgid "WARNING:  unknown superblock version %d\n"
 msgstr ""
 
+#: ../repair/versions.c:181
 msgid "This filesystem contains features not understood by this program.\n"
 msgstr ""
 
+#: ../repair/versions.c:189
 msgid ""
 "WARNING:  you have disallowed superblock-feature-bits-allowed\n"
 "\tbut this superblock has feature bits.  The superblock\n"
 "\twill be downgraded.  This may cause loss of filesystem meta-data\n"
 msgstr ""
 
+#: ../repair/versions.c:194
 msgid ""
 "WARNING:  you have disallowed superblock-feature-bits-allowed\n"
 "\tbut this superblock has feature bits.  The superblock\n"
@@ -4447,18 +5656,21 @@ msgid ""
 "\tmeta-data.\n"
 msgstr ""
 
+#: ../repair/versions.c:208
 msgid ""
 "WARNING:  you have disallowed attributes but this filesystem\n"
 "\thas attributes.  The filesystem will be downgraded and\n"
 "\tall attributes will be removed.\n"
 msgstr ""
 
+#: ../repair/versions.c:213
 msgid ""
 "WARNING:  you have disallowed attributes but this filesystem\n"
 "\thas attributes.  The filesystem would be downgraded and\n"
 "\tall attributes would be removed.\n"
 msgstr ""
 
+#: ../repair/versions.c:226
 msgid ""
 "WARNING:  you have disallowed version 2 inodes but this filesystem\n"
 "\thas version 2 inodes.  The filesystem will be downgraded and\n"
@@ -4466,6 +5678,7 @@ msgid ""
 "\tThis may cause some hard links to files to be destroyed\n"
 msgstr ""
 
+#: ../repair/versions.c:232
 msgid ""
 "WARNING:  you have disallowed version 2 inodes but this filesystem\n"
 "\thas version 2 inodes.  The filesystem would be downgraded and\n"
@@ -4473,285 +5686,357 @@ msgid ""
 "\tThis might cause some hard links to files to be destroyed\n"
 msgstr ""
 
+#: ../repair/versions.c:246
 msgid ""
 "WARNING:  you have disallowed quotas but this filesystem\n"
 "\thas quotas.  The filesystem will be downgraded and\n"
 "\tall quota information will be removed.\n"
 msgstr ""
 
+#: ../repair/versions.c:251
 msgid ""
 "WARNING:  you have disallowed quotas but this filesystem\n"
 "\thas quotas.  The filesystem would be downgraded and\n"
 "\tall quota information would be removed.\n"
 msgstr ""
 
+#: ../repair/versions.c:275
 msgid ""
 "WARNING:  you have disallowed aligned inodes but this filesystem\n"
 "\thas aligned inodes.  The filesystem will be downgraded.\n"
 "\tThis will permanently degrade the performance of this filesystem.\n"
 msgstr ""
 
+#: ../repair/versions.c:280
 msgid ""
 "WARNING:  you have disallowed aligned inodes but this filesystem\n"
 "\thas aligned inodes.  The filesystem would be downgraded.\n"
 "\tThis would permanently degrade the performance of this filesystem.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:76
 #, c-format
 msgid "Usage: %s [-nLvV] [-o subopt[=value]] [-l logdev] [-r rtdev] devname\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:88
 msgid "no error"
 msgstr ""
 
+#: ../repair/xfs_repair.c:89
 msgid "bad magic number"
 msgstr ""
 
+#: ../repair/xfs_repair.c:90
 msgid "bad blocksize field"
 msgstr ""
 
+#: ../repair/xfs_repair.c:91
 msgid "bad blocksize log field"
 msgstr ""
 
+#: ../repair/xfs_repair.c:92
 msgid "bad version number"
 msgstr ""
 
+#: ../repair/xfs_repair.c:94
 msgid "filesystem mkfs-in-progress bit set"
 msgstr ""
 
+#: ../repair/xfs_repair.c:96
 msgid "inconsistent filesystem geometry information"
 msgstr ""
 
+#: ../repair/xfs_repair.c:98
 msgid "bad inode size or inconsistent with number of inodes/block"
 msgstr ""
 
+#: ../repair/xfs_repair.c:99
 msgid "bad sector size"
 msgstr ""
 
+#: ../repair/xfs_repair.c:101
 msgid "AGF geometry info conflicts with filesystem geometry"
 msgstr ""
 
+#: ../repair/xfs_repair.c:103
 msgid "AGI geometry info conflicts with filesystem geometry"
 msgstr ""
 
+#: ../repair/xfs_repair.c:105
 msgid "AG superblock geometry info conflicts with filesystem geometry"
 msgstr ""
 
+#: ../repair/xfs_repair.c:106
 msgid "attempted to perform I/O beyond EOF"
 msgstr ""
 
+#: ../repair/xfs_repair.c:108
 msgid "inconsistent filesystem geometry in realtime filesystem component"
 msgstr ""
 
-#, c-format
+#: ../repair/xfs_repair.c:110
 msgid "maximum indicated percentage of inodes > 100%"
 msgstr ""
 
+#: ../repair/xfs_repair.c:112
 msgid "inconsistent inode alignment value"
 msgstr ""
 
+#: ../repair/xfs_repair.c:114
 msgid "not enough secondary superblocks with matching geometry"
 msgstr ""
 
+#: ../repair/xfs_repair.c:116
 msgid "bad stripe unit in superblock"
 msgstr ""
 
+#: ../repair/xfs_repair.c:118
 msgid "bad stripe width in superblock"
 msgstr ""
 
+#: ../repair/xfs_repair.c:120
 msgid "bad shared version number in superblock"
 msgstr ""
 
+#: ../repair/xfs_repair.c:125
 #, c-format
 msgid "bad error code - %d\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:133
 #, c-format
 msgid "-%c %s option cannot have a value\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:279
 msgid ""
 "\n"
 "fatal error -- "
 msgstr ""
 
+#: ../repair/xfs_repair.c:368
 #, c-format
 msgid "sb root inode value %llu %sinconsistent with calculated value %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:375
 #, c-format
 msgid "resetting superblock root inode pointer to %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:379
 #, c-format
 msgid "would reset superblock root inode pointer to %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:391
 #, c-format
 msgid ""
 "sb realtime bitmap inode %llu %sinconsistent with calculated value %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:398
 #, c-format
 msgid "resetting superblock realtime bitmap ino pointer to %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:402
 #, c-format
 msgid "would reset superblock realtime bitmap ino pointer to %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:414
 #, c-format
 msgid ""
 "sb realtime summary inode %llu %sinconsistent with calculated value %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:421
 #, c-format
 msgid "resetting superblock realtime summary ino pointer to %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:425
 #, c-format
 msgid "would reset superblock realtime summary ino pointer to %lu\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:461
 msgid ""
 "Primary superblock would have been modified.\n"
 "Cannot proceed further in no_modify mode.\n"
 "Exiting now.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:477
 #, c-format
 msgid "%s: cannot repair this filesystem.  Sorry.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:504
 msgid "Found unsupported filesystem features.  Exiting now.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:517
 msgid "No modify flag set, skipping phase 5\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:527
 msgid "Inode allocation btrees are too corrupted, skipping phases 6 and 7\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:533
 msgid "Warning:  no quota inodes were found.  Quotas disabled.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:536
 msgid "Warning:  no quota inodes were found.  Quotas would be disabled.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:541
 msgid "Warning:  quota inodes were cleared.  Quotas disabled.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:544
 msgid "Warning:  quota inodes would be cleared.  Quotas would be disabled.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:550
 msgid ""
 "Warning:  user quota information was cleared.\n"
 "User quotas can not be enforced until limit information is recreated.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:554
 msgid ""
 "Warning:  user quota information would be cleared.\n"
 "User quotas could not be enforced until limit information was recreated.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:562
 msgid ""
 "Warning:  group quota information was cleared.\n"
 "Group quotas can not be enforced until limit information is recreated.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:566
 msgid ""
 "Warning:  group quota information would be cleared.\n"
 "Group quotas could not be enforced until limit information was recreated.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:574
 msgid "No modify flag set, skipping filesystem flush and exiting.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:592
 msgid "Note - quota info will be regenerated on next quota mount.\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:598
 #, c-format
 msgid ""
 "Note - stripe unit (%d) and width (%d) fields have been reset.\n"
 "Please set with mount -o sunit=<value>,swidth=<value>\n"
 msgstr ""
 
+#: ../repair/xfs_repair.c:614
 msgid "done\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:44
 #, c-format
 msgid "%s [-e extsize] [-p] source target\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:85
 #, c-format
 msgid "%s: must specify files to copy\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:100
 #, c-format
 msgid "%s: stat64 of %s failed\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:107
 #, c-format
 msgid "%s: final argument is not directory\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:154
 #, c-format
 msgid "%s: failed stat64 on %s: %s\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:175
 #, c-format
 msgid "%s: %s filesystem has no realtime partition\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:196 ../rtcp/xfs_rtcp.c:224
 #, c-format
 msgid "%s: open of %s failed: %s\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:213
 #, c-format
 msgid "%s: set attributes on %s failed: %s\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:231
 #, c-format
 msgid "%s: get attributes of %s failed: %s\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:241 ../rtcp/xfs_rtcp.c:276
 #, c-format
 msgid "%s: %s is not a realtime file.\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:250
 #, c-format
 msgid "%s: %s file extent size is %d, instead of %d.\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:262 ../rtcp/xfs_rtcp.c:285
 #, c-format
 msgid "%s: open of %s source failed: %s\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:299
 #, c-format
 msgid "%s: couldn't get direct I/O information: %s\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:309
 #, c-format
 msgid "%s: extent size %d not a multiple of %d.\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:323
 #, c-format
 msgid "The size of %s is not a multiple of %d.\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:326
 #, c-format
 msgid "%s will be padded to %lld bytes.\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:332
 #, c-format
 msgid ""
 "Use the -p option to pad %s to a size which is a multiple of %d bytes.\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:374
 #, c-format
 msgid "%s: write error: %s\n"
 msgstr ""
 
+#: ../rtcp/xfs_rtcp.c:402
 #, c-format
 msgid "%s: could not open %s: %s\n"
 msgstr ""