From: Nathan Scott Date: Wed, 5 Jul 2006 03:55:57 +0000 (+0000) Subject: Update xfsprogs package to better integrate into the Ubuntu localisation up-to-dated... X-Git-Tag: v2.9.0~68 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1b758ea9dfda93adf36182d1572bb34026f1ddbe;p=thirdparty%2Fxfsprogs-dev.git Update xfsprogs package to better integrate into the Ubuntu localisation up-to-dated-ness tracking system (Rosetta). Merge of master-melb:xfs-cmds:26421a by kenmcd. --- diff --git a/VERSION b/VERSION index 531d0b5ba..ceff3e1e8 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=2 PKG_MINOR=8 -PKG_REVISION=4 +PKG_REVISION=5 PKG_BUILD=1 diff --git a/aclocal.m4 b/aclocal.m4 index 4ea73f5b7..464376366 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.8.3 -*- Autoconf -*- +# generated automatically by aclocal 1.9.6 -*- Autoconf -*- -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -331,7 +331,7 @@ AC_DEFUN([AC_SIZEOF_POINTERS_AND_LONG], # # Check for specified utility (env var) - if unset, fail. -# +# AC_DEFUN([AC_PACKAGE_NEED_UTILITY], [ if test -z "$2"; then echo @@ -345,7 +345,7 @@ AC_DEFUN([AC_PACKAGE_NEED_UTILITY], # Generic macro, sets up all of the global build variables. # The following environment variables may be set to override defaults: # CC MAKE LIBTOOL TAR ZIP MAKEDEPEND AWK SED ECHO SORT -# MSGFMT MSGMERGE RPM +# MSGFMT MSGMERGE XGETTEXT RPM # AC_DEFUN([AC_PACKAGE_UTILITIES], [ AC_PROG_CC @@ -432,6 +432,13 @@ AC_DEFUN([AC_PACKAGE_UTILITIES], msgmerge=$MSGMERGE AC_SUBST(msgmerge) AC_PACKAGE_NEED_UTILITY($1, "$msgmerge", msgmerge, gettext) + + if test -z "$XGETTEXT"; then + AC_PATH_PROG(XGETTEXT, xgettext,, /usr/bin:/usr/local/bin:/usr/freeware/bin) + fi + xgettext=$XGETTEXT + AC_SUBST(xgettext) + AC_PACKAGE_NEED_UTILITY($1, "$xgettext", xgettext, gettext) fi if test -z "$RPM"; then diff --git a/debian/changelog b/debian/changelog index 0c64155a2..eec55d51a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xfsprogs (2.8.5-1) unstable; urgency=low + + * New upstream release. + + -- Nathan Scott Wed, 05 Jul 2006 09:10:23 +1000 + xfsprogs (2.8.4-1) unstable; urgency=low * New upstream release. diff --git a/doc/CHANGES b/doc/CHANGES index bdfe64741..4088c8f14 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,10 @@ +xfsprogs-2.8.5 (05 July 2006) + - Update translation Makefile to work better with the Ubuntu + translation system. Thanks to feedback from Martin Pitt. + - Fix annoying "ignores datarootdir" warning from configure. + - Fix issues with makedepend build infrastructure. + - Add prefetch code for improved xfs_repair run times. + xfsprogs-2.8.4 (23 June 2006) - Improve Debian udeb package handling, thanks to Frans Pop. - Fix a situation where xfs_growfs can fail to match a block diff --git a/include/builddefs.in b/include/builddefs.in index 7079d80f0..10911a11b 100644 --- a/include/builddefs.in +++ b/include/builddefs.in @@ -41,6 +41,7 @@ DK_INC_DIR = @includedir@/disk prefix = @prefix@ exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ PKG_NAME = @pkg_name@ PKG_USER = @pkg_user@ @@ -72,6 +73,7 @@ MAKEDEPEND = @makedepend@ MSGFMT = @msgfmt@ MSGMERGE = @msgmerge@ +XGETTEXT = @xgettext@ RPM = @rpm@ RPMBUILD = @rpmbuild@ diff --git a/include/buildrules b/include/buildrules index f72128310..41aaef5c8 100644 --- a/include/buildrules +++ b/include/buildrules @@ -35,15 +35,15 @@ $(LTLIBRARY) : $(SUBDIRS) $(LTOBJECTS) $(LTCOMPILE) -c $< endif -ifdef LINGUAS +ifdef POTHEAD %.pot: $(XGETTEXTFILES) - xgettext --omit-header --language=C --keyword=_ -o $@ $(XGETTEXTFILES) + $(XGETTEXT) --language=C --keyword=_ -o $@ $(XGETTEXTFILES) -%.po: - $(MSGMERGE) -o $@.tmpo $@ $(PKG_NAME).pot - @if ! diff $@.tmpo $@ >/dev/null; then \ - echo "$@ is out of date, see $@.tmpo"; \ - fi +# Generate temp .po files, to check whether translations need updating. +# Not by default, due to gettext output differences between versions. +%.po: $(POTHEAD) +# $(MSGMERGE) -o $@.tmpo $@ $(POTHEAD) +# if ! diff $@.tmpo $@ >/dev/null; then echo "$@ dated, see $@.tmpo"; fi %.mo: %.po $(MSGFMT) -o $@ $< diff --git a/m4/package_utilies.m4 b/m4/package_utilies.m4 index c034a7c6c..fa66f9514 100644 --- a/m4/package_utilies.m4 +++ b/m4/package_utilies.m4 @@ -1,6 +1,6 @@ # # Check for specified utility (env var) - if unset, fail. -# +# AC_DEFUN([AC_PACKAGE_NEED_UTILITY], [ if test -z "$2"; then echo @@ -14,7 +14,7 @@ AC_DEFUN([AC_PACKAGE_NEED_UTILITY], # Generic macro, sets up all of the global build variables. # The following environment variables may be set to override defaults: # CC MAKE LIBTOOL TAR ZIP MAKEDEPEND AWK SED ECHO SORT -# MSGFMT MSGMERGE RPM +# MSGFMT MSGMERGE XGETTEXT RPM # AC_DEFUN([AC_PACKAGE_UTILITIES], [ AC_PROG_CC @@ -101,6 +101,13 @@ AC_DEFUN([AC_PACKAGE_UTILITIES], msgmerge=$MSGMERGE AC_SUBST(msgmerge) AC_PACKAGE_NEED_UTILITY($1, "$msgmerge", msgmerge, gettext) + + if test -z "$XGETTEXT"; then + AC_PATH_PROG(XGETTEXT, xgettext,, /usr/bin:/usr/local/bin:/usr/freeware/bin) + fi + xgettext=$XGETTEXT + AC_SUBST(xgettext) + AC_PACKAGE_NEED_UTILITY($1, "$xgettext", xgettext, gettext) fi if test -z "$RPM"; then diff --git a/po/Makefile b/po/Makefile index 7ca76f5d8..ae932045d 100644 --- a/po/Makefile +++ b/po/Makefile @@ -5,8 +5,10 @@ TOPDIR = .. include $(TOPDIR)/include/builddefs +POTHEAD = $(PKG_NAME).pot LINGUAS = pl -LSRCFILES = $(LINGUAS:%=%.po) $(PKG_NAME).pot +LSRCFILES = $(LINGUAS:%=%.po) $(POTHEAD) +LDIRT = $(POTHEAD) # TODO: db/ logprint/ XGETTEXTFILES = \ @@ -98,7 +100,7 @@ XGETTEXTFILES = \ $(TOPDIR)/repair/xfs_repair.c \ $(TOPDIR)/rtcp/xfs_rtcp.c -default: $(LINGUAS:%=%.mo) +default: $(POTHEAD) $(LINGUAS:%=%.mo) include $(BUILDRULES) diff --git a/po/xfsprogs.pot b/po/xfsprogs.pot deleted file mode 100644 index a4ccf0577..000000000 --- a/po/xfsprogs.pot +++ /dev/null @@ -1,8142 +0,0 @@ -#: ../copy/xfs_copy.c:96 -#, c-format -msgid "Check logfile \"%s\" for more details\n" -msgstr "" - -#: ../copy/xfs_copy.c:102 -#, c-format -msgid "%s: could not write to logfile \"%s\".\n" -msgstr "" - -#: ../copy/xfs_copy.c:105 -#, c-format -msgid "Aborting XFS copy -- logfile error -- reason: %s\n" -msgstr "" - -#: ../copy/xfs_copy.c:120 ../copy/xfs_copy.c:280 ../copy/xfs_copy.c:553 -#: ../copy/xfs_copy.c:560 -msgid "Aborting XFS copy - reason" -msgstr "" - -#: ../copy/xfs_copy.c:134 -msgid "THE FOLLOWING COPIES FAILED TO COMPLETE\n" -msgstr "" - -#: ../copy/xfs_copy.c:138 -msgid "write error" -msgstr "" - -#: ../copy/xfs_copy.c:140 -msgid "lseek64 error" -msgstr "" - -#: ../copy/xfs_copy.c:141 -#, c-format -msgid " at offset %lld\n" -msgstr "" - -#: ../copy/xfs_copy.c:145 -#, c-format -msgid "All copies completed.\n" -msgstr "" - -#: ../copy/xfs_copy.c:148 -#, c-format -msgid "See \"%s\" for more details.\n" -msgstr "" - -#: ../copy/xfs_copy.c:249 -#, c-format -msgid "%s: write error on target %d \"%s\" at offset %lld\n" -msgstr "" - -#: ../copy/xfs_copy.c:254 -#, c-format -msgid "%s: lseek64 error on target %d \"%s\" at offset %lld\n" -msgstr "" - -#: ../copy/xfs_copy.c:260 -#, c-format -msgid "Aborting target %d - reason" -msgstr "" - -#: ../copy/xfs_copy.c:264 -msgid "Aborting XFS copy - no more targets.\n" -msgstr "" - -#: ../copy/xfs_copy.c:275 -#, c-format -msgid "%s: thread %d died unexpectedly, target \"%s\" incomplete\n" -msgstr "" - -#: ../copy/xfs_copy.c:277 -#, c-format -msgid "%s: offset was probably %lld\n" -msgstr "" - -#: ../copy/xfs_copy.c:288 -#, c-format -msgid "%s: Unknown child died (should never happen!)\n" -msgstr "" - -#: ../copy/xfs_copy.c:298 -#, c-format -msgid "Usage: %s [-bd] [-L logfile] source target [target ...]\n" -msgstr "" - -#: ../copy/xfs_copy.c:376 -#, c-format -msgid "%s: lseek64 failure at offset %lld\n" -msgstr "" - -#: ../copy/xfs_copy.c:391 -#, c-format -msgid "assert error: buf->length = %d, buf->size = %d\n" -msgstr "" - -#: ../copy/xfs_copy.c:398 -#, c-format -msgid "%s: read failure at offset %lld\n" -msgstr "" - -#: ../copy/xfs_copy.c:533 ../growfs/xfs_growfs.c:179 ../io/init.c:177 -#: ../mkfs/xfs_mkfs.c:1284 ../quota/init.c:131 ../repair/xfs_repair.c:235 -#: ../rtcp/xfs_rtcp.c:57 -#, c-format -msgid "%s version %s\n" -msgstr "" - -#: ../copy/xfs_copy.c:551 -#, c-format -msgid "%s: couldn't open log file \"%s\"\n" -msgstr "" - -#: ../copy/xfs_copy.c:558 -#, c-format -msgid "%s: couldn't set up logfile stream\n" -msgstr "" - -#: ../copy/xfs_copy.c:570 -msgid "Couldn't allocate target array\n" -msgstr "" - -#: ../copy/xfs_copy.c:585 -#, c-format -msgid "%s: couldn't register atexit function.\n" -msgstr "" - -#: ../copy/xfs_copy.c:594 -#, c-format -msgid "%s: couldn't open source \"%s\"\n" -msgstr "" - -#: ../copy/xfs_copy.c:600 -#, c-format -msgid "%s: couldn't stat source \"%s\"\n" -msgstr "" - -#: ../copy/xfs_copy.c:610 -#, c-format -msgid "%s: Cannot set direct I/O flag on \"%s\".\n" -msgstr "" - -#: ../copy/xfs_copy.c:615 -#, c-format -msgid "%s: xfsctl on file \"%s\" failed.\n" -msgstr "" - -#: ../copy/xfs_copy.c:638 -#, c-format -msgid "%s: Warning -- a filesystem is mounted on the source device.\n" -msgstr "" - -#: ../copy/xfs_copy.c:641 -msgid "\t\tGenerated copies may be corrupt unless the source is\n" -msgstr "" - -#: ../copy/xfs_copy.c:643 -msgid "\t\tunmounted or mounted read-only. Copy proceeding...\n" -msgstr "" - -#: ../copy/xfs_copy.c:661 -#, c-format -msgid "" -"%s: couldn't initialize XFS library\n" -"%s: Aborting.\n" -msgstr "" - -#: ../copy/xfs_copy.c:675 -#, c-format -msgid "" -"%s: %s filesystem failed to initialize\n" -"%s: Aborting.\n" -msgstr "" - -#: ../copy/xfs_copy.c:679 -#, c-format -msgid "" -"%s %s filesystem failed to initialize\n" -"%s: Aborting.\n" -msgstr "" - -#: ../copy/xfs_copy.c:683 -#, c-format -msgid "" -"%s: %s has an external log.\n" -"%s: Aborting.\n" -msgstr "" - -#: ../copy/xfs_copy.c:687 -#, c-format -msgid "" -"%s: %s has a real-time section.\n" -"%s: Aborting.\n" -msgstr "" - -#: ../copy/xfs_copy.c:712 -msgid "" -"Error: filesystem block size is smaller than the disk sectorsize.\n" -"Aborting XFS copy now.\n" -msgstr "" - -#: ../copy/xfs_copy.c:733 -#, c-format -msgid "Creating file %s\n" -msgstr "" - -#: ../copy/xfs_copy.c:751 -#, c-format -msgid "" -"%s: a filesystem is mounted on target device \"%s\".\n" -"%s cannot copy to mounted filesystems. Aborting\n" -msgstr "" - -#: ../copy/xfs_copy.c:762 -#, c-format -msgid "%s: couldn't open target \"%s\"\n" -msgstr "" - -#: ../copy/xfs_copy.c:772 -#, c-format -msgid "%s: cannot grow data section.\n" -msgstr "" - -#: ../copy/xfs_copy.c:780 -#, c-format -msgid "%s: xfsctl on \"%s\" failed.\n" -msgstr "" - -#: ../copy/xfs_copy.c:799 -#, c-format -msgid "%s: failed to write last block\n" -msgstr "" - -#: ../copy/xfs_copy.c:801 -#, c-format -msgid "\tIs target \"%s\" too small?\n" -msgstr "" - -#: ../copy/xfs_copy.c:811 -msgid "Couldn't initialize global thread mask\n" -msgstr "" - -#: ../copy/xfs_copy.c:818 -msgid "Error initializing wbuf 0\n" -msgstr "" - -#: ../copy/xfs_copy.c:826 -msgid "Error initializing btree buf 1\n" -msgstr "" - -#: ../copy/xfs_copy.c:831 -msgid "Error creating first semaphore.\n" -msgstr "" - -#: ../copy/xfs_copy.c:846 -msgid "Couldn't malloc space for thread args\n" -msgstr "" - -#: ../copy/xfs_copy.c:858 -#, c-format -msgid "Error creating thread mutex %d\n" -msgstr "" - -#: ../copy/xfs_copy.c:875 -#, c-format -msgid "Error creating thread for target %d\n" -msgstr "" - -#: ../copy/xfs_copy.c:968 -msgid "WARNING: source filesystem inconsistent.\n" -msgstr "" - -#: ../copy/xfs_copy.c:970 -msgid " A leaf btree rec isn't a leaf. Aborting now.\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:34 -#, c-format -msgid "" -"Usage: %s [options] mountpoint\n" -"\n" -"Options:\n" -"\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:67 -#, c-format -msgid "" -"meta-data=%-22s isize=%-6u agcount=%u, agsize=%u blks\n" -" =%-22s sectsz=%-5u attr=%u\n" -"data =%-22s bsize=%-6u blocks=%llu, imaxpct=%u\n" -" =%-22s sunit=%-6u swidth=%u blks, unwritten=%u\n" -"naming =version %-14u bsize=%-6u\n" -"log =%-22s bsize=%-6u blocks=%u, version=%u\n" -" =%-22s sectsz=%-5u sunit=%u blks\n" -"realtime =%-22s extsz=%-6u blocks=%llu, rtextents=%llu\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:82 ../growfs/xfs_growfs.c:444 -#: ../growfs/xfs_growfs.c:445 -msgid "internal" -msgstr "" - -#: ../growfs/xfs_growfs.c:82 ../growfs/xfs_growfs.c:85 -#: ../growfs/xfs_growfs.c:444 ../growfs/xfs_growfs.c:445 -msgid "external" -msgstr "" - -#: ../growfs/xfs_growfs.c:85 ../mkfs/xfs_mkfs.c:1594 -msgid "none" -msgstr "" - -#: ../growfs/xfs_growfs.c:196 -#, c-format -msgid "%s: %s is not a mounted XFS filesystem\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:213 ../io/open.c:170 -#, c-format -msgid "%s: specified file [\"%s\"] is not on an XFS filesystem\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:230 -#, c-format -msgid "%s: cannot determine geometry of filesystem mounted at %s: %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:265 -#, c-format -msgid "%s: failed to access data device for %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:270 -#, c-format -msgid "%s: failed to access external log for %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:276 -#, c-format -msgid "%s: failed to access realtime device for %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:311 -#, c-format -msgid "data size %lld too large, maximum is %lld\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:321 -#, c-format -msgid "data size %lld too small, old size is %lld\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:329 -#, c-format -msgid "data size unchanged, skipping\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:332 -#, c-format -msgid "inode max pct unchanged, skipping\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:339 ../growfs/xfs_growfs.c:378 -#: ../growfs/xfs_growfs.c:413 -#, c-format -msgid "%s: growfs operation in progress already\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:343 -#, c-format -msgid "%s: XFS_IOC_FSGROWFSDATA xfsctl failed: %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:359 -#, c-format -msgid "realtime size %lld too large, maximum is %lld\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:365 -#, c-format -msgid "realtime size %lld too small, old size is %lld\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:371 -#, c-format -msgid "realtime size unchanged, skipping\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:382 -#, c-format -msgid "%s: realtime growth not implemented\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:386 -#, c-format -msgid "%s: XFS_IOC_FSGROWFSRT xfsctl failed: %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:407 -#, c-format -msgid "log size unchanged, skipping\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:417 -#, c-format -msgid "%s: log growth not supported yet\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:421 -#, c-format -msgid "%s: XFS_IOC_FSGROWFSLOG xfsctl failed: %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:429 -#, c-format -msgid "%s: XFS_IOC_FSGEOMETRY xfsctl failed: %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:434 -#, c-format -msgid "data blocks changed from %lld to %lld\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:437 -#, c-format -msgid "inode max percent changed from %d to %d\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:440 -#, c-format -msgid "log blocks changed from %d to %d\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:443 -#, c-format -msgid "log changed from %s to %s\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:447 -#, c-format -msgid "realtime blocks changed from %lld to %lld\n" -msgstr "" - -#: ../growfs/xfs_growfs.c:450 -#, c-format -msgid "realtime extent size changed from %d to %d\n" -msgstr "" - -#: ../io/attr.c:57 -#, c-format -msgid "" -"\n" -" displays the set of extended inode flags associated with the current file\n" -"\n" -" Each individual flag is displayed as a single character, in this order:\n" -" r -- file data is stored in the realtime section\n" -" p -- file has preallocated extents (cannot be changed using chattr)\n" -" i -- immutable, file cannot be modified\n" -" a -- append-only, file can only be appended to\n" -" s -- all updates are synchronous\n" -" A -- the access time is not updated for this inode\n" -" d -- do not include this file in a dump of the filesystem\n" -" t -- child created in this directory has realtime bit set by default\n" -" P -- child created in this directory has parents project ID by default\n" -" n -- symbolic links cannot be created in this directory\n" -" e -- for non-realtime files, observe the inode extent size value\n" -" E -- children created in this directory inherit the extent size value\n" -"\n" -" Options:\n" -" -R -- recursively descend (useful when current file is a directory)\n" -" -D -- recursively descend, but only list attributes on directories\n" -" -a -- show all flags which can be set alongside those which are set\n" -" -v -- verbose mode; show long names of flags, not single characters\n" -"\n" -msgstr "" - -#: ../io/attr.c:86 -#, c-format -msgid "" -"\n" -" modifies the set of extended inode flags associated with the current file\n" -"\n" -" Examples:\n" -" 'chattr +a' - sets the append-only flag\n" -" 'chattr -a' - clears the append-only flag\n" -"\n" -" -R -- recursively descend (useful when current file is a directory)\n" -" -D -- recursively descend, only modifying attributes on directories\n" -" +/-r -- set/clear the realtime flag\n" -" +/-i -- set/clear the immutable flag\n" -" +/-a -- set/clear the append-only flag\n" -" +/-s -- set/clear the sync flag\n" -" +/-A -- set/clear the no-atime flag\n" -" +/-d -- set/clear the no-dump flag\n" -" +/-t -- set/clear the realtime inheritance flag\n" -" +/-P -- set/clear the project ID inheritance flag\n" -" +/-n -- set/clear the no-symbolic-links flag\n" -" +/-e -- set/clear the extent-size flag\n" -" +/-E -- set/clear the extent-size inheritance flag\n" -" Note1: user must have certain capabilities to modify immutable/append-" -"only.\n" -" Note2: immutable/append-only files cannot be deleted; removing these files\n" -" requires the immutable/append-only flag to be cleared first.\n" -" Note3: the realtime flag can only be set if the filesystem has a realtime\n" -" section, and the (regular) file must be empty when the flag is set.\n" -"\n" -msgstr "" - -#: ../io/attr.c:165 ../io/attr.c:241 ../io/open.c:403 ../io/open.c:475 -#: ../io/open.c:599 ../io/open.c:621 ../libxfs/init.c:96 ../mkfs/proto.c:284 -#: ../quota/project.c:87 ../quota/project.c:117 ../quota/project.c:147 -#, c-format -msgid "%s: cannot open %s: %s\n" -msgstr "" - -#: ../io/attr.c:168 ../io/attr.c:215 ../io/attr.c:244 ../io/attr.c:315 -#: ../quota/project.c:90 ../quota/project.c:121 ../quota/project.c:151 -#, c-format -msgid "%s: cannot get flags on %s: %s\n" -msgstr "" - -#: ../io/attr.c:250 ../io/attr.c:321 -#, c-format -msgid "%s: cannot set flags on %s: %s\n" -msgstr "" - -#: ../io/attr.c:285 ../io/attr.c:299 -#, c-format -msgid "%s: unknown flag\n" -msgstr "" - -#: ../io/attr.c:305 -#, c-format -msgid "%s: bad chattr command, not +/-X\n" -msgstr "" - -#: ../io/attr.c:330 -msgid "chattr" -msgstr "" - -#: ../io/attr.c:332 -msgid "[-R|-D] [+/-" -msgstr "" - -#: ../io/attr.c:332 -msgid "]" -msgstr "" - -#: ../io/attr.c:337 -msgid "change extended inode flags on the currently open file" -msgstr "" - -#: ../io/attr.c:340 -msgid "lsattr" -msgstr "" - -#: ../io/attr.c:342 -msgid "[-R|-D|-a|-v]" -msgstr "" - -#: ../io/attr.c:347 -msgid "list extended inode flags set on the currently open file" -msgstr "" - -#: ../io/bmap.c:30 -#, c-format -msgid "" -"\n" -" prints the block mapping for an XFS file's data or attribute forks\n" -" Example:\n" -" 'bmap -vp' - tabular format verbose map, including unwritten extents\n" -"\n" -" bmap prints the map of disk blocks used by the current file.\n" -" The map lists each extent used by the file, as well as regions in the\n" -" file that do not have any corresponding blocks (holes).\n" -" By default, each line of the listing takes the following form:\n" -" extent: [startoffset..endoffset]: startblock..endblock\n" -" Holes are marked by replacing the startblock..endblock with 'hole'.\n" -" All the file offsets and disk blocks are in units of 512-byte blocks.\n" -" -a -- prints the attribute fork map instead of the data fork.\n" -" -d -- suppresses a DMAPI read event, offline portions shown as holes.\n" -" -l -- also displays the length of each extent in 512-byte blocks.\n" -" Note: the bmap for non-regular files can be obtained provided the file\n" -" was opened appropriately (in particular, must be opened read-only).\n" -"\n" -msgstr "" - -#: ../io/bmap.c:116 -#, c-format -msgid "%s: can't get geometry [\"%s\"]: %s\n" -msgstr "" - -#: ../io/bmap.c:124 -#, c-format -msgid "%s: cannot read attrs on \"%s\": %s\n" -msgstr "" - -#: ../io/bmap.c:142 -#, c-format -msgid "%s: malloc of %d bytes failed.\n" -msgstr "" - -#: ../io/bmap.c:190 -#, c-format -msgid "%s: xfsctl(XFS_IOC_GETBMAPX) iflags=0x%x [\"%s\"]: %s\n" -msgstr "" - -#: ../io/bmap.c:221 -#, c-format -msgid "%s: cannot realloc %d bytes\n" -msgstr "" - -#: ../io/bmap.c:230 -#, c-format -msgid "%s: no extents\n" -msgstr "" - -#: ../io/bmap.c:243 ../io/bmap.c:361 -#, c-format -msgid "hole" -msgstr "" - -#: ../io/bmap.c:252 -#, c-format -msgid " %lld blocks\n" -msgstr "" - -#: ../io/bmap.c:321 -msgid "EXT" -msgstr "" - -#: ../io/bmap.c:322 -msgid "FILE-OFFSET" -msgstr "" - -#: ../io/bmap.c:323 -msgid "BLOCK-RANGE" -msgstr "" - -#: ../io/bmap.c:324 -msgid "AG" -msgstr "" - -#: ../io/bmap.c:325 -msgid "AG-OFFSET" -msgstr "" - -#: ../io/bmap.c:326 -msgid "TOTAL" -msgstr "" - -#: ../io/bmap.c:327 -msgid " FLAGS" -msgstr "" - -#: ../io/bmap.c:390 -#, c-format -msgid " FLAG Values:\n" -msgstr "" - -#: ../io/bmap.c:391 -#, c-format -msgid " %*.*o Unwritten preallocated extent\n" -msgstr "" - -#: ../io/bmap.c:393 -#, c-format -msgid " %*.*o Doesn't begin on stripe unit\n" -msgstr "" - -#: ../io/bmap.c:395 -#, c-format -msgid " %*.*o Doesn't end on stripe unit\n" -msgstr "" - -#: ../io/bmap.c:397 -#, c-format -msgid " %*.*o Doesn't begin on stripe width\n" -msgstr "" - -#: ../io/bmap.c:399 -#, c-format -msgid " %*.*o Doesn't end on stripe width\n" -msgstr "" - -#: ../io/bmap.c:410 -msgid "bmap" -msgstr "" - -#: ../io/bmap.c:415 -msgid "[-adlpv] [-n nx]" -msgstr "" - -#: ../io/bmap.c:416 -msgid "print block mapping for an XFS file" -msgstr "" - -#: ../io/fadvise.c:31 -#, c-format -msgid "" -"\n" -" advise the page cache about expected I/O patterns on the current file\n" -"\n" -" Modifies kernel page cache behaviour when operating on the current file.\n" -" The range arguments are required by some advise commands ([*] below).\n" -" With no arguments, the POSIX_FADV_NORMAL advice is implied.\n" -" -d -- don't need these pages (POSIX_FADV_DONTNEED) [*]\n" -" -n -- data will be accessed once (POSIX_FADV_NOREUSE) [*]\n" -" -r -- expect random page references (POSIX_FADV_RANDOM)\n" -" -s -- expect sequential page references (POSIX_FADV_SEQUENTIAL)\n" -" -w -- will need these pages (POSIX_FADV_WILLNEED) [*]\n" -" Notes: these interfaces are not supported in Linux kernels before 2.6.\n" -" NORMAL sets the default readahead setting on the file.\n" -" RANDOM sets the readahead setting on the file to zero.\n" -" SEQUENTIAL sets double the default readahead setting on the file.\n" -" WILLNEED and NOREUSE are equivalent, and force the maximum readahead.\n" -"\n" -msgstr "" - -#: ../io/fadvise.c:93 ../io/madvise.c:87 ../io/mincore.c:48 ../io/mmap.c:206 -#: ../io/mmap.c:301 ../io/mmap.c:407 ../io/mmap.c:554 ../io/prealloc.c:43 -#: ../io/pwrite.c:282 ../io/sendfile.c:126 -#, c-format -msgid "non-numeric offset argument -- %s\n" -msgstr "" - -#: ../io/fadvise.c:100 ../io/madvise.c:94 ../io/mincore.c:54 ../io/mmap.c:212 -#: ../io/mmap.c:308 ../io/mmap.c:414 ../io/mmap.c:561 ../io/pread.c:360 -#: ../io/pread.c:368 ../io/prealloc.c:48 ../io/pwrite.c:288 -#: ../io/sendfile.c:133 -#, c-format -msgid "non-numeric length argument -- %s\n" -msgstr "" - -#: ../io/fadvise.c:118 -msgid "fadvise" -msgstr "" - -#: ../io/fadvise.c:123 -msgid "[-dnrsw] [off len]" -msgstr "" - -#: ../io/fadvise.c:124 -msgid "advisory commands for sections of a file" -msgstr "" - -#: ../io/file.c:39 -#, c-format -msgid "%c%03d%c %-14s (%s,%s,%s,%s%s%s%s)\n" -msgstr "" - -#: ../io/file.c:41 -msgid "foreign" -msgstr "" - -#: ../io/file.c:41 -msgid "xfs" -msgstr "" - -#: ../io/file.c:42 ../io/open.c:82 -msgid "sync" -msgstr "" - -#: ../io/file.c:42 ../io/open.c:82 -msgid "non-sync" -msgstr "" - -#: ../io/file.c:43 ../io/open.c:83 -msgid "direct" -msgstr "" - -#: ../io/file.c:43 ../io/open.c:83 -msgid "non-direct" -msgstr "" - -#: ../io/file.c:44 ../io/open.c:84 -msgid "read-only" -msgstr "" - -#: ../io/file.c:44 ../io/open.c:84 -msgid "read-write" -msgstr "" - -#: ../io/file.c:45 ../io/open.c:85 -msgid ",real-time" -msgstr "" - -#: ../io/file.c:46 ../io/open.c:86 -msgid ",append-only" -msgstr "" - -#: ../io/file.c:47 ../io/open.c:87 -msgid ",non-block" -msgstr "" - -#: ../io/file.c:81 ../io/sendfile.c:103 ../quota/path.c:107 -#, c-format -msgid "value %d is out of range (0-%d)\n" -msgstr "" - -#: ../io/file.c:92 -msgid "file" -msgstr "" - -#: ../io/file.c:93 -msgid "f" -msgstr "" - -#: ../io/file.c:94 ../quota/path.c:121 -msgid "[N]" -msgstr "" - -#: ../io/file.c:99 -msgid "set the current file" -msgstr "" - -#: ../io/file.c:101 ../quota/path.c:127 -msgid "print" -msgstr "" - -#: ../io/file.c:102 ../quota/path.c:128 -msgid "p" -msgstr "" - -#: ../io/file.c:107 -msgid "list current open files and memory mappings" -msgstr "" - -#: ../io/freeze.c:37 -#, c-format -msgid "%s: cannot freeze filesystem at %s: %s\n" -msgstr "" - -#: ../io/freeze.c:54 -#, c-format -msgid "%s: cannot unfreeze filesystem mounted at %s: %s\n" -msgstr "" - -#: ../io/freeze.c:65 -msgid "freeze" -msgstr "" - -#: ../io/freeze.c:70 -msgid "freeze filesystem of current file" -msgstr "" - -#: ../io/freeze.c:72 -msgid "thaw" -msgstr "" - -#: ../io/freeze.c:77 -msgid "unfreeze filesystem of current file" -msgstr "" - -#: ../io/fsync.c:54 -msgid "fsync" -msgstr "" - -#: ../io/fsync.c:55 -msgid "s" -msgstr "" - -#: ../io/fsync.c:59 -msgid "calls fsync(2) to flush all in-core file state to disk" -msgstr "" - -#: ../io/fsync.c:61 -msgid "fdatasync" -msgstr "" - -#: ../io/fsync.c:62 -msgid "ds" -msgstr "" - -#: ../io/fsync.c:66 -msgid "calls fdatasync(2) to flush the files in-core data to disk" -msgstr "" - -#: ../io/getrusage.c:112 -msgid "getrusage" -msgstr "" - -#: ../io/getrusage.c:113 -msgid "g" -msgstr "" - -#: ../io/getrusage.c:118 -msgid "report process resource usage" -msgstr "" - -#: ../io/imap.c:53 -#, c-format -msgid "ino %10llu count %2d mask %016llx\n" -msgstr "" - -#: ../io/imap.c:67 -msgid "imap" -msgstr "" - -#: ../io/imap.c:71 -msgid "[nentries]" -msgstr "" - -#: ../io/imap.c:73 -msgid "inode map for filesystem of current file" -msgstr "" - -#: ../io/init.c:35 -#, c-format -msgid "Usage: %s [-adFfmrRstx] [-p prog] [-c cmd]... file\n" -msgstr "" - -#: ../io/init.c:95 ../io/mmap.c:168 ../io/mmap.c:175 ../io/mmap.c:178 -#: ../io/open.c:281 -#, c-format -msgid "no files are open, try 'help open'\n" -msgstr "" - -#: ../io/init.c:99 ../io/mmap.c:167 ../io/mmap.c:174 -#, c-format -msgid "no mapped regions, try 'help mmap'\n" -msgstr "" - -#: ../io/init.c:105 -#, c-format -msgid "foreign file active, %s command is for XFS filesystems only\n" -msgstr "" - -#: ../io/init.c:150 ../io/open.c:303 -#, c-format -msgid "non-numeric mode -- %s\n" -msgstr "" - -#: ../io/inject.c:109 -#, c-format -msgid "" -"\n" -" inject errors into the filesystem of the currently open file\n" -"\n" -" Example:\n" -" 'inject readagf' - cause errors on allocation group freespace reads\n" -"\n" -" Causes the kernel to generate and react to errors within XFS, provided\n" -" the XFS kernel code has been built with debugging features enabled.\n" -" With no arguments, displays the list of error injection tags.\n" -"\n" -msgstr "" - -#: ../io/inject.c:135 -#, c-format -msgid "no such tag -- %s\n" -msgstr "" - -#: ../io/inject.c:151 -msgid "inject" -msgstr "" - -#: ../io/inject.c:156 -msgid "[tag ...]" -msgstr "" - -#: ../io/inject.c:157 -msgid "inject errors into a filesystem" -msgstr "" - -#: ../io/madvise.c:32 -#, c-format -msgid "" -"\n" -" advise the page cache about access patterns expected for a mapping\n" -"\n" -" Modifies page cache behavior when operating on the current mapping.\n" -" The range arguments are required by some advise commands ([*] below).\n" -" With no arguments, the POSIX_MADV_NORMAL advice is implied.\n" -" -d -- don't need these pages (POSIX_MADV_DONTNEED) [*]\n" -" -r -- expect random page references (POSIX_MADV_RANDOM)\n" -" -s -- expect sequential page references (POSIX_MADV_SEQUENTIAL)\n" -" -w -- will need these pages (POSIX_MADV_WILLNEED) [*]\n" -" Notes:\n" -" NORMAL sets the default readahead setting on the file.\n" -" RANDOM sets the readahead setting on the file to zero.\n" -" SEQUENTIAL sets double the default readahead setting on the file.\n" -" WILLNEED forces the maximum readahead.\n" -"\n" -msgstr "" - -#: ../io/madvise.c:116 -msgid "madvise" -msgstr "" - -#: ../io/madvise.c:117 -msgid "ma" -msgstr "" - -#: ../io/madvise.c:122 -msgid "[-drsw] [off len]" -msgstr "" - -#: ../io/madvise.c:123 -msgid "give advice about use of memory" -msgstr "" - -#: ../io/mincore.c:87 ../io/mincore.c:97 -#, c-format -msgid "0x%lx %lu pages (%llu : %lu)\n" -msgstr "" - -#: ../io/mincore.c:111 -msgid "mincore" -msgstr "" - -#: ../io/mincore.c:112 -msgid "mi" -msgstr "" - -#: ../io/mincore.c:117 -msgid "[off len]" -msgstr "" - -#: ../io/mincore.c:118 -msgid "find mapping pages that are memory resident" -msgstr "" - -#: ../io/mmap.c:76 -#, c-format -msgid "offset (%lld) is before start of mapping (%lld)\n" -msgstr "" - -#: ../io/mmap.c:82 -#, c-format -msgid "offset (%lld) is beyond end of mapping (%lld)\n" -msgstr "" - -#: ../io/mmap.c:87 -#, c-format -msgid "range (%lld:%lld) is beyond mapping (%lld:%ld)\n" -msgstr "" - -#: ../io/mmap.c:93 -#, c-format -msgid "offset address (%p) is not page aligned\n" -msgstr "" - -#: ../io/mmap.c:133 -#, c-format -msgid "" -"\n" -" maps a range within the current file into memory\n" -"\n" -" Example:\n" -" 'mmap -rw 0 1m' - maps one megabyte from the start of the current file\n" -"\n" -" Memory maps a range of a file for subsequent use by other xfs_io commands.\n" -" With no arguments, mmap shows the current mappings. The current mapping\n" -" can be set by using the single argument form (mapping number or address).\n" -" If two arguments are specified (a range), a new mapping is created and the\n" -" following options are available:\n" -" -r -- map with PROT_READ protection\n" -" -w -- map with PROT_WRITE protection\n" -" -x -- map with PROT_EXEC protection\n" -" If no protection mode is specified, all are used by default.\n" -"\n" -msgstr "" - -#: ../io/mmap.c:254 -#, c-format -msgid "" -"\n" -" flushes a range of bytes in the current memory mapping\n" -"\n" -" Writes all modified copies of pages over the specified range (or entire\n" -" mapping if no range specified) to their backing storage locations. Also,\n" -" optionally invalidates so that subsequent references to the pages will be\n" -" obtained from their backing storage locations (instead of cached copies).\n" -" -a -- perform asynchronous writes (MS_ASYNC)\n" -" -i -- invalidate mapped pages (MS_INVALIDATE)\n" -" -s -- perform synchronous writes (MS_SYNC)\n" -"\n" -msgstr "" - -#: ../io/mmap.c:350 -#, c-format -msgid "" -"\n" -" reads a range of bytes in the current memory mapping\n" -"\n" -" Example:\n" -" 'mread -v 512 20' - dumps 20 bytes read from 512 bytes into the mapping\n" -"\n" -" Accesses a range of the current memory mapping, optionally dumping it to\n" -" the standard output stream (with -v option) for subsequent inspection.\n" -" -f -- verbose mode, dump bytes with offsets relative to start of file.\n" -" -r -- reverse order; start accessing fom the end of range, moving backward\n" -" -v -- verbose mode, dump bytes with offsets relative to start of mapping.\n" -" The accesses are performed sequentially from the start offset by default.\n" -" Notes:\n" -" References to whole pages following the end of the backing file results\n" -" in delivery of the SIGBUS signal. SIGBUS signals may also be delivered\n" -" on various filesystem conditions, including quota exceeded errors, and\n" -" for physical device errors (such as unreadable disk blocks). No attempt\n" -" has been made to catch signals at this stage...\n" -"\n" -msgstr "" - -#: ../io/mmap.c:502 -#, c-format -msgid "" -"\n" -" dirties a range of bytes in the current memory mapping\n" -"\n" -" Example:\n" -" 'mwrite 512 20 - writes 20 bytes at 512 bytes into the current mapping.\n" -"\n" -" Stores a byte into memory for a range within a mapping.\n" -" The default stored value is 'X', repeated to fill the range specified.\n" -" -S -- use an alternate seed character\n" -" -r -- reverse order; start storing fom the end of range, moving backward\n" -" The stores are performed sequentially from the start offset by default.\n" -"\n" -msgstr "" - -#: ../io/mmap.c:538 ../io/pread.c:345 ../io/pwrite.c:249 ../io/pwrite.c:268 -#, c-format -msgid "non-numeric seed -- %s\n" -msgstr "" - -#: ../io/mmap.c:587 -msgid "mmap" -msgstr "" - -#: ../io/mmap.c:588 -msgid "mm" -msgstr "" - -#: ../io/mmap.c:593 -msgid "[N] | [-rwx] [off len]" -msgstr "" - -#: ../io/mmap.c:595 -msgid "mmap a range in the current file, show mappings" -msgstr "" - -#: ../io/mmap.c:598 -msgid "mread" -msgstr "" - -#: ../io/mmap.c:599 -msgid "mr" -msgstr "" - -#: ../io/mmap.c:604 -msgid "[-r] [off len]" -msgstr "" - -#: ../io/mmap.c:606 -msgid "reads data from a region in the current memory mapping" -msgstr "" - -#: ../io/mmap.c:609 -msgid "msync" -msgstr "" - -#: ../io/mmap.c:610 -msgid "ms" -msgstr "" - -#: ../io/mmap.c:615 -msgid "[-ais] [off len]" -msgstr "" - -#: ../io/mmap.c:616 -msgid "flush a region in the current memory mapping" -msgstr "" - -#: ../io/mmap.c:619 -msgid "munmap" -msgstr "" - -#: ../io/mmap.c:620 -msgid "mu" -msgstr "" - -#: ../io/mmap.c:625 -msgid "unmaps the current memory mapping" -msgstr "" - -#: ../io/mmap.c:627 -msgid "mwrite" -msgstr "" - -#: ../io/mmap.c:628 -msgid "mw" -msgstr "" - -#: ../io/mmap.c:633 -msgid "[-r] [-S seed] [off len]" -msgstr "" - -#: ../io/mmap.c:635 -msgid "writes data into a region in the current memory mapping" -msgstr "" - -#: ../io/open.c:53 -msgid "socket" -msgstr "" - -#: ../io/open.c:55 -msgid "directory" -msgstr "" - -#: ../io/open.c:57 -msgid "char device" -msgstr "" - -#: ../io/open.c:59 -msgid "block device" -msgstr "" - -#: ../io/open.c:61 -msgid "regular file" -msgstr "" - -#: ../io/open.c:63 -msgid "symbolic link" -msgstr "" - -#: ../io/open.c:65 -msgid "fifo" -msgstr "" - -#: ../io/open.c:80 ../io/open.c:725 -#, c-format -msgid "fd.path = \"%s\"\n" -msgstr "" - -#: ../io/open.c:81 -#, c-format -msgid "fd.flags = %s,%s,%s%s%s%s\n" -msgstr "" - -#: ../io/open.c:91 -#, c-format -msgid "stat.ino = %lld\n" -msgstr "" - -#: ../io/open.c:92 -#, c-format -msgid "stat.type = %s\n" -msgstr "" - -#: ../io/open.c:93 -#, c-format -msgid "stat.size = %lld\n" -msgstr "" - -#: ../io/open.c:94 -#, c-format -msgid "stat.blocks = %lld\n" -msgstr "" - -#: ../io/open.c:96 -#, c-format -msgid "stat.atime = %s" -msgstr "" - -#: ../io/open.c:97 -#, c-format -msgid "stat.mtime = %s" -msgstr "" - -#: ../io/open.c:98 -#, c-format -msgid "stat.ctime = %s" -msgstr "" - -#: ../io/open.c:107 -#, c-format -msgid "fsxattr.xflags = 0x%x " -msgstr "" - -#: ../io/open.c:109 -#, c-format -msgid "fsxattr.projid = %u\n" -msgstr "" - -#: ../io/open.c:110 -#, c-format -msgid "fsxattr.extsize = %u\n" -msgstr "" - -#: ../io/open.c:111 -#, c-format -msgid "fsxattr.nextents = %u\n" -msgstr "" - -#: ../io/open.c:112 -#, c-format -msgid "fsxattr.naextents = %u\n" -msgstr "" - -#: ../io/open.c:117 -#, c-format -msgid "dioattr.mem = 0x%x\n" -msgstr "" - -#: ../io/open.c:118 -#, c-format -msgid "dioattr.miniosz = %u\n" -msgstr "" - -#: ../io/open.c:119 -#, c-format -msgid "dioattr.maxiosz = %u\n" -msgstr "" - -#: ../io/open.c:243 -#, c-format -msgid "" -"\n" -" opens a new file in the requested mode\n" -"\n" -" Example:\n" -" 'open -cd /tmp/data' - creates/opens data file read-write for direct IO\n" -"\n" -" Opens a file for subsequent use by all of the other xfs_io commands.\n" -" With no arguments, open uses the stat command to show the current file.\n" -" -F -- foreign filesystem file, disallow XFS-specific commands\n" -" -a -- open with the O_APPEND flag (append-only mode)\n" -" -d -- open with O_DIRECT (non-buffered IO, note alignment constraints)\n" -" -f -- open with O_CREAT (create the file if it doesn't exist)\n" -" -m -- permissions to use in case a new file is created (default 0600)\n" -" -n -- open with O_NONBLOCK\n" -" -r -- open with O_RDONLY, the default is O_RDWR\n" -" -s -- open with O_SYNC\n" -" -t -- open with O_TRUNC (truncate the file to zero length if it exists)\n" -" -R -- mark the file as a realtime XFS file immediately after opening it\n" -" Note1: usually read/write direct IO requests must be blocksize aligned;\n" -" some kernels, however, allow sectorsize alignment for direct IO.\n" -" Note2: the bmap for non-regular files can be obtained provided the file\n" -" was opened correctly (in particular, must be opened read-only).\n" -"\n" -msgstr "" - -#: ../io/open.c:380 -#, c-format -msgid "" -"\n" -" displays the project identifier associated with the current path\n" -"\n" -" Options:\n" -" -R -- recursively descend (useful when current path is a directory)\n" -" -D -- recursively descend, but only list projects on directories\n" -"\n" -msgstr "" - -#: ../io/open.c:446 -#, c-format -msgid "projid = %u\n" -msgstr "" - -#: ../io/open.c:454 -#, c-format -msgid "" -"\n" -" modifies the project identifier associated with the current path\n" -"\n" -" -R -- recursively descend (useful when current path is a directory)\n" -" -D -- recursively descend, only modifying projects on directories\n" -"\n" -msgstr "" - -#: ../io/open.c:513 -#, c-format -msgid "invalid project ID -- %s\n" -msgstr "" - -#: ../io/open.c:529 -#, c-format -msgid "" -"\n" -" report or modify prefered extent size (in bytes) for the current path\n" -"\n" -" -R -- recursively descend (useful when current path is a directory)\n" -" -D -- recursively descend, only modifying extsize on directories\n" -"\n" -msgstr "" - -#: ../io/open.c:572 -#, c-format -msgid "invalid target file type - file %s\n" -msgstr "" - -#: ../io/open.c:658 -#, c-format -msgid "non-numeric extsize argument -- %s\n" -msgstr "" - -#: ../io/open.c:705 -#, c-format -msgid "invalid setfl argument -- '%c'\n" -msgstr "" - -#: ../io/open.c:729 -#, c-format -msgid "statfs.f_bsize = %lld\n" -msgstr "" - -#: ../io/open.c:730 -#, c-format -msgid "statfs.f_blocks = %lld\n" -msgstr "" - -#: ../io/open.c:732 -#, c-format -msgid "statfs.f_frsize = %lld\n" -msgstr "" - -#: ../io/open.c:734 -#, c-format -msgid "statfs.f_bavail = %lld\n" -msgstr "" - -#: ../io/open.c:736 -#, c-format -msgid "statfs.f_files = %lld\n" -msgstr "" - -#: ../io/open.c:737 -#, c-format -msgid "statfs.f_ffree = %lld\n" -msgstr "" - -#: ../io/open.c:744 -#, c-format -msgid "geom.bsize = %u\n" -msgstr "" - -#: ../io/open.c:745 -#, c-format -msgid "geom.agcount = %u\n" -msgstr "" - -#: ../io/open.c:746 -#, c-format -msgid "geom.agblocks = %u\n" -msgstr "" - -#: ../io/open.c:747 -#, c-format -msgid "geom.datablocks = %llu\n" -msgstr "" - -#: ../io/open.c:749 -#, c-format -msgid "geom.rtblocks = %llu\n" -msgstr "" - -#: ../io/open.c:751 -#, c-format -msgid "geom.rtextents = %llu\n" -msgstr "" - -#: ../io/open.c:753 -#, c-format -msgid "geom.rtextsize = %u\n" -msgstr "" - -#: ../io/open.c:754 -#, c-format -msgid "geom.sunit = %u\n" -msgstr "" - -#: ../io/open.c:755 -#, c-format -msgid "geom.swidth = %u\n" -msgstr "" - -#: ../io/open.c:760 -#, c-format -msgid "counts.freedata = %llu\n" -msgstr "" - -#: ../io/open.c:762 -#, c-format -msgid "counts.freertx = %llu\n" -msgstr "" - -#: ../io/open.c:764 -#, c-format -msgid "counts.freeino = %llu\n" -msgstr "" - -#: ../io/open.c:766 -#, c-format -msgid "counts.allocino = %llu\n" -msgstr "" - -#: ../io/open.c:775 -msgid "open" -msgstr "" - -#: ../io/open.c:776 -msgid "o" -msgstr "" - -#: ../io/open.c:781 -msgid "[-acdrstx] [path]" -msgstr "" - -#: ../io/open.c:782 -msgid "open the file specified by path" -msgstr "" - -#: ../io/open.c:785 -msgid "stat" -msgstr "" - -#: ../io/open.c:790 -msgid "[-v]" -msgstr "" - -#: ../io/open.c:791 -msgid "statistics on the currently open file" -msgstr "" - -#: ../io/open.c:793 -msgid "close" -msgstr "" - -#: ../io/open.c:794 -msgid "c" -msgstr "" - -#: ../io/open.c:799 -msgid "close the current open file" -msgstr "" - -#: ../io/open.c:801 -msgid "setfl" -msgstr "" - -#: ../io/open.c:803 -msgid "[-adx]" -msgstr "" - -#: ../io/open.c:806 -msgid "set/clear append/direct flags on the open file" -msgstr "" - -#: ../io/open.c:808 -msgid "statfs" -msgstr "" - -#: ../io/open.c:812 -msgid "statistics on the filesystem of the currently open file" -msgstr "" - -#: ../io/open.c:814 -msgid "chproj" -msgstr "" - -#: ../io/open.c:816 -msgid "[-D | -R] projid" -msgstr "" - -#: ../io/open.c:821 -msgid "change project identifier on the currently open file" -msgstr "" - -#: ../io/open.c:824 -msgid "lsproj" -msgstr "" - -#: ../io/open.c:826 -msgid "[-D | -R]" -msgstr "" - -#: ../io/open.c:831 -msgid "list project identifier set on the currently open file" -msgstr "" - -#: ../io/open.c:834 -msgid "extsize" -msgstr "" - -#: ../io/open.c:836 -msgid "[-D | -R] [extsize]" -msgstr "" - -#: ../io/open.c:841 -msgid "get/set prefered extent size (in bytes) for the open file" -msgstr "" - -#: ../io/parent.c:48 -#, c-format -msgid "%s%s" -msgstr "" - -#: ../io/parent.c:53 -#, c-format -msgid "inode-path for inode: %llu is incorrect - path non-existent\n" -msgstr "" - -#: ../io/parent.c:57 -#, c-format -msgid "path \"%s\" does not stat for inode: %llu; err = %s\n" -msgstr "" - -#: ../io/parent.c:66 -#, c-format -msgid "path \"%s\" found\n" -msgstr "" - -#: ../io/parent.c:72 -#, c-format -msgid "inode-path for inode: %llu is incorrect - wrong inode#\n" -msgstr "" - -#: ../io/parent.c:76 ../io/parent.c:105 -#, c-format -msgid "ino mismatch for path \"%s\" %llu vs %llu\n" -msgstr "" - -#: ../io/parent.c:84 -#, c-format -msgid "inode number match: %llu\n" -msgstr "" - -#: ../io/parent.c:93 -#, c-format -msgid "parent path \"%s\" does not stat: %s\n" -msgstr "" - -#: ../io/parent.c:101 -#, c-format -msgid "inode-path for inode: %llu is incorrect - wrong parent inode#\n" -msgstr "" - -#: ../io/parent.c:114 -#, c-format -msgid "parent ino match for %llu\n" -msgstr "" - -#: ../io/parent.c:139 -#, c-format -msgid "getparentpaths failed for ino %llu: %s\n" -msgstr "" - -#: ../io/parent.c:148 -#, c-format -msgid "inode-path for inode: %llu is missing\n" -msgstr "" - -#: ../io/parent.c:174 -#, c-format -msgid "can't stat mount point \"%s\": %s\n" -msgstr "" - -#: ../io/parent.c:195 -#, c-format -msgid "failed to get bulkstat information for inode %llu\n" -msgstr "" - -#: ../io/parent.c:201 -#, c-format -msgid "failed to get valid bulkstat information for inode %llu\n" -msgstr "" - -#: ../io/parent.c:213 -#, c-format -msgid "checking inode %llu\n" -msgstr "" - -#: ../io/parent.c:227 -#, c-format -msgid "syssgi bulkstat failed: %s\n" -msgstr "" - -#: ../io/parent.c:253 -#, c-format -msgid "file argument, \"%s\", is not in a mounted XFS filesystem\n" -msgstr "" - -#: ../io/parent.c:262 -#, c-format -msgid "unable to open \"%s\" for jdm: %s\n" -msgstr "" - -#: ../io/parent.c:272 -#, c-format -msgid "unable to allocate buffers: %s\n" -msgstr "" - -#: ../io/parent.c:281 -#, c-format -msgid "num errors: %d\n" -msgstr "" - -#: ../io/parent.c:283 -#, c-format -msgid "succeeded checking %llu inodes\n" -msgstr "" - -#: ../io/parent.c:293 -#, c-format -msgid "p_ino = %llu\n" -msgstr "" - -#: ../io/parent.c:294 -#, c-format -msgid "p_gen = %u\n" -msgstr "" - -#: ../io/parent.c:295 -#, c-format -msgid "p_reclen = %u\n" -msgstr "" - -#: ../io/parent.c:296 -#, c-format -msgid "p_name = \"%s\"\n" -msgstr "" - -#: ../io/parent.c:314 -#, c-format -msgid "%s: unable to allocate parent buffer: %s\n" -msgstr "" - -#: ../io/parent.c:325 -#, c-format -msgid "%s: failed path_to_fshandle \"%s\": %s\n" -msgstr "" - -#: ../io/parent.c:332 -#, c-format -msgid "%s: path_to_handle failed for \"%s\"\n" -msgstr "" - -#: ../io/parent.c:357 -#, c-format -msgid "%s: getparentpaths failed for \"%s\": %s\n" -msgstr "" - -#: ../io/parent.c:364 -#, c-format -msgid "%s: inode-path is missing\n" -msgstr "" - -#: ../io/parent.c:423 -#, c-format -msgid "" -"\n" -" list the current file's parents and their filenames\n" -"\n" -" -c -- check the current file's file system for parent consistency\n" -" -p -- list the current file's parents and their full paths\n" -" -v -- verbose mode\n" -"\n" -msgstr "" - -#: ../io/parent.c:435 -msgid "parent" -msgstr "" - -#: ../io/parent.c:439 -msgid "[-cpv]" -msgstr "" - -#: ../io/parent.c:441 -msgid "print or check parent inodes" -msgstr "" - -#: ../io/pread.c:32 -#, c-format -msgid "" -"\n" -" reads a range of bytes in a specified block size from the given offset\n" -"\n" -" Example:\n" -" 'pread -v 512 20' - dumps 20 bytes read from 512 bytes into the file\n" -"\n" -" Reads a segment of the currently open file, optionally dumping it to the\n" -" standard output stream (with -v option) for subsequent inspection.\n" -" The reads are performed in sequential blocks starting at offset, with the\n" -" blocksize tunable using the -b option (default blocksize is 4096 bytes),\n" -" unless a different pattern is requested.\n" -" -B -- read backwards through the range from offset (backwards N bytes)\n" -" -F -- read forwards through the range of bytes from offset (default)\n" -" -v -- be verbose, dump out buffers (used when reading forwards)\n" -" -R -- read at random offsets in the range of bytes\n" -" -Z N -- zeed the random number generator (used when reading randomly)\n" -" (heh, zorry, the -s/-S arguments were already in use in pwrite)\n" -" When in \"random\" mode, the number of read operations will equal the\n" -" number required to do a complete forward/backward scan of the range.\n" -" Note that the offset within the range is chosen at random each time\n" -" (an offset may be read more than once when operating in this mode).\n" -"\n" -msgstr "" - -#: ../io/pread.c:316 ../io/pwrite.c:215 -#, c-format -msgid "non-numeric bsize -- %s\n" -msgstr "" - -#: ../io/pread.c:407 -#, c-format -msgid "read %lld/%lld bytes at offset %lld\n" -msgstr "" - -#: ../io/pread.c:409 ../io/pwrite.c:335 ../io/sendfile.c:163 -#, c-format -msgid "%s, %d ops; %s (%s/sec and %.4f ops/sec)\n" -msgstr "" - -#: ../io/pread.c:422 -msgid "pread" -msgstr "" - -#: ../io/pread.c:423 -msgid "r" -msgstr "" - -#: ../io/pread.c:428 -msgid "[-b bs] [-v] off len" -msgstr "" - -#: ../io/pread.c:429 -msgid "reads a number of bytes at a specified offset" -msgstr "" - -#: ../io/prealloc.c:125 -msgid "allocsp" -msgstr "" - -#: ../io/prealloc.c:130 ../io/prealloc.c:138 ../io/prealloc.c:146 -#: ../io/prealloc.c:154 -msgid "off len" -msgstr "" - -#: ../io/prealloc.c:131 -msgid "allocates zeroed space for part of a file" -msgstr "" - -#: ../io/prealloc.c:133 -msgid "freesp" -msgstr "" - -#: ../io/prealloc.c:139 -msgid "frees space associated with part of a file" -msgstr "" - -#: ../io/prealloc.c:141 -msgid "resvsp" -msgstr "" - -#: ../io/prealloc.c:148 -msgid "reserves space associated with part of a file" -msgstr "" - -#: ../io/prealloc.c:150 -msgid "unresvsp" -msgstr "" - -#: ../io/prealloc.c:157 -msgid "frees reserved space associated with part of a file" -msgstr "" - -#: ../io/pwrite.c:31 -#, c-format -msgid "" -"\n" -" writes a range of bytes (in block size increments) from the given offset\n" -"\n" -" Example:\n" -" 'pwrite 512 20' - writes 20 bytes at 512 bytes into the open file\n" -"\n" -" Writes into a segment of the currently open file, using either a buffer\n" -" filled with a set pattern (0xcdcdcdcd) or data read from an input file.\n" -" The writes are performed in sequential blocks starting at offset, with the\n" -" blocksize tunable using the -b option (default blocksize is 4096 bytes),\n" -" unless a different write pattern is requested.\n" -" -S -- use an alternate seed number for filling the write buffer\n" -" -i -- input file, source of data to write (used when writing forward)\n" -" -d -- open the input file for direct IO\n" -" -s -- skip a number of bytes at the start of the input file\n" -" -w -- call fdatasync(2) at the end (included in timing results)\n" -" -W -- call fsync(2) at the end (included in timing results)\n" -" -B -- write backwards through the range from offset (backwards N bytes)\n" -" -F -- write forwards through the range of bytes from offset (default)\n" -" -R -- write at random offsets in the specified range of bytes\n" -" -Z N -- zeed the random number generator (used when writing randomly)\n" -" (heh, zorry, the -s/-S arguments were already in use in pwrite)\n" -"\n" -msgstr "" - -#: ../io/pwrite.c:242 -#, c-format -msgid "non-numeric skip -- %s\n" -msgstr "" - -#: ../io/pwrite.c:333 -#, c-format -msgid "wrote %lld/%lld bytes at offset %lld\n" -msgstr "" - -#: ../io/pwrite.c:350 -msgid "pwrite" -msgstr "" - -#: ../io/pwrite.c:351 -msgid "w" -msgstr "" - -#: ../io/pwrite.c:357 -msgid "[-i infile [-d] [-s skip]] [-b bs] [-S seed] [-wW] off len" -msgstr "" - -#: ../io/pwrite.c:359 -msgid "writes a number of bytes at a specified offset" -msgstr "" - -#: ../io/resblks.c:39 -#, c-format -msgid "non-numeric argument -- %s\n" -msgstr "" - -#: ../io/resblks.c:51 -#, c-format -msgid "reserved blocks = %llu\n" -msgstr "" - -#: ../io/resblks.c:53 -#, c-format -msgid "available reserved blocks = %llu\n" -msgstr "" - -#: ../io/resblks.c:61 -msgid "resblks" -msgstr "" - -#: ../io/resblks.c:66 -msgid "[blocks]" -msgstr "" - -#: ../io/resblks.c:68 -msgid "get and/or set count of reserved filesystem blocks" -msgstr "" - -#: ../io/sendfile.c:32 -#, c-format -msgid "" -"\n" -" transfer a range of bytes from the given offset between files\n" -"\n" -" Example:\n" -" 'send -f 2 512 20' - writes 20 bytes at 512 bytes into the open file\n" -"\n" -" Copies data between one file descriptor and another. Because this copying\n" -" is done within the kernel, sendfile does not need to transfer data to and\n" -" from user space.\n" -" -f -- specifies an input file from which to source data to write\n" -" -i -- specifies an input file name from which to source data to write.\n" -" An offset and length in the source file can be optionally specified.\n" -"\n" -msgstr "" - -#: ../io/sendfile.c:161 -#, c-format -msgid "sent %lld/%lld bytes from offset %lld\n" -msgstr "" - -#: ../io/sendfile.c:179 -msgid "sendfile" -msgstr "" - -#: ../io/sendfile.c:180 -msgid "send" -msgstr "" - -#: ../io/sendfile.c:186 -msgid "-i infile | -f N [off len]" -msgstr "" - -#: ../io/sendfile.c:188 -msgid "Transfer data directly between file descriptors" -msgstr "" - -#: ../io/shutdown.c:54 -msgid "shutdown" -msgstr "" - -#: ../io/shutdown.c:59 -msgid "[-f]" -msgstr "" - -#: ../io/shutdown.c:61 -msgid "shuts down the filesystem where the current file resides" -msgstr "" - -#: ../io/truncate.c:38 -#, c-format -msgid "non-numeric truncate argument -- %s\n" -msgstr "" - -#: ../io/truncate.c:52 -msgid "truncate" -msgstr "" - -#: ../io/truncate.c:53 -msgid "t" -msgstr "" - -#: ../io/truncate.c:58 ../quota/state.c:516 -msgid "off" -msgstr "" - -#: ../io/truncate.c:60 -msgid "truncates the current file at the given offset" -msgstr "" - -#: ../libdisk/dm.c:56 -#, c-format -msgid "Warning - device mapper device, but no dmsetup(8) found\n" -msgstr "" - -#: ../libdisk/dm.c:62 -#, c-format -msgid "Warning - device mapper device, but cannot resolve path %s: %s\n" -msgstr "" - -#: ../libdisk/dm.c:73 ../libdisk/lvm.c:70 -#, c-format -msgid "Could not open pipe\n" -msgstr "" - -#: ../libdisk/dm.c:88 ../libdisk/lvm.c:85 -#, c-format -msgid "Failed to execute %s\n" -msgstr "" - -#: ../libdisk/dm.c:92 -#, c-format -msgid "Failed forking dmsetup process\n" -msgstr "" - -#: ../libdisk/drivers.c:35 -#, c-format -msgid "Cannot stat %s: %s\n" -msgstr "" - -#: ../libdisk/lvm.c:60 -#, c-format -msgid "Warning - LVM device, but no lvdisplay(8) found\n" -msgstr "" - -#: ../libdisk/lvm.c:89 -#, c-format -msgid "Failed forking lvdisplay process\n" -msgstr "" - -#: ../libdisk/md.c:52 -#, c-format -msgid "Error getting MD array info from %s\n" -msgstr "" - -#: ../libxcmd/command.c:82 -#, c-format -msgid "command \"%s\" not found\n" -msgstr "" - -#: ../libxcmd/command.c:90 -#, c-format -msgid "bad argument count %d to %s, expected at least %d arguments\n" -msgstr "" - -#: ../libxcmd/command.c:94 -#, c-format -msgid "bad argument count %d to %s, expected %d arguments\n" -msgstr "" - -#: ../libxcmd/command.c:98 -#, c-format -msgid "bad argument count %d to %s, expected between %d and %d arguments\n" -msgstr "" - -#: ../libxcmd/command.c:160 -#, c-format -msgid "cannot strdup command '%s': %s\n" -msgstr "" - -#: ../libxcmd/help.c:33 -#, c-format -msgid "" -"\n" -"Use 'help commandname' for extended help.\n" -msgstr "" - -#: ../libxcmd/help.c:49 -#, c-format -msgid "command %s not found\n" -msgstr "" - -#: ../libxcmd/help.c:86 -msgid "help" -msgstr "" - -#: ../libxcmd/help.c:87 -msgid "?" -msgstr "" - -#: ../libxcmd/help.c:92 -msgid "[command]" -msgstr "" - -#: ../libxcmd/help.c:93 -msgid "help for one or all commands" -msgstr "" - -#: ../libxcmd/paths.c:333 -#, c-format -msgid "%s: cannot initialise path table: %s\n" -msgstr "" - -#: ../libxcmd/paths.c:348 -#, c-format -msgid "%s: cannot setup path for mount %s: %s\n" -msgstr "" - -#: ../libxcmd/paths.c:361 -#, c-format -msgid "%s: no mount table yet, so no projects\n" -msgstr "" - -#: ../libxcmd/paths.c:368 -#, c-format -msgid "%s: cannot setup path for project %s: %s\n" -msgstr "" - -#: ../libxcmd/quit.c:36 -msgid "quit" -msgstr "" - -#: ../libxcmd/quit.c:37 -msgid "q" -msgstr "" - -#: ../libxcmd/quit.c:42 -msgid "exit the program" -msgstr "" - -#: ../libxfs/darwin.c:39 -#, c-format -msgid "%s: error opening the device special file \"%s\": %s\n" -msgstr "" - -#: ../libxfs/darwin.c:46 -#, c-format -msgid "%s: can't tell if \"%s\" is writable: %s\n" -msgstr "" - -#: ../libxfs/darwin.c:73 ../libxfs/freebsd.c:114 ../libxfs/irix.c:61 -#: ../libxfs/linux.c:128 -#, c-format -msgid "%s: cannot stat the device file \"%s\": %s\n" -msgstr "" - -#: ../libxfs/darwin.c:83 -#, c-format -msgid "%s: can't determine device size: %s\n" -msgstr "" - -#: ../libxfs/freebsd.c:47 -#, c-format -msgid "%s: %s possibly contains a mounted filesystem\n" -msgstr "" - -#: ../libxfs/freebsd.c:58 ../libxfs/linux.c:63 -#, c-format -msgid "%s: %s contains a mounted filesystem\n" -msgstr "" - -#: ../libxfs/freebsd.c:73 ../libxfs/linux.c:81 -#, c-format -msgid "%s: %s contains a possibly writable, mounted filesystem\n" -msgstr "" - -#: ../libxfs/freebsd.c:87 ../libxfs/linux.c:95 -#, c-format -msgid "%s: %s contains a mounted and writable filesystem\n" -msgstr "" - -#: ../libxfs/freebsd.c:127 -#, c-format -msgid "%s: Not a device or file: \"%s\"n" -msgstr "" - -#: ../libxfs/freebsd.c:134 -#, c-format -msgid "%s: DIOCGMEDIASIZE failed on \"%s\": %s\n" -msgstr "" - -#: ../libxfs/freebsd.c:141 -#, c-format -msgid "%s: DIOCGSECTORSIZE failed on \"%s\": %s\n" -msgstr "" - -#: ../libxfs/init.c:73 ../libxfs/init.c:157 -#, c-format -msgid "%s: %s: device %lld is not open\n" -msgstr "" - -#: ../libxfs/init.c:102 -#, c-format -msgid "%s: cannot stat %s: %s\n" -msgstr "" - -#: ../libxfs/init.c:120 -#, c-format -msgid "%s: device %lld is already open\n" -msgstr "" - -#: ../libxfs/init.c:133 -#, c-format -msgid "%s: %s: too many open devices\n" -msgstr "" - -#: ../libxfs/init.c:175 -#, c-format -msgid "%s: can't find a character device matching %s\n" -msgstr "" - -#: ../libxfs/init.c:181 -#, c-format -msgid "%s: can't find a block device matching %s\n" -msgstr "" - -#: ../libxfs/init.c:247 -#, c-format -msgid "%s: %s is not a volume device name\n" -msgstr "" - -#: ../libxfs/init.c:256 -#, c-format -msgid "%s: %s has a data subvolume, cannot specify %s\n" -msgstr "" - -#: ../libxfs/init.c:262 -#, c-format -msgid "%s: %s has a log subvolume, cannot specify %s\n" -msgstr "" - -#: ../libxfs/init.c:268 -#, c-format -msgid "%s: %s has a realtime subvolume, cannot specify %s\n" -msgstr "" - -#: ../libxfs/init.c:278 ../libxfs/init.c:289 ../libxfs/init.c:300 -#, c-format -msgid "%s: mknod failed: %s\n" -msgstr "" - -#: ../libxfs/init.c:367 -#, c-format -msgid "%s: can't get size for data subvolume\n" -msgstr "" - -#: ../libxfs/init.c:372 -#, c-format -msgid "%s: can't get size for log subvolume\n" -msgstr "" - -#: ../libxfs/init.c:377 -#, c-format -msgid "%s: can't get size for realtime subvolume\n" -msgstr "" - -#: ../libxfs/init.c:462 -#, c-format -msgid "%s: cannot read realtime bitmap inode (%d)\n" -msgstr "" - -#: ../libxfs/init.c:471 -#, c-format -msgid "%s: cannot read realtime summary inode (%d)\n" -msgstr "" - -#: ../libxfs/init.c:495 -#, c-format -msgid "%s: filesystem has a realtime subvolume\n" -msgstr "" - -#: ../libxfs/init.c:517 -#, c-format -msgid "%s: realtime init - %llu != %llu\n" -msgstr "" - -#: ../libxfs/init.c:525 -#, 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:636 -#, c-format -msgid "%s: data size check failed\n" -msgstr "" - -#: ../libxfs/init.c:649 -#, c-format -msgid "%s: log size checks failed\n" -msgstr "" - -#: ../libxfs/init.c:659 -#, c-format -msgid "%s: realtime device init failed\n" -msgstr "" - -#: ../libxfs/init.c:667 -#, c-format -msgid "%s: failed to alloc %ld bytes: %s\n" -msgstr "" - -#: ../libxfs/init.c:681 -#, c-format -msgid "%s: cannot read root inode (%d)\n" -msgstr "" - -#: ../libxfs/linux.c:107 -#, c-format -msgid "%s: warning - cannot set blocksize on block device %s: %s\n" -msgstr "" - -#: ../libxfs/linux.c:149 -#, c-format -msgid "%s: can't determine device size\n" -msgstr "" - -#: ../libxfs/linux.c:157 -#, c-format -msgid "%s: warning - cannot get sector size from block device %s: %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:38 -#, c-format -msgid "%s: %s can't memalign %d bytes: %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:48 -#, c-format -msgid "%s: %s seek to offset %llu failed: %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:58 -#, c-format -msgid "%s: %s write failed: %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:62 -#, c-format -msgid "%s: %s not progressing?\n" -msgstr "" - -#: ../libxfs/rdwr.c:202 -#, c-format -msgid "%s: buf calloc failed (%ld bytes): %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:229 -#, c-format -msgid "%s: read failed: %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:276 -#, c-format -msgid "%s: pwrite64 failed: %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:283 -#, c-format -msgid "%s: error - wrote only %d of %d bytes\n" -msgstr "" - -#: ../libxfs/rdwr.c:350 -#, c-format -msgid "%s: zone init failed (%s, %d bytes): %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:369 -#, c-format -msgid "%s: zone calloc failed (%s, %d bytes): %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:404 -#, c-format -msgid "%s: calloc failed (%d bytes): %s\n" -msgstr "" - -#: ../libxfs/rdwr.c:435 -#, c-format -msgid "%s: realloc failed (%d bytes): %s\n" -msgstr "" - -#: ../libxfs/trans.c:33 -#, c-format -msgid "%s: xact calloc failed (%d bytes): %s\n" -msgstr "" - -#: ../libxfs/trans.c:557 -#, c-format -msgid "%s: warning - itobp failed (%d)\n" -msgstr "" - -#: ../libxfs/trans.c:565 -#, c-format -msgid "%s: warning - iflush_int failed (%d)\n" -msgstr "" - -#: ../libxfs/trans.c:646 ../libxfs/trans.c:730 -#, c-format -msgid "%s: unrecognised log item type\n" -msgstr "" - -#: ../libxfs/util.c:739 -#, c-format -msgid "%s: cannot reserve space: %s\n" -msgstr "" - -#: ../libxlog/util.c:37 -#, c-format -msgid "" -"* ERROR: mismatched uuid in log\n" -"* SB : %s\n" -"* log: %s\n" -msgstr "" - -#: ../libxlog/util.c:50 -#, c-format -msgid "" -"\n" -"LOG REC AT LSN cycle %d block %d (0x%x, 0x%x)\n" -msgstr "" - -#: ../libxlog/util.c:58 -#, c-format -msgid "* ERROR: bad magic number in log header: 0x%x\n" -msgstr "" - -#: ../libxlog/util.c:67 -#, c-format -msgid "* ERROR: log format incompatible (log=%d, ours=%d)\n" -msgstr "" - -#: ../libxlog/util.c:77 ../libxlog/util.c:89 -msgid "Bad log" -msgstr "" - -#: ../mkfs/proto.c:60 -#, c-format -msgid "%s: failed to open %s: %s\n" -msgstr "" - -#: ../mkfs/proto.c:66 ../mkfs/proto.c:291 -#, c-format -msgid "%s: read failed on %s: %s\n" -msgstr "" - -#: ../mkfs/proto.c:71 -#, c-format -msgid "%s: proto file %s premature EOF\n" -msgstr "" - -#: ../mkfs/proto.c:108 -msgid "cannot reserve space" -msgstr "" - -#: ../mkfs/proto.c:161 -#, c-format -msgid "%s: premature EOF in prototype file\n" -msgstr "" - -#: ../mkfs/proto.c:180 -msgid "error reserving space for a file" -msgstr "" - -#: ../mkfs/proto.c:249 -msgid "error allocating space for a file" -msgstr "" - -#: ../mkfs/proto.c:253 -#, c-format -msgid "%s: cannot allocate space for file\n" -msgstr "" - -#: ../mkfs/proto.c:322 -msgid "directory createname error" -msgstr "" - -#: ../mkfs/proto.c:339 -msgid "directory create error" -msgstr "" - -#: ../mkfs/proto.c:404 ../mkfs/proto.c:416 ../mkfs/proto.c:427 -#: ../mkfs/proto.c:434 -#, c-format -msgid "%s: bad format string %s\n" -msgstr "" - -#: ../mkfs/proto.c:453 ../mkfs/proto.c:494 ../mkfs/proto.c:510 -#: ../mkfs/proto.c:523 ../mkfs/proto.c:536 ../mkfs/proto.c:548 -msgid "Inode allocation failed" -msgstr "" - -#: ../mkfs/proto.c:471 -msgid "Inode pre-allocation failed" -msgstr "" - -#: ../mkfs/proto.c:482 -msgid "Pre-allocated file creation failed" -msgstr "" - -#: ../mkfs/proto.c:569 -msgid "Directory creation failed" -msgstr "" - -#: ../mkfs/proto.c:593 -msgid "Error encountered creating file from prototype file" -msgstr "" - -#: ../mkfs/proto.c:643 -msgid "Realtime bitmap inode allocation failed" -msgstr "" - -#: ../mkfs/proto.c:661 -msgid "Realtime summary inode allocation failed" -msgstr "" - -#: ../mkfs/proto.c:687 -msgid "Allocation of the realtime bitmap failed" -msgstr "" - -#: ../mkfs/proto.c:700 -msgid "Completion of the realtime bitmap failed" -msgstr "" - -#: ../mkfs/proto.c:723 -msgid "Allocation of the realtime summary failed" -msgstr "" - -#: ../mkfs/proto.c:735 -msgid "Completion of the realtime summary failed" -msgstr "" - -#: ../mkfs/proto.c:752 -msgid "Error initializing the realtime space" -msgstr "" - -#: ../mkfs/proto.c:757 -msgid "Error completing the realtime space" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:201 -#, c-format -msgid "data su/sw must not be used in conjunction with data sunit/swidth\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:208 -#, c-format -msgid "both data sunit and data swidth options must be specified\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:217 -#, c-format -msgid "data sunit/swidth must not be used in conjunction with data su/sw\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:224 -#, c-format -msgid "both data su and data sw options must be specified\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:231 -#, c-format -msgid "data su must be a multiple of the sector size (%d)\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:242 -#, c-format -msgid "" -"data stripe width (%d) must be a multiple of the data stripe unit (%d)\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:252 -#, c-format -msgid "log su should not be used in conjunction with log sunit\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:261 -#, c-format -msgid "log sunit should not be used in conjunction with log su\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:278 -#, c-format -msgid "%s: %s appears to contain an existing filesystem (%s).\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:284 -#, c-format -msgid "%s: %s appears to contain a partition table (%s).\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:318 -#, c-format -msgid "log size %lld is not a multiple of the log stripe unit %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:346 -#, c-format -msgid "Due to stripe alignment, the internal log size (%lld) is too large.\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:348 -#, c-format -msgid "Must fit within an allocation group.\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:359 -#, c-format -msgid "log size %lld blocks too small, minimum size is %d blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:365 -#, c-format -msgid "log size %lld blocks too large, maximum size is %d blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:371 -#, c-format -msgid "log size %lld bytes too large, maximum size is %d bytes\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:442 -#, c-format -msgid "agsize (%lldb) too small, need at least %lld blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:450 -#, c-format -msgid "agsize (%lldb) too big, maximum is %lld blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:458 -#, c-format -msgid "agsize (%lldb) too big, data area is %lld blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:465 -#, c-format -msgid "too many allocation groups for size = %lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:467 -#, c-format -msgid "need at most %lld allocation groups\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:475 -#, c-format -msgid "too few allocation groups for size = %lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:477 -#, c-format -msgid "need at least %lld allocation groups\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:490 -#, c-format -msgid "last AG size %lld blocks too small, minimum size is %lld blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:501 -#, c-format -msgid "%lld allocation groups is too many, maximum is %lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:747 -#, c-format -msgid "%s: Specify data sunit in 512-byte blocks, no unit suffix\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:763 -#, c-format -msgid "%s: Specify data swidth in 512-byte blocks, no unit suffix\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:790 -#, c-format -msgid "%s: Specify data sw as multiple of su, no unit suffix\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:980 -#, c-format -msgid "Must specify log device\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1045 -#, c-format -msgid "Specify log sunit in 512-byte blocks, no size suffix\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1291 -#, c-format -msgid "extra arguments\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1297 -#, c-format -msgid "cannot specify both %s and -d name=%s\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1314 -#, c-format -msgid "illegal block size %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1333 -#, c-format -msgid "illegal sector size %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1338 -#, c-format -msgid "illegal log sector size %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1350 ../mkfs/xfs_mkfs.c:1360 -#, c-format -msgid "illegal directory block size %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1376 -#, c-format -msgid "both -d agcount= and agsize= specified, use one or the other\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1382 -#, c-format -msgid "if -d file then -d name and -d size are required\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1391 -#, c-format -msgid "illegal data length %lld, not a multiple of %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1397 -#, c-format -msgid "warning: data length %lld not a multiple of %d, truncated to %lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1412 -#, c-format -msgid "if -l file then -l name and -l size are required\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1422 -#, c-format -msgid "illegal log length %lld, not a multiple of %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1429 -#, c-format -msgid "warning: log length %lld not a multiple of %d, truncated to %lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1436 -#, c-format -msgid "if -r file then -r name and -r size are required\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1446 -#, c-format -msgid "illegal rt length %lld, not a multiple of %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1453 -#, c-format -msgid "warning: rt length %lld not a multiple of %d, truncated to %lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1466 -#, c-format -msgid "illegal rt extent size %lld, not a multiple of %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1472 -#, c-format -msgid "rt extent size %s too large, maximum %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1478 -#, c-format -msgid "rt extent size %s too small, minimum %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1520 -#, c-format -msgid "illegal inode size %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1525 -#, c-format -msgid "allowable inode size with %d byte blocks is %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1529 -#, c-format -msgid "allowable inode size with %d byte blocks is between %d and %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1537 -#, c-format -msgid "log stripe unit specified, using v2 logs\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1550 -#, c-format -msgid "no device name given in argument list\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1570 -#, c-format -msgid "%s: Use the -f option to force overwrite.\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1581 -msgid "internal log" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1583 -msgid "volume log" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1585 -#, c-format -msgid "no log subvolume or internal log\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1592 -msgid "volume rt" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1597 -#, c-format -msgid "" -"size %s specified for data subvolume is too large, maximum is %lld blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1604 -#, c-format -msgid "can't get size of data subvolume\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1609 -#, c-format -msgid "size %lld of data subvolume is too small, minimum %d blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1616 -#, c-format -msgid "can't have both external and internal logs\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1620 -#, c-format -msgid "data and log sector sizes must be equal for internal logs\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1626 -#, 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:1632 -#, 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:1638 -#, 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:1652 -#, c-format -msgid "" -"size %s specified for log subvolume is too large, maximum is %lld blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1659 -#, c-format -msgid "size specified for non-existent log subvolume\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1662 -#, c-format -msgid "size %lld too large for internal log\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1689 -#, c-format -msgid "" -"size %s specified for rt subvolume is too large, maximum is %lld blocks\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1697 -#, c-format -msgid "size specified for non-existent rt subvolume\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1714 -#, c-format -msgid "agsize (%lld) not a multiple of fs blk size (%d)\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1742 -#, c-format -msgid "" -"%s: Specified data stripe unit %d is not the same as the volume stripe unit %" -"d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1748 -#, 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:1793 -#, c-format -msgid "agsize rounded to %lld, swidth = %d\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1800 -#, c-format -msgid "" -"Allocation group size (%lld) is not a multiple of the stripe unit (%d)\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1822 -#, c-format -msgid "" -"Warning: AG size is a multiple of stripe width. This can cause performance\n" -"problems by aligning all AGs on the same disk. To avoid this, run mkfs " -"with\n" -"an AG size that is one stripe unit smaller, for example %llu.\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1847 -#, c-format -msgid "" -"%s: Stripe unit(%d) or stripe width(%d) is not a multiple of the block size(%" -"d)\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1862 -#, c-format -msgid "log stripe unit (%d) must be a multiple of the block size (%d)\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1875 -#, c-format -msgid "log stripe unit (%d bytes) is too large (maximum is 256KiB)\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1878 -#, c-format -msgid "log stripe unit adjusted to 32KiB\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1903 -#, c-format -msgid "internal log size %lld too large, must fit in allocation group\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1910 -#, c-format -msgid "log ag number %d too large, must be less than %lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:1940 -#, c-format -msgid "" -"meta-data=%-22s isize=%-6d agcount=%lld, agsize=%lld blks\n" -" =%-22s sectsz=%-5u attr=%u\n" -"data =%-22s bsize=%-6u blocks=%llu, imaxpct=%u\n" -" =%-22s sunit=%-6u swidth=%u blks, unwritten=%u\n" -"naming =version %-14u bsize=%-6u\n" -"log =%-22s bsize=%-6d blocks=%lld, version=%d\n" -" =%-22s sectsz=%-5u sunit=%d blks\n" -"realtime =%-22s extsz=%-6d blocks=%lld, rtextents=%lld\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2046 -#, c-format -msgid "%s: Growing the data section failed\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2075 -#, c-format -msgid "%s: filesystem failed to initialize\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2299 -#, c-format -msgid "%s: root inode created in AG %u, not AG 0\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2358 -#, c-format -msgid "Cannot specify both -%c %s and -%c %s\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2369 -#, c-format -msgid "Illegal value %s for -%s option\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2386 -#, c-format -msgid "-%c %s option requires a value\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2399 ../repair/xfs_repair.c:129 -#, c-format -msgid "option respecified\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2408 ../repair/xfs_repair.c:136 -#, c-format -msgid "unknown option -%c %s\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2447 -#, c-format -msgid "blocksize not available yet.\n" -msgstr "" - -#: ../mkfs/xfs_mkfs.c:2473 -#, 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 sectlog=n|sectsize=num,unwritten=0|1]\n" -"/* inode size */\t[-i log=n|perblock=n|size=num,maxpct=n,attr=0|1|2]\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" -"/* quiet */\t\t[-q]\n" -"/* realtime subvol */\t[-r extsize=num,size=num,rtdev=xxx]\n" -"/* sectorsize */\t[-s log=n|size=num]\n" -"/* version */\t\t[-V]\n" -"\t\t\tdevicename\n" -" is required unless -d name=xxx is given.\n" -" is xxx (bytes), xxxs (sectors), xxxb (fs blocks), xxxk (xxx KiB),\n" -" xxxm (xxx MiB), xxxg (xxx GiB), xxxt (xxx TiB) or xxxp (xxx PiB).\n" -" is xxx (512 byte blocks).\n" -msgstr "" - -#: ../quota/edit.c:36 -#, c-format -msgid "" -"\n" -" modify quota limits for the specified user\n" -"\n" -" Example:\n" -" 'limit bsoft=100m bhard=110m tanya\n" -"\n" -" Changes the soft and/or hard block limits, inode limits and/or realtime\n" -" block limits that are currently being used for the specified user, group,\n" -" or project. The filesystem identified by the current path is modified.\n" -" -d -- set the default values, used the first time a file is created\n" -" -g -- modify group quota limits\n" -" -p -- modify project quota limits\n" -" -u -- modify user quota limits\n" -" The block limit values can be specified with a units suffix - accepted\n" -" units are: k (kilobytes), m (megabytes), g (gigabytes), and t (terabytes).\n" -" The user/group/project can be specified either by name or by number.\n" -"\n" -msgstr "" - -#: ../quota/edit.c:59 -#, c-format -msgid "" -"\n" -" modify quota enforcement timeout for the current filesystem\n" -"\n" -" Example:\n" -" 'timer -i 3days'\n" -" (soft inode limit timer is changed to 3 days)\n" -"\n" -" Changes the timeout value associated with the block limits, inode limits\n" -" and/or realtime block limits for all users, groups, or projects on the\n" -" current filesystem.\n" -" As soon as a user consumes the amount of space or number of inodes set as\n" -" the soft limit, a timer is started. If the timer expires and the user is\n" -" still over the soft limit, the soft limit is enforced as the hard limit.\n" -" The default timeout is 7 days.\n" -" -d -- set the default values, used the first time a file is created\n" -" -g -- modify group quota timer\n" -" -p -- modify project quota timer\n" -" -u -- modify user quota timer\n" -" -b -- modify the blocks-used timer\n" -" -i -- modify the inodes-used timer\n" -" -r -- modify the blocks-used timer for the (optional) realtime subvolume\n" -" The timeout value is specified as a number of seconds, by default.\n" -" However, a suffix may be used to alternatively specify minutes (m),\n" -" hours (h), days (d), or weeks (w) - either the full word or the first\n" -" letter of the word can be used.\n" -"\n" -msgstr "" - -#: ../quota/edit.c:91 -#, c-format -msgid "" -"\n" -" modify the number of quota warnings sent to the specified user\n" -"\n" -" Example:\n" -" 'warn 2 jimmy'\n" -" (tell the quota system that two warnings have been sent to user jimmy)\n" -"\n" -" Changes the warning count associated with the block limits, inode limits\n" -" and/or realtime block limits for the specified user, group, or project.\n" -" When a user has been warned the maximum number of times allowed, the soft\n" -" limit is enforced as the hard limit. It is intended as an alternative to\n" -" the timeout system, where the system administrator updates a count of the\n" -" number of warnings issued to people, and they are penalised if the " -"warnings\n" -" are ignored.\n" -" -d -- set maximum warning count, which triggers soft limit enforcement\n" -" -g -- set group quota warning count\n" -" -p -- set project quota warning count\n" -" -u -- set user quota warning count\n" -" -b -- set the blocks-used warning count\n" -" -i -- set the inodes-used warning count\n" -" -r -- set the blocks-used warn count for the (optional) realtime subvolume\n" -" The user/group/project can be specified either by name or by number.\n" -"\n" -msgstr "" - -#: ../quota/edit.c:144 -#, c-format -msgid "%s: cannot set limits: %s\n" -msgstr "" - -#: ../quota/edit.c:163 ../quota/edit.c:548 -#, c-format -msgid "%s: invalid user name: %s\n" -msgstr "" - -#: ../quota/edit.c:185 ../quota/edit.c:564 -#, c-format -msgid "%s: invalid group name: %s\n" -msgstr "" - -#: ../quota/edit.c:207 ../quota/edit.c:580 -#, c-format -msgid "%s: invalid project name: %s\n" -msgstr "" - -#: ../quota/edit.c:318 -#, c-format -msgid "%s: unrecognised argument %s\n" -msgstr "" - -#: ../quota/edit.c:324 -#, c-format -msgid "%s: cannot find any valid arguments\n" -msgstr "" - -#: ../quota/edit.c:431 -#, c-format -msgid "%s: fopen on %s failed: %s\n" -msgstr "" - -#: ../quota/edit.c:462 -#, c-format -msgid "%s: cannot set timer: %s\n" -msgstr "" - -#: ../quota/edit.c:534 -#, c-format -msgid "%s: cannot set warnings: %s\n" -msgstr "" - -#: ../quota/edit.c:661 -msgid "limit" -msgstr "" - -#: ../quota/edit.c:666 -msgid "[-gpu] bsoft|bhard|isoft|ihard|rtbsoft|rtbhard=N -d|id|name" -msgstr "" - -#: ../quota/edit.c:667 -msgid "modify quota limits" -msgstr "" - -#: ../quota/edit.c:670 -msgid "restore" -msgstr "" - -#: ../quota/edit.c:674 ../quota/report.c:32 ../quota/report.c:631 -#: ../quota/state.c:528 -msgid "[-gpu] [-f file]" -msgstr "" - -#: ../quota/edit.c:675 -msgid "restore quota limits from a backup file" -msgstr "" - -#: ../quota/edit.c:677 -msgid "timer" -msgstr "" - -#: ../quota/edit.c:681 ../quota/edit.c:689 -msgid "[-bir] [-gpu] value -d|id|name" -msgstr "" - -#: ../quota/edit.c:682 -msgid "get/set quota enforcement timeouts" -msgstr "" - -#: ../quota/edit.c:685 -msgid "warn" -msgstr "" - -#: ../quota/edit.c:690 -msgid "get/set enforcement warning counter" -msgstr "" - -#: ../quota/free.c:29 -#, c-format -msgid "" -"\n" -" reports the number of free disk blocks and inodes\n" -"\n" -" This command reports the number of total, used, and available disk blocks.\n" -" It can optionally report the same set of numbers for inodes and realtime\n" -" disk blocks, and will report on all known XFS filesystem mount points and\n" -" project quota paths by default (see 'print' command for a list).\n" -" -b -- report the block count values\n" -" -i -- report the inode count values\n" -" -r -- report the realtime block count values\n" -" -h -- report in a human-readable format\n" -" -N -- suppress the header from the output\n" -"\n" -msgstr "" - -#: ../quota/free.c:137 -#, c-format -msgid "%s: project quota flag not set on %s\n" -msgstr "" - -#: ../quota/free.c:145 -#, c-format -msgid "%s: project ID %u (%s) doesn't match ID %u (%s)\n" -msgstr "" - -#: ../quota/free.c:210 -#, c-format -msgid "Filesystem " -msgstr "" - -#: ../quota/free.c:210 -#, c-format -msgid "Filesystem " -msgstr "" - -#: ../quota/free.c:213 -#, c-format -msgid " Size Used Avail Use%%" -msgstr "" - -#: ../quota/free.c:214 -#, c-format -msgid " 1K-blocks Used Available Use%%" -msgstr "" - -#: ../quota/free.c:217 -#, c-format -msgid " Inodes Used Free Use%%" -msgstr "" - -#: ../quota/free.c:218 -#, c-format -msgid " Inodes IUsed IFree IUse%%" -msgstr "" - -#: ../quota/free.c:219 -#, c-format -msgid " Pathname\n" -msgstr "" - -#: ../quota/free.c:350 -msgid "df" -msgstr "" - -#: ../quota/free.c:351 ../repair/dir2.c:926 ../repair/dir2.c:1461 -msgid "free" -msgstr "" - -#: ../quota/free.c:355 -msgid "[-bir] [-hn] [-f file]" -msgstr "" - -#: ../quota/free.c:356 -msgid "show free and used counts for blocks and inodes" -msgstr "" - -#: ../quota/init.c:48 -#, c-format -msgid "Usage: %s [-p prog] [-c cmd]... [-d project]... [path]\n" -msgstr "" - -#: ../quota/path.c:39 -#, c-format -msgid "%sFilesystem Pathname\n" -msgstr "" - -#: ../quota/path.c:40 -msgid " " -msgstr "" - -#: ../quota/path.c:43 -#, c-format -msgid "%c%03d%c " -msgstr "" - -#: ../quota/path.c:45 -#, c-format -msgid "%-19s %s" -msgstr "" - -#: ../quota/path.c:48 -#, c-format -msgid " (project %u" -msgstr "" - -#: ../quota/path.c:50 -#, c-format -msgid ", %s" -msgstr "" - -#: ../quota/path.c:119 -msgid "path" -msgstr "" - -#: ../quota/path.c:120 -msgid "paths" -msgstr "" - -#: ../quota/path.c:125 -msgid "set current path, or show the list of paths" -msgstr "" - -#: ../quota/path.c:132 -msgid "list known mount points and projects" -msgstr "" - -#: ../quota/project.c:37 -#, c-format -msgid "" -"\n" -" list projects or setup a project tree for tree quota management\n" -"\n" -" Example:\n" -" 'project -c logfiles'\n" -" (match project 'logfiles' to a directory, and setup the directory tree)\n" -"\n" -" Without arguments, report all projects found in the /etc/projects file.\n" -" The project quota mechanism in XFS can be used to implement a form of\n" -" directory tree quota, where a specified directory and all of the files\n" -" and subdirectories below it (i.e. a tree) can be restricted to using a\n" -" subset of the available space in the filesystem.\n" -"\n" -" A managed tree must be setup initially using the -c option with a project.\n" -" The specified project name or identifier is matched to one or more trees\n" -" defined in /etc/projects, and these trees are then recursively descended\n" -" to mark the affected inodes as being part of that tree - which sets inode\n" -" flags and the project identifier on every file.\n" -" Once this has been done, new files created in the tree will automatically\n" -" be accounted to the tree based on their project identifier. An attempt to\n" -" create a hard link to a file in the tree will only succeed if the project\n" -" identifier matches the project identifer for the tree. The xfs_io utility\n" -" can be used to set the project ID for an arbitrary file, but this can only\n" -" be done by a privileged user.\n" -"\n" -" A previously setup tree can be cleared from project quota control through\n" -" use of the -C option, which will recursively descend the tree, clearing\n" -" the affected inodes from project quota control.\n" -"\n" -" The -c option can be used to check whether a tree is setup, it reports\n" -" nothing if the tree is correct, otherwise it reports the paths of inodes\n" -" which do not have the project ID of the rest of the tree, or if the inode\n" -" flag is not set.\n" -"\n" -" The /etc/projid and /etc/projects file formats are simple, and described\n" -" on the xfs_quota man page.\n" -"\n" -msgstr "" - -#: ../quota/project.c:94 -#, c-format -msgid "%s - project identifier is not set (inode=%u, tree=%u)\n" -msgstr "" - -#: ../quota/project.c:98 -#, c-format -msgid "%s - project inheritance flag is not set\n" -msgstr "" - -#: ../quota/project.c:130 -#, c-format -msgid "%s: cannot clear project on %s: %s\n" -msgstr "" - -#: ../quota/project.c:160 -#, c-format -msgid "%s: cannot set project on %s: %s\n" -msgstr "" - -#: ../quota/project.c:174 -#, c-format -msgid "Checking project %s (path %s)...\n" -msgstr "" - -#: ../quota/project.c:178 -#, c-format -msgid "Setting up project %s (path %s)...\n" -msgstr "" - -#: ../quota/project.c:182 -#, c-format -msgid "Clearing project %s (path %s)...\n" -msgstr "" - -#: ../quota/project.c:205 -#, c-format -msgid "Processed %d %s paths for project %s\n" -msgstr "" - -#: ../quota/project.c:241 -#, c-format -msgid "projects file \"%s\" doesn't exist\n" -msgstr "" - -#: ../quota/project.c:249 -#, c-format -msgid "%s - no such project in %s\n" -msgstr "" - -#: ../quota/project.c:262 -msgid "project" -msgstr "" - -#: ../quota/project.c:263 -msgid "tree" -msgstr "" - -#: ../quota/project.c:265 -msgid "[-c|-s|-C] project ..." -msgstr "" - -#: ../quota/project.c:268 -msgid "check, setup or clear project quota trees" -msgstr "" - -#: ../quota/quot.c:55 -#, c-format -msgid "" -"\n" -" display a summary of filesystem ownership\n" -"\n" -" -a -- summarise for all local XFS filesystem mount points\n" -" -c -- display three columns giving file size in kilobytes, number of files\n" -" of that size, and cumulative total of kilobytes in that size or\n" -" smaller file. The last row is used as an overflow bucket and is the\n" -" total of all files greater than 500 kilobytes.\n" -" -v -- display three columns containing the number of kilobytes not\n" -" accessed in the last 30, 60, and 90 days.\n" -" -g -- display group summary\n" -" -p -- display project summary\n" -" -u -- display user summary\n" -" -b -- display number of blocks used\n" -" -i -- display number of inodes used\n" -" -r -- display number of realtime blocks used\n" -" -n -- skip identifier-to-name translations, just report IDs\n" -" -N -- suppress the initial header\n" -" -f -- send output to a file\n" -" The (optional) user/group/project can be specified either by name or by\n" -" number (i.e. uid/gid/projid).\n" -"\n" -msgstr "" - -#: ../quota/quot.c:219 -#, c-format -msgid "%s (%s) %s:\n" -msgstr "" - -#: ../quota/quot.c:295 -#, c-format -msgid "%s (%s):\n" -msgstr "" - -#: ../quota/quot.c:300 ../quota/quot.c:304 -#, c-format -msgid "%d\t%llu\t%llu\n" -msgstr "" - -#: ../quota/quot.c:414 -msgid "quot" -msgstr "" - -#: ../quota/quot.c:418 -msgid "[-bir] [-gpu] [-acv] [-f file]" -msgstr "" - -#: ../quota/quot.c:419 -msgid "summarize filesystem ownership" -msgstr "" - -#: ../quota/quota.c:32 -#, c-format -msgid "" -"\n" -" display usage and quota information\n" -"\n" -" -g -- display group quota information\n" -" -p -- display project quota information\n" -" -u -- display user quota information\n" -" -b -- display number of blocks used\n" -" -i -- display number of inodes used\n" -" -r -- display number of realtime blocks used\n" -" -h -- report in a human-readable format\n" -" -n -- skip identifier-to-name translations, just report IDs\n" -" -N -- suppress the initial header\n" -" -v -- increase verbosity in reporting (also dumps zero values)\n" -" -f -- send output to a file\n" -" The (optional) user/group/project can be specified either by name or by\n" -" number (i.e. uid/gid/projid).\n" -"\n" -msgstr "" - -#: ../quota/quota.c:85 -#, c-format -msgid "" -"Disk quotas for %s %s (%u)\n" -"Filesystem%s" -msgstr "" - -#: ../quota/quota.c:90 -#, c-format -msgid " Blocks Quota Limit Warn/Time " -msgstr "" - -#: ../quota/quota.c:91 -#, c-format -msgid " Blocks Quota Limit Warn/Time " -msgstr "" - -#: ../quota/quota.c:94 -#, c-format -msgid " Files Quota Limit Warn/Time " -msgstr "" - -#: ../quota/quota.c:95 -#, c-format -msgid " Files Quota Limit Warn/Time " -msgstr "" - -#: ../quota/quota.c:98 -#, c-format -msgid "Realtime Quota Limit Warn/Time " -msgstr "" - -#: ../quota/quota.c:99 -#, c-format -msgid " Realtime Quota Limit Warn/Time " -msgstr "" - -#: ../quota/quota.c:232 -#, c-format -msgid "%s: cannot find user %s\n" -msgstr "" - -#: ../quota/quota.c:279 -#, c-format -msgid "%s: cannot find group %s\n" -msgstr "" - -#: ../quota/quota.c:333 -#, c-format -msgid "%s: must specify a project name/ID\n" -msgstr "" - -#: ../quota/quota.c:345 -#, c-format -msgid "%s: cannot find project %s\n" -msgstr "" - -#: ../quota/quota.c:445 -msgid "quota" -msgstr "" - -#: ../quota/quota.c:446 -msgid "l" -msgstr "" - -#: ../quota/quota.c:450 -msgid "[-bir] [-gpu] [-hnv] [-f file] [id|name]..." -msgstr "" - -#: ../quota/quota.c:451 -msgid "show usage and limits" -msgstr "" - -#: ../quota/report.c:33 ../quota/report.c:632 -msgid "dump quota information for backup utilities" -msgstr "" - -#: ../quota/report.c:35 -#, c-format -msgid "" -"\n" -" create a backup file which contains quota limits information\n" -" -g -- dump out group quota limits\n" -" -p -- dump out project quota limits\n" -" -u -- dump out user quota limits (default)\n" -" -f -- write the dump out to the specified file\n" -"\n" -msgstr "" - -#: ../quota/report.c:47 ../quota/report.c:640 -msgid "[-bir] [-gpu] [-ahnt] [-f file]" -msgstr "" - -#: ../quota/report.c:48 ../quota/report.c:641 -msgid "report filesystem quota information" -msgstr "" - -#: ../quota/report.c:50 -#, c-format -msgid "" -"\n" -" report used space and inodes, and quota limits, for a filesystem\n" -" Example:\n" -" 'report -igh'\n" -" (reports inode usage for all groups, in an easy-to-read format)\n" -" This command is the equivalent of the traditional repquota command, which\n" -" prints a summary of the disk usage and quotas for the current filesystem,\n" -" or all filesystems.\n" -" -a -- report for all mounted filesystems with quota enabled\n" -" -h -- report in a human-readable format\n" -" -n -- skip identifier-to-name translations, just report IDs\n" -" -N -- suppress the header from the output\n" -" -t -- terse output format, hides rows which are all zero\n" -" -g -- report group usage and quota information\n" -" -p -- report project usage and quota information\n" -" -u -- report user usage and quota information\n" -" -b -- report blocks-used information only\n" -" -i -- report inodes-used information only\n" -" -r -- report realtime-blocks-used information only\n" -"\n" -msgstr "" - -#: ../quota/report.c:221 -#, c-format -msgid "%s quota on %s (%s)\n" -msgstr "" - -#: ../quota/report.c:246 ../quota/report.c:254 -#, c-format -msgid " Used Soft Hard Warn/Grace " -msgstr "" - -#: ../quota/report.c:247 ../quota/report.c:255 -#, c-format -msgid " Used Soft Hard Warn/Grace " -msgstr "" - -#: ../quota/report.c:250 -#, c-format -msgid " Used Soft Hard Warn/Grace " -msgstr "" - -#: ../quota/report.c:251 -#, c-format -msgid " Used Soft Hard Warn/ Grace " -msgstr "" - -#: ../quota/report.c:627 -msgid "dump" -msgstr "" - -#: ../quota/report.c:635 -msgid "report" -msgstr "" - -#: ../quota/report.c:636 -msgid "repquota" -msgstr "" - -#: ../quota/state.c:33 -#, c-format -msgid "" -"\n" -" turn filesystem quota off, both accounting and enforcement\n" -"\n" -" Example:\n" -" 'off -uv' (switch off user quota on the current filesystem)\n" -" This command is the equivalent of the traditional quotaoff command,\n" -" which disables quota completely on a mounted filesystem.\n" -" Note that there is no 'on' command - for XFS filesystems (with the\n" -" exception of the root filesystem on IRIX) quota can only be enabled\n" -" at mount time, through the use of one of the quota mount options.\n" -"\n" -" The state command is useful for displaying the current state. Using\n" -" the -v (verbose) option with the 'off' command will display the quota\n" -" state for the affected filesystem once the operation is complete.\n" -" The affected quota type is -g (groups), -p (projects) or -u (users)\n" -" and defaults to user quota (multiple types can be specified).\n" -"\n" -msgstr "" - -#: ../quota/state.c:56 -#, c-format -msgid "" -"\n" -" query the state of quota on the current filesystem\n" -"\n" -" This is a verbose status command, reporting whether or not accounting\n" -" and/or enforcement are enabled for a filesystem, which inodes are in\n" -" use as the quota state inodes, and how many extents and blocks are\n" -" presently being used to hold that information.\n" -" The quota type is specified via -g (groups), -p (projects) or -u (users)\n" -" and defaults to user quota (multiple types can be specified).\n" -"\n" -msgstr "" - -#: ../quota/state.c:72 -#, c-format -msgid "" -"\n" -" enable quota enforcement on a filesystem\n" -"\n" -" If a filesystem is mounted and has quota accounting enabled, but not\n" -" quota enforcement, enforcement can be enabled with this command.\n" -" With the -v (verbose) option, the status of the filesystem will be\n" -" reported after the operation is complete.\n" -" The affected quota type is -g (groups), -p (projects) or -u (users)\n" -" and defaults to user quota (multiple types can be specified).\n" -"\n" -msgstr "" - -#: ../quota/state.c:88 -#, c-format -msgid "" -"\n" -" disable quota enforcement on a filesystem\n" -"\n" -" If a filesystem is mounted and is currently enforcing quota, this\n" -" provides a mechanism to switch off the enforcement, but continue to\n" -" perform used space (and used inodes) accounting.\n" -" The affected quota type is -g (groups), -p (projects) or -u (users).\n" -"\n" -msgstr "" - -#: ../quota/state.c:102 -#, c-format -msgid "" -"\n" -" remove any space being used by the quota subsystem\n" -"\n" -" Once quota has been switched 'off' on a filesystem, the space that\n" -" was allocated to holding quota metadata can be freed via this command.\n" -" The affected quota type is -g (groups), -p (projects) or -u (users)\n" -" and defaults to user quota (multiple types can be specified).\n" -"\n" -msgstr "" - -#: ../quota/state.c:121 -#, c-format -msgid "%s quota state on %s (%s)\n" -msgstr "" - -#: ../quota/state.c:123 -#, c-format -msgid " Accounting: %s\n" -msgstr "" - -#: ../quota/state.c:123 ../quota/state.c:124 -msgid "ON" -msgstr "" - -#: ../quota/state.c:123 ../quota/state.c:124 -msgid "OFF" -msgstr "" - -#: ../quota/state.c:124 -#, c-format -msgid " Enforcement: %s\n" -msgstr "" - -#: ../quota/state.c:125 -#, c-format -msgid " Inode: #%llu (%llu blocks, %lu extents)\n" -msgstr "" - -#: ../quota/state.c:137 -#, c-format -msgid "%s grace time: %s\n" -msgstr "" - -#: ../quota/state.c:154 -#, c-format -msgid "%s quota are not enabled on %s\n" -msgstr "" - -#: ../quota/state.c:520 ../quota/state.c:536 ../quota/state.c:544 -#: ../quota/state.c:552 -msgid "[-gpu] [-v]" -msgstr "" - -#: ../quota/state.c:521 -msgid "permanently switch quota off for a path" -msgstr "" - -#: ../quota/state.c:524 -msgid "state" -msgstr "" - -#: ../quota/state.c:529 -msgid "get overall quota state information" -msgstr "" - -#: ../quota/state.c:532 -msgid "enable" -msgstr "" - -#: ../quota/state.c:537 -msgid "enable quota enforcement" -msgstr "" - -#: ../quota/state.c:540 -msgid "disable" -msgstr "" - -#: ../quota/state.c:545 -msgid "disable quota enforcement" -msgstr "" - -#: ../quota/state.c:548 -msgid "remove" -msgstr "" - -#: ../quota/state.c:553 -msgid "remove quota extents from a filesystem" -msgstr "" - -#: ../quota/util.c:59 -#, c-format -msgid "[-none-]" -msgstr "" - -#: ../quota/util.c:59 -#, c-format -msgid "[--none--]" -msgstr "" - -#: ../quota/util.c:62 -#, c-format -msgid "[------]" -msgstr "" - -#: ../quota/util.c:62 -#, c-format -msgid "[--------]" -msgstr "" - -#: ../quota/util.c:66 ../quota/util.c:69 -msgid "day" -msgstr "" - -#: ../quota/util.c:66 ../quota/util.c:69 -msgid "days" -msgstr "" - -#: ../quota/util.c:194 -msgid "Blocks" -msgstr "" - -#: ../quota/util.c:194 -msgid "Inodes" -msgstr "" - -#: ../quota/util.c:194 -msgid "Realtime Blocks" -msgstr "" - -#: ../quota/util.c:209 -msgid "User" -msgstr "" - -#: ../quota/util.c:209 -msgid "Group" -msgstr "" - -#: ../quota/util.c:209 -msgid "Project" -msgstr "" - -#: ../quota/util.c:416 -#, c-format -msgid "%s: open on %s failed: %s\n" -msgstr "" - -#: ../quota/util.c:421 -#, c-format -msgid "%s: fdopen on %s failed: %s\n" -msgstr "" - -#: ../repair/agheader.c:35 -#, c-format -msgid "bad magic # 0x%x for agf %d\n" -msgstr "" - -#: ../repair/agheader.c:44 -#, c-format -msgid "bad version # %d for agf %d\n" -msgstr "" - -#: ../repair/agheader.c:54 -#, c-format -msgid "bad sequence # %d for agf %d\n" -msgstr "" - -#: ../repair/agheader.c:64 -#, c-format -msgid "bad length %d for agf %d, should be %d\n" -msgstr "" - -#: ../repair/agheader.c:77 -#, c-format -msgid "bad length %d for agf %d, should be %llu\n" -msgstr "" - -#: ../repair/agheader.c:92 -#, c-format -msgid "flfirst %d in agf %d too large (max = %d)\n" -msgstr "" - -#: ../repair/agheader.c:100 -#, c-format -msgid "fllast %d in agf %d too large (max = %d)\n" -msgstr "" - -#: ../repair/agheader.c:122 -#, c-format -msgid "bad magic # 0x%x for agi %d\n" -msgstr "" - -#: ../repair/agheader.c:131 -#, c-format -msgid "bad version # %d for agi %d\n" -msgstr "" - -#: ../repair/agheader.c:141 -#, c-format -msgid "bad sequence # %d for agi %d\n" -msgstr "" - -#: ../repair/agheader.c:151 -#, c-format -msgid "bad length # %d for agi %d, should be %d\n" -msgstr "" - -#: ../repair/agheader.c:164 -#, c-format -msgid "bad length # %d for agi %d, should be %llu\n" -msgstr "" - -#: ../repair/agheader.c:276 -#, c-format -msgid "zeroing unused portion of %s superblock (AG #%u)\n" -msgstr "" - -#: ../repair/agheader.c:277 ../repair/agheader.c:283 -msgid "primary" -msgstr "" - -#: ../repair/agheader.c:277 ../repair/agheader.c:283 -msgid "secondary" -msgstr "" - -#: ../repair/agheader.c:282 -#, c-format -msgid "would zero unused portion of %s superblock (AG #%u)\n" -msgstr "" - -#: ../repair/agheader.c:301 -#, c-format -msgid "bad flags field in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:318 -#, c-format -msgid "non-null user quota inode field in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:331 -#, c-format -msgid "non-null group quota inode field in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:343 -#, c-format -msgid "non-null quota flags in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:361 -#, c-format -msgid "bad shared version number in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:373 -#, c-format -msgid "bad inode alignment field in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:386 -#, c-format -msgid "bad stripe unit/width fields in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:404 -#, c-format -msgid "bad log/data device sector size fields in superblock %d\n" -msgstr "" - -#: ../repair/agheader.c:435 -#, c-format -msgid "bad on-disk superblock %d - %s\n" -msgstr "" - -#: ../repair/agheader.c:442 -#, c-format -msgid "primary/secondary superblock %d conflict - %s\n" -msgstr "" - -#: ../repair/attr_repair.c:105 -msgid "" -"entry contains illegal value in attribute named SGI_ACL_FILE or " -"SGI_ACL_DEFAULT\n" -msgstr "" - -#: ../repair/attr_repair.c:127 -msgid "entry contains illegal value in attribute named SGI_MAC_LABEL\n" -msgstr "" - -#: ../repair/attr_repair.c:133 -msgid "entry contains illegal value in attribute named SGI_CAP_FILE\n" -msgstr "" - -#: ../repair/attr_repair.c:172 -#, c-format -msgid "there are no attributes in the fork for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:180 -#, c-format -msgid "would junk the attribute fork since count is 0 for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:200 -msgid "zero length name entry in attribute fork," -msgstr "" - -#: ../repair/attr_repair.c:203 ../repair/attr_repair.c:225 -#, c-format -msgid " truncating attributes for inode %llu to %d\n" -msgstr "" - -#: ../repair/attr_repair.c:208 ../repair/attr_repair.c:231 -#, c-format -msgid " would truncate attributes for inode %llu to %d\n" -msgstr "" - -#: ../repair/attr_repair.c:222 -msgid "name or value attribute lengths are too large,\n" -msgstr "" - -#: ../repair/attr_repair.c:244 -msgid "entry contains illegal character in shortform attribute name\n" -msgstr "" - -#: ../repair/attr_repair.c:250 -msgid "entry has INCOMPLETE flag on in shortform attribute\n" -msgstr "" - -#: ../repair/attr_repair.c:268 -#, c-format -msgid "removing attribute entry %d for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:280 -#, c-format -msgid "would remove attribute entry %d for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:295 -#, c-format -msgid "" -"would have corrected attribute entry count in inode %llu from %d to %d\n" -msgstr "" - -#: ../repair/attr_repair.c:299 -#, c-format -msgid "corrected attribute entry count in inode %llu, was %d, now %d\n" -msgstr "" - -#: ../repair/attr_repair.c:310 -#, c-format -msgid "would have corrected attribute totsize in inode %llu from %d to %d\n" -msgstr "" - -#: ../repair/attr_repair.c:315 -#, c-format -msgid "corrected attribute entry totsize in inode %llu, was %d, now %d\n" -msgstr "" - -#: ../repair/attr_repair.c:345 -#, c-format -msgid "remote block for attributes of inode %llu is missing\n" -msgstr "" - -#: ../repair/attr_repair.c:353 -#, c-format -msgid "can't read remote block for attributes of inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:410 -#, c-format -msgid "bad attribute count %d in attr block %u, inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:427 -#, c-format -msgid "bad attribute nameidx %d in attr block %u, inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:437 -#, c-format -msgid "attribute entry #%d in attr block %u, inode %llu is INCOMPLETE\n" -msgstr "" - -#: ../repair/attr_repair.c:448 -#, c-format -msgid "" -"attribute entry %d in attr block %u, inode %llu claims already used space\n" -msgstr "" - -#: ../repair/attr_repair.c:462 -#, c-format -msgid "" -"attribute entry %d in attr block %u, inode %llu has bad name (namelen = %d)\n" -msgstr "" - -#: ../repair/attr_repair.c:485 -#, c-format -msgid "bad hashvalue for attribute entry %d in attr block %u, inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:498 -#, c-format -msgid "" -"bad security value for attribute entry %d in attr block %u, inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:526 -#, c-format -msgid "inconsistent remote attribute entry %d in attr block %u, ino %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:539 -#, c-format -msgid "cannot malloc enough for remotevalue attribute for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:542 -msgid "SKIPPING this remote attribute\n" -msgstr "" - -#: ../repair/attr_repair.c:551 -#, c-format -msgid "remote attribute get failed for entry %d, inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:562 -#, c-format -msgid "remote attribute value check failed for entry %d, inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:579 -#, c-format -msgid "attribute entry %d in attr block %u, inode %llu claims used space\n" -msgstr "" - -#: ../repair/attr_repair.c:604 -#, 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:614 -#, 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:625 -#, 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:634 -#, c-format -msgid "" -"- would reset usedbytes cnt from %d to %d in block %u of attribute fork of %" -"llu\n" -msgstr "" - -#: ../repair/attr_repair.c:683 -#, c-format -msgid "can't map block %u for attribute fork for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:691 -#, c-format -msgid "" -"can't read file block %u (fsbno %llu) for attribute fork of inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:702 -#, c-format -msgid "bad attribute leaf magic %#x for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:734 -#, c-format -msgid "" -"bad sibling back pointer for block %u in attribute fork for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:763 -#, c-format -msgid "bad hash path in attribute fork for inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:864 -#, c-format -msgid "block 0 of inode %llu attribute fork is missing\n" -msgstr "" - -#: ../repair/attr_repair.c:871 -#, c-format -msgid "agno of attribute fork of inode %llu out of regular partition\n" -msgstr "" - -#: ../repair/attr_repair.c:879 -#, c-format -msgid "can't read block 0 of inode %llu attribute fork\n" -msgstr "" - -#: ../repair/attr_repair.c:893 -#, c-format -msgid "clearing forw/back pointers in block 0 for attributes in inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:899 -#, c-format -msgid "" -"would clear forw/back pointers in block 0 for attributes in inode %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:929 -#, c-format -msgid "bad attribute leaf magic # %#x for dir ino %llu\n" -msgstr "" - -#: ../repair/attr_repair.c:989 ../repair/dinode.c:2476 -#, c-format -msgid "illegal attribute format %d, ino %llu\n" -msgstr "" - -#: ../repair/avl.c:1039 ../repair/avl64.c:1032 -#, c-format -msgid "avl_insert: Warning! duplicate range [%llu,%llu]\n" -msgstr "" - -#: ../repair/bmap.c:43 -#, c-format -msgid "realloc failed in blkent_append (%u bytes)\n" -msgstr "" - -#: ../repair/bmap.c:65 -#, c-format -msgid "malloc failed in blkent_new (%u bytes)\n" -msgstr "" - -#: ../repair/bmap.c:91 -#, c-format -msgid "malloc failed in blkent_prepend (%u bytes)\n" -msgstr "" - -#: ../repair/bmap.c:118 -#, c-format -msgid "malloc failed in blkmap_alloc (%u bytes)\n" -msgstr "" - -#: ../repair/bmap.c:203 -#, c-format -msgid "blkmap_getn realloc failed (%u bytes)\n" -msgstr "" - -#: ../repair/bmap.c:239 -#, c-format -msgid "realloc failed in blkmap_grow (%u bytes)\n" -msgstr "" - -#: ../repair/dino_chunks.c:57 -#, c-format -msgid "cannot read agbno (%u/%u), disk block %lld\n" -msgstr "" - -#: ../repair/dino_chunks.c:153 -#, c-format -msgid "uncertain inode block %d/%d already known\n" -msgstr "" - -#: ../repair/dino_chunks.c:169 ../repair/dino_chunks.c:435 -#: ../repair/dino_chunks.c:492 -#, c-format -msgid "inode block %d/%d multiply claimed, (state %d)\n" -msgstr "" - -#: ../repair/dino_chunks.c:175 ../repair/dino_chunks.c:497 -#, c-format -msgid "inode block %d/%d bad state, (state %d)\n" -msgstr "" - -#: ../repair/dino_chunks.c:442 -#, c-format -msgid "uncertain inode block overlap, agbno = %d, ino = %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:479 -#, c-format -msgid "uncertain inode block %llu already known\n" -msgstr "" - -#: ../repair/dino_chunks.c:594 -#, c-format -msgid "cannot read inode %llu, disk block %lld, cnt %d\n" -msgstr "" - -#: ../repair/dino_chunks.c:691 -#, c-format -msgid "can't read inode %llu, disk block %lld, cnt %d\n" -msgstr "" - -#: ../repair/dino_chunks.c:711 ../repair/dino_chunks.c:880 -#: ../repair/phase3.c:70 -#, c-format -msgid "bad state in block map %d\n" -msgstr "" - -#: ../repair/dino_chunks.c:715 ../repair/dino_chunks.c:885 -#, c-format -msgid "inode block %llu multiply claimed, state was %d\n" -msgstr "" - -#: ../repair/dino_chunks.c:752 -#, c-format -msgid "imap claims in-use inode %llu is free, " -msgstr "" - -#: ../repair/dino_chunks.c:761 -msgid "correcting imap\n" -msgstr "" - -#: ../repair/dino_chunks.c:763 -msgid "would correct imap\n" -msgstr "" - -#: ../repair/dino_chunks.c:800 -#, c-format -msgid "cleared root inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:804 -#, c-format -msgid "would clear root inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:813 -#, c-format -msgid "cleared realtime bitmap inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:818 -#, c-format -msgid "would clear realtime bitmap inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:828 -#, c-format -msgid "cleared realtime summary inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:833 -#, c-format -msgid "would clear realtime summary inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:839 -#, c-format -msgid "cleared inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:842 -#, c-format -msgid "would have cleared inode %llu\n" -msgstr "" - -#: ../repair/dino_chunks.c:1018 ../repair/dino_chunks.c:1053 -#: ../repair/dino_chunks.c:1167 -msgid "found inodes not in the inode allocation tree\n" -msgstr "" - -#: ../repair/dinode.c:70 -msgid "Unknown inode format.\n" -msgstr "" - -#: ../repair/dinode.c:87 -#, c-format -msgid "clearing inode %llu attributes\n" -msgstr "" - -#: ../repair/dinode.c:90 -#, c-format -msgid "would have cleared inode %llu attributes\n" -msgstr "" - -#: ../repair/dinode.c:517 ../repair/dinode.c:1141 ../repair/scan.c:158 -msgid "data" -msgstr "" - -#: ../repair/dinode.c:519 ../repair/dinode.c:1143 ../repair/scan.c:160 -msgid "attr" -msgstr "" - -#: ../repair/dinode.c:522 -msgid "real-time" -msgstr "" - -#: ../repair/dinode.c:524 -msgid "regular" -msgstr "" - -#: ../repair/dinode.c:534 -#, c-format -msgid "" -"bmap rec out of order, inode %llu entry %d [o s c] [%llu %llu %llu], %d [%" -"llu %llu %llu]\n" -msgstr "" - -#: ../repair/dinode.c:548 -#, c-format -msgid "zero length extent (off = %llu, fsbno = %llu) in ino %llu\n" -msgstr "" - -#: ../repair/dinode.c:555 -#, c-format -msgid "inode %llu - bad rt extent start block number %llu, offset %llu\n" -msgstr "" - -#: ../repair/dinode.c:561 -#, c-format -msgid "inode %llu - bad rt extent last block number %llu, offset %llu\n" -msgstr "" - -#: ../repair/dinode.c:567 -#, c-format -msgid "" -"inode %llu - bad rt extent overflows - start %llu, end %llu, offset %llu\n" -msgstr "" - -#: ../repair/dinode.c:575 -#, c-format -msgid "inode %llu - bad extent starting block number %llu, offset %llu\n" -msgstr "" - -#: ../repair/dinode.c:581 -#, c-format -msgid "inode %llu - bad extent last block number %llu, offset %llu\n" -msgstr "" - -#: ../repair/dinode.c:587 -#, c-format -msgid "inode %llu - bad extent overflows - start %llu, end %llu, offset %llu\n" -msgstr "" - -#: ../repair/dinode.c:594 -#, c-format -msgid "" -"inode %llu - extent offset too large - start %llu, count %llu, offset %llu\n" -msgstr "" - -#: ../repair/dinode.c:613 -#, c-format -msgid "malformed rt inode extent [%llu %llu] (fs rtext size = %u)\n" -msgstr "" - -#: ../repair/dinode.c:634 -#, c-format -msgid "" -"data fork in rt ino %llu claims dup rt extent, off - %llu, start - %llu, " -"count %llu\n" -msgstr "" - -#: ../repair/dinode.c:658 -#, c-format -msgid "bad state in rt block map %llu\n" -msgstr "" - -#: ../repair/dinode.c:665 -#, c-format -msgid "%s fork in rt inode %llu found metadata block %llu in %s bmap\n" -msgstr "" - -#: ../repair/dinode.c:673 -#, c-format -msgid "%s fork in rt inode %llu claims used rt block %llu\n" -msgstr "" - -#: ../repair/dinode.c:679 -#, c-format -msgid "illegal state %d in %s block map %llu\n" -msgstr "" - -#: ../repair/dinode.c:714 -#, c-format -msgid "" -"%s fork in ino %llu claims dup extent, off - %llu, start - %llu, cnt %llu\n" -msgstr "" - -#: ../repair/dinode.c:736 -#, c-format -msgid "%s fork in ino %llu claims free block %llu\n" -msgstr "" - -#: ../repair/dinode.c:743 -#, c-format -msgid "bad state in block map %llu\n" -msgstr "" - -#: ../repair/dinode.c:750 -#, c-format -msgid "%s fork in inode %llu claims metadata block %llu\n" -msgstr "" - -#: ../repair/dinode.c:757 -#, c-format -msgid "%s fork in %s inode %llu claims used block %llu\n" -msgstr "" - -#: ../repair/dinode.c:762 -#, c-format -msgid "illegal state %d in block map %llu\n" -msgstr "" - -#: ../repair/dinode.c:840 -#, c-format -msgid "cannot read inode (%u/%u), disk block %lld\n" -msgstr "" - -#: ../repair/dinode.c:956 ../repair/dinode.c:1017 -#, c-format -msgid "cannot read bmap block %llu\n" -msgstr "" - -#: ../repair/dinode.c:973 -#, c-format -msgid "# of bmap records in inode %llu exceeds max (%u, max - %u)\n" -msgstr "" - -#: ../repair/dinode.c:982 -#, c-format -msgid "" -"- # of bmap records in inode %llu less than minimum (%u, min - %u), " -"proceeding ...\n" -msgstr "" - -#: ../repair/dinode.c:1028 -#, c-format -msgid "# of bmap records in inode %llu greater than maximum (%u, max - %u)\n" -msgstr "" - -#: ../repair/dinode.c:1037 -#, c-format -msgid "" -"- # of bmap records in inode %llu less than minimum (%u, min - %u), " -"continuing...\n" -msgstr "" - -#: ../repair/dinode.c:1055 -#, c-format -msgid "could not map block %llu\n" -msgstr "" - -#: ../repair/dinode.c:1087 -#, c-format -msgid "get_bmapi() called for local inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1095 -#, c-format -msgid "bad inode format for inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1159 -#, c-format -msgid "bad level 0 in inode %llu bmap btree root block\n" -msgstr "" - -#: ../repair/dinode.c:1173 -#, c-format -msgid "" -"indicated size of %s btree root (%d bytes) greater than space in inode %llu %" -"s fork\n" -msgstr "" - -#: ../repair/dinode.c:1203 ../repair/scan.c:384 -#, c-format -msgid "bad bmap btree ptr 0x%llx in ino %llu\n" -msgstr "" - -#: ../repair/dinode.c:1225 -#, c-format -msgid "" -"correcting key in bmbt root (was %llu, now %llu) in inode %llu %s fork\n" -msgstr "" - -#: ../repair/dinode.c:1239 -#, c-format -msgid "" -"bad key in bmbt root (is %llu, would reset to %llu) in inode %llu %s fork\n" -msgstr "" - -#: ../repair/dinode.c:1258 -#, c-format -msgid "out of order bmbt root key %llu in inode %llu %s fork\n" -msgstr "" - -#: ../repair/dinode.c:1275 -#, c-format -msgid "bad fwd (right) sibling pointer (saw %llu should be NULLDFSBNO)\n" -msgstr "" - -#: ../repair/dinode.c:1278 -#, c-format -msgid "\tin inode %u (%s fork) bmap btree block %llu\n" -msgstr "" - -#: ../repair/dinode.c:1359 -#, c-format -msgid "local inode %llu data fork is too large (size = %lld, max = %d)\n" -msgstr "" - -#: ../repair/dinode.c:1369 -#, c-format -msgid "local inode %llu attr fork too large (size %d, max = %d)\n" -msgstr "" - -#: ../repair/dinode.c:1377 -#, c-format -msgid "local inode %llu attr too small (size = %d, min size = %d)\n" -msgstr "" - -#: ../repair/dinode.c:1407 -#, c-format -msgid "mismatch between format (%d) and size (%lld) in symlink ino %llu\n" -msgstr "" - -#: ../repair/dinode.c:1415 -#, c-format -msgid "mismatch between format (%d) and size (%lld) in symlink inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1431 -#, c-format -msgid "bad number of extents (%d) in symlink %llu data fork\n" -msgstr "" - -#: ../repair/dinode.c:1444 -#, c-format -msgid "bad extent #%d offset (%llu) in symlink %llu data fork\n" -msgstr "" - -#: ../repair/dinode.c:1450 -#, c-format -msgid "bad extent #%d count (%llu) in symlink %llu data fork\n" -msgstr "" - -#: ../repair/dinode.c:1503 -#, c-format -msgid "symlink in inode %llu too long (%lld chars)\n" -msgstr "" - -#: ../repair/dinode.c:1537 -#, c-format -msgid "cannot read inode %llu, file block %d, disk block %llu\n" -msgstr "" - -#: ../repair/dinode.c:1559 -#, c-format -msgid "found illegal null character in symlink inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1573 ../repair/dinode.c:1583 -#, c-format -msgid "component of symlink in inode %llu too long\n" -msgstr "" - -#: ../repair/dinode.c:1609 -#, c-format -msgid "inode %llu has bad inode type (IFMNT)\n" -msgstr "" - -#: ../repair/dinode.c:1619 -#, c-format -msgid "size of character device inode %llu != 0 (%lld bytes)\n" -msgstr "" - -#: ../repair/dinode.c:1624 -#, c-format -msgid "size of block device inode %llu != 0 (%lld bytes)\n" -msgstr "" - -#: ../repair/dinode.c:1629 -#, c-format -msgid "size of socket inode %llu != 0 (%lld bytes)\n" -msgstr "" - -#: ../repair/dinode.c:1634 -#, c-format -msgid "size of fifo inode %llu != 0 (%lld bytes)\n" -msgstr "" - -#: ../repair/dinode.c:1639 -#, c-format -msgid "Internal error - process_misc_ino_types, illegal type %d\n" -msgstr "" - -#: ../repair/dinode.c:1666 -#, c-format -msgid "size of character device inode %llu != 0 (%llu blocks)\n" -msgstr "" - -#: ../repair/dinode.c:1671 -#, c-format -msgid "size of block device inode %llu != 0 (%llu blocks)\n" -msgstr "" - -#: ../repair/dinode.c:1676 -#, c-format -msgid "size of socket inode %llu != 0 (%llu blocks)\n" -msgstr "" - -#: ../repair/dinode.c:1681 -#, c-format -msgid "size of fifo inode %llu != 0 (%llu blocks)\n" -msgstr "" - -#: ../repair/dinode.c:1785 -#, c-format -msgid "bad magic number 0x%x on inode %llu, " -msgstr "" - -#: ../repair/dinode.c:1788 -msgid "resetting magic number\n" -msgstr "" - -#: ../repair/dinode.c:1793 -msgid "would reset magic number\n" -msgstr "" - -#: ../repair/dinode.c:1796 -#, c-format -msgid "bad magic number 0x%x on inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1805 -#, c-format -msgid "bad version number 0x%x on inode %llu, " -msgstr "" - -#: ../repair/dinode.c:1808 -msgid "resetting version number\n" -msgstr "" - -#: ../repair/dinode.c:1814 -msgid "would reset version number\n" -msgstr "" - -#: ../repair/dinode.c:1817 -#, c-format -msgid "bad version number 0x%x on inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1828 ../repair/dinode.c:1839 -#, c-format -msgid "bad (negative) size %lld on inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1870 -#, c-format -msgid "imap claims a free inode %llu is in use, " -msgstr "" - -#: ../repair/dinode.c:1873 -msgid "correcting imap and clearing inode\n" -msgstr "" - -#: ../repair/dinode.c:1882 -msgid "would correct imap and clear inode\n" -msgstr "" - -#: ../repair/dinode.c:1911 -#, c-format -msgid "bad inode format in inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1972 -#, c-format -msgid "Unexpected inode type %#o inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:1982 -#, c-format -msgid "bad inode type for root inode %llu, " -msgstr "" - -#: ../repair/dinode.c:1986 -msgid "resetting to directory\n" -msgstr "" - -#: ../repair/dinode.c:1992 -msgid "would reset to directory\n" -msgstr "" - -#: ../repair/dinode.c:1996 -msgid "summary" -msgstr "" - -#: ../repair/dinode.c:2000 -msgid "bitmap" -msgstr "" - -#: ../repair/dinode.c:2004 -#, c-format -msgid "user quota inode has bad type 0x%x\n" -msgstr "" - -#: ../repair/dinode.c:2022 -#, c-format -msgid "group quota inode has bad type 0x%x\n" -msgstr "" - -#: ../repair/dinode.c:2043 -#, c-format -msgid "bad inode type for realtime %s inode %llu, " -msgstr "" - -#: ../repair/dinode.c:2047 -msgid "resetting to regular file\n" -msgstr "" - -#: ../repair/dinode.c:2053 -msgid "would reset to regular file\n" -msgstr "" - -#: ../repair/dinode.c:2072 -#, c-format -msgid "bad non-zero extent size %u for non-realtime/extsize inode %llu, " -msgstr "" - -#: ../repair/dinode.c:2076 -msgid "resetting to zero\n" -msgstr "" - -#: ../repair/dinode.c:2080 -msgid "would reset to zero\n" -msgstr "" - -#: ../repair/dinode.c:2099 -#, c-format -msgid "bad size %llu for realtime %s inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2115 -#, c-format -msgid "bad # of extents (%u) for realtime %s inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2157 -#, c-format -msgid "mismatch between format (%d) and size (%lld) in directory ino %llu\n" -msgstr "" - -#: ../repair/dinode.c:2179 -#, c-format -msgid "bad data fork in symlink %llu\n" -msgstr "" - -#: ../repair/dinode.c:2221 -#, c-format -msgid "found inode %llu claiming to be a real-time file\n" -msgstr "" - -#: ../repair/dinode.c:2240 -#, c-format -msgid "realtime bitmap inode %llu has bad size %lld (should be %lld)\n" -msgstr "" - -#: ../repair/dinode.c:2261 -#, c-format -msgid "realtime summary inode %llu has bad size %lld (should be %d)\n" -msgstr "" - -#: ../repair/dinode.c:2292 -#, c-format -msgid "bad attr fork offset %d in dev inode %llu, should be %d\n" -msgstr "" - -#: ../repair/dinode.c:2303 -#, c-format -msgid "bad attr fork offset %d in uuid inode %llu, should be %d\n" -msgstr "" - -#: ../repair/dinode.c:2315 -#, c-format -msgid "bad attr fork offset %d in inode %llu, max=%d\n" -msgstr "" - -#: ../repair/dinode.c:2323 -#, c-format -msgid "unexpected inode format %d\n" -msgstr "" - -#: ../repair/dinode.c:2367 ../repair/dinode.c:2419 -#, c-format -msgid "unknown format %d, ino %llu (mode = %d)\n" -msgstr "" - -#: ../repair/dinode.c:2377 -#, c-format -msgid "bad data fork in inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2443 -#, c-format -msgid "bad attribute format %d in inode %llu, " -msgstr "" - -#: ../repair/dinode.c:2446 -msgid "resetting value\n" -msgstr "" - -#: ../repair/dinode.c:2450 -msgid "would reset value\n" -msgstr "" - -#: ../repair/dinode.c:2491 -#, c-format -msgid "bad attribute fork in inode %llu" -msgstr "" - -#: ../repair/dinode.c:2495 -msgid ", clearing attr fork\n" -msgstr "" - -#: ../repair/dinode.c:2505 -msgid ", would clear attr fork\n" -msgstr "" - -#: ../repair/dinode.c:2542 -#, c-format -msgid "illegal attribute fmt %d, ino %llu\n" -msgstr "" - -#: ../repair/dinode.c:2568 -#, c-format -msgid "problem with attribute contents in inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2578 -msgid "would clear attr fork\n" -msgstr "" - -#: ../repair/dinode.c:2615 -#, c-format -msgid "correcting nblocks for inode %llu, was %llu - counted %llu\n" -msgstr "" - -#: ../repair/dinode.c:2622 -#, c-format -msgid "bad nblocks %llu for inode %llu, would reset to %llu\n" -msgstr "" - -#: ../repair/dinode.c:2629 -#, c-format -msgid "too many data fork extents (%llu) in inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2646 -#, c-format -msgid "correcting nextents for inode %llu, was %d - counted %llu\n" -msgstr "" - -#: ../repair/dinode.c:2654 -#, c-format -msgid "bad nextents %d for inode %llu, would reset to %llu\n" -msgstr "" - -#: ../repair/dinode.c:2661 -#, c-format -msgid "too many attr fork extents (%llu) in inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2678 -#, c-format -msgid "correcting anextents for inode %llu, was %d - counted %llu\n" -msgstr "" - -#: ../repair/dinode.c:2687 -#, c-format -msgid "bad anextents %d for inode %llu, would reset to %llu\n" -msgstr "" - -#: ../repair/dinode.c:2706 -#, c-format -msgid "problem with directory contents in inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2719 -#, c-format -msgid "problem with symbolic link in inode %llu\n" -msgstr "" - -#: ../repair/dinode.c:2731 -#, c-format -msgid "Unexpected inode type\n" -msgstr "" - -#: ../repair/dinode.c:2775 -#, c-format -msgid "version 2 inode %llu claims > %u links, " -msgstr "" - -#: ../repair/dinode.c:2779 -msgid "updating superblock version number\n" -msgstr "" - -#: ../repair/dinode.c:2782 -msgid "would update superblock version number\n" -msgstr "" - -#: ../repair/dinode.c:2790 -#, c-format -msgid "WARNING: version 2 inode %llu claims > %u links, " -msgstr "" - -#: ../repair/dinode.c:2794 -#, c-format -msgid "" -"converting back to version 1,\n" -"\tthis may destroy %d links\n" -msgstr "" - -#: ../repair/dinode.c:2809 -#, c-format -msgid "" -"would convert back to version 1,\n" -"\tthis might destroy %d links\n" -msgstr "" - -#: ../repair/dinode.c:2824 -#, c-format -msgid "found version 2 inode %llu, " -msgstr "" - -#: ../repair/dinode.c:2826 -msgid "converting back to version 1\n" -msgstr "" - -#: ../repair/dinode.c:2835 -msgid "would convert back to version 1\n" -msgstr "" - -#: ../repair/dinode.c:2850 -#, c-format -msgid "clearing obsolete nlink field in version 2 inode %llu, was %d, now 0\n" -msgstr "" - -#: ../repair/dinode.c:2856 -#, c-format -msgid "" -"would clear obsolete nlink field in version 2 inode %llu, currently %d\n" -msgstr "" - -#: ../repair/dir.c:154 -#, c-format -msgid "invalid inode number %llu in directory %llu\n" -msgstr "" - -#: ../repair/dir.c:159 -#, c-format -msgid "entry in shortform dir %llu references rt bitmap inode %llu\n" -msgstr "" - -#: ../repair/dir.c:164 -#, c-format -msgid "entry in shortform dir %llu references rt summary inode %llu\n" -msgstr "" - -#: ../repair/dir.c:169 -#, c-format -msgid "entry in shortform dir %llu references user quota inode %llu\n" -msgstr "" - -#: ../repair/dir.c:174 -#, c-format -msgid "entry in shortform dir %llu references group quota inode %llu\n" -msgstr "" - -#: ../repair/dir.c:194 -#, c-format -msgid "entry references free inode %llu in shortform directory %llu\n" -msgstr "" - -#: ../repair/dir.c:213 -#, c-format -msgid "entry references non-existent inode %llu in shortform dir %llu\n" -msgstr "" - -#: ../repair/dir.c:237 ../repair/dir2.c:967 -#, c-format -msgid "zero length entry in shortform dir %llu, resetting to %d\n" -msgstr "" - -#: ../repair/dir.c:242 ../repair/dir2.c:973 -#, c-format -msgid "zero length entry in shortform dir %llu, would set to %d\n" -msgstr "" - -#: ../repair/dir.c:247 -#, c-format -msgid "zero length entry in shortform dir %llu, " -msgstr "" - -#: ../repair/dir.c:250 ../repair/dir.c:293 ../repair/dir2.c:1026 -#, c-format -msgid "junking %d entries\n" -msgstr "" - -#: ../repair/dir.c:253 ../repair/dir.c:302 ../repair/dir2.c:1035 -#, c-format -msgid "would junk %d entries\n" -msgstr "" - -#: ../repair/dir.c:271 ../repair/dir2.c:1003 -#, c-format -msgid "size of last entry overflows space left in in shortform dir %llu, " -msgstr "" - -#: ../repair/dir.c:274 ../repair/dir2.c:1007 -#, c-format -msgid "resetting to %d\n" -msgstr "" - -#: ../repair/dir.c:279 ../repair/dir2.c:1012 -#, c-format -msgid "would reset to %d\n" -msgstr "" - -#: ../repair/dir.c:284 ../repair/dir2.c:1016 -#, c-format -msgid "size of entry #%d overflows space left in in shortform dir %llu\n" -msgstr "" - -#: ../repair/dir.c:289 ../repair/dir2.c:1022 -#, c-format -msgid "junking entry #%d\n" -msgstr "" - -#: ../repair/dir.c:298 ../repair/dir2.c:1031 -#, c-format -msgid "would junk entry #%d\n" -msgstr "" - -#: ../repair/dir.c:321 ../repair/dir2.c:1053 -#, c-format -msgid "entry contains illegal character in shortform dir %llu\n" -msgstr "" - -#: ../repair/dir.c:376 ../repair/dir2.c:1118 ../repair/phase6.c:2991 -#: ../repair/phase6.c:3386 -#, c-format -msgid "junking entry \"%s\" in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:380 ../repair/dir2.c:1122 -#, c-format -msgid "would have junked entry \"%s\" in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:406 ../repair/dir2.c:1149 -#, c-format -msgid "would have corrected entry count in directory %llu from %d to %d\n" -msgstr "" - -#: ../repair/dir.c:410 ../repair/dir2.c:1153 -#, c-format -msgid "corrected entry count in directory %llu, was %d, now %d\n" -msgstr "" - -#: ../repair/dir.c:421 ../repair/dir2.c:1182 -#, c-format -msgid "would have corrected directory %llu size from %lld to %lld\n" -msgstr "" - -#: ../repair/dir.c:426 ../repair/dir2.c:1188 -#, c-format -msgid "corrected directory %llu size, was %lld, now %lld\n" -msgstr "" - -#: ../repair/dir.c:449 ../repair/dir2.c:1233 -#, c-format -msgid "bogus .. inode number (%llu) in directory inode %llu, " -msgstr "" - -#: ../repair/dir.c:452 ../repair/dir.c:486 ../repair/dir2.c:1238 -#: ../repair/dir2.c:1273 -msgid "clearing inode number\n" -msgstr "" - -#: ../repair/dir.c:458 ../repair/dir.c:492 ../repair/dir2.c:1244 -#: ../repair/dir2.c:1279 -msgid "would clear inode number\n" -msgstr "" - -#: ../repair/dir.c:466 ../repair/dir2.c:1251 -#, c-format -msgid "corrected root directory %llu .. entry, was %llu, now %llu\n" -msgstr "" - -#: ../repair/dir.c:474 ../repair/dir2.c:1259 -#, c-format -msgid "would have corrected root directory %llu .. entry from %llu to %llu\n" -msgstr "" - -#: ../repair/dir.c:483 -#, c-format -msgid "bad .. entry in dir ino %llu, points to self, " -msgstr "" - -#: ../repair/dir.c:546 -#, c-format -msgid "bad range claimed [%d, %d) in da block\n" -msgstr "" - -#: ../repair/dir.c:553 -#, c-format -msgid "byte range end [%d %d) in da block larger than blocksize %d\n" -msgstr "" - -#: ../repair/dir.c:560 -#, c-format -msgid "multiply claimed byte %d in da block\n" -msgstr "" - -#: ../repair/dir.c:590 -#, c-format -msgid "hole (start %d, len %d) out of range, block %d, dir ino %llu\n" -msgstr "" - -#: ../repair/dir.c:601 -#, c-format -msgid "hole claims used byte %d, block %d, dir ino %llu\n" -msgstr "" - -#: ../repair/dir.c:716 -#, c-format -msgid "- derived hole value %d, saw %d, block %d, dir ino %llu\n" -msgstr "" - -#: ../repair/dir.c:735 -#, c-format -msgid "" -"- derived hole (base %d, size %d) in block %d, dir inode %llu not found\n" -msgstr "" - -#: ../repair/dir.c:811 ../repair/dir.c:989 ../repair/phase4.c:234 -#: ../repair/phase4.c:718 ../repair/phase6.c:1039 ../repair/phase6.c:1557 -#, c-format -msgid "can't read block %u (fsbno %llu) for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:815 -#, c-format -msgid "can't read block %u (fsbno %llu) for attrbute fork of inode %llu\n" -msgstr "" - -#: ../repair/dir.c:824 ../repair/dir.c:999 ../repair/phase6.c:1049 -#, c-format -msgid "bad dir/attr magic number in inode %llu, file bno = %u, fsbno = %llu\n" -msgstr "" - -#: ../repair/dir.c:832 ../repair/dir2.c:312 -#, c-format -msgid "bad record count in inode %llu, count = %d, max = %d\n" -msgstr "" - -#: ../repair/dir.c:851 ../repair/dir2.c:329 -#, c-format -msgid "bad directory btree for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:855 -#, c-format -msgid "bad attribute fork btree for inode %llu\n" -msgstr "" - -#: ../repair/dir.c:909 -#, c-format -msgid "release_da_cursor_int got unexpected non-null bp, dabno = %u\n" -msgstr "" - -#: ../repair/dir.c:970 ../repair/dir.c:1015 -#, c-format -msgid "bmap of block #%u of inode %llu failed\n" -msgstr "" - -#: ../repair/dir.c:1061 -#, c-format -msgid "directory/attribute block used/count inconsistency - %d/%hu\n" -msgstr "" - -#: ../repair/dir.c:1071 ../repair/dir2.c:452 -#, c-format -msgid "" -"directory/attribute block hashvalue inconsistency, expected > %u / saw %u\n" -msgstr "" - -#: ../repair/dir.c:1078 ../repair/dir2.c:459 -#, c-format -msgid "bad directory/attribute forward block pointer, expected 0, saw %u\n" -msgstr "" - -#: ../repair/dir.c:1084 -#, c-format -msgid "bad directory block in dir ino %llu\n" -msgstr "" - -#: ../repair/dir.c:1114 -#, c-format -msgid "" -"correcting bad hashval in non-leaf dir/attr block\n" -"\tin (level %d) in inode %llu.\n" -msgstr "" - -#: ../repair/dir.c:1122 -#, 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:1260 ../repair/dir2.c:624 -#, c-format -msgid "can't get map info for block %u of directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1269 -#, c-format -msgid "can't read block %u (%llu) for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1283 -#, c-format -msgid "bad magic number %x in block %u (%llu) for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1291 -#, c-format -msgid "bad back pointer in block %u (%llu) for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1298 -#, c-format -msgid "entry count %d too large in block %u (%llu) for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1305 -#, c-format -msgid "bad level %d in block %u (%llu) for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1363 -#, c-format -msgid "" -"correcting bad hashval in interior dir/attr block\n" -"\tin (level %d) in inode %llu.\n" -msgstr "" - -#: ../repair/dir.c:1371 -#, c-format -msgid "" -"would correct bad hashval in interior dir/attr block\n" -"\tin (level %d) in inode %llu.\n" -msgstr "" - -#: ../repair/dir.c:1491 -#, c-format -msgid "marking bad entry in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1517 -#, c-format -msgid "deleting zero length entry in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1616 -#, c-format -msgid "deleting entry in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1765 -msgid "couldn't allocate directory block freemap\n" -msgstr "" - -#: ../repair/dir.c:1778 -#, c-format -msgid "" -"directory block header conflicts with used space in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1807 -#, c-format -msgid "" -"nameidx %d for entry #%d, bno %d, ino %llu > fs blocksize, deleting entry\n" -msgstr "" - -#: ../repair/dir.c:1847 -#, c-format -msgid "" -"nameidx %d, entry #%d, bno %d, ino %llu > fs blocksize, marking entry bad\n" -msgstr "" - -#: ../repair/dir.c:1864 -#, c-format -msgid "" -"nameidx %d, entry #%d, bno %d, ino %llu > fs blocksize, would delete entry\n" -msgstr "" - -#: ../repair/dir.c:1901 -#, c-format -msgid "invalid ino number %llu in dir ino %llu, entry #%d, bno %d\n" -msgstr "" - -#: ../repair/dir.c:1905 ../repair/dir.c:1921 ../repair/dir.c:1938 -#: ../repair/dir.c:1954 ../repair/dir.c:1971 -#, c-format -msgid "\tclearing ino number in entry %d...\n" -msgstr "" - -#: ../repair/dir.c:1912 ../repair/dir.c:1929 ../repair/dir.c:1945 -#: ../repair/dir.c:1962 ../repair/dir.c:1979 -#, c-format -msgid "\twould clear ino number in entry %d...\n" -msgstr "" - -#: ../repair/dir.c:1917 -#, c-format -msgid "" -"entry #%d, bno %d in directory %llu references realtime bitmap inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1934 -#, c-format -msgid "" -"entry #%d, bno %d in directory %llu references realtime summary inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1950 -#, c-format -msgid "entry #%d, bno %d in directory %llu references user quota inode %llu\n" -msgstr "" - -#: ../repair/dir.c:1967 -#, c-format -msgid "entry #%d, bno %d in directory %llu references group quota inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2010 -#, c-format -msgid "entry references free inode %llu in directory %llu, will clear entry\n" -msgstr "" - -#: ../repair/dir.c:2018 -#, c-format -msgid "entry references free inode %llu in directory %llu, would clear entry\n" -msgstr "" - -#: ../repair/dir.c:2026 -#, c-format -msgid "bad ino number %llu in dir ino %llu, entry #%d, bno %d\n" -msgstr "" - -#: ../repair/dir.c:2029 -msgid "clearing inode number...\n" -msgstr "" - -#: ../repair/dir.c:2034 -msgid "would clear inode number...\n" -msgstr "" - -#: ../repair/dir.c:2054 -#, c-format -msgid "entry #%d, dir inode %llu, has zero-len name, deleting entry\n" -msgstr "" - -#: ../repair/dir.c:2093 -#, c-format -msgid "entry #%d, dir inode %llu, has zero-len name, marking entry bad\n" -msgstr "" - -#: ../repair/dir.c:2107 -#, c-format -msgid "" -"bad size, entry #%d in dir inode %llu, block %u -- entry overflows block\n" -msgstr "" - -#: ../repair/dir.c:2118 -#, c-format -msgid "" -"dir entry slot %d in block %u conflicts with used space in dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2157 -#, c-format -msgid "illegal name \"%s\" in directory inode %llu, entry will be cleared\n" -msgstr "" - -#: ../repair/dir.c:2163 -#, c-format -msgid "illegal name \"%s\" in directory inode %llu, entry would be cleared\n" -msgstr "" - -#: ../repair/dir.c:2173 -#, c-format -msgid "\tmismatched hash value for entry \"%s\"\n" -msgstr "" - -#: ../repair/dir.c:2177 -#, c-format -msgid "\t\tin directory inode %llu. resetting hash value.\n" -msgstr "" - -#: ../repair/dir.c:2183 -#, c-format -msgid "\t\tin directory inode %llu. would reset hash value.\n" -msgstr "" - -#: ../repair/dir.c:2213 -#, c-format -msgid "\tbad hash ordering for entry \"%s\"\n" -msgstr "" - -#: ../repair/dir.c:2217 -#, c-format -msgid "\t\tin directory inode %llu. will clear entry\n" -msgstr "" - -#: ../repair/dir.c:2225 -#, c-format -msgid "\t\tin directory inode %llu. would clear entry\n" -msgstr "" - -#: ../repair/dir.c:2242 -#, c-format -msgid "" -"name \"%s\" (block %u, slot %d) conflicts with used space in dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2249 -#, c-format -msgid "will clear entry \"%s\" (#%d) in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2253 -#, c-format -msgid "would clear entry \"%s\" (#%d)in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2289 -#, c-format -msgid "bad .. entry in dir ino %llu, points to self" -msgstr "" - -#: ../repair/dir.c:2293 ../repair/dir.c:2390 -msgid "will clear entry\n" -msgstr "" - -#: ../repair/dir.c:2298 ../repair/dir.c:2394 ../repair/dir2.c:1626 -msgid "would clear entry\n" -msgstr "" - -#: ../repair/dir.c:2308 -#, c-format -msgid "correcting .. entry in root inode %llu, was %llu\n" -msgstr "" - -#: ../repair/dir.c:2315 -#, c-format -msgid "bad .. entry (%llu) in root inode %llu should be %llu\n" -msgstr "" - -#: ../repair/dir.c:2332 -#, c-format -msgid "multiple .. entries in directory inode %llu, will clear second entry\n" -msgstr "" - -#: ../repair/dir.c:2338 -#, c-format -msgid "multiple .. entries in directory inode %llu, would clear second entry\n" -msgstr "" - -#: ../repair/dir.c:2351 -#, c-format -msgid ". in directory inode %llu has wrong value (%llu), fixing entry...\n" -msgstr "" - -#: ../repair/dir.c:2358 -#, c-format -msgid ". in directory inode %llu has wrong value (%llu)\n" -msgstr "" - -#: ../repair/dir.c:2364 -#, c-format -msgid "multiple . entries in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2371 -#, c-format -msgid "will clear one . entry in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2377 -#, c-format -msgid "would clear one . entry in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2387 -#, c-format -msgid "entry \"%s\" in directory inode %llu points to self, " -msgstr "" - -#: ../repair/dir.c:2412 -#, c-format -msgid "" -"- resetting first used heap value from %d to %d in block %u of dir ino %llu\n" -msgstr "" - -#: ../repair/dir.c:2421 -#, c-format -msgid "" -"- would reset first used value from %d to %d in block %u of dir ino %llu\n" -msgstr "" - -#: ../repair/dir.c:2432 -#, c-format -msgid "- resetting namebytes cnt from %d to %d in block %u of dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2441 -#, c-format -msgid "" -"- would reset namebytes cnt from %d to %d in block %u of dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2477 -#, c-format -msgid "- found unexpected lost holes in block %u, dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2485 -#, c-format -msgid "- hole info non-optimal in block %u, dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2492 -#, c-format -msgid "- hole info incorrect in block %u, dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2503 -#, c-format -msgid "- existing hole info for block %d, dir inode %llu (base, size) - \n" -msgstr "" - -#: ../repair/dir.c:2511 -#, c-format -msgid "- holes flag = %d\n" -msgstr "" - -#: ../repair/dir.c:2517 -#, c-format -msgid "- compacting block %u in dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2558 -#, c-format -msgid "not enough space in block %u of dir inode %llu for all entries\n" -msgstr "" - -#: ../repair/dir.c:2626 -#, c-format -msgid "- would compact block %u in dir inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2688 ../repair/dir2.c:1808 -#, c-format -msgid "can't map block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2699 -#, c-format -msgid "" -"can't read file block %u (fsbno %llu, daddr %lld) for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2713 ../repair/dir.c:2975 -#, c-format -msgid "bad directory leaf magic # %#x for dir ino %llu\n" -msgstr "" - -#: ../repair/dir.c:2752 -#, c-format -msgid "" -"bad sibling back pointer for directory block %u in directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2784 ../repair/dir2.c:1884 -#, c-format -msgid "bad hash path in directory %llu\n" -msgstr "" - -#: ../repair/dir.c:2894 -#, c-format -msgid "out of range internal directory block numbers (inode %llu)\n" -msgstr "" - -#: ../repair/dir.c:2900 -#, c-format -msgid "setting directory inode (%llu) size to %llu bytes, was %lld bytes\n" -msgstr "" - -#: ../repair/dir.c:2955 -#, c-format -msgid "block 0 for directory inode %llu is missing\n" -msgstr "" - -#: ../repair/dir.c:2962 -#, c-format -msgid "can't read block 0 for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:2999 -#, c-format -msgid "clearing forw/back pointers for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:3005 -#, c-format -msgid "would clear forw/back pointers for directory inode %llu\n" -msgstr "" - -#: ../repair/dir.c:3075 ../repair/dir2.c:2090 -#, c-format -msgid "no . entry for directory %llu\n" -msgstr "" - -#: ../repair/dir.c:3085 ../repair/dir2.c:2100 -#, c-format -msgid "no .. entry for directory %llu\n" -msgstr "" - -#: ../repair/dir.c:3087 ../repair/dir2.c:2102 -#, c-format -msgid "no .. entry for root directory %llu\n" -msgstr "" - -#: ../repair/dir2.c:54 -#, c-format -msgid "malloc failed (%u bytes) dir2_add_badlist:ino %llu\n" -msgstr "" - -#: ../repair/dir2.c:93 ../repair/dir2.c:187 ../repair/dir2.c:223 -msgid "couldn't malloc dir2 buffer list\n" -msgstr "" - -#: ../repair/dir2.c:105 -msgid "couldn't malloc dir2 buffer header\n" -msgstr "" - -#: ../repair/dir2.c:122 -msgid "couldn't malloc dir2 buffer data\n" -msgstr "" - -#: ../repair/dir2.c:276 ../repair/dir2.c:633 ../repair/dir2.c:1689 -#: ../repair/phase6.c:2100 ../repair/phase6.c:2175 ../repair/phase6.c:2220 -#: ../repair/phase6.c:2319 ../repair/phase6.c:2451 ../repair/phase6.c:2465 -#: ../repair/phase6.c:2710 -#, c-format -msgid "can't read block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:287 -#, c-format -msgid "found non-root LEAFN node in inode %llu bno = %u\n" -msgstr "" - -#: ../repair/dir2.c:292 -#, c-format -msgid "LEAFN node level is %d inode %llu bno = %u\n" -msgstr "" - -#: ../repair/dir2.c:303 -#, c-format -msgid "bad dir magic number 0x%x in inode %llu bno = %u\n" -msgstr "" - -#: ../repair/dir2.c:380 -#, c-format -msgid "release_dir2_cursor_int got unexpected non-null bp, dabno = %u\n" -msgstr "" - -#: ../repair/dir2.c:443 -#, c-format -msgid "directory block used/count inconsistency - %d / %hu\n" -msgstr "" - -#: ../repair/dir2.c:465 -#, c-format -msgid "bad directory block in inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:486 -#, c-format -msgid "" -"correcting bad hashval in non-leaf dir block\n" -"\tin (level %d) in inode %llu.\n" -msgstr "" - -#: ../repair/dir2.c:493 -#, c-format -msgid "" -"would correct bad hashval in non-leaf dir block\n" -"\tin (level %d) in inode %llu.\n" -msgstr "" - -#: ../repair/dir2.c:647 -#, c-format -msgid "bad magic number %x in block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:655 -#, c-format -msgid "bad back pointer in block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:662 -#, c-format -msgid "entry count %d too large in block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:669 -#, c-format -msgid "bad level %d in block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:713 -#, c-format -msgid "" -"correcting bad hashval in interior dir block\n" -"\tin (level %d) in inode %llu.\n" -msgstr "" - -#: ../repair/dir2.c:720 -#, c-format -msgid "" -"would correct bad hashval in interior dir block\n" -"\tin (level %d) in inode %llu.\n" -msgstr "" - -#: ../repair/dir2.c:754 -msgid "couldn't malloc dir2 shortform copy\n" -msgstr "" - -#: ../repair/dir2.c:894 -msgid "current" -msgstr "" - -#: ../repair/dir2.c:897 ../repair/dir2.c:1420 -msgid "invalid" -msgstr "" - -#: ../repair/dir2.c:900 ../repair/dir2.c:1423 -msgid "realtime bitmap" -msgstr "" - -#: ../repair/dir2.c:903 ../repair/dir2.c:1426 -msgid "realtime summary" -msgstr "" - -#: ../repair/dir2.c:906 ../repair/dir2.c:1429 -msgid "user quota" -msgstr "" - -#: ../repair/dir2.c:909 ../repair/dir2.c:1432 -msgid "group quota" -msgstr "" - -#: ../repair/dir2.c:943 ../repair/dir2.c:1469 -msgid "non-existent" -msgstr "" - -#: ../repair/dir2.c:947 -#, c-format -msgid "entry \"%*.*s\" in shortform directory %llu references %s inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:979 -#, c-format -msgid "zero length entry in shortform dir %llu" -msgstr "" - -#: ../repair/dir2.c:983 -#, c-format -msgid ", junking %d entries\n" -msgstr "" - -#: ../repair/dir2.c:986 -#, c-format -msgid ", would junk %d entries\n" -msgstr "" - -#: ../repair/dir2.c:1060 -#, c-format -msgid "entry contains offset out of order in shortform dir %llu\n" -msgstr "" - -#: ../repair/dir2.c:1164 -#, c-format -msgid "would have corrected i8 count in directory %llu from %d to %d\n" -msgstr "" - -#: ../repair/dir2.c:1168 -#, c-format -msgid "corrected i8 count in directory %llu, was %d, now %d\n" -msgstr "" - -#: ../repair/dir2.c:1205 -#, c-format -msgid "directory %llu offsets too high\n" -msgstr "" - -#: ../repair/dir2.c:1210 -#, c-format -msgid "would have corrected entry offsets in directory %llu\n" -msgstr "" - -#: ../repair/dir2.c:1214 -#, c-format -msgid "corrected entry offsets in directory %llu\n" -msgstr "" - -#: ../repair/dir2.c:1269 -#, c-format -msgid "bad .. entry in directory inode %llu, points to self, " -msgstr "" - -#: ../repair/dir2.c:1381 -#, c-format -msgid "corrupt block %u in directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1384 -msgid "\twill junk block\n" -msgstr "" - -#: ../repair/dir2.c:1386 -msgid "\twould junk block\n" -msgstr "" - -#: ../repair/dir2.c:1472 -#, c-format -msgid "" -"entry \"%*.*s\" at block %u offset %d in directory inode %llu references %s " -"inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1484 -#, c-format -msgid "entry at block %u offset %d in directory inode %llu has 0 namelength\n" -msgstr "" - -#: ../repair/dir2.c:1496 -#, c-format -msgid "\tclearing inode number in entry at offset %d...\n" -msgstr "" - -#: ../repair/dir2.c:1502 -#, c-format -msgid "\twould clear inode number in entry at offset %d...\n" -msgstr "" - -#: ../repair/dir2.c:1515 -#, c-format -msgid "" -"entry at block %u offset %d in directory inode %llu has illegal name \"%*.*s" -"\": " -msgstr "" - -#: ../repair/dir2.c:1546 -#, c-format -msgid "bad .. entry in directory inode %llu, points to self: " -msgstr "" - -#: ../repair/dir2.c:1557 -#, c-format -msgid "bad .. entry in root directory inode %llu, was %llu: " -msgstr "" - -#: ../repair/dir2.c:1562 ../repair/dir2.c:1594 ../repair/phase2.c:178 -#: ../repair/phase2.c:187 ../repair/phase2.c:196 -msgid "correcting\n" -msgstr "" - -#: ../repair/dir2.c:1566 ../repair/dir2.c:1598 ../repair/phase2.c:180 -#: ../repair/phase2.c:189 ../repair/phase2.c:198 -msgid "would correct\n" -msgstr "" - -#: ../repair/dir2.c:1577 -#, c-format -msgid "multiple .. entries in directory inode %llu: " -msgstr "" - -#: ../repair/dir2.c:1590 -#, c-format -msgid "bad . entry in directory inode %llu, was %llu: " -msgstr "" - -#: ../repair/dir2.c:1602 -#, c-format -msgid "multiple . entries in directory inode %llu: " -msgstr "" - -#: ../repair/dir2.c:1612 -#, c-format -msgid "entry \"%*.*s\" in directory inode %llu points to self: " -msgstr "" - -#: ../repair/dir2.c:1624 -msgid "clearing entry\n" -msgstr "" - -#: ../repair/dir2.c:1638 -#, c-format -msgid "bad bestfree table in block %u in directory inode %llu: " -msgstr "" - -#: ../repair/dir2.c:1642 -msgid "repairing table\n" -msgstr "" - -#: ../repair/dir2.c:1646 -msgid "would repair table\n" -msgstr "" - -#: ../repair/dir2.c:1682 -#, c-format -msgid "block %u for directory inode %llu is missing\n" -msgstr "" - -#: ../repair/dir2.c:1698 -#, c-format -msgid "bad directory block magic # %#x in block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1743 -#, c-format -msgid "bad entry count in block %u of directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1753 -#, c-format -msgid "bad hash ordering in block %u of directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1762 -#, c-format -msgid "bad stale count in block %u of directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1817 -#, c-format -msgid "can't read file block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1828 -#, c-format -msgid "bad directory leaf magic # %#x for directory inode %llu block %u\n" -msgstr "" - -#: ../repair/dir2.c:1858 -#, c-format -msgid "bad sibling back pointer for block %u in directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:1987 -#, c-format -msgid "block %llu for directory inode %llu is missing\n" -msgstr "" - -#: ../repair/dir2.c:1995 -#, c-format -msgid "can't read block %llu for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:2003 -#, c-format -msgid "" -"bad directory block magic # %#x in block %llu for directory inode %llu\n" -msgstr "" - -#: ../repair/dir2.c:2083 -#, c-format -msgid "bad size/format for directory %llu\n" -msgstr "" - -#: ../repair/dir_stack.c:91 -msgid "couldn't malloc dir stack element, try more swap\n" -msgstr "" - -#: ../repair/incore.c:64 -msgid "couldn't allocate block map pointers\n" -msgstr "" - -#: ../repair/incore.c:73 -#, c-format -msgid "couldn't allocate block map, size = %d\n" -msgstr "" - -#: ../repair/incore.c:90 -#, c-format -msgid "couldn't allocate realtime block map, size = %llu\n" -msgstr "" - -#: ../repair/incore_ext.c:112 ../repair/incore_ext.c:657 -msgid "couldn't allocate new extent descriptors.\n" -msgstr "" - -#: ../repair/incore_ext.c:241 -msgid "duplicate bno extent range\n" -msgstr "" - -#: ../repair/incore_ext.c:357 -msgid ": duplicate bno extent range\n" -msgstr "" - -#: ../repair/incore_ext.c:519 ../repair/incore_ext.c:570 -#: ../repair/incore_ext.c:770 ../repair/incore_ext.c:822 -msgid "duplicate extent range\n" -msgstr "" - -#: ../repair/incore_ext.c:871 -msgid "couldn't malloc dup extent tree descriptor table\n" -msgstr "" - -#: ../repair/incore_ext.c:876 -msgid "couldn't malloc free by-bno extent tree descriptor table\n" -msgstr "" - -#: ../repair/incore_ext.c:881 -msgid "couldn't malloc free by-bcnt extent tree descriptor table\n" -msgstr "" - -#: ../repair/incore_ext.c:887 -msgid "couldn't malloc dup extent tree descriptor\n" -msgstr "" - -#: ../repair/incore_ext.c:891 -msgid "couldn't malloc bno extent tree descriptor\n" -msgstr "" - -#: ../repair/incore_ext.c:895 -msgid "couldn't malloc bcnt extent tree descriptor\n" -msgstr "" - -#: ../repair/incore_ext.c:905 -msgid "couldn't malloc dup rt extent tree descriptor\n" -msgstr "" - -#: ../repair/incore_ino.c:77 -msgid "inode map malloc failed\n" -msgstr "" - -#: ../repair/incore_ino.c:190 -msgid "add_aginode_uncertain - duplicate inode range\n" -msgstr "" - -#: ../repair/incore_ino.c:292 -msgid "add_inode - duplicate inode range\n" -msgstr "" - -#: ../repair/incore_ino.c:404 -#, c-format -msgid "good inode list is --\n" -msgstr "" - -#: ../repair/incore_ino.c:407 -#, c-format -msgid "uncertain inode list is --\n" -msgstr "" - -#: ../repair/incore_ino.c:412 -#, c-format -msgid "agno %d -- no inodes\n" -msgstr "" - -#: ../repair/incore_ino.c:416 -#, c-format -msgid "agno %d\n" -msgstr "" - -#: ../repair/incore_ino.c:420 -#, c-format -msgid "\tptr = %lx, start = 0x%x, free = 0x%llx, confirmed = 0x%llx\n" -msgstr "" - -#: ../repair/incore_ino.c:464 -msgid "couldn't malloc parent list table\n" -msgstr "" - -#: ../repair/incore_ino.c:470 ../repair/incore_ino.c:516 -msgid "couldn't memalign pentries table\n" -msgstr "" - -#: ../repair/incore_ino.c:663 -msgid "couldn't malloc ino rec backptrs.\n" -msgstr "" - -#: ../repair/incore_ino.c:689 -msgid "could not malloc back pointer table\n" -msgstr "" - -#: ../repair/incore_ino.c:779 -msgid "couldn't malloc inode tree descriptor table\n" -msgstr "" - -#: ../repair/incore_ino.c:783 -msgid "couldn't malloc uncertain ino tree descriptor table\n" -msgstr "" - -#: ../repair/incore_ino.c:788 -msgid "couldn't malloc inode tree descriptor\n" -msgstr "" - -#: ../repair/incore_ino.c:792 -msgid "couldn't malloc uncertain ino tree descriptor\n" -msgstr "" - -#: ../repair/incore_ino.c:803 -msgid "couldn't malloc uncertain inode cache area\n" -msgstr "" - -#: ../repair/init.c:53 -#, c-format -msgid "you should never get this message - %s" -msgstr "" - -#: ../repair/init.c:63 -msgid "couldn't initialize XFS library\n" -msgstr "" - -#: ../repair/io.c:33 -#, c-format -msgid "couldn't open filesystem \"%s\"\n" -msgstr "" - -#: ../repair/phase1.c:28 -msgid "Sorry, could not find valid secondary superblock\n" -msgstr "" - -#: ../repair/phase1.c:29 -msgid "Exiting now.\n" -msgstr "" - -#: ../repair/phase1.c:40 -#, c-format -msgid "could not allocate ag header buffer (%d bytes)\n" -msgstr "" - -#: ../repair/phase1.c:60 -msgid "Phase 1 - find and verify superblock...\n" -msgstr "" - -#: ../repair/phase1.c:77 -msgid "error reading primary superblock\n" -msgstr "" - -#: ../repair/phase1.c:83 -#, c-format -msgid "bad primary superblock - %s !!!\n" -msgstr "" - -#: ../repair/phase1.c:90 -#, c-format -msgid "couldn't verify primary superblock - %s !!!\n" -msgstr "" - -#: ../repair/phase1.c:99 -msgid "writing modified primary superblock\n" -msgstr "" - -#: ../repair/phase1.c:102 -msgid "would write modified primary superblock\n" -msgstr "" - -#: ../repair/phase2.c:54 -#, c-format -msgid "" -"zero_log: cannot find log head/tail (xlog_find_tail=%d), zeroing it anyway\n" -msgstr "" - -#: ../repair/phase2.c:59 -#, c-format -msgid "zero_log: head block %lld tail block %lld\n" -msgstr "" - -#: ../repair/phase2.c:65 -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:69 -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" -"re-running xfs_repair. If you are unable to mount the filesystem, then use\n" -"the -L option to destroy the log and attempt a repair.\n" -"Note that destroying the log may cause corruption -- please attempt a mount\n" -"of the filesystem before doing this.\n" -msgstr "" - -#: ../repair/phase2.c:111 -msgid "" -"This filesystem has an external log. Specify log device with the -l " -"option.\n" -msgstr "" - -#: ../repair/phase2.c:114 -#, c-format -msgid "Phase 2 - using external log on %s\n" -msgstr "" - -#: ../repair/phase2.c:116 -msgid "Phase 2 - using internal log\n" -msgstr "" - -#: ../repair/phase2.c:120 -msgid " - zero log...\n" -msgstr "" - -#: ../repair/phase2.c:124 -msgid " - scan filesystem freespace and inode maps...\n" -msgstr "" - -#: ../repair/phase2.c:147 -msgid "root inode chunk not found\n" -msgstr "" - -#: ../repair/phase2.c:169 -msgid " - found root inode chunk\n" -msgstr "" - -#: ../repair/phase2.c:175 -msgid "root inode marked free, " -msgstr "" - -#: ../repair/phase2.c:184 -msgid "realtime bitmap inode marked free, " -msgstr "" - -#: ../repair/phase2.c:193 -msgid "realtime summary inode marked free, " -msgstr "" - -#: ../repair/phase3.c:113 -#, c-format -msgid "cannot read agi block %lld for ag %u\n" -msgstr "" - -#: ../repair/phase3.c:136 -#, c-format -msgid "error following ag %d unlinked list\n" -msgstr "" - -#: ../repair/phase3.c:151 -msgid "Phase 3 - for each AG...\n" -msgstr "" - -#: ../repair/phase3.c:153 -msgid " - scan and clear agi unlinked lists...\n" -msgstr "" - -#: ../repair/phase3.c:155 -msgid " - scan (but don't clear) agi unlinked lists...\n" -msgstr "" - -#: ../repair/phase3.c:171 -msgid " - process known inodes and perform inode discovery...\n" -msgstr "" - -#: ../repair/phase3.c:174 ../repair/phase4.c:1315 -#, c-format -msgid " - agno = %d\n" -msgstr "" - -#: ../repair/phase3.c:185 -msgid " - process newly discovered inodes...\n" -msgstr "" - -#: ../repair/phase4.c:128 ../repair/phase4.c:594 -#, c-format -msgid "couldn't read %s inode %llu\n" -msgstr "" - -#: ../repair/phase4.c:153 ../repair/phase4.c:336 ../repair/phase4.c:619 -#: ../repair/phase4.c:817 -#, c-format -msgid " - clearing existing \"%s\" inode\n" -msgstr "" - -#: ../repair/phase4.c:185 ../repair/phase4.c:652 -#, c-format -msgid " - marking entry \"%s\" to be deleted\n" -msgstr "" - -#: ../repair/phase4.c:213 -#, c-format -msgid "couldn't map first leaf block of directory inode %llu\n" -msgstr "" - -#: ../repair/phase4.c:242 -#, c-format -msgid "bad magic # (0x%x) for directory leaf block (bno %u fsbno %llu)\n" -msgstr "" - -#: ../repair/phase4.c:379 ../repair/phase4.c:860 -#, c-format -msgid "could not read %s inode %llu\n" -msgstr "" - -#: ../repair/phase4.c:430 ../repair/phase4.c:912 -#, c-format -msgid " - deleting existing \"%s\" entry\n" -msgstr "" - -#: ../repair/phase4.c:684 -#, c-format -msgid "malloc failed (%u bytes) in longform2_delete_orphanage, ino %llu\n" -msgstr "" - -#: ../repair/phase4.c:728 -#, c-format -msgid "bad magic # (0x%x) for directory data block (bno %u fsbno %llu)\n" -msgstr "" - -#: ../repair/phase4.c:988 -#, c-format -msgid "could not read buffer for root inode %llu (daddr %lld, size %d)\n" -msgstr "" - -#: ../repair/phase4.c:1034 -#, c-format -msgid "unknown version #%d in root inode\n" -msgstr "" - -#: ../repair/phase4.c:1141 -msgid "Phase 4 - check for duplicate blocks...\n" -msgstr "" - -#: ../repair/phase4.c:1142 -msgid " - setting up duplicate extent list...\n" -msgstr "" - -#: ../repair/phase4.c:1154 -msgid "root inode would be lost\n" -msgstr "" - -#: ../repair/phase4.c:1156 -msgid "root inode lost\n" -msgstr "" - -#: ../repair/phase4.c:1164 -msgid " - clear lost+found (if it exists) ...\n" -msgstr "" - -#: ../repair/phase4.c:1185 -#, c-format -msgid "unknown block state, ag %d, block %d\n" -msgstr "" - -#: ../repair/phase4.c:1241 -#, c-format -msgid "unknown rt extent state, extent %llu\n" -msgstr "" - -#: ../repair/phase4.c:1304 -msgid " - check for inodes claiming duplicate blocks...\n" -msgstr "" - -#: ../repair/phase5.c:216 -msgid "could not set up btree block array\n" -msgstr "" - -#: ../repair/phase5.c:228 -msgid "error - not enough free space in filesystem\n" -msgstr "" - -#: ../repair/phase5.c:451 -#, c-format -msgid "can't rebuild fs trees -- not enough free space on ag %u\n" -msgstr "" - -#: ../repair/phase5.c:475 -#, c-format -msgid "ag %u - not enough free space to build freespace btrees\n" -msgstr "" - -#: ../repair/phase5.c:510 -#, c-format -msgid "not enough free blocks left to describe all free blocks in AG %u\n" -msgstr "" - -#: ../repair/phase5.c:1320 -#, c-format -msgid "lost %d blocks in ag %u\n" -msgstr "" - -#: ../repair/phase5.c:1323 -#, c-format -msgid "thought we were going to lose %d blocks in ag %u, actually lost %d\n" -msgstr "" - -#: ../repair/phase5.c:1371 ../repair/xfs_repair.c:585 -msgid "couldn't get superblock\n" -msgstr "" - -#: ../repair/phase5.c:1424 -msgid "Phase 5 - rebuild AG headers and trees...\n" -msgstr "" - -#: ../repair/phase5.c:1473 -#, c-format -msgid "unable to rebuild AG %u. Not enough free space in on-disk AG.\n" -msgstr "" - -#: ../repair/phase5.c:1513 -#, c-format -msgid "unable to rebuild AG %u. No free space.\n" -msgstr "" - -#: ../repair/phase5.c:1540 -#, c-format -msgid "lost %d blocks in agno %d, sorry.\n" -msgstr "" - -#: ../repair/phase5.c:1599 -msgid " - generate realtime summary info and bitmap...\n" -msgstr "" - -#: ../repair/phase5.c:1605 -msgid " - reset superblock...\n" -msgstr "" - -#: ../repair/phase6.c:89 -#, c-format -msgid "malloc failed in dir_hash_add (%u bytes)\n" -msgstr "" - -#: ../repair/phase6.c:125 -msgid "ok" -msgstr "" - -#: ../repair/phase6.c:126 -msgid "duplicate leaf" -msgstr "" - -#: ../repair/phase6.c:127 -msgid "hash value mismatch" -msgstr "" - -#: ../repair/phase6.c:128 -msgid "no data entry" -msgstr "" - -#: ../repair/phase6.c:129 -msgid "no leaf entry" -msgstr "" - -#: ../repair/phase6.c:130 -msgid "bad stale count" -msgstr "" - -#: ../repair/phase6.c:138 -#, c-format -msgid "bad hash table for directory inode %llu (%s): " -msgstr "" - -#: ../repair/phase6.c:141 -msgid "rebuilding\n" -msgstr "" - -#: ../repair/phase6.c:143 -msgid "would rebuild\n" -msgstr "" - -#: ../repair/phase6.c:177 -msgid "calloc failed in dir_hash_init\n" -msgstr "" - -#: ../repair/phase6.c:309 -msgid "ran out of disk space!\n" -msgstr "" - -#: ../repair/phase6.c:311 -#, c-format -msgid "xfs_trans_reserve returned %d\n" -msgstr "" - -#: ../repair/phase6.c:340 ../repair/phase6.c:433 -#, c-format -msgid "couldn't iget realtime bitmap inode -- error - %d\n" -msgstr "" - -#: ../repair/phase6.c:390 -#, c-format -msgid "couldn't allocate realtime bitmap, error = %d\n" -msgstr "" - -#: ../repair/phase6.c:403 -#, c-format -msgid "allocation of the realtime bitmap failed, error = %d\n" -msgstr "" - -#: ../repair/phase6.c:446 -#, c-format -msgid "couldn't map realtime bitmap block %llu, error = %d\n" -msgstr "" - -#: ../repair/phase6.c:459 -#, c-format -msgid "can't access block %llu (fsbno %llu) of realtime bitmap inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:503 ../repair/phase6.c:575 -#, c-format -msgid "couldn't iget realtime summary inode -- error - %d\n" -msgstr "" - -#: ../repair/phase6.c:516 -#, c-format -msgid "couldn't map realtime summary inode block %llu, error = %d\n" -msgstr "" - -#: ../repair/phase6.c:529 -#, c-format -msgid "can't access block %llu (fsbno %llu) of realtime summary inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:631 -#, c-format -msgid "couldn't allocate realtime summary inode, error = %d\n" -msgstr "" - -#: ../repair/phase6.c:644 -#, c-format -msgid "allocation of the realtime summary ino failed, error = %d\n" -msgstr "" - -#: ../repair/phase6.c:671 -#, c-format -msgid "could not iget root inode -- error - %d\n" -msgstr "" - -#: ../repair/phase6.c:739 -#, c-format -msgid "%d - couldn't iget root inode to make %s\n" -msgstr "" - -#: ../repair/phase6.c:746 -#, c-format -msgid "%s inode allocation failed %d\n" -msgstr "" - -#: ../repair/phase6.c:766 -#, c-format -msgid "can't make %s, createname error %d, will try later\n" -msgstr "" - -#: ../repair/phase6.c:784 -#, c-format -msgid "%s directory creation failed -- bmapf error %d\n" -msgstr "" - -#: ../repair/phase6.c:821 -#, c-format -msgid "%d - couldn't iget orphanage inode\n" -msgstr "" - -#: ../repair/phase6.c:826 -#, c-format -msgid "%d - couldn't iget disconnected inode\n" -msgstr "" - -#: ../repair/phase6.c:840 ../repair/phase6.c:879 ../repair/phase6.c:930 -#, c-format -msgid "space reservation failed (%d), filesystem may be out of space\n" -msgstr "" - -#: ../repair/phase6.c:851 ../repair/phase6.c:891 ../repair/phase6.c:940 -#, c-format -msgid "name create failed in %s (%d), filesystem may be out of space\n" -msgstr "" - -#: ../repair/phase6.c:860 -#, c-format -msgid "creation of .. entry failed (%d), filesystem may be out of space\n" -msgstr "" - -#: ../repair/phase6.c:868 -#, c-format -msgid "bmap finish failed (err - %d), filesystem may be out of space\n" -msgstr "" - -#: ../repair/phase6.c:906 -#, c-format -msgid "name replace op failed (%d), filesystem may be out of space\n" -msgstr "" - -#: ../repair/phase6.c:913 ../repair/phase6.c:949 -#, c-format -msgid "bmap finish failed (%d), filesystem may be out of space\n" -msgstr "" - -#: ../repair/phase6.c:990 ../repair/phase6.c:1147 ../repair/phase6.c:1539 -msgid "dir" -msgstr "" - -#: ../repair/phase6.c:999 ../repair/phase6.c:1003 -#, c-format -msgid "can't map block %d in %s inode %llu, xfs_bmapi returns %d, nmap = %d\n" -msgstr "" - -#: ../repair/phase6.c:1011 ../repair/phase6.c:1014 ../repair/phase6.c:1618 -#: ../repair/phase6.c:1622 -#, c-format -msgid "block %d in %s ino %llu doesn't exist\n" -msgstr "" - -#: ../repair/phase6.c:1069 ../repair/phase6.c:1073 -#, c-format -msgid "can't map block %d in %s ino %llu, xfs_bmapi returns %d, nmap = %d\n" -msgstr "" - -#: ../repair/phase6.c:1081 ../repair/phase6.c:1085 -#, c-format -msgid "block %d in %s inode %llu doesn't exist\n" -msgstr "" - -#: ../repair/phase6.c:1165 -#, c-format -msgid "can't read directory inode %llu (leaf) block %u (fsbno %llu)\n" -msgstr "" - -#: ../repair/phase6.c:1207 -#, c-format -msgid "can't map block %d in directory %llu, xfs_bmapi returns %d, nmap = %d\n" -msgstr "" - -#: ../repair/phase6.c:1212 -#, c-format -msgid "%s ino %llu block %d doesn't exist\n" -msgstr "" - -#: ../repair/phase6.c:1267 -#, c-format -msgid "" -"couldn't remove bogus entry \"%s\" in\n" -"\tdirectory inode %llu, errno = %d\n" -msgstr "" - -#: ../repair/phase6.c:1403 -#, c-format -msgid "entry \"%s\" in dir inode %llu points to non-existent inode, " -msgstr "" - -#: ../repair/phase6.c:1409 ../repair/phase6.c:1970 -msgid "marking entry to be junked\n" -msgstr "" - -#: ../repair/phase6.c:1411 ../repair/phase6.c:1972 ../repair/phase6.c:2889 -#: ../repair/phase6.c:3287 -msgid "would junk entry\n" -msgstr "" - -#: ../repair/phase6.c:1431 -#, c-format -msgid "entry \"%s\" in dir inode %llu points to free inode %llu" -msgstr "" - -#: ../repair/phase6.c:1438 ../repair/phase6.c:2002 -msgid ", marking entry to be junked\n" -msgstr "" - -#: ../repair/phase6.c:1445 ../repair/phase6.c:2008 -msgid ", would junk entry\n" -msgstr "" - -#: ../repair/phase6.c:1473 -#, c-format -msgid "" -"entry \"%s\" in dir %llu points to an already connected dir inode %llu,\n" -msgstr "" - -#: ../repair/phase6.c:1484 -#, c-format -msgid "" -"entry \"%s\" in dir ino %llu not consistent with .. value (%llu) in ino %" -"llu,\n" -msgstr "" - -#: ../repair/phase6.c:1497 ../repair/phase6.c:2060 -#, c-format -msgid "\twill clear entry \"%s\"\n" -msgstr "" - -#: ../repair/phase6.c:1500 ../repair/phase6.c:2063 -#, c-format -msgid "\twould clear entry \"%s\"\n" -msgstr "" - -#: ../repair/phase6.c:1544 -#, c-format -msgid "cannot map block 0 of directory inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:1570 -#, c-format -msgid "bad magic # (0x%x) for dir ino %llu leaf block (bno %u fsbno %llu)\n" -msgstr "" - -#: ../repair/phase6.c:1606 ../repair/phase6.c:1610 -#, c-format -msgid "can't map leaf block %d in dir %llu, xfs_bmapi returns %d, nmap = %d\n" -msgstr "" - -#: ../repair/phase6.c:1672 -#, c-format -msgid "shrink_inode failed inode %llu block %u\n" -msgstr "" - -#: ../repair/phase6.c:1753 -#, c-format -msgid "realloc failed in longform_dir2_entry_check_data (%u bytes)\n" -msgstr "" - -#: ../repair/phase6.c:1812 -#, c-format -msgid "empty data block %u in directory inode %llu: " -msgstr "" - -#: ../repair/phase6.c:1815 -#, c-format -msgid "corrupt block %u in directory inode %llu: " -msgstr "" - -#: ../repair/phase6.c:1819 -msgid "junking block\n" -msgstr "" - -#: ../repair/phase6.c:1822 -msgid "would junk block\n" -msgstr "" - -#: ../repair/phase6.c:1846 -#, c-format -msgid "bad directory block magic # %#x for directory inode %llu block %d: " -msgstr "" - -#: ../repair/phase6.c:1850 -#, c-format -msgid "fixing magic # to %#x\n" -msgstr "" - -#: ../repair/phase6.c:1854 -#, c-format -msgid "would fix magic # to %#x\n" -msgstr "" - -#: ../repair/phase6.c:1875 -#, c-format -msgid "directory inode %llu block %u has consecutive free entries: " -msgstr "" - -#: ../repair/phase6.c:1879 -msgid "joining together\n" -msgstr "" - -#: ../repair/phase6.c:1888 -msgid "would join together\n" -msgstr "" - -#: ../repair/phase6.c:1964 -#, c-format -msgid "entry \"%s\" in directory inode %llu points to non-existent inode, " -msgstr "" - -#: ../repair/phase6.c:1993 -#, c-format -msgid "entry \"%s\" in directory inode %llu points to free inode %llu" -msgstr "" - -#: ../repair/phase6.c:2032 -#, c-format -msgid "" -"entry \"%s\" in dir %llu points to an already connected directory inode %" -"llu,\n" -msgstr "" - -#: ../repair/phase6.c:2046 -#, c-format -msgid "" -"entry \"%s\" in dir inode %llu inconsistent with .. value (%llu) in ino %" -"llu,\n" -msgstr "" - -#: ../repair/phase6.c:2118 ../repair/phase6.c:2198 -#, c-format -msgid "leaf block %u for directory inode %llu bad header\n" -msgstr "" - -#: ../repair/phase6.c:2136 -#, c-format -msgid "leaf block %u for directory inode %llu bad tail\n" -msgstr "" - -#: ../repair/phase6.c:2187 -#, c-format -msgid "unknown magic number %#x for block %u in directory inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:2234 -#, c-format -msgid "free block %u for directory inode %llu bad header\n" -msgstr "" - -#: ../repair/phase6.c:2247 -#, c-format -msgid "free block %u entry %i for directory ino %llu bad\n" -msgstr "" - -#: ../repair/phase6.c:2256 -#, c-format -msgid "free block %u for directory inode %llu bad nused\n" -msgstr "" - -#: ../repair/phase6.c:2267 -#, c-format -msgid "missing freetab entry %u for directory inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:2362 -#, c-format -msgid "can't add btree block to directory inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:2395 -#, c-format -msgid "can't add free block to directory inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:2472 -#, c-format -msgid "malloc failed in longform_dir2_rebuild_data (%u bytes)\n" -msgstr "" - -#: ../repair/phase6.c:2616 -#, c-format -msgid "rebuilding directory inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:2626 -#, c-format -msgid "can't get block %u for directory inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:2686 -#, c-format -msgid "malloc failed in longform_dir2_entry_check (%u bytes)\n" -msgstr "" - -#: ../repair/phase6.c:2801 -#, c-format -msgid "shortform dir inode %llu has null data entries \n" -msgstr "" - -#: ../repair/phase6.c:2887 -#, c-format -msgid "entry \"%s\" in shortform dir %llu references non-existent ino %llu\n" -msgstr "" - -#: ../repair/phase6.c:2909 -#, c-format -msgid "entry \"%s\" in shortform dir inode %llu points to free inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:2915 ../repair/phase6.c:2994 ../repair/phase6.c:3314 -#: ../repair/phase6.c:3390 -#, c-format -msgid "would junk entry \"%s\"\n" -msgstr "" - -#: ../repair/phase6.c:2940 -#, c-format -msgid "entry \"%s\" in dir %llu references already connected dir ino %llu,\n" -msgstr "" - -#: ../repair/phase6.c:2952 -#, c-format -msgid "" -"entry \"%s\" in dir %llu not consistent with .. value (%llu) in dir ino %" -"llu,\n" -msgstr "" - -#: ../repair/phase6.c:3033 ../repair/phase6.c:3128 ../repair/phase6.c:3445 -#, c-format -msgid "setting size to %lld bytes to reflect junked entries\n" -msgstr "" - -#: ../repair/phase6.c:3284 -#, c-format -msgid "" -"entry \"%s\" in shortform directory %llu references non-existent inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:3306 -#, c-format -msgid "" -"entry \"%s\" in shortform directory inode %llu points to free inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:3333 -#, c-format -msgid "" -"entry \"%s\" in directory inode %llu references already connected inode %" -"llu,\n" -msgstr "" - -#: ../repair/phase6.c:3346 -#, c-format -msgid "" -"entry \"%s\" in directory inode %llu not consistent with .. value (%llu) in " -"inode %llu,\n" -msgstr "" - -#: ../repair/phase6.c:3414 -#, c-format -msgid "would fix i8count in inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:3426 -#, c-format -msgid "fixing i8count in inode %llu\n" -msgstr "" - -#: ../repair/phase6.c:3489 ../repair/phase6.c:3493 ../repair/phase7.c:116 -#, c-format -msgid "couldn't map inode %llu, err = %d\n" -msgstr "" - -#: ../repair/phase6.c:3615 -#, c-format -msgid "re-entering %s into root directory\n" -msgstr "" - -#: ../repair/phase6.c:3632 -#, c-format -msgid "can't make %s entry in root inode %llu, createname error %d\n" -msgstr "" - -#: ../repair/phase6.c:3657 -msgid "recreating root directory .. entry\n" -msgstr "" - -#: ../repair/phase6.c:3680 -#, c-format -msgid "can't make \"..\" entry in root inode %llu, createname error %d\n" -msgstr "" - -#: ../repair/phase6.c:3693 -msgid "would recreate root directory .. entry\n" -msgstr "" - -#: ../repair/phase6.c:3772 -#, c-format -msgid "would create missing \".\" entry in dir ino %llu\n" -msgstr "" - -#: ../repair/phase6.c:3779 -#, c-format -msgid "creating missing \".\" entry in dir ino %llu\n" -msgstr "" - -#: ../repair/phase6.c:3804 -#, c-format -msgid "can't make \".\" entry in dir ino %llu, createname error %d\n" -msgstr "" - -#: ../repair/phase6.c:3885 -msgid "Phase 6 - check inode connectivity...\n" -msgstr "" - -#: ../repair/phase6.c:3904 -msgid "reinitializing root directory\n" -msgstr "" - -#: ../repair/phase6.c:3909 -msgid "would reinitialize root directory\n" -msgstr "" - -#: ../repair/phase6.c:3915 -msgid "reinitializing realtime bitmap inode\n" -msgstr "" - -#: ../repair/phase6.c:3919 -msgid "would reinitialize realtime bitmap inode\n" -msgstr "" - -#: ../repair/phase6.c:3925 -msgid "reinitializing realtime summary inode\n" -msgstr "" - -#: ../repair/phase6.c:3929 -msgid "would reinitialize realtime summary inode\n" -msgstr "" - -#: ../repair/phase6.c:3935 -msgid " - resetting contents of realtime bitmap and summary inodes\n" -msgstr "" - -#: ../repair/phase6.c:3938 ../repair/phase6.c:3943 -msgid "Warning: realtime bitmap may be inconsistent\n" -msgstr "" - -#: ../repair/phase6.c:3951 -#, c-format -msgid " - ensuring existence of %s directory\n" -msgstr "" - -#: ../repair/phase6.c:3964 -msgid " - traversing filesystem starting at / ... \n" -msgstr "" - -#: ../repair/phase6.c:3969 -msgid " - traversal finished ... \n" -msgstr "" - -#: ../repair/phase6.c:3974 -msgid " - root inode lost, cannot make new one in no modify mode ... \n" -msgstr "" - -#: ../repair/phase6.c:3976 -msgid " - skipping filesystem traversal from / ... \n" -msgstr "" - -#: ../repair/phase6.c:3979 -msgid " - traversing all unattached subtrees ... \n" -msgstr "" - -#: ../repair/phase6.c:4030 -msgid " - traversals finished ... \n" -msgstr "" - -#: ../repair/phase6.c:4031 -msgid " - moving disconnected inodes to lost+found ... \n" -msgstr "" - -#: ../repair/phase6.c:4055 -#, c-format -msgid "disconnected dir inode %llu, " -msgstr "" - -#: ../repair/phase6.c:4059 -#, c-format -msgid "disconnected inode %llu, " -msgstr "" - -#: ../repair/phase6.c:4062 -#, c-format -msgid "moving to %s\n" -msgstr "" - -#: ../repair/phase6.c:4068 -#, c-format -msgid "would move to %s\n" -msgstr "" - -#: ../repair/phase7.c:40 -#, c-format -msgid "resetting inode %llu nlinks from %d to %d\n" -msgstr "" - -#: ../repair/phase7.c:46 -#, c-format -msgid "" -"nlinks %d will overflow v1 ino, ino %llu will be converted to version 2\n" -msgstr "" - -#: ../repair/phase7.c:55 -#, c-format -msgid "would have reset inode %llu nlinks from %d to %d\n" -msgstr "" - -#: ../repair/phase7.c:74 -msgid "Phase 7 - verify and correct link counts...\n" -msgstr "" - -#: ../repair/phase7.c:76 -msgid "Phase 7 - verify link counts...\n" -msgstr "" - -#: ../repair/phase7.c:120 -#, c-format -msgid "couldn't map inode %llu, err = %d, can't compare link counts\n" -msgstr "" - -#: ../repair/rt.c:47 -msgid "couldn't allocate memory for incore realtime bitmap.\n" -msgstr "" - -#: ../repair/rt.c:51 -msgid "couldn't allocate memory for incore realtime summary info.\n" -msgstr "" - -#: ../repair/rt.c:151 -#, c-format -msgid "rt summary mismatch, size %d block %llu, file: %d, computed: %d\n" -msgstr "" - -#: ../repair/rt.c:202 -#, c-format -msgid "can't find block %d for rtbitmap inode\n" -msgstr "" - -#: ../repair/rt.c:210 -#, c-format -msgid "can't read block %d for rtbitmap inode\n" -msgstr "" - -#: ../repair/rt.c:264 -#, c-format -msgid "block %d for rtsummary inode is missing\n" -msgstr "" - -#: ../repair/rt.c:272 -#, c-format -msgid "can't read block %d for rtsummary inode\n" -msgstr "" - -#: ../repair/sb.c:99 -msgid "" -"\n" -"attempting to find secondary superblock...\n" -msgstr "" - -#: ../repair/sb.c:104 -msgid "error finding secondary superblock -- failed to memalign buffer\n" -msgstr "" - -#: ../repair/sb.c:141 -msgid "found candidate secondary superblock...\n" -msgstr "" - -#: ../repair/sb.c:153 -msgid "verified secondary superblock...\n" -msgstr "" - -#: ../repair/sb.c:158 -msgid "unable to verify superblock, continuing...\n" -msgstr "" - -#: ../repair/sb.c:455 -msgid "failed to malloc superblock buffer\n" -msgstr "" - -#: ../repair/sb.c:461 -msgid "couldn't seek to offset 0 in filesystem\n" -msgstr "" - -#: ../repair/sb.c:468 -msgid "primary superblock write failed!\n" -msgstr "" - -#: ../repair/sb.c:485 -#, c-format -msgid "error reading superblock %u -- failed to malloc buffer\n" -msgstr "" - -#: ../repair/sb.c:494 -#, c-format -msgid "error reading superblock %u -- seek to offset %lld failed\n" -msgstr "" - -#: ../repair/sb.c:502 -#, c-format -msgid "superblock read failed, offset %lld, size %d, ag %u, rval %d\n" -msgstr "" - -#: ../repair/sb.c:550 -msgid "couldn't malloc geometry structure\n" -msgstr "" - -#: ../repair/sb.c:695 -msgid "calloc failed in verify_set_primary_sb\n" -msgstr "" - -#: ../repair/sb.c:763 -msgid "Only two AGs detected and they do not match - cannot proceed.\n" -msgstr "" - -#: ../repair/sb.c:775 -msgid "Only one AG detected - cannot proceed.\n" -msgstr "" - -#: ../repair/sb.c:787 -msgid "Not enough matching superblocks - cannot proceed.\n" -msgstr "" - -#: ../repair/sb.c:802 -msgid "could not read superblock\n" -msgstr "" - -#: ../repair/scan.c:67 ../repair/scan.c:112 -#, c-format -msgid "can't read btree block %d/%d\n" -msgstr "" - -#: ../repair/scan.c:171 -#, c-format -msgid "bad magic # %#x in inode %llu (%s fork) bmbt block %llu\n" -msgstr "" - -#: ../repair/scan.c:178 -#, c-format -msgid "expected level %d got %d in inode %llu, (%s fork) bmbt block %llu\n" -msgstr "" - -#: ../repair/scan.c:198 -#, 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:208 -#, 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:224 -#, 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:260 ../repair/scan.c:268 -#, c-format -msgid "inode 0x%llx bmap block 0x%llx claimed, state is %d\n" -msgstr "" - -#: ../repair/scan.c:284 -#, c-format -msgid "bad state %d, inode 0x%llx bmap block 0x%llx\n" -msgstr "" - -#: ../repair/scan.c:310 ../repair/scan.c:365 -#, c-format -msgid "inode 0x%llx bad # of bmap records (%u, min - %u, max - %u)\n" -msgstr "" - -#: ../repair/scan.c:344 -#, c-format -msgid "" -"out-of-order bmap key (file offset) in inode %llu, %s fork, fsbno %llu\n" -msgstr "" - -#: ../repair/scan.c:413 -#, 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:425 -#, 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:443 -#, 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:485 -#, c-format -msgid "bad magic # %#x in btbno block %d/%d\n" -msgstr "" - -#: ../repair/scan.c:492 -#, c-format -msgid "expected level %d got %d in btbno block %d/%d\n" -msgstr "" - -#: ../repair/scan.c:512 -#, c-format -msgid "" -"bno freespace btree block claimed (state %d), agno %d, bno %d, suspect %d\n" -msgstr "" - -#: ../repair/scan.c:561 -#, c-format -msgid "block (%d,%d) multiply claimed by bno space tree, state - %d\n" -msgstr "" - -#: ../repair/scan.c:641 -#, c-format -msgid "bad magic # %#x in btcnt block %d/%d\n" -msgstr "" - -#: ../repair/scan.c:648 -#, c-format -msgid "expected level %d got %d in btcnt block %d/%d\n" -msgstr "" - -#: ../repair/scan.c:668 -#, c-format -msgid "" -"bcnt freespace btree block claimed (state %d), agno %d, bno %d, suspect %d\n" -msgstr "" - -#: ../repair/scan.c:726 -#, c-format -msgid "block (%d,%d) already used, state %d\n" -msgstr "" - -#: ../repair/scan.c:818 -#, c-format -msgid "bad magic # %#x in inobt block %d/%d\n" -msgstr "" - -#: ../repair/scan.c:826 -#, c-format -msgid "expected level %d got %d in inobt block %d/%d\n" -msgstr "" - -#: ../repair/scan.c:850 -#, c-format -msgid "inode btree block claimed (state %d), agno %d, bno %d, suspect %d\n" -msgstr "" - -#: ../repair/scan.c:875 -#, c-format -msgid "dubious inode btree block header %d/%d\n" -msgstr "" - -#: ../repair/scan.c:913 -#, c-format -msgid "badly aligned inode rec (starting inode = %llu)\n" -msgstr "" - -#: ../repair/scan.c:929 -#, c-format -msgid "bad starting inode # (%llu (0x%x 0x%x)) in ino rec, skipping rec\n" -msgstr "" - -#: ../repair/scan.c:938 -#, c-format -msgid "bad ending inode # (%llu (0x%x 0x%x)) in ino rec, skipping rec\n" -msgstr "" - -#: ../repair/scan.c:967 -#, c-format -msgid "" -"inode chunk claims used block, inobt block - agno %d, bno %d, inopb %d\n" -msgstr "" - -#: ../repair/scan.c:992 -#, c-format -msgid "inode rec for ino %llu (%d/%d) overlaps existing rec (start %d/%d)\n" -msgstr "" - -#: ../repair/scan.c:1048 -#, c-format -msgid "ir_freecount/free mismatch, inode chunk %d/%d, freecount %d nfree %d\n" -msgstr "" - -#: ../repair/scan.c:1120 -#, c-format -msgid "can't read agfl block for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1134 -#, c-format -msgid "bad agbno %u in agfl, agno %d\n" -msgstr "" - -#: ../repair/scan.c:1143 -#, c-format -msgid "freeblk count %d != flcount %d in ag %d\n" -msgstr "" - -#: ../repair/scan.c:1175 -#, c-format -msgid "can't get root superblock for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1181 -msgid "can't allocate memory for superblock\n" -msgstr "" - -#: ../repair/scan.c:1191 -#, c-format -msgid "can't read agf block for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1202 -#, c-format -msgid "can't read agi block for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1226 -#, c-format -msgid "reset bad sb for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1229 -#, c-format -msgid "would reset bad sb for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1234 -#, c-format -msgid "reset bad agf for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1237 -#, c-format -msgid "would reset bad agf for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1242 -#, c-format -msgid "reset bad agi for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1245 -#, c-format -msgid "would reset bad agi for ag %d\n" -msgstr "" - -#: ../repair/scan.c:1255 -#, c-format -msgid "bad uncorrected agheader %d, skipping ag...\n" -msgstr "" - -#: ../repair/scan.c:1271 -#, c-format -msgid "bad agbno %u for btbno root, agno %d\n" -msgstr "" - -#: ../repair/scan.c:1283 -#, c-format -msgid "bad agbno %u for btbcnt root, agno %d\n" -msgstr "" - -#: ../repair/scan.c:1294 -#, c-format -msgid "bad agbno %u for inobt root, agno %d\n" -msgstr "" - -#: ../repair/versions.c:83 -#, c-format -msgid "bogus quota flags 0x%x set in superblock" -msgstr "" - -#: ../repair/versions.c:96 -msgid ", bogus flags will be cleared\n" -msgstr "" - -#: ../repair/versions.c:98 -msgid ", bogus flags would be cleared\n" -msgstr "" - -#: ../repair/versions.c:155 -msgid "This filesystem has uninitialized extent flags.\n" -msgstr "" - -#: ../repair/versions.c:163 -msgid "This filesystem is marked shared.\n" -msgstr "" - -#: ../repair/versions.c:169 -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:175 -#, c-format -msgid "WARNING: unknown superblock version %d\n" -msgstr "" - -#: ../repair/versions.c:178 -msgid "This filesystem contains features not understood by this program.\n" -msgstr "" - -#: ../repair/versions.c:186 -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:191 -msgid "" -"WARNING: you have disallowed superblock-feature-bits-allowed\n" -"\tbut this superblock has feature bits. The superblock\n" -"\twould be downgraded. This might cause loss of filesystem\n" -"\tmeta-data.\n" -msgstr "" - -#: ../repair/versions.c:205 -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:210 -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:223 -msgid "" -"WARNING: you have disallowed attr2 attributes but this filesystem\n" -"\thas attributes. The filesystem will be downgraded and\n" -"\tall attr2 attributes will be removed.\n" -msgstr "" - -#: ../repair/versions.c:228 -msgid "" -"WARNING: you have disallowed attr2 attributes but this filesystem\n" -"\thas attributes. The filesystem would be downgraded and\n" -"\tall attr2 attributes would be removed.\n" -msgstr "" - -#: ../repair/versions.c:241 -msgid "" -"WARNING: you have disallowed version 2 inodes but this filesystem\n" -"\thas version 2 inodes. The filesystem will be downgraded and\n" -"\tall version 2 inodes will be converted to version 1 inodes.\n" -"\tThis may cause some hard links to files to be destroyed\n" -msgstr "" - -#: ../repair/versions.c:247 -msgid "" -"WARNING: you have disallowed version 2 inodes but this filesystem\n" -"\thas version 2 inodes. The filesystem would be downgraded and\n" -"\tall version 2 inodes would be converted to version 1 inodes.\n" -"\tThis might cause some hard links to files to be destroyed\n" -msgstr "" - -#: ../repair/versions.c:261 -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:266 -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:290 -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:295 -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:62 -#, c-format -msgid "Usage: %s [-nLvV] [-o subopt[=value]] [-l logdev] [-r rtdev] devname\n" -msgstr "" - -#: ../repair/xfs_repair.c:74 -msgid "no error" -msgstr "" - -#: ../repair/xfs_repair.c:75 -msgid "bad magic number" -msgstr "" - -#: ../repair/xfs_repair.c:76 -msgid "bad blocksize field" -msgstr "" - -#: ../repair/xfs_repair.c:77 -msgid "bad blocksize log field" -msgstr "" - -#: ../repair/xfs_repair.c:78 -msgid "bad version number" -msgstr "" - -#: ../repair/xfs_repair.c:80 -msgid "filesystem mkfs-in-progress bit set" -msgstr "" - -#: ../repair/xfs_repair.c:82 -msgid "inconsistent filesystem geometry information" -msgstr "" - -#: ../repair/xfs_repair.c:84 -msgid "bad inode size or inconsistent with number of inodes/block" -msgstr "" - -#: ../repair/xfs_repair.c:85 -msgid "bad sector size" -msgstr "" - -#: ../repair/xfs_repair.c:87 -msgid "AGF geometry info conflicts with filesystem geometry" -msgstr "" - -#: ../repair/xfs_repair.c:89 -msgid "AGI geometry info conflicts with filesystem geometry" -msgstr "" - -#: ../repair/xfs_repair.c:91 -msgid "AG superblock geometry info conflicts with filesystem geometry" -msgstr "" - -#: ../repair/xfs_repair.c:92 -msgid "attempted to perform I/O beyond EOF" -msgstr "" - -#: ../repair/xfs_repair.c:94 -msgid "inconsistent filesystem geometry in realtime filesystem component" -msgstr "" - -#: ../repair/xfs_repair.c:96 -msgid "maximum indicated percentage of inodes > 100%" -msgstr "" - -#: ../repair/xfs_repair.c:98 -msgid "inconsistent inode alignment value" -msgstr "" - -#: ../repair/xfs_repair.c:100 -msgid "not enough secondary superblocks with matching geometry" -msgstr "" - -#: ../repair/xfs_repair.c:102 -msgid "bad stripe unit in superblock" -msgstr "" - -#: ../repair/xfs_repair.c:104 -msgid "bad stripe width in superblock" -msgstr "" - -#: ../repair/xfs_repair.c:106 -msgid "bad shared version number in superblock" -msgstr "" - -#: ../repair/xfs_repair.c:111 -#, c-format -msgid "bad error code - %d\n" -msgstr "" - -#: ../repair/xfs_repair.c:119 -#, c-format -msgid "-%c %s option cannot have a value\n" -msgstr "" - -#: ../repair/xfs_repair.c:266 -#, c-format -msgid "" -"\n" -"fatal error -- " -msgstr "" - -#: ../repair/xfs_repair.c:355 -#, c-format -msgid "sb root inode value %llu %sinconsistent with calculated value %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:362 -#, c-format -msgid "resetting superblock root inode pointer to %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:366 -#, c-format -msgid "would reset superblock root inode pointer to %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:378 -#, c-format -msgid "" -"sb realtime bitmap inode %llu %sinconsistent with calculated value %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:385 -#, c-format -msgid "resetting superblock realtime bitmap ino pointer to %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:389 -#, c-format -msgid "would reset superblock realtime bitmap ino pointer to %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:401 -#, c-format -msgid "" -"sb realtime summary inode %llu %sinconsistent with calculated value %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:408 -#, c-format -msgid "resetting superblock realtime summary ino pointer to %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:412 -#, c-format -msgid "would reset superblock realtime summary ino pointer to %lu\n" -msgstr "" - -#: ../repair/xfs_repair.c:448 -msgid "" -"Primary superblock would have been modified.\n" -"Cannot proceed further in no_modify mode.\n" -"Exiting now.\n" -msgstr "" - -#: ../repair/xfs_repair.c:464 -#, c-format -msgid "%s: cannot repair this filesystem. Sorry.\n" -msgstr "" - -#: ../repair/xfs_repair.c:491 -msgid "Found unsupported filesystem features. Exiting now.\n" -msgstr "" - -#: ../repair/xfs_repair.c:504 -#, c-format -msgid "No modify flag set, skipping phase 5\n" -msgstr "" - -#: ../repair/xfs_repair.c:514 -msgid "Inode allocation btrees are too corrupted, skipping phases 6 and 7\n" -msgstr "" - -#: ../repair/xfs_repair.c:520 -msgid "Warning: no quota inodes were found. Quotas disabled.\n" -msgstr "" - -#: ../repair/xfs_repair.c:523 -msgid "Warning: no quota inodes were found. Quotas would be disabled.\n" -msgstr "" - -#: ../repair/xfs_repair.c:528 -msgid "Warning: quota inodes were cleared. Quotas disabled.\n" -msgstr "" - -#: ../repair/xfs_repair.c:531 -msgid "Warning: quota inodes would be cleared. Quotas would be disabled.\n" -msgstr "" - -#: ../repair/xfs_repair.c:537 -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:541 -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:549 -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:553 -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:561 -msgid "" -"Warning: project quota information was cleared.\n" -"Project quotas can not be enforced until limit information is recreated.\n" -msgstr "" - -#: ../repair/xfs_repair.c:565 -msgid "" -"Warning: project quota information would be cleared.\n" -"Project quotas could not be enforced until limit information was recreated.\n" -msgstr "" - -#: ../repair/xfs_repair.c:573 -msgid "No modify flag set, skipping filesystem flush and exiting.\n" -msgstr "" - -#: ../repair/xfs_repair.c:591 -msgid "Note - quota info will be regenerated on next quota mount.\n" -msgstr "" - -#: ../repair/xfs_repair.c:597 -#, c-format -msgid "" -"Note - stripe unit (%d) and width (%d) fields have been reset.\n" -"Please set with mount -o sunit=,swidth=\n" -msgstr "" - -#: ../repair/xfs_repair.c:613 -msgid "done\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:30 -#, c-format -msgid "%s [-e extsize] [-p] source target\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:71 -#, c-format -msgid "%s: must specify files to copy\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:86 -#, c-format -msgid "%s: stat64 of %s failed\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:93 -#, c-format -msgid "%s: final argument is not directory\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:140 -#, c-format -msgid "%s: failed stat64 on %s: %s\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:161 -#, c-format -msgid "%s: %s filesystem has no realtime partition\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:182 ../rtcp/xfs_rtcp.c:210 -#, c-format -msgid "%s: open of %s failed: %s\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:199 -#, c-format -msgid "%s: set attributes on %s failed: %s\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:217 -#, c-format -msgid "%s: get attributes of %s failed: %s\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:227 ../rtcp/xfs_rtcp.c:262 -#, c-format -msgid "%s: %s is not a realtime file.\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:236 -#, c-format -msgid "%s: %s file extent size is %d, instead of %d.\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:248 ../rtcp/xfs_rtcp.c:271 -#, c-format -msgid "%s: open of %s source failed: %s\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:285 -#, c-format -msgid "%s: couldn't get direct I/O information: %s\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:295 -#, c-format -msgid "%s: extent size %d not a multiple of %d.\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:309 -#, c-format -msgid "The size of %s is not a multiple of %d.\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:312 -#, c-format -msgid "%s will be padded to %lld bytes.\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:318 -#, 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:360 -#, c-format -msgid "%s: write error: %s\n" -msgstr "" - -#: ../rtcp/xfs_rtcp.c:388 -#, c-format -msgid "%s: could not open %s: %s\n" -msgstr ""