blob: 073d6fbe08f308ed0e602364927f94d7b5852ab4 [file] [log] [blame]
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001# German translation of e2fsprogs
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002# Copyright (C) 1996 Theodore Tso (msgids)
3# This file is distributed under the same license as the e2fsprogs package.
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004#
Philipp Thomas3e914b52011-01-24 15:03:41 -05005# Olaf Klemke <olke@users.sourceforge.net>,2002.
6# Marc Langer <marc@marclanger.de>,2003.
Philipp Thomasb93349a2014-05-31 13:32:39 -04007# Philipp Thomas <pth@suse.de>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
Philipp Thomas294dd5a2011-10-16 21:53:39 -04008#
Theodore Ts'o7ae19832005-06-19 09:45:36 -04009#. The strings in e2fsck's problem.c can be very hard to translate,
10#. since the strings are expanded in two different ways. First of all,
11#. there is an @-expansion, where strings like "@i" are expanded to
12#. "inode", and so on. In order to make it easier for translators, the
13#. e2fsprogs po template file has been enhanced with comments that show
14#. the @-expansion, for the strings in the problem.c file.
15#.
16#. Translators are free to use the @-expansion facility if they so
17#. choose, by providing translations for strings in e2fsck/message.c.
18#. These translation can completely replace an expansion; for example,
19#. if "bblock" (which indicated that "@b" would be expanded to "block")
20#. is translated as "ddatenverlust", then "@d" will be expanded to
21#. "datenverlust". Alternatively, translators can simply not use the
22#. @-expansion facility at all.
23#.
24#. The second expansion which is done for e2fsck's problem.c messages is
25#. a dynamic %-expansion, which expands %i as an inode number, and so
26#. on. A table of these expansions can be found below. Note that
27#. %-expressions that begin with "%D" and "%I" are two-character
28#. expansions; so for example, "%Iu" expands to the inode's user id
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040029#. ownership field (inode->i_uid). Also the "%B" expansion is special:
30#. it can expand to either the string "indirect block" (possibly preceded
31#. by the word "double" or "triple"), or the string "block #" immediately
32#. followed by an integer indicating a block sequence number.
Theodore Ts'o7ae19832005-06-19 09:45:36 -040033#.
34#. %b <blk> block number
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040035#. %B "indirect block" | "block #"<blkcount> string | string+integer
Theodore Ts'o7ae19832005-06-19 09:45:36 -040036#. %c <blk2> block number
37#. %Di <dirent> -> ino inode number
38#. %Dn <dirent> -> name string
39#. %Dr <dirent> -> rec_len
40#. %Dl <dirent> -> name_len
41#. %Dt <dirent> -> filetype
42#. %d <dir> inode number
43#. %g <group> integer
44#. %i <ino> inode number
45#. %Is <inode> -> i_size
46#. %IS <inode> -> i_extra_isize
47#. %Ib <inode> -> i_blocks
48#. %Il <inode> -> i_links_count
49#. %Im <inode> -> i_mode
50#. %IM <inode> -> i_mtime
51#. %IF <inode> -> i_faddr
52#. %If <inode> -> i_file_acl
53#. %Id <inode> -> i_dir_acl
54#. %Iu <inode> -> i_uid
55#. %Ig <inode> -> i_gid
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040056#. %It <str> file type
Theodore Ts'o7ae19832005-06-19 09:45:36 -040057#. %j <ino2> inode number
58#. %m <com_err error message>
59#. %N <num>
60#. %p ext2fs_get_pathname of directory <ino>
61#. %P ext2fs_get_pathname of <dirent>->ino with <ino2> as
62#. the containing directory. (If dirent is NULL
63#. then return the pathname of directory <ino2>)
64#. %q ext2fs_get_pathname of directory <dir>
65#. %Q ext2fs_get_pathname of directory <ino> with <dir> as
66#. the containing directory.
67#. %s <str> miscellaneous string
68#. %S backup superblock
69#. %X <num> hexadecimal format
70#.
Theodore Ts'oa2328c92002-10-30 23:26:03 -050071msgid ""
72msgstr ""
Philipp Thomas37be3822015-05-17 20:21:39 -040073"Project-Id-Version: e2fsprogs-1.42.12-pre2\n"
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050074"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
Theodore Ts'oe622f9a2015-05-17 21:10:07 -040075"POT-Creation-Date: 2015-05-17 21:26-0400\n"
Philipp Thomas37be3822015-05-17 20:21:39 -040076"PO-Revision-Date: 2014-09-26 11:53+0200\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -040077"Last-Translator: Philipp Thomas <pth@suse.de>\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -050078"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -040079"Language: de\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050080"MIME-Version: 1.0\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -040081"Content-Type: text/plain; charset=UTF-8\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050082"Content-Transfer-Encoding: 8bit\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -050083"Plural-Forms: nplurals=2; plural=(n != 1);\n"
84
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040085#: e2fsck/badblocks.c:23 misc/mke2fs.c:211
Theodore Ts'oa2328c92002-10-30 23:26:03 -050086#, c-format
87msgid "Bad block %u out of range; ignored.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -050088msgstr "„Bad block“ %u außerhalb des gültigen Bereichs; ignoriert.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050089
Philipp Thomas294dd5a2011-10-16 21:53:39 -040090#: e2fsck/badblocks.c:46
Theodore Ts'oa2328c92002-10-30 23:26:03 -050091msgid "while sanity checking the bad blocks inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -040092msgstr "während der logischen Prüfung des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050093
Philipp Thomas294dd5a2011-10-16 21:53:39 -040094#: e2fsck/badblocks.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -050095msgid "while reading the bad blocks inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -040096msgstr "während des Lesens des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050097
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040098#: e2fsck/badblocks.c:72 e2fsck/scantest.c:107 e2fsck/unix.c:1345
Theodore Ts'obd386982015-05-17 20:34:58 -040099#: e2fsck/unix.c:1434 misc/badblocks.c:1242 misc/badblocks.c:1250
100#: misc/badblocks.c:1264 misc/badblocks.c:1276 misc/dumpe2fs.c:604
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400101#: misc/e2image.c:1396 misc/e2image.c:1580 misc/e2image.c:1599
Theodore Ts'obd386982015-05-17 20:34:58 -0400102#: misc/mke2fs.c:227 misc/tune2fs.c:1955 misc/tune2fs.c:2044 resize/main.c:317
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500103#, c-format
104msgid "while trying to open %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400105msgstr "beim Versuch, %s zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500106
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400107#: e2fsck/badblocks.c:83
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500108#, c-format
109msgid "while trying popen '%s'"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400110msgstr "beim Versuch, „%s“ mittels „popen“ zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500111
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400112#: e2fsck/badblocks.c:94 misc/mke2fs.c:234
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500113msgid "while reading in list of bad blocks from file"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400114msgstr "beim Lesen der „Bad Block“-Liste aus der Datei"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500115
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400116#: e2fsck/badblocks.c:105
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500117msgid "while updating bad block inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400118msgstr "beim Updaten des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500119
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400120#: e2fsck/badblocks.c:133
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500121#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -0400122msgid "Warning: illegal block %u found in bad block inode. Cleared.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400123msgstr ""
124"Warnung: Nicht zulässiger Block %u im „Bad Blocks“-Inode gefunden! "
125"Bereinigt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500126
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400127#: e2fsck/ehandler.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500128#, c-format
129msgid "Error reading block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400130msgstr "Lesefehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500131
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400132#: e2fsck/ehandler.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500133#, c-format
134msgid "Error reading block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400135msgstr "Lesefehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500136
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400137#: e2fsck/ehandler.c:61 e2fsck/ehandler.c:110
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500138msgid "Ignore error"
Philipp Thomasab02a742014-07-09 23:13:30 -0400139msgstr "Fehler ignorieren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500140
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400141#: e2fsck/ehandler.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500142msgid "Force rewrite"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400143msgstr "Rückschreiben erzwingen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500144
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400145#: e2fsck/ehandler.c:104
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500146#, c-format
147msgid "Error writing block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400148msgstr "Schreibfehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500149
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400150#: e2fsck/ehandler.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500151#, c-format
152msgid "Error writing block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400153msgstr "Schreibfehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500154
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400155#: e2fsck/emptydir.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500156msgid "empty dirblocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400157msgstr "leere Verzeichnisblöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500158
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400159#: e2fsck/emptydir.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500160msgid "empty dir map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500161msgstr "leere Verzeichnisliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500162
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400163#: e2fsck/emptydir.c:98
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500164#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400165msgid "Empty directory block %u (#%d) in inode %u\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500166msgstr "leerer Verzeichnisblock %u (#%d) im Inode %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500167
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400168#: e2fsck/extend.c:22
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500169#, c-format
170msgid "%s: %s filename nblocks blocksize\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400171msgstr "%s: %s Dateiname nblocks Blockgröße\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500172
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400173#: e2fsck/extend.c:44
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500174#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500175msgid "Illegal number of blocks!\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400176msgstr "Blockanzahl nicht zulässig!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500177
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400178#: e2fsck/extend.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500179#, c-format
180msgid "Couldn't allocate block buffer (size=%d)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500181msgstr "Es konnte kein Blockpuffer (Größe=%d) reserviert werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500182
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400183#: e2fsck/flushb.c:35
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500184#, c-format
185msgid "Usage: %s disk\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400186msgstr "Aufruf: %s Laufwerk\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500187
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400188#: e2fsck/flushb.c:64
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500189#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500190msgid "BLKFLSBUF ioctl not supported! Can't flush buffers.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400191msgstr "BLKFLSBUF ioctl nicht unterstützt! Puffer kann nicht geleert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500192
Eric Sandeen032eafe2012-07-28 17:48:36 -0400193#: e2fsck/iscan.c:44
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500194#, c-format
195msgid "Usage: %s [-F] [-I inode_buffer_blocks] device\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400196msgstr "Aufruf: %s [-F] [-I inode_buffer_blocks] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500197
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400198#: e2fsck/iscan.c:81 e2fsck/unix.c:972
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500199#, c-format
200msgid "while opening %s for flushing"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500201msgstr "beim Öffnen von %s für die Puffer-Leerung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500202
Theodore Ts'obd386982015-05-17 20:34:58 -0400203#: e2fsck/iscan.c:86 e2fsck/unix.c:978 resize/main.c:290
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500204#, c-format
205msgid "while trying to flush %s"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400206msgstr "während des Rückschreibeversuches auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500207
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400208#: e2fsck/iscan.c:110
Philipp Thomasb93349a2014-05-31 13:32:39 -0400209#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400210msgid "while trying to open '%s'"
211msgstr "beim Versuch, %s zu öffnen"
212
213#: e2fsck/iscan.c:119 e2fsck/scantest.c:114 misc/e2image.c:1290
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500214msgid "while opening inode scan"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500215msgstr "beim Start des Inode-Scans"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500216
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400217#: e2fsck/iscan.c:127 misc/e2image.c:1309
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500218msgid "while getting next inode"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400219msgstr "beim Laden des nächsten Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500220
Eric Sandeen032eafe2012-07-28 17:48:36 -0400221#: e2fsck/iscan.c:136
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500222#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400223msgid "%u inodes scanned.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400224msgstr "%u Inodes untersucht.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500225
Philipp Thomas37be3822015-05-17 20:21:39 -0400226#: e2fsck/journal.c:524
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500227msgid "reading journal superblock\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400228msgstr "Journal-Superblock wird gelesen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500229
Philipp Thomas37be3822015-05-17 20:21:39 -0400230#: e2fsck/journal.c:581
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500231#, c-format
232msgid "%s: no valid journal superblock found\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400233msgstr "%s: keinen gültigen Journal-Superblock gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500234
Philipp Thomas37be3822015-05-17 20:21:39 -0400235#: e2fsck/journal.c:590
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500236#, c-format
237msgid "%s: journal too short\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400238msgstr "%s: Das Journal ist zu kurz\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500239
Philipp Thomas37be3822015-05-17 20:21:39 -0400240#: e2fsck/journal.c:881
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500241#, c-format
242msgid "%s: recovering journal\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400243msgstr "%s: Journal wird wiederhergestellt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500244
Philipp Thomas37be3822015-05-17 20:21:39 -0400245#: e2fsck/journal.c:883
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500246#, c-format
247msgid "%s: won't do journal recovery while read-only\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500248msgstr "%s: Das Journal ist nur lesbar - Keine Wiederherstellung\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500249
Philipp Thomas37be3822015-05-17 20:21:39 -0400250#: e2fsck/journal.c:910
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500251#, c-format
252msgid "while trying to re-open %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400253msgstr "beim Versuch, %s erneut zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500254
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400255#: e2fsck/message.c:113
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500256msgid "aextended attribute"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500257msgstr "aerweiterte Attribute"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500258
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400259#: e2fsck/message.c:114
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500260msgid "Aerror allocating"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500261msgstr "AFehler beim Reservieren von Platz für"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500262
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400263#: e2fsck/message.c:115
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500264msgid "bblock"
265msgstr "bBlock"
266
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400267#: e2fsck/message.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500268msgid "Bbitmap"
269msgstr "BBitmap"
270
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400271#: e2fsck/message.c:117
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500272msgid "ccompress"
273msgstr "ckomprimieren"
274
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400275#: e2fsck/message.c:118
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500276msgid "Cconflicts with some other fs @b"
Philipp Thomasab02a742014-07-09 23:13:30 -0400277msgstr "CKonflikte mit einem anderen Dateisystemblock"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500278
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400279#: e2fsck/message.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500280msgid "ddirectory"
281msgstr "dVerzeichnis"
282
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400283#: e2fsck/message.c:120
284msgid "Ddeleted"
285msgstr "Dgelöscht"
286
287#: e2fsck/message.c:121
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500288msgid "eentry"
289msgstr "eEintrag"
290
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400291#: e2fsck/message.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500292msgid "E@e '%Dn' in %p (%i)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400293msgstr "E@e „%Dn“ in %p (%i)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500294
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400295#: e2fsck/message.c:123
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500296msgid "ffilesystem"
297msgstr "fDateisystem"
298
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400299#: e2fsck/message.c:124
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500300msgid "Ffor @i %i (%Q) is"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400301msgstr "Ffür @i %i (%Q) ist"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500302
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400303#: e2fsck/message.c:125
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500304msgid "ggroup"
305msgstr "gGruppe"
306
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400307#: e2fsck/message.c:126
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500308msgid "hHTREE @d @i"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500309msgstr "hHTREE @dinode"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500310
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400311#: e2fsck/message.c:127
312msgid "iinode"
313msgstr "iInode"
314
315#: e2fsck/message.c:128
316msgid "Iillegal"
317msgstr "Iillegal(er)"
318
319#: e2fsck/message.c:129
320msgid "jjournal"
321msgstr "jJournal"
322
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400323#: e2fsck/message.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500324msgid "llost+found"
325msgstr "llost+found"
326
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400327#: e2fsck/message.c:131
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500328msgid "Lis a link"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500329msgstr "List eine Verknüpfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500330
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400331#: e2fsck/message.c:132
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400332msgid "mmultiply-claimed"
Philipp Thomas9564ee52008-08-22 03:22:50 -0400333msgstr "mmehrfach beansprucht"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400334
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400335#: e2fsck/message.c:133
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400336msgid "ninvalid"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400337msgstr "nungültig"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400338
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400339#: e2fsck/message.c:134
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500340msgid "oorphaned"
341msgstr "overwaist"
342
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400343#: e2fsck/message.c:135
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500344msgid "pproblem in"
345msgstr "pProblem in"
346
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400347#: e2fsck/message.c:136
348msgid "qquota"
349msgstr "qQuota"
350
351#: e2fsck/message.c:137
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500352msgid "rroot @i"
353msgstr "rRoot @i"
354
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400355#: e2fsck/message.c:138
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500356msgid "sshould be"
357msgstr "ssollte sein"
358
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400359#: e2fsck/message.c:139
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500360msgid "Ssuper@b"
361msgstr "SSuper@b"
362
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400363#: e2fsck/message.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500364msgid "uunattached"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500365msgstr "unicht verbunden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500366
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400367#: e2fsck/message.c:141
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500368msgid "vdevice"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400369msgstr "vGerät"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500370
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400371#: e2fsck/message.c:142
Philipp Thomas720e6362008-06-21 14:06:00 -0400372msgid "xextent"
Philipp Thomas68801282008-07-17 11:47:00 -0400373msgstr "xErweiterung"
Philipp Thomas720e6362008-06-21 14:06:00 -0400374
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400375#: e2fsck/message.c:143
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500376msgid "zzero-length"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500377msgstr "zmit Länge Null"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500378
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400379#: e2fsck/message.c:154
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500380msgid "<The NULL inode>"
Philipp Thomasab02a742014-07-09 23:13:30 -0400381msgstr "<Der NULL-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500382
Philipp Thomas77c871a2010-04-19 16:59:02 -0400383#: e2fsck/message.c:155
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400384msgid "<The bad blocks inode>"
385msgstr "<Der „Bad Blocks“-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500386
Philipp Thomas77c871a2010-04-19 16:59:02 -0400387#: e2fsck/message.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400388msgid "<The user quota inode>"
389msgstr "<Die Benutzerquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500390
Philipp Thomas77c871a2010-04-19 16:59:02 -0400391#: e2fsck/message.c:158
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400392msgid "<The group quota inode>"
393msgstr "<Die Gruppenquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500394
Philipp Thomas77c871a2010-04-19 16:59:02 -0400395#: e2fsck/message.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400396msgid "<The boot loader inode>"
Philipp Thomasab02a742014-07-09 23:13:30 -0400397msgstr "<Der „boot loader“-Inode>"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400398
399#: e2fsck/message.c:160
400msgid "<The undelete directory inode>"
401msgstr "<Der „undelete directory“-Inode>"
402
403#: e2fsck/message.c:161
404msgid "<The group descriptor inode>"
405msgstr "<Des „group descriptor“-Inode>"
406
407#: e2fsck/message.c:162
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500408msgid "<The journal inode>"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500409msgstr "<Der Journal-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500410
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400411#: e2fsck/message.c:163
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500412msgid "<Reserved inode 9>"
413msgstr "<Der reservierte Inode 9>"
414
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400415#: e2fsck/message.c:164
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500416msgid "<Reserved inode 10>"
417msgstr "<Der reservierte Inode 10>"
418
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400419#: e2fsck/message.c:334
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400420msgid "regular file"
Philipp Thomasab02a742014-07-09 23:13:30 -0400421msgstr "reguläre Datei"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400422
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400423#: e2fsck/message.c:336
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400424msgid "directory"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500425msgstr "Verzeichnis"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400426
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400427#: e2fsck/message.c:338
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400428msgid "character device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400429msgstr "zeichenorientiertes Gerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400430
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400431#: e2fsck/message.c:340
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400432msgid "block device"
Philipp Thomasab02a742014-07-09 23:13:30 -0400433msgstr "blockorientiertes Gerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400434
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400435#: e2fsck/message.c:342
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400436msgid "named pipe"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400437msgstr "named pipe"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400438
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400439#: e2fsck/message.c:344
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400440msgid "symbolic link"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400441msgstr "symbolische Verknüpfung"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400442
Philipp Thomas37be3822015-05-17 20:21:39 -0400443#: e2fsck/message.c:346 misc/uuidd.c:162
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400444msgid "socket"
Philipp Thomasab02a742014-07-09 23:13:30 -0400445msgstr "Socket"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400446
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400447#: e2fsck/message.c:348
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400448#, c-format
449msgid "unknown file type with mode 0%o"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400450msgstr "unbekannter Dateityp mit Modus 0%o"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400451
Philipp Thomasedc733d2012-04-22 15:38:42 -0400452#: e2fsck/message.c:423
Philipp Thomas77c871a2010-04-19 16:59:02 -0400453msgid "indirect block"
454msgstr "indirekte Blöcke"
455
Philipp Thomasedc733d2012-04-22 15:38:42 -0400456#: e2fsck/message.c:425
Philipp Thomas77c871a2010-04-19 16:59:02 -0400457msgid "double indirect block"
458msgstr "doppelt indirekte Blöcke"
459
Philipp Thomasedc733d2012-04-22 15:38:42 -0400460#: e2fsck/message.c:427
Philipp Thomas77c871a2010-04-19 16:59:02 -0400461msgid "triple indirect block"
462msgstr "dreifach indirekte Blöcke"
463
Philipp Thomasedc733d2012-04-22 15:38:42 -0400464#: e2fsck/message.c:429
Philipp Thomas77c871a2010-04-19 16:59:02 -0400465msgid "translator block"
466msgstr "Übersetzerblock"
467
Philipp Thomasedc733d2012-04-22 15:38:42 -0400468#: e2fsck/message.c:431
Philipp Thomas77c871a2010-04-19 16:59:02 -0400469msgid "block #"
470msgstr "Block Nr."
471
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400472#: e2fsck/pass1b.c:222
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500473msgid "multiply claimed inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500474msgstr "mehrfach beanspruchte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500475
Philipp Thomas37be3822015-05-17 20:21:39 -0400476#: e2fsck/pass1b.c:625 e2fsck/pass1b.c:746
Philipp Thomas68801282008-07-17 11:47:00 -0400477#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400478msgid "internal error: can't find dup_blk for %llu\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500479msgstr "interner Fehler: dup_blk für %llu wurde nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500480
Philipp Thomas37be3822015-05-17 20:21:39 -0400481#: e2fsck/pass1b.c:852
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500482msgid "returned from clone_file_block"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400483msgstr "zurückgegeben von clone_file_block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500484
Philipp Thomas37be3822015-05-17 20:21:39 -0400485#: e2fsck/pass1b.c:874
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400486#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400487msgid "internal error: couldn't lookup EA block record for %llu"
Philipp Thomasab02a742014-07-09 23:13:30 -0400488msgstr "interner Fehler: EA-Blockliste für %llu wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400489
Philipp Thomas37be3822015-05-17 20:21:39 -0400490#: e2fsck/pass1b.c:886
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400491#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400492msgid "internal error: couldn't lookup EA inode record for %u"
Philipp Thomasab02a742014-07-09 23:13:30 -0400493msgstr "Interner Fehler: EA-Inodeliste für %u wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400494
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400495#: e2fsck/pass1.c:475 e2fsck/pass2.c:782
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400496msgid "reading directory block"
Philipp Thomasab02a742014-07-09 23:13:30 -0400497msgstr "Verzeichnisblock wird gelesen"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400498
Philipp Thomas37be3822015-05-17 20:21:39 -0400499#: e2fsck/pass1.c:634
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500500msgid "in-use inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400501msgstr "„in-use inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500502
Philipp Thomas37be3822015-05-17 20:21:39 -0400503#: e2fsck/pass1.c:645
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500504msgid "directory inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400505msgstr "„directory inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500506
Philipp Thomas37be3822015-05-17 20:21:39 -0400507#: e2fsck/pass1.c:655
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500508msgid "regular file inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400509msgstr "„regular file inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500510
Philipp Thomas37be3822015-05-17 20:21:39 -0400511#: e2fsck/pass1.c:664 misc/e2image.c:1265
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500512msgid "in-use block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400513msgstr "„in-use block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500514
Philipp Thomas37be3822015-05-17 20:21:39 -0400515#: e2fsck/pass1.c:730
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400516msgid "opening inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -0400517msgstr "Inode-Scan wird gestartet"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500518
Philipp Thomas37be3822015-05-17 20:21:39 -0400519#: e2fsck/pass1.c:764
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400520msgid "getting next inode from scan"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400521msgstr "beim Lesen des nächsten Inodes"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400522
Theodore Ts'obd386982015-05-17 20:34:58 -0400523#: e2fsck/pass1.c:1279
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500524msgid "Pass 1"
525msgstr "Durchgang 1"
526
Theodore Ts'obd386982015-05-17 20:34:58 -0400527#: e2fsck/pass1.c:1336
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500528#, c-format
529msgid "reading indirect blocks of inode %u"
Philipp Thomasab02a742014-07-09 23:13:30 -0400530msgstr "indirekte Blöcke von Inode %u werden gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500531
Theodore Ts'obd386982015-05-17 20:34:58 -0400532#: e2fsck/pass1.c:1386
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500533msgid "bad inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500534msgstr "fehlerhafte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500535
Theodore Ts'obd386982015-05-17 20:34:58 -0400536#: e2fsck/pass1.c:1409
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500537msgid "inode in bad block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400538msgstr "Inode in „Bad Blocks“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500539
Theodore Ts'obd386982015-05-17 20:34:58 -0400540#: e2fsck/pass1.c:1429
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500541msgid "imagic inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400542msgstr "i„magic inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500543
Theodore Ts'obd386982015-05-17 20:34:58 -0400544#: e2fsck/pass1.c:1456
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500545msgid "multiply claimed block map"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500546msgstr "mehrfach referenzierte Blockliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500547
Theodore Ts'obd386982015-05-17 20:34:58 -0400548#: e2fsck/pass1.c:1567
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500549msgid "ext attr block map"
550msgstr "ext attr block map"
551
Theodore Ts'obd386982015-05-17 20:34:58 -0400552#: e2fsck/pass1.c:2516
Philipp Thomas77c871a2010-04-19 16:59:02 -0400553#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500554msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -0400555msgstr "%6lu(%c): erwartete %6lu erhielt phys %6lu (Blockanzahl %lld)\n"
Philipp Thomas40771272008-09-07 22:55:25 -0400556
Theodore Ts'obd386982015-05-17 20:34:58 -0400557#: e2fsck/pass1.c:2898
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500558msgid "block bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500559msgstr "Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500560
Theodore Ts'obd386982015-05-17 20:34:58 -0400561#: e2fsck/pass1.c:2904
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500562msgid "inode bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500563msgstr "Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500564
Theodore Ts'obd386982015-05-17 20:34:58 -0400565#: e2fsck/pass1.c:2910
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500566msgid "inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500567msgstr "Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500568
Philipp Thomasedc733d2012-04-22 15:38:42 -0400569#: e2fsck/pass2.c:283
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500570msgid "Pass 2"
Theodore Ts'oddc32a02003-05-03 18:45:55 -0400571msgstr "Durchgang 2"
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500572
Theodore Ts'obd386982015-05-17 20:34:58 -0400573#: e2fsck/pass2.c:806
Philipp Thomas720e6362008-06-21 14:06:00 -0400574msgid "Can not continue."
Philipp Thomasab02a742014-07-09 23:13:30 -0400575msgstr "Das Programm kann nicht fortfahren."
Philipp Thomas720e6362008-06-21 14:06:00 -0400576
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400577#: e2fsck/pass3.c:77
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500578msgid "inode done bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400579msgstr "„inode done“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500580
Philipp Thomasedc733d2012-04-22 15:38:42 -0400581#: e2fsck/pass3.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500582msgid "Peak memory"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500583msgstr "Peak-Memory"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500584
Philipp Thomas37be3822015-05-17 20:21:39 -0400585#: e2fsck/pass3.c:148
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500586msgid "Pass 3"
587msgstr "Durchgang 3"
588
Philipp Thomas37be3822015-05-17 20:21:39 -0400589#: e2fsck/pass3.c:340
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500590msgid "inode loop detection bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400591msgstr "„inode loop detection“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500592
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400593#: e2fsck/pass4.c:196
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500594msgid "Pass 4"
595msgstr "Durchgang 4"
596
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400597#: e2fsck/pass5.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500598msgid "Pass 5"
599msgstr "Durchgang 5"
600
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400601#: e2fsck/problem.c:51
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500602msgid "(no prompt)"
603msgstr "(nicht interaktiv)"
604
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400605#: e2fsck/problem.c:52
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500606msgid "Fix"
Philipp Thomasab02a742014-07-09 23:13:30 -0400607msgstr "Reparieren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500608
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400609#: e2fsck/problem.c:53
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500610msgid "Clear"
Philipp Thomasab02a742014-07-09 23:13:30 -0400611msgstr "Bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500612
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400613#: e2fsck/problem.c:54
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500614msgid "Relocate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400615msgstr "Zurücksetzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500616
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400617#: e2fsck/problem.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500618msgid "Allocate"
Philipp Thomasab02a742014-07-09 23:13:30 -0400619msgstr "Freigeben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500620
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400621#: e2fsck/problem.c:56
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500622msgid "Expand"
Philipp Thomasab02a742014-07-09 23:13:30 -0400623msgstr "Erweitern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500624
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400625#: e2fsck/problem.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500626msgid "Connect to /lost+found"
Philipp Thomasab02a742014-07-09 23:13:30 -0400627msgstr "Nach /lost+found verbinden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500628
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400629#: e2fsck/problem.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500630msgid "Create"
Philipp Thomasab02a742014-07-09 23:13:30 -0400631msgstr "Erstellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500632
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400633#: e2fsck/problem.c:59
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500634msgid "Salvage"
Philipp Thomasab02a742014-07-09 23:13:30 -0400635msgstr "Retten"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500636
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400637#: e2fsck/problem.c:60
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500638msgid "Truncate"
Philipp Thomasab02a742014-07-09 23:13:30 -0400639msgstr "Verkürzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500640
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400641#: e2fsck/problem.c:61
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500642msgid "Clear inode"
Philipp Thomasab02a742014-07-09 23:13:30 -0400643msgstr "Inode bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500644
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400645#: e2fsck/problem.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500646msgid "Abort"
647msgstr "Abbrechen"
648
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400649#: e2fsck/problem.c:63
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500650msgid "Split"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500651msgstr "Aufteilen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500652
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400653#: e2fsck/problem.c:64
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500654msgid "Continue"
655msgstr "Fortsetzen"
656
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400657#: e2fsck/problem.c:65
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400658msgid "Clone multiply-claimed blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400659msgstr "Mehrfach referenzierte Blöcke werden geklont"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500660
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400661#: e2fsck/problem.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500662msgid "Delete file"
Philipp Thomasab02a742014-07-09 23:13:30 -0400663msgstr "Datei löschen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500664
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400665#: e2fsck/problem.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500666msgid "Suppress messages"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400667msgstr "Ausgaben unterdrücken"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500668
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400669#: e2fsck/problem.c:68
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500670msgid "Unlink"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500671msgstr "Trennen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500672
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400673#: e2fsck/problem.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500674msgid "Clear HTree index"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400675msgstr "Der HTree-Index wird bereinigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500676
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400677#: e2fsck/problem.c:70
Theodore Ts'obc759702005-05-09 20:40:55 -0400678msgid "Recreate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400679msgstr "Zurücksetzen"
Theodore Ts'obc759702005-05-09 20:40:55 -0400680
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400681#: e2fsck/problem.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500682msgid "(NONE)"
683msgstr "(NICHTS)"
684
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400685#: e2fsck/problem.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500686msgid "FIXED"
687msgstr "REPARIERT"
688
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400689#: e2fsck/problem.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500690msgid "CLEARED"
691msgstr "BEREINIGT"
692
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400693#: e2fsck/problem.c:82
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500694msgid "RELOCATED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400695msgstr "ZURÜCKGESETZT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500696
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400697#: e2fsck/problem.c:83
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500698msgid "ALLOCATED"
699msgstr "FREIGEGEBEN"
700
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400701#: e2fsck/problem.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500702msgid "EXPANDED"
703msgstr "ERWEITERT"
704
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400705#: e2fsck/problem.c:85
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500706msgid "RECONNECTED"
707msgstr "WIEDER VERBUNDEN"
708
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400709#: e2fsck/problem.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500710msgid "CREATED"
711msgstr "ANGELEGT"
712
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400713#: e2fsck/problem.c:87
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500714msgid "SALVAGED"
715msgstr "GERETTET"
716
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400717#: e2fsck/problem.c:88
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500718msgid "TRUNCATED"
Philipp Thomasab02a742014-07-09 23:13:30 -0400719msgstr "ABGESCHNITTEN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500720
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400721#: e2fsck/problem.c:89
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500722msgid "INODE CLEARED"
723msgstr "INODE BEREINIGT"
724
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400725#: e2fsck/problem.c:90
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500726msgid "ABORTED"
727msgstr "ABGEBROCHEN"
728
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400729#: e2fsck/problem.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500730msgid "SPLIT"
Philipp Thomasab02a742014-07-09 23:13:30 -0400731msgstr "ABGESPALTEN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500732
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400733#: e2fsck/problem.c:92
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500734msgid "CONTINUING"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400735msgstr "ES WIRD FORTGEFAHREN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500736
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400737#: e2fsck/problem.c:93
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400738msgid "MULTIPLY-CLAIMED BLOCKS CLONED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400739msgstr "MEHRFACH REFERENZIERTE BLÖCKE WURDEN GEKLONT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500740
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400741#: e2fsck/problem.c:94
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500742msgid "FILE DELETED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400743msgstr "DATEI WURDE GELÖSCHT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500744
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400745#: e2fsck/problem.c:95
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500746msgid "SUPPRESSED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400747msgstr "UNTERDRÜCKT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500748
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400749#: e2fsck/problem.c:96
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500750msgid "UNLINKED"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500751msgstr "GETRENNT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500752
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400753#: e2fsck/problem.c:97
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500754msgid "HTREE INDEX CLEARED"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500755msgstr "HTREE-INDEX BEREINIGT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500756
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400757#: e2fsck/problem.c:98
Theodore Ts'obc759702005-05-09 20:40:55 -0400758msgid "WILL RECREATE"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500759msgstr "WIRD WIEDER AUFGEBAUT"
Theodore Ts'obc759702005-05-09 20:40:55 -0400760
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400761#. @-expanded: block bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400762#: e2fsck/problem.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500763msgid "@b @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400764msgstr "Block-Bitmap für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500765
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400766#. @-expanded: inode bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400767#: e2fsck/problem.c:111
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500768msgid "@i @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400769msgstr "Inode-Bitmap für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500770
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400771#. @-expanded: inode table for group %g is not in group. (block %b)\n
772#. @-expanded: WARNING: SEVERE DATA LOSS POSSIBLE.\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400773#: e2fsck/problem.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500774msgid ""
775"@i table for @g %g is not in @g. (@b %b)\n"
776"WARNING: SEVERE DATA LOSS POSSIBLE.\n"
777msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400778"Inode-Tabelle für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400779"WARNUNG: GROSSER DATENVERLUST IST MÖGLICH.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500780
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400781#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400782#. @-expanded: The superblock could not be read or does not describe a valid ext2/ext3/ext4\n
783#. @-expanded: filesystem. If the device is valid and it really contains an ext2/ext3/ext4\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400784#. @-expanded: filesystem (and not swap or ufs or something else), then the superblock\n
785#. @-expanded: is corrupt, and you might try running e2fsck with an alternate superblock:\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400786#. @-expanded: e2fsck -b 8193 <device>\n
787#. @-expanded: or\n
788#. @-expanded: e2fsck -b 32768 <device>\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400789#. @-expanded: \n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400790#: e2fsck/problem.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500791msgid ""
792"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400793"The @S could not be read or does not describe a valid ext2/ext3/ext4\n"
794"@f. If the @v is valid and it really contains an ext2/ext3/ext4\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500795"@f (and not swap or ufs or something else), then the @S\n"
796"is corrupt, and you might try running e2fsck with an alternate @S:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400797" e2fsck -b 8193 <@v>\n"
798" or\n"
799" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500800"\n"
801msgstr ""
802"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400803"Der Superblock ist unlesbar bzw. beschreibt kein gültiges ext2/ext3/ext4-\n"
804"Dateisystem. Wenn das Gerät gültig ist und ein ext2/ext3/ext4-\n"
805"Dateisystem (kein swap oder ufs usw.) enthält, dann ist der Superblock\n"
806"beschädigt, und Sie könnten versuchen, e2fsck mit einem anderen Superblock\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -0400807"zu starten:\n"
808" e2fsck -b 8193 <@v>\n"
809" oder\n"
810" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500811"\n"
812
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400813#. @-expanded: The filesystem size (according to the superblock) is %b blocks\n
814#. @-expanded: The physical size of the device is %c blocks\n
815#. @-expanded: Either the superblock or the partition table is likely to be corrupt!\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400816#: e2fsck/problem.c:133
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500817msgid ""
818"The @f size (according to the @S) is %b @bs\n"
819"The physical size of the @v is %c @bs\n"
820"Either the @S or the partition table is likely to be corrupt!\n"
821msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400822"Die Größe des Dateisystems (laut Superblock) ist %b Blöcke.\n"
823"Die physikalische Größe des Gerätes ist %c Blöcke.\n"
824"Entweder ist der Superblock oder die Partionstabelle beschädigt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500825
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400826#. @-expanded: superblock block_size = %b, fragsize = %c.\n
827#. @-expanded: This version of e2fsck does not support fragment sizes different\n
828#. @-expanded: from the block size.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400829#: e2fsck/problem.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500830msgid ""
831"@S @b_size = %b, fragsize = %c.\n"
832"This version of e2fsck does not support fragment sizes different\n"
833"from the @b size.\n"
834msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500835"@S-@b_size = %b, fragsize = %c.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400836"Diese Version von e2fsck unterstützt keine von Blockgrößen verschiedene "
837"Fragmentgrößen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500838
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400839#. @-expanded: superblock blocks_per_group = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400840#: e2fsck/problem.c:147
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500841msgid "@S @bs_per_group = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500842msgstr "@bs_per_group im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500843
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400844#. @-expanded: superblock first_data_block = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400845#: e2fsck/problem.c:152
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500846msgid "@S first_data_@b = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500847msgstr "first_data_@b im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500848
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400849#. @-expanded: filesystem did not have a UUID; generating one.\n
850#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400851#: e2fsck/problem.c:157
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500852msgid ""
853"@f did not have a UUID; generating one.\n"
854"\n"
855msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400856"Das Dateisystem hat keine UUID; es wird eine generiert.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500857"\n"
858
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400859#: e2fsck/problem.c:162
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400860#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500861msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400862"Note: if several inode or block bitmap blocks or part\n"
863"of the inode table require relocation, you may wish to try\n"
864"running e2fsck with the '-b %S' option first. The problem\n"
865"may lie only with the primary block group descriptors, and\n"
866"the backup block group descriptors may be OK.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500867"\n"
868msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400869"Hinweis: Wenn mehrere Inodes oder Bitmap-Blöcke\n"
870"neu geordnet werden müssen, oder ein Teil der Inode-Tabelle\n"
871"verschoben werden muss, könnte es helfen, e2fsck erst einmal\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400872"mit der Option „-b %S“ zu starten. Das Problem könnte\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500873"im primären Blockgruppenbezeichner liegen und seine\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500874"Sicherungskopie in Ordnung sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500875"\n"
876
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400877#. @-expanded: Corruption found in superblock. (%s = %N).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400878#: e2fsck/problem.c:171
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500879msgid "Corruption found in @S. (%s = %N).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400880msgstr "Beschädigung gefunden im Superblock. (%s = %N).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500881
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400882#. @-expanded: Error determining size of the physical device: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400883#: e2fsck/problem.c:176
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500884#, c-format
885msgid "Error determining size of the physical @v: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400886msgstr "Fehler bei der Feststellung der Größe des physischen Gerät: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500887
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400888#. @-expanded: inode count in superblock is %i, should be %j.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400889#: e2fsck/problem.c:181
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400890msgid "@i count in @S is %i, @s %j.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400891msgstr "@i-Anzahl in @S ist %i, sollte %j sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500892
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400893#: e2fsck/problem.c:185
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500894msgid "The Hurd does not support the filetype feature.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500895msgstr "Hurd unterstützt keine Dateitypen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500896
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500897#. @-expanded: superblock has an invalid journal (inode %i).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400898#: e2fsck/problem.c:190
Philipp Thomas77c871a2010-04-19 16:59:02 -0400899#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500900msgid "@S has an @n @j (@i %i).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400901msgstr "Der Superblock hat ein defektes Journal (Inode %i).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500902
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400903#. @-expanded: External journal has multiple filesystem users (unsupported).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400904#: e2fsck/problem.c:195
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500905msgid "External @j has multiple @f users (unsupported).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400906msgstr ""
907"Externes Journal hat mehrere Dateisystem-Benutzer (nicht unterstützt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500908
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400909#. @-expanded: Can't find external journal\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400910#: e2fsck/problem.c:200
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500911msgid "Can't find external @j\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400912msgstr "Externes Journal kann nicht gefunden werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500913
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400914#. @-expanded: External journal has bad superblock\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400915#: e2fsck/problem.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500916msgid "External @j has bad @S\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400917msgstr "Externes Journal hat einen ungültigen Superblock\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500918
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400919#. @-expanded: External journal does not support this filesystem\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400920#: e2fsck/problem.c:210
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500921msgid "External @j does not support this @f\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400922msgstr "Externes Journal unterstützt dieses Dateisystem nicht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500923
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500924#. @-expanded: filesystem journal superblock is unknown type %N (unsupported).\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400925#. @-expanded: It is likely that your copy of e2fsck is old and/or doesn't support this journal
926#. @-expanded: format.\n
927#. @-expanded: It is also possible the journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400928#: e2fsck/problem.c:215
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500929msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500930"@f @j @S is unknown type %N (unsupported).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400931"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
932"format.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500933"It is also possible the @j @S is corrupt.\n"
934msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -0400935"Der Superblock des Dateisystem-Journals hat den unbekannten Typ %N (nicht "
936"unterstützt).\n"
937"Es ist möglich, dass Ihr e2fsck älter ist und/oder dieses Journal-Format "
938"nicht unterstützt.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400939"Es ist ebenso möglich, dass der Joornal-Superblock defekt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500940
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500941#. @-expanded: journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400942#: e2fsck/problem.c:223
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500943msgid "@j @S is corrupt.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400944msgstr "Der Journal-Superblock ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500945
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400946#. @-expanded: superblock has_journal flag is clear, but a journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400947#: e2fsck/problem.c:228
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400948msgid "@S has_@j flag is clear, but a @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500949msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400950"Der Bitschalter has_journal im Superblock ist nicht gesetzt, aber ein\n"
951"Journal %s ist vorhanden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500952
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500953#. @-expanded: superblock needs_recovery flag is set, but no journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400954#: e2fsck/problem.c:233
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500955msgid "@S needs_recovery flag is set, but no @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500956msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -0400957"Im Superblock ist der Bitschalter „needs_recovery“ gesetzt, aber ein "
958"Journal\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400959"ist nicht vorhanden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500960
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500961#. @-expanded: superblock needs_recovery flag is clear, but journal has data.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400962#: e2fsck/problem.c:238
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500963msgid "@S needs_recovery flag is clear, but @j has data.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500964msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400965"Der Bitschalter „needs_recovery“ im Superblock ist nicht gesetzt, aber das\n"
966"Journal enthält Daten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500967
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400968#. @-expanded: Clear journal
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400969#: e2fsck/problem.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500970msgid "Clear @j"
Philipp Thomasab02a742014-07-09 23:13:30 -0400971msgstr "Journal bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500972
Philipp Thomas77c871a2010-04-19 16:59:02 -0400973#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
Philipp Thomas37be3822015-05-17 20:21:39 -0400974#: e2fsck/problem.c:248 e2fsck/problem.c:707
Philipp Thomas77c871a2010-04-19 16:59:02 -0400975msgid "@f has feature flag(s) set, but is a revision 0 @f. "
Philipp Thomasab02a742014-07-09 23:13:30 -0400976msgstr ""
977"Das Dateisystem hat Eigenschafts-Bitschalter gesetzt, ist aber ein\n"
978"Revision-0-Dateisystem. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500979
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400980#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400981#: e2fsck/problem.c:253
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500982msgid "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400983msgstr "%s verwaister Inode (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500984
Philipp Thomas77c871a2010-04-19 16:59:02 -0400985#. @-expanded: illegal %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400986#: e2fsck/problem.c:258
Philipp Thomas77c871a2010-04-19 16:59:02 -0400987msgid "@I %B (%b) found in @o @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400988msgstr "Unzulässiges %B (%b) in verwaisten Inode %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500989
Philipp Thomas77c871a2010-04-19 16:59:02 -0400990#. @-expanded: Already cleared %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400991#: e2fsck/problem.c:263
Philipp Thomas77c871a2010-04-19 16:59:02 -0400992msgid "Already cleared %B (%b) found in @o @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400993msgstr "Bereits bereinigter %B (%b) im verwaisten Inode %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500994
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400995#. @-expanded: illegal orphaned inode %i in superblock.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400996#: e2fsck/problem.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500997#, c-format
998msgid "@I @o @i %i in @S.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400999msgstr "Unzulässiger verwaister Inode %i im Superblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001000
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001001#. @-expanded: illegal inode %i in orphaned inode list.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001002#: e2fsck/problem.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001003#, c-format
1004msgid "@I @i %i in @o @i list.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001005msgstr "Unzulässiger Inode %i in der Liste der verwaisten Inodes.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001006
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001007#. @-expanded: journal superblock has an unknown read-only feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001008#: e2fsck/problem.c:278
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001009msgid "@j @S has an unknown read-only feature flag set.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001010msgstr ""
1011"Der Journal-Superblock hat einen unbekannten Nur-Lesen-Bitschalter gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001012
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001013#. @-expanded: journal superblock has an unknown incompatible feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001014#: e2fsck/problem.c:283
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001015msgid "@j @S has an unknown incompatible feature flag set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001016msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001017"Im Journal-Superblock ist ein unbekannter Bitschalter für eine\n"
1018"inkompatible Eigenschaft gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001019
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001020#. @-expanded: journal version not supported by this e2fsck.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001021#: e2fsck/problem.c:288
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001022msgid "@j version not supported by this e2fsck.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001023msgstr "Diese Journal-Version wird von diesem e2fsck nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001024
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001025#. @-expanded: Moving journal from /%s to hidden inode.\n
1026#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001027#: e2fsck/problem.c:293
Theodore Ts'o7527ef12007-12-05 19:35:20 -05001028#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001029msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001030"Moving @j from /%s to hidden @i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001031"\n"
1032msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001033"Journal wird von /%s zum versteckten Inode verschoben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001034"\n"
1035
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001036#. @-expanded: Error moving journal: %m\n
1037#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001038#: e2fsck/problem.c:298
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001039#, c-format
1040msgid ""
1041"Error moving @j: %m\n"
1042"\n"
1043msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001044"Fehler beim Verschieben des Journals: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001045"\n"
1046
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001047#. @-expanded: Found invalid V2 journal superblock fields (from V1 journal).\n
1048#. @-expanded: Clearing fields beyond the V1 journal superblock...\n
1049#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001050#: e2fsck/problem.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001051msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001052"Found @n V2 @j @S fields (from V1 @j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001053"Clearing fields beyond the V1 @j @S...\n"
1054"\n"
1055msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001056"Unvollständige V2-Journal-Superblock-Felder (vom V1-Journal) gefunden.\n"
1057"Die Felder nach dem V1-Journal-Superblock werden bereinigt...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001058"\n"
1059
Philipp Thomas77c871a2010-04-19 16:59:02 -04001060#. @-expanded: Run journal anyway
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001061#: e2fsck/problem.c:309
Philipp Thomas77c871a2010-04-19 16:59:02 -04001062msgid "Run @j anyway"
Philipp Thomasab02a742014-07-09 23:13:30 -04001063msgstr "Journal trotzdem starten"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001064
1065#. @-expanded: Recovery flag not set in backup superblock, so running journal anyway.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001066#: e2fsck/problem.c:314
Philipp Thomas77c871a2010-04-19 16:59:02 -04001067msgid "Recovery flag not set in backup @S, so running @j anyway.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001068msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001069"Der Bitschalter für Wiederherstellung ist im Sicherungs-Superblock nicht\n"
1070"gesetzt, das Journal wird daher trotzdem gestartet.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001071
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001072#. @-expanded: Backing up journal inode block information.\n
1073#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001074#: e2fsck/problem.c:319
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001075msgid ""
1076"Backing up @j @i @b information.\n"
1077"\n"
1078msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001079"Die Informationen des Journal-Inodeblocks werden gesichert.\n"
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001080"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001081
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001082#. @-expanded: filesystem does not have resize_inode enabled, but s_reserved_gdt_blocks\n
1083#. @-expanded: is %N; should be zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001084#: e2fsck/problem.c:324
Theodore Ts'obc759702005-05-09 20:40:55 -04001085msgid ""
1086"@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
1087"is %N; @s zero. "
1088msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001089"Für @f ist resize_@i nicht eingeschaltet, aber s_reserved_gdt_@bs\n"
1090"ist %N; @s Null. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001091
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001092#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001093#: e2fsck/problem.c:330
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001094msgid "Resize_@i not enabled, but the resize @i is non-zero. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001095msgstr ""
1096"Resize_@i ist nicht aktiviert, aber der zu modifizierende Inode ist nicht-"
1097"Null."
Theodore Ts'obc759702005-05-09 20:40:55 -04001098
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001099#. @-expanded: Resize inode not valid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001100#: e2fsck/problem.c:335
Theodore Ts'obc759702005-05-09 20:40:55 -04001101msgid "Resize @i not valid. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001102msgstr "Resize-Inode ist ungültig. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001103
Philipp Thomas77c871a2010-04-19 16:59:02 -04001104#. @-expanded: superblock last mount time (%t,\n
1105#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001106#: e2fsck/problem.c:340
Philipp Thomas77c871a2010-04-19 16:59:02 -04001107msgid ""
1108"@S last mount time (%t,\n"
1109"\tnow = %T) is in the future.\n"
1110msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001111"Der Zeitpunkt des letzten Einhängens des Superblocks (%t,\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001112"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001113
Philipp Thomas77c871a2010-04-19 16:59:02 -04001114#. @-expanded: superblock last write time (%t,\n
1115#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001116#: e2fsck/problem.c:345
Philipp Thomas77c871a2010-04-19 16:59:02 -04001117msgid ""
1118"@S last write time (%t,\n"
1119"\tnow = %T) is in the future.\n"
1120msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001121"Der Zeitpunkt des letzten Schreibens des Superblocks (%t,\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001122"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001123
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001124#. @-expanded: superblock hint for external superblock should be %X.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001125#: e2fsck/problem.c:349
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001126#, c-format
1127msgid "@S hint for external superblock @s %X. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001128msgstr "Superblock-Hinweis für externen Superblock sollte %X sein. "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001129
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001130#. @-expanded: Adding dirhash hint to filesystem.\n
1131#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001132#: e2fsck/problem.c:354
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001133msgid ""
1134"Adding dirhash hint to @f.\n"
1135"\n"
1136msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001137"Verzeichnishash-Hinweis wird zum Dateisystem hinzugefügt.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001138"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001139
Philipp Thomasedc733d2012-04-22 15:38:42 -04001140#. @-expanded: group descriptor %g checksum is %04x, should be %04y.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001141#: e2fsck/problem.c:359
Philipp Thomasedc733d2012-04-22 15:38:42 -04001142msgid "@g descriptor %g checksum is %04x, should be %04y. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001143msgstr ""
1144"Die Prüfsumme des Gruppendeskriptors %g ist %04x, sie sollte %04y sein. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001145
1146#. @-expanded: group descriptor %g marked uninitialized without feature set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001147#: e2fsck/problem.c:364
Philipp Thomas720e6362008-06-21 14:06:00 -04001148#, c-format
1149msgid "@g descriptor %g marked uninitialized without feature set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001150msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001151"Gruppendeskriptor %g ist ohne eine gesetzte Eigenschaft.\n"
1152"als nicht initialisiert gekennzeichnet.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001153
Philipp Thomas720e6362008-06-21 14:06:00 -04001154#. @-expanded: group descriptor %g has invalid unused inodes count %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001155#: e2fsck/problem.c:369
Philipp Thomas720e6362008-06-21 14:06:00 -04001156msgid "@g descriptor %g has invalid unused inodes count %b. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001157msgstr ""
1158"Gruppendeskriptor %g hat eine ungültige Anzahl ungenutzter Inodes von %b. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001159
1160#. @-expanded: Last group block bitmap uninitialized.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001161#: e2fsck/problem.c:374
Philipp Thomas720e6362008-06-21 14:06:00 -04001162msgid "Last @g @b @B uninitialized. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001163msgstr "Die letzte Gruppen-Blockbitmap ist nicht initialisiert. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001164
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001165#: e2fsck/problem.c:379
Philipp Thomas720e6362008-06-21 14:06:00 -04001166#, c-format
1167msgid "Journal transaction %i was corrupt, replay was aborted.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001168msgstr ""
1169"Journaltransaktion %i war beschädigt, die Wiederholung wurde abgebrochen.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001170
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001171#: e2fsck/problem.c:383
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001172msgid "The test_fs flag is set (and ext4 is available). "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001173msgstr "Die Kennung test_fs wurde gesetzt (und ext4 ist verfügbar). "
1174
1175#. @-expanded: superblock last mount time is in the future.\n
1176#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001177#. @-expanded: set)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001178#: e2fsck/problem.c:388
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001179#, fuzzy
Philipp Thomas77c871a2010-04-19 16:59:02 -04001180msgid ""
1181"@S last mount time is in the future.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001182"\t(by less than a day, probably due to the hardware clock being incorrectly "
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001183"set)\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001184msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001185"Der Zeitpunkt des letzten Einhängens des Superblocks liegt in der Zukunft.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001186"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-"
1187"Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001188
1189#. @-expanded: superblock last write time is in the future.\n
1190#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001191#. @-expanded: set)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001192#: e2fsck/problem.c:394
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001193#, fuzzy
Philipp Thomas77c871a2010-04-19 16:59:02 -04001194msgid ""
1195"@S last write time is in the future.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001196"\t(by less than a day, probably due to the hardware clock being incorrectly "
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04001197"set)\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001198msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001199"Der Zeitpunkt des letzten Schreibens des Superblocks liegt in der Zukunft.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001200"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-"
1201"Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001202
1203#. @-expanded: One or more block group descriptor checksums are invalid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001204#: e2fsck/problem.c:400
Philipp Thomas77c871a2010-04-19 16:59:02 -04001205msgid "One or more @b @g descriptor checksums are invalid. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001206msgstr "Die Prüfsumme eines oder mehrerer Gruppendeskriptoren ist ungültig. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001207
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001208#. @-expanded: Setting free inodes count to %j (was %i)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001209#: e2fsck/problem.c:405
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001210msgid "Setting free @is count to %j (was %i)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001211msgstr "Die Anzahl der freien Inodes wird auf %j gesetzt (war %i)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001212
1213#. @-expanded: Setting free blocks count to %c (was %b)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001214#: e2fsck/problem.c:410
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001215msgid "Setting free @bs count to %c (was %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001216msgstr "Die Anzahl der freien Blöcke wird auf %c gesetzt (war %b)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001217
Eric Sandeen032eafe2012-07-28 17:48:36 -04001218#. @-expanded: Making quota inode %i (%Q) hidden.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001219#: e2fsck/problem.c:415
Eric Sandeen032eafe2012-07-28 17:48:36 -04001220msgid "Making @q @i %i (%Q) hidden.\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05001221msgstr "Quota-Inode %i (%Q) wird versteckt.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001222
1223#. @-expanded: superblock has invalid MMP block.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001224#: e2fsck/problem.c:420
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001225msgid "@S has invalid MMP block. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001226msgstr "Der Superblock hat einen ungültigen MMP-Block. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001227
1228#. @-expanded: superblock has invalid MMP magic.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001229#: e2fsck/problem.c:425
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001230msgid "@S has invalid MMP magic. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001231msgstr "Der Superblock besitzt eine falsche MMP-Kennung. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001232
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001233#: e2fsck/problem.c:430
Philipp Thomasedc733d2012-04-22 15:38:42 -04001234#, c-format
1235msgid "ext2fs_open2: %m\n"
1236msgstr "ext2fs_open2: %m\n"
1237
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001238#: e2fsck/problem.c:435
Philipp Thomasedc733d2012-04-22 15:38:42 -04001239#, c-format
1240msgid "ext2fs_check_desc: %m\n"
1241msgstr "ext2fs_check_desc: %m\n"
1242
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001243#. @-expanded: superblock 64bit filesystems needs extents to access the whole disk.
Philipp Thomasedc733d2012-04-22 15:38:42 -04001244#: e2fsck/problem.c:440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001245msgid "@S 64bit filesystems needs extents to access the whole disk. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001246msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001247"Superblock-64Bit-Dateisysteme brauchen Erweiterungen, um auf die gesamte\n"
1248"Platte zugreifen zu können. "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001249
Philipp Thomas37be3822015-05-17 20:21:39 -04001250#: e2fsck/problem.c:445
1251msgid "First_meta_bg is too big. (%N, max value %g). "
1252msgstr "First_meta_bg ist zu groß. (%N, max. Wert %g). "
1253
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001254#. @-expanded: Pass 1: Checking inodes, blocks, and sizes\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001255#: e2fsck/problem.c:452
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001256msgid "Pass 1: Checking @is, @bs, and sizes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001257msgstr "Durchgang 1: Inodes, Blöcke und Größen werden geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001258
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001259#. @-expanded: root inode is not a directory.
Philipp Thomas37be3822015-05-17 20:21:39 -04001260#: e2fsck/problem.c:456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001261msgid "@r is not a @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001262msgstr "Root-Inode ist kein Verzeichnis. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001263
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001264#. @-expanded: root inode has dtime set (probably due to old mke2fs).
Philipp Thomas37be3822015-05-17 20:21:39 -04001265#: e2fsck/problem.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001266msgid "@r has dtime set (probably due to old mke2fs). "
Theodore Ts'obd386982015-05-17 20:34:58 -04001267msgstr ""
1268"Für Root-Inode ist dtime gesetzt (vielleicht durch ein zu altes mke2fs). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001269
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001270#. @-expanded: Reserved inode %i (%Q) has invalid mode.
Philipp Thomas37be3822015-05-17 20:21:39 -04001271#: e2fsck/problem.c:466
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001272msgid "Reserved @i %i (%Q) has @n mode. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001273msgstr "Reservierter Inode %i (%Q) hat einen ungültigen Modus. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001274
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001275#. @-expanded: deleted inode %i has zero dtime.
Philipp Thomas37be3822015-05-17 20:21:39 -04001276#: e2fsck/problem.c:471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001277#, c-format
1278msgid "@D @i %i has zero dtime. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001279msgstr "dtime für gelöschten Inode %i ist Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001280
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001281#. @-expanded: inode %i is in use, but has dtime set.
Philipp Thomas37be3822015-05-17 20:21:39 -04001282#: e2fsck/problem.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001283#, c-format
1284msgid "@i %i is in use, but has dtime set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001285msgstr "Inode %i ist in Benutzung, aber hat dtime gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001286
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001287#. @-expanded: inode %i is a zero-length directory.
Philipp Thomas37be3822015-05-17 20:21:39 -04001288#: e2fsck/problem.c:481
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001289#, c-format
1290msgid "@i %i is a @z @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001291msgstr "Inode %i ist ein Verzeichnis mit Länge Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001292
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001293#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001294#: e2fsck/problem.c:486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001295msgid "@g %g's @b @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001296msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001297"Die Blockbitmap der Gruppe %g auf %b überschneidet sich mit\n"
1298"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001299
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001300#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001301#: e2fsck/problem.c:491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001302msgid "@g %g's @i @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001303msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001304"Die Inode-Bitmap der Gruppe %g bei %b überschneidet sich mit\n"
1305"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001306
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001307#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001308#: e2fsck/problem.c:496
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001309msgid "@g %g's @i table at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001310msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001311"Die Inode-Tabelle der Gruppe %g bei %b überschneidet sich mit\n"
1312"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001313
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001314#. @-expanded: group %g's block bitmap (%b) is bad.
Philipp Thomas37be3822015-05-17 20:21:39 -04001315#: e2fsck/problem.c:501
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001316msgid "@g %g's @b @B (%b) is bad. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001317msgstr "die @b-@B (%b) von @g %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001318
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001319#. @-expanded: group %g's inode bitmap (%b) is bad.
Philipp Thomas37be3822015-05-17 20:21:39 -04001320#: e2fsck/problem.c:506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001321msgid "@g %g's @i @B (%b) is bad. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001322msgstr "Die Inode-Bitmap (%b) der Gruppe %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001323
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001324#. @-expanded: inode %i, i_size is %Is, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04001325#: e2fsck/problem.c:511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001326msgid "@i %i, i_size is %Is, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001327msgstr "Inode %i, i_size ist %Is, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001328
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001329#. @-expanded: inode %i, i_blocks is %Ib, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04001330#: e2fsck/problem.c:516
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001331msgid "@i %i, i_@bs is %Ib, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001332msgstr "Inode %i, i_@bs ist %Ib, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001333
Philipp Thomas77c871a2010-04-19 16:59:02 -04001334#. @-expanded: illegal %B (%b) in inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04001335#: e2fsck/problem.c:521
Philipp Thomas77c871a2010-04-19 16:59:02 -04001336msgid "@I %B (%b) in @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001337msgstr "Unzulässiger %B (%b) in Inode %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001338
Philipp Thomas77c871a2010-04-19 16:59:02 -04001339#. @-expanded: %B (%b) overlaps filesystem metadata in inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04001340#: e2fsck/problem.c:526
Philipp Thomas77c871a2010-04-19 16:59:02 -04001341msgid "%B (%b) overlaps @f metadata in @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001342msgstr "%B (%b) überlappt Dateisystem-Metadaten in @i %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001343
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001344#. @-expanded: inode %i has illegal block(s).
Philipp Thomas37be3822015-05-17 20:21:39 -04001345#: e2fsck/problem.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001346#, c-format
1347msgid "@i %i has illegal @b(s). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001348msgstr "Inode %i hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001349
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001350#. @-expanded: Too many illegal blocks in inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001351#: e2fsck/problem.c:536
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001352#, c-format
1353msgid "Too many illegal @bs in @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001354msgstr "Zu viele unzulässige Blöcke in @i %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001355
Philipp Thomas77c871a2010-04-19 16:59:02 -04001356#. @-expanded: illegal %B (%b) in bad block inode.
Philipp Thomas37be3822015-05-17 20:21:39 -04001357#: e2fsck/problem.c:541
Philipp Thomas77c871a2010-04-19 16:59:02 -04001358msgid "@I %B (%b) in bad @b @i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001359msgstr "Ungültiger %B (%b) in „bad block“-Inode. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001360
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001361#. @-expanded: Bad block inode has illegal block(s).
Philipp Thomas37be3822015-05-17 20:21:39 -04001362#: e2fsck/problem.c:546
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001363msgid "Bad @b @i has illegal @b(s). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001364msgstr "„Bad Block“-Inode hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001365
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001366#. @-expanded: Duplicate or bad block in use!\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001367#: e2fsck/problem.c:551
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001368msgid "Duplicate or bad @b in use!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001369msgstr "Doppelter oder unzulässiger Block in Gebrauch!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001370
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001371#. @-expanded: Bad block %b used as bad block inode indirect block.
Philipp Thomas37be3822015-05-17 20:21:39 -04001372#: e2fsck/problem.c:556
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001373msgid "Bad @b %b used as bad @b @i indirect @b. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001374msgstr ""
1375"Ungültiger Block %b wird benutzt als indirekter Block des „Bad Block“-"
1376"Inodes. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001377
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001378#. @-expanded: \n
1379#. @-expanded: The bad block inode has probably been corrupted. You probably\n
1380#. @-expanded: should stop now and run e2fsck -c to scan for bad blocks\n
1381#. @-expanded: in the filesystem.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001382#: e2fsck/problem.c:561
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001383msgid ""
1384"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001385"The bad @b @i has probably been corrupted. You probably\n"
1386"should stop now and run e2fsck -c to scan for bad blocks\n"
1387"in the @f.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001388msgstr ""
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001389"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001390"Der „Bad Block“-Inode ist wahrscheinlich beschädigt worden. Sie sollten\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001391"nun innehalten und „e2fsck -c“ ausführen, um nach defekten Blöcken in\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001392"dem Dateisystem zu suchen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001393
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001394#. @-expanded: \n
1395#. @-expanded: If the block is really bad, the filesystem can not be fixed.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001396#: e2fsck/problem.c:568
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001397msgid ""
1398"\n"
1399"If the @b is really bad, the @f can not be fixed.\n"
1400msgstr ""
1401"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001402"Wenn der Block wirklich defekt ist, kann das Dateisystem nicht repariert "
1403"werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001404
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001405#. @-expanded: You can remove this block from the bad block list and hope\n
1406#. @-expanded: that the block is really OK. But there are no guarantees.\n
1407#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04001408#: e2fsck/problem.c:573
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001409msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001410"You can remove this @b from the bad @b list and hope\n"
1411"that the @b is really OK. But there are no guarantees.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001412"\n"
1413msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001414"Sie können diesen Block aus der Liste der defekten Blöcke löschen\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001415"und hoffen, das dieser wirklich in Ordnung ist, es gibt aber\n"
1416"KEINE GARANTIEN.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001417"\n"
1418
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001419#. @-expanded: The primary superblock (%b) is on the bad block list.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001420#: e2fsck/problem.c:579
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001421msgid "The primary @S (%b) is on the bad @b list.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001422msgstr "Der primäre Superblock (%b) ist in der Liste der defekten Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001423
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001424#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001425#: e2fsck/problem.c:584
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001426msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001427msgstr ""
1428"Block %b im primären Gruppendeskriptor ist in der Liste der defekten Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001429
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001430#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001431#: e2fsck/problem.c:590
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001432msgid "Warning: Group %g's @S (%b) is bad.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001433msgstr "Warnung: der Superblock der Gruppe %g (%b) ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001434
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001435#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001436#: e2fsck/problem.c:595
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001437msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001438msgstr ""
1439"Warnung: die Kopie des Gruppendeskriptors von Gruppe %g hat einen defekten "
1440"Block (%b).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001441
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001442#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001443#: e2fsck/problem.c:601
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001444msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001445msgstr ""
1446"Programmierfehler? Block #%b wird ohne Grund in process_bad_@b verlangt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001447
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001448#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001449#: e2fsck/problem.c:607
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001450msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001451msgstr ""
1452"Fehler beim Zuweisen von %N zusammenhängenende(m/n) Block/Blöcken in der @b-"
1453"@g %g für %s: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001454
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001455#. @-expanded: error allocating block buffer for relocating %s\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001456#: e2fsck/problem.c:612
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001457#, c-format
1458msgid "@A @b buffer for relocating %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001459msgstr "Fehler beim Zuweisen eines Blockpuffers zum Verschieben von %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001460
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001461#. @-expanded: Relocating group %g's %s from %b to %c...\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001462#: e2fsck/problem.c:617
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001463msgid "Relocating @g %g's %s from %b to %c...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001464msgstr "Gruppe %g's %s wird von %b nach %c verschoben ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001465
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001466#. @-expanded: Relocating group %g's %s to %c...\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001467#: e2fsck/problem.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001468#, c-format
1469msgid "Relocating @g %g's %s to %c...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001470msgstr "Gruppe %g's %s wird nach %c verschoben ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001471
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001472#. @-expanded: Warning: could not read block %b of %s: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001473#: e2fsck/problem.c:627
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001474msgid "Warning: could not read @b %b of %s: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001475msgstr "Warnung: Block %b von %s konnte nicht gelesen werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001476
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001477#. @-expanded: Warning: could not write block %b for %s: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001478#: e2fsck/problem.c:632
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001479msgid "Warning: could not write @b %b for %s: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001480msgstr "Warnung: Block %b von %s konnte nicht geschrieben werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001481
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001482#. @-expanded: error allocating inode bitmap (%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001483#: e2fsck/problem.c:637 e2fsck/problem.c:1501
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001484msgid "@A @i @B (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001485msgstr "Fehler beim Zuweisen der Inode-Bitmap (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001486
1487#. @-expanded: error allocating block bitmap (%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001488#: e2fsck/problem.c:642
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001489msgid "@A @b @B (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001490msgstr "Fehler beim Zuweisen der Block-Bitmap (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001491
1492#. @-expanded: error allocating icount link information: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001493#: e2fsck/problem.c:647
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001494#, c-format
1495msgid "@A icount link information: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001496msgstr "Fehler beim Zuweisen der „icount link information“: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001497
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001498#. @-expanded: error allocating directory block array: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001499#: e2fsck/problem.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001500#, c-format
1501msgid "@A @d @b array: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001502msgstr "Fehler beim Zuweisen des Verzeichnis-Block-Feldes: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001503
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001504#. @-expanded: Error while scanning inodes (%i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001505#: e2fsck/problem.c:657
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001506#, c-format
1507msgid "Error while scanning @is (%i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001508msgstr "Fehler während des Durchsuchens der Inodes (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001509
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001510#. @-expanded: Error while iterating over blocks in inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001511#: e2fsck/problem.c:662
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001512#, c-format
1513msgid "Error while iterating over @bs in @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001514msgstr "Fehler beim Iterieren über die Blöcke in Inode %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001515
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001516#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001517#: e2fsck/problem.c:667
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001518msgid "Error storing @i count information (@i=%i, count=%N): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001519msgstr ""
1520"Fehler beim Speichern der Informationen zur Inode-Anzahl (Inode=%i, Anzahl="
1521"%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001522
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001523#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001524#: e2fsck/problem.c:672
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001525msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001526msgstr ""
1527"Fehler beim Speichern der Verzeichnis-Block-Informationen (Inode=%i, Block="
1528"%b, Anzahl=%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001529
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001530#. @-expanded: Error reading inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001531#: e2fsck/problem.c:678
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001532#, c-format
1533msgid "Error reading @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001534msgstr "Fehler beim Lesen des Inodes %i: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001535
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001536#. @-expanded: inode %i has imagic flag set.
Philipp Thomas37be3822015-05-17 20:21:39 -04001537#: e2fsck/problem.c:686
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001538#, c-format
1539msgid "@i %i has imagic flag set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001540msgstr "Inode %i hat den Imagic-Bitschalter gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001541
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001542#. @-expanded: Special (device/socket/fifo/symlink) file (inode %i) has immutable\n
1543#. @-expanded: or append-only flag set.
Philipp Thomas37be3822015-05-17 20:21:39 -04001544#: e2fsck/problem.c:691
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001545#, c-format
1546msgid ""
1547"Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
1548"or append-only flag set. "
1549msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04001550"Spezielle Geräte-/Socket-/Fifo-/Symlink-Datei (Inode %i) hat den Bitschalter "
1551"für\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001552"unveränderbar oder Nur-Anhängen gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001553
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001554#. @-expanded: inode %i has compression flag set on filesystem without compression support.
Philipp Thomas37be3822015-05-17 20:21:39 -04001555#: e2fsck/problem.c:697
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001556#, c-format
1557msgid "@i %i has @cion flag set on @f without @cion support. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001558msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001559"Inode %i hat den Kompressions-Bitschalter auf einem Dateisystem gesetzt,\n"
1560"welches dies nicht unterstützt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001561
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001562#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
Philipp Thomas37be3822015-05-17 20:21:39 -04001563#: e2fsck/problem.c:702
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001564#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001565msgid "Special (@v/socket/fifo) @i %i has non-zero size. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001566msgstr "Spezieller Geräte-/Socket-/Fifo-Inode %i hat die Größe Null. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001567
1568#. @-expanded: journal inode is not in use, but contains data.
Philipp Thomas37be3822015-05-17 20:21:39 -04001569#: e2fsck/problem.c:712
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001570msgid "@j @i is not in use, but contains data. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001571msgstr "Inode %i wird nicht verwendet, aber enthält Daten. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001572
1573#. @-expanded: journal is not regular file.
Philipp Thomas37be3822015-05-17 20:21:39 -04001574#: e2fsck/problem.c:717
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001575msgid "@j is not regular file. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001576msgstr "Journal ist keine reguläre Datei. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001577
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001578#. @-expanded: inode %i was part of the orphaned inode list.
Philipp Thomas37be3822015-05-17 20:21:39 -04001579#: e2fsck/problem.c:722
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001580#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001581msgid "@i %i was part of the @o @i list. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001582msgstr "Inode %i war Teil der Liste verwaister Inodes. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001583
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001584#. @-expanded: inodes that were part of a corrupted orphan linked list found.
Philipp Thomas37be3822015-05-17 20:21:39 -04001585#: e2fsck/problem.c:728
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001586msgid "@is that were part of a corrupted orphan linked list found. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001587msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001588"Inodes wurden gefunden, die Teil einer defekten verketteten Liste von\n"
1589"verwaisten Inodes waren. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001590
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001591#. @-expanded: error allocating refcount structure (%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001592#: e2fsck/problem.c:733
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001593msgid "@A refcount structure (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001594msgstr "Fehler beim Zuweisen der refcount-Struktur (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001595
1596#. @-expanded: Error reading extended attribute block %b for inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04001597#: e2fsck/problem.c:738
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001598msgid "Error reading @a @b %b for @i %i. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001599msgstr ""
1600"Fehler beim Lesen des Blocks für erweiterte Attribute %b für Inode %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001601
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001602#. @-expanded: inode %i has a bad extended attribute block %b.
Philipp Thomas37be3822015-05-17 20:21:39 -04001603#: e2fsck/problem.c:743
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001604msgid "@i %i has a bad @a @b %b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001605msgstr "Inode %i hat einen defekten Erweiterte-Attribute-Block %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001606
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001607#. @-expanded: Error reading extended attribute block %b (%m).
Philipp Thomas37be3822015-05-17 20:21:39 -04001608#: e2fsck/problem.c:748
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001609msgid "Error reading @a @b %b (%m). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001610msgstr "Fehler beim Lesen des Blocks für erweiterte Attribute (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001611
Philipp Thomas77c871a2010-04-19 16:59:02 -04001612#. @-expanded: extended attribute block %b has reference count %r, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04001613#: e2fsck/problem.c:753
Philipp Thomas77c871a2010-04-19 16:59:02 -04001614msgid "@a @b %b has reference count %r, @s %N. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001615msgstr ""
1616"Der Referenzzähler des Blocks für erweiterte Attribute %b ist %r, richtig "
1617"wäre %N. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001618
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001619#. @-expanded: Error writing extended attribute block %b (%m).
Philipp Thomas37be3822015-05-17 20:21:39 -04001620#: e2fsck/problem.c:758
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001621msgid "Error writing @a @b %b (%m). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001622msgstr "Fehler beim Schreiben des Blocks für erweiterte Attribute %b (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001623
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001624#. @-expanded: extended attribute block %b has h_blocks > 1.
Philipp Thomas37be3822015-05-17 20:21:39 -04001625#: e2fsck/problem.c:763
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001626msgid "@a @b %b has h_@bs > 1. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001627msgstr "Der Block für erweiterte Attribute %b hat h_blocks > 1. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001628
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001629#. @-expanded: error allocating extended attribute block %b.
Philipp Thomas37be3822015-05-17 20:21:39 -04001630#: e2fsck/problem.c:768
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001631msgid "@A @a @b %b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001632msgstr "Fehler beim Zuweisen des Blocks für erweiterte Attribute %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001633
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001634#. @-expanded: extended attribute block %b is corrupt (allocation collision).
Philipp Thomas37be3822015-05-17 20:21:39 -04001635#: e2fsck/problem.c:773
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001636msgid "@a @b %b is corrupt (allocation collision). "
Theodore Ts'obd386982015-05-17 20:34:58 -04001637msgstr ""
1638"Der Block für erweiterte Attribute %b ist defekt (Kollision der "
1639"Platzanforderungen). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001640
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001641#. @-expanded: extended attribute block %b is corrupt (invalid name).
Philipp Thomas37be3822015-05-17 20:21:39 -04001642#: e2fsck/problem.c:778
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001643msgid "@a @b %b is corrupt (@n name). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001644msgstr "Der Block für erweiterte Attribute %b ist defekt (ungültiger Name). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001645
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001646#. @-expanded: extended attribute block %b is corrupt (invalid value).
Philipp Thomas37be3822015-05-17 20:21:39 -04001647#: e2fsck/problem.c:783
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001648msgid "@a @b %b is corrupt (@n value). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001649msgstr "Der Block für erweiterte Attribute %b ist defekt (ungültiger Wert). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001650
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001651#. @-expanded: inode %i is too big.
Philipp Thomas37be3822015-05-17 20:21:39 -04001652#: e2fsck/problem.c:788
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001653#, c-format
1654msgid "@i %i is too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001655msgstr "Inode %i ist zu groß. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001656
Philipp Thomas77c871a2010-04-19 16:59:02 -04001657#. @-expanded: %B (%b) causes directory to be too big.
Philipp Thomas37be3822015-05-17 20:21:39 -04001658#: e2fsck/problem.c:792
Philipp Thomas77c871a2010-04-19 16:59:02 -04001659msgid "%B (%b) causes @d to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001660msgstr "%B (%b) macht das Verzeichnis zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001661
Philipp Thomas37be3822015-05-17 20:21:39 -04001662#: e2fsck/problem.c:797
Philipp Thomas77c871a2010-04-19 16:59:02 -04001663msgid "%B (%b) causes file to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001664msgstr "Block #%B (%b) macht die Datei zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001665
Philipp Thomas37be3822015-05-17 20:21:39 -04001666#: e2fsck/problem.c:802
Philipp Thomas77c871a2010-04-19 16:59:02 -04001667msgid "%B (%b) causes symlink to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001668msgstr "Block #%B (%b) macht den Symlink zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001669
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001670#. @-expanded: inode %i has INDEX_FL flag set on filesystem without htree support.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001671#: e2fsck/problem.c:807
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001672#, c-format
1673msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001674msgstr ""
1675"Inode %i hat INDEX_FL Flag auf einem Dateisystem ohne HTREE-Unterstützung "
1676"gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001677
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001678#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001679#: e2fsck/problem.c:812
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001680#, c-format
1681msgid "@i %i has INDEX_FL flag set but is not a @d.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001682msgstr ""
1683"Inode %i hat den INDEX_FL-Bitschalter gesetzt, ist aber kein Verzeichnis.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001684
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001685#. @-expanded: HTREE directory inode %i has an invalid root node.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001686#: e2fsck/problem.c:817
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001687#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001688msgid "@h %i has an @n root node.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001689msgstr ""
1690"HTREE-Verzeichnis-Inode %i hat einen unvollständigen Wurzelknoten („root "
1691"node“).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001692
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001693#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001694#: e2fsck/problem.c:822
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001695msgid "@h %i has an unsupported hash version (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001696msgstr ""
1697"HTREE-Verzeichnis-Inode %i hat eine nicht unterstützte Hash-Version (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001698
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001699#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001700#: e2fsck/problem.c:827
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001701#, c-format
1702msgid "@h %i uses an incompatible htree root node flag.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001703msgstr ""
1704"@h %i benutzt einen nicht unterstützten Bitschalter für einen Htree-"
1705"Wurzelknoten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001706
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001707#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001708#: e2fsck/problem.c:832
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001709msgid "@h %i has a tree depth (%N) which is too big\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001710msgstr "@h %i hat eine zu große Verzeichnistiefe von (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001711
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001712#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
1713#. @-expanded: filesystem metadata.
Philipp Thomas37be3822015-05-17 20:21:39 -04001714#: e2fsck/problem.c:837
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001715msgid ""
1716"Bad @b @i has an indirect @b (%b) that conflicts with\n"
1717"@f metadata. "
1718msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001719"Der Inode für defekte Blöcke hat einen indirekten Block (%b), der mit\n"
1720"den Dateisystem-Metadaten in Konflikt steht. "
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001721
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001722#. @-expanded: Resize inode (re)creation failed: %m.
Philipp Thomas37be3822015-05-17 20:21:39 -04001723#: e2fsck/problem.c:843
Theodore Ts'obc759702005-05-09 20:40:55 -04001724#, c-format
1725msgid "Resize @i (re)creation failed: %m."
Philipp Thomasab02a742014-07-09 23:13:30 -04001726msgstr "Erzeugung des Vergrößerungs-Inodes scheiterte: %m."
Theodore Ts'obc759702005-05-09 20:40:55 -04001727
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001728#. @-expanded: inode %i has a extra size (%IS) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001729#: e2fsck/problem.c:848
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001730msgid "@i %i has a extra size (%IS) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001731msgstr "Inode %i hat eine ungültige Extragröße (%IS)\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001732
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001733#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001734#: e2fsck/problem.c:853
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001735msgid "@a in @i %i has a namelen (%N) which is @n\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001736msgstr ""
1737"Ein erweitertes Attribut in Inode %i hat eine ungültige „namelen“ von %N.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001738
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001739#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001740#: e2fsck/problem.c:858
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001741msgid "@a in @i %i has a value offset (%N) which is @n\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001742msgstr ""
1743"Ein erweitertes Attribut in Inode %i hat einen ungültigen Werteversatz von "
1744"%N.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001745
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001746#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001747#: e2fsck/problem.c:863
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001748msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001749msgstr ""
1750"Ein erweitertes Attribut in Inode %i hat einen ungültigen Werteblock von %N "
1751"(muss 0 sein).\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001752
Philipp Thomas77c871a2010-04-19 16:59:02 -04001753#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001754#: e2fsck/problem.c:868
Philipp Thomas77c871a2010-04-19 16:59:02 -04001755msgid "@a in @i %i has a value size (%N) which is @n\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001756msgstr ""
1757"Ein erweitertes Attribut in Inode %i hat eine ungültige Wertegröße von %N.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001758
Philipp Thomas720e6362008-06-21 14:06:00 -04001759#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001760#: e2fsck/problem.c:873
Philipp Thomas720e6362008-06-21 14:06:00 -04001761msgid "@a in @i %i has a hash (%N) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001762msgstr "Ein erweitertes Attribut in Inode %i hat den ungültigen Hash %N.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001763
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001764#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001765#: e2fsck/problem.c:878
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001766msgid "@i %i is a %It but it looks like it is really a directory.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001767msgstr ""
1768"Inode %i ist ein %It, aber es sieht so aus, als ob es tatsächlich ein "
1769"Verzeichnis ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001770
Philipp Thomas40771272008-09-07 22:55:25 -04001771#. @-expanded: Error while reading over extent tree in inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001772#: e2fsck/problem.c:883
Philipp Thomas68801282008-07-17 11:47:00 -04001773#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001774msgid "Error while reading over @x tree in @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001775msgstr "Fehler beim Iterieren über den Extent-Baum @x in Inode %i: %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001776
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001777#. @-expanded: Failed to iterate extents in inode %i\n
1778#. @-expanded: \t(op %s, blk %b, lblk %c): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001779#: e2fsck/problem.c:888
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001780msgid ""
1781"Failed to iterate extents in @i %i\n"
1782"\t(op %s, blk %b, lblk %c): %m\n"
1783msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001784"Das Iterieren der Erweiterungen (Extents) in Inode %i scheiterte\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001785"\t(op %s, blk %b, lblk %c): %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001786
1787#. @-expanded: inode %i has an invalid extent\n
1788#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001789#: e2fsck/problem.c:894
Philipp Thomas720e6362008-06-21 14:06:00 -04001790msgid ""
1791"@i %i has an @n extent\n"
1792"\t(logical @b %c, @n physical @b %b, len %N)\n"
1793msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001794"Inode %i hat eine @ne Erweiterung\n"
1795"\t(logischer Block %c, @n physischer Block %b, Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001796
1797#. @-expanded: inode %i has an invalid extent\n
1798#. @-expanded: \t(logical block %c, physical block %b, invalid len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001799#: e2fsck/problem.c:899
Philipp Thomas720e6362008-06-21 14:06:00 -04001800msgid ""
1801"@i %i has an @n extent\n"
1802"\t(logical @b %c, physical @b %b, @n len %N)\n"
1803msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001804"Inode %i hat eine ungültige Erweiterung\n"
1805"\t(logischer Block %c, physischer Block %b, unzulässige Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001806
1807#. @-expanded: inode %i has EXTENTS_FL flag set on filesystem without extents support.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001808#: e2fsck/problem.c:904
Philipp Thomas720e6362008-06-21 14:06:00 -04001809#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001810msgid "@i %i has EXTENTS_FL flag set on @f without extents support.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001811msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001812"Inode %i hat den EXTENTS_FL-Bitschalter gesetzt, obwohl das Dateisystem\n"
1813"Erweiterungen nicht unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001814
1815#. @-expanded: inode %i is in extent format, but superblock is missing EXTENTS feature\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001816#: e2fsck/problem.c:909
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001817#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001818msgid "@i %i is in extent format, but @S is missing EXTENTS feature\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001819msgstr ""
1820"Inode %i besitzt das Erweiterungsformat, aber dem Superblock fehlt die "
1821"Eigenschaft EXTENTS\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001822
1823#. @-expanded: inode %i missing EXTENT_FL, but is in extents format\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001824#: e2fsck/problem.c:914
Philipp Thomas720e6362008-06-21 14:06:00 -04001825#, c-format
1826msgid "@i %i missing EXTENT_FL, but is in extents format\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001827msgstr ""
1828"Dem Inode %i fehlt EXTENT_FL, er hat aber das Format einer Erweiterung\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001829
Philipp Thomas37be3822015-05-17 20:21:39 -04001830#: e2fsck/problem.c:919
Philipp Thomas720e6362008-06-21 14:06:00 -04001831#, c-format
1832msgid "Fast symlink %i has EXTENT_FL set. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001833msgstr "In schnellem Symlink %i ist EXTENT_FL gesetzt. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001834
1835#. @-expanded: inode %i has out of order extents\n
1836#. @-expanded: \t(invalid logical block %c, physical block %b, len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001837#: e2fsck/problem.c:924
Philipp Thomas720e6362008-06-21 14:06:00 -04001838msgid ""
1839"@i %i has out of order extents\n"
1840"\t(@n logical @b %c, physical @b %b, len %N)\n"
1841msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001842"Inode %i hat unregelmäßige Erweiterungen\n"
1843"\t(ungültiger logischer Block %c, physischer Block %b, Länge %N)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001844
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001845#. @-expanded: inode %i has an invalid extent node (blk %b, lblk %c)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001846#: e2fsck/problem.c:928
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001847msgid "@i %i has an invalid extent node (blk %b, lblk %c)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001848msgstr "Inode %i hat einen ungültigen Erweiterungs-Knoten (blk %b, lblk %c)\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001849
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001850#. @-expanded: Error converting subcluster block bitmap: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001851#: e2fsck/problem.c:933
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001852#, c-format
1853msgid "Error converting subcluster @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001854msgstr "Fehler beim Umwandeln der Subcluster-Blockbitmap: %m\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001855
1856#. @-expanded: quota inode is not regular file.
Philipp Thomas37be3822015-05-17 20:21:39 -04001857#: e2fsck/problem.c:938
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001858msgid "@q @i is not regular file. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001859msgstr "Der Quota-Inode ist keine reguläre Datei. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001860
1861#. @-expanded: quota inode is not in use, but contains data.
Philipp Thomas37be3822015-05-17 20:21:39 -04001862#: e2fsck/problem.c:943
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001863msgid "@q @i is not in use, but contains data. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001864msgstr "Quota-Inode wird nicht benutzt, enthält aber Daten. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001865
1866#. @-expanded: quota inode is visible to the user.
Philipp Thomas37be3822015-05-17 20:21:39 -04001867#: e2fsck/problem.c:948
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001868msgid "@q @i is visible to the user. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001869msgstr "Der Quota-Inode ist sichtbar für den Benutzer. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001870
1871#. @-expanded: The bad block inode looks invalid.
Philipp Thomas37be3822015-05-17 20:21:39 -04001872#: e2fsck/problem.c:953
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001873msgid "The bad @b @i looks @n. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001874msgstr "Der Inode für defekte Blöcke sieht ungültig aus. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001875
Philipp Thomasedc733d2012-04-22 15:38:42 -04001876#. @-expanded: inode %i has zero length extent\n
1877#. @-expanded: \t(invalid logical block %c, physical block %b)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001878#: e2fsck/problem.c:958
Philipp Thomasedc733d2012-04-22 15:38:42 -04001879msgid ""
1880"@i %i has zero length extent\n"
1881"\t(@n logical @b %c, physical @b %b)\n"
1882msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001883"Inode %i hat eine Erweitertung der Länge Null\n"
1884"\t(ungültiger logischer Block %c, physischer Block %b)\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04001885
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001886#. @-expanded: Interior extent node level %N of inode %i:\n
1887#. @-expanded: Logical start %b does not match logical start %c at next level.
Philipp Thomas37be3822015-05-17 20:21:39 -04001888#: e2fsck/problem.c:965
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001889msgid ""
1890"Interior @x node level %N of @i %i:\n"
1891"Logical start %b does not match logical start %c at next level. "
1892msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001893"Ebene %N des internen Erweiterungsknotens von Inode %i:\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001894"Der logische Start %b passt nicht zum logischen Start %c auf der nächsten "
1895"Ebene."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001896
1897#. @-expanded: inode %i, end of extent exceeds allowed value\n
1898#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001899#: e2fsck/problem.c:971
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001900msgid ""
1901"@i %i, end of extent exceeds allowed value\n"
1902"\t(logical @b %c, physical @b %b, len %N)\n"
1903msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001904"Inode %i, das Ende der Erweiterung ist außerhalb des gültigen Bereichs\n"
1905"\t(logischer Block %c, physischer Block %b, Länge %N)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001906
Philipp Thomas37be3822015-05-17 20:21:39 -04001907#. @-expanded: directory inode %i block %b should be at block %c.
1908#: e2fsck/problem.c:977
1909msgid "@d @i %i @b %b should be at @b %c. "
1910msgstr "Verzeichnisinode %i Block %b sollte in Block %c sein. "
1911
1912#. @-expanded: directory inode %i has extent marked uninitialized at block %c.
1913#: e2fsck/problem.c:982
1914#, c-format
1915msgid "@d @i %i has @x marked uninitialized at @b %c. "
1916msgstr ""
1917"Verzeichnis-Inode %i hat eine Erweiterung, die als nicht initialisiert\n"
1918"gekennzeichnet ist in Block %c. "
1919
1920#. @-expanded: inode %i logical block %b (physical block %c) violates cluster allocation rules.\n
1921#. @-expanded: Will fix in pass 1B.\n
1922#: e2fsck/problem.c:987
1923msgid ""
1924"@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\n"
1925"Will fix in pass 1B.\n"
1926msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04001927"Die Inode %i, logischer Block %b (physischer Block %c) verletzt die Regeln "
1928"zur\b Anforderung von Cluster-Speicher.\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04001929"Dies wird in Durchgang 1B repariert.\n"
1930
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001931#. @-expanded: \n
1932#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
1933#. @-expanded: Pass 1B: Rescanning for multiply-claimed blocks\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001934#: e2fsck/problem.c:994
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001935msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001936"\n"
1937"Running additional passes to resolve @bs claimed by more than one @i...\n"
1938"Pass 1B: Rescanning for @m @bs\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001939msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001940"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001941"Zusätzliche Läufe werden durchgeführt, um die von mehr als einem Inode\n"
1942"beanspruchten Blöcke zu klären ...\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001943"Durchgang 1B: Suche nach mehrfach beanspruchten Blöcken\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001944
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001945#. @-expanded: multiply-claimed block(s) in inode %i:
Philipp Thomas37be3822015-05-17 20:21:39 -04001946#: e2fsck/problem.c:1000
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001947#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001948msgid "@m @b(s) in @i %i:"
Philipp Thomasab02a742014-07-09 23:13:30 -04001949msgstr "Mehrfach beanspruchte(r) Block/Blöcke in Inode %i:"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001950
Philipp Thomas37be3822015-05-17 20:21:39 -04001951#: e2fsck/problem.c:1015
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001952#, c-format
1953msgid "Error while scanning inodes (%i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001954msgstr "Fehler beim Prüfen der Inodes (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001955
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001956#. @-expanded: error allocating inode bitmap (inode_dup_map): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001957#: e2fsck/problem.c:1020
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001958#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001959msgid "@A @i @B (@i_dup_map): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001960msgstr "Fehler beim Zuweisen der Inode-Bitmap (inode_dup_map): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001961
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001962#. @-expanded: Error while iterating over blocks in inode %i (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001963#: e2fsck/problem.c:1025
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001964#, c-format
1965msgid "Error while iterating over @bs in @i %i (%s): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001966msgstr "Fehler beim Iterieren über die Blöcke in Inode %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001967
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001968#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001969#: e2fsck/problem.c:1030 e2fsck/problem.c:1345
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001970msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001971msgstr ""
1972"Fehler bei der Anpassung des Referenzzählers des Blocks für erweiterte "
1973"Attribute %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001974
Theodore Ts'o6956f612005-12-31 16:46:15 -05001975#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001976#: e2fsck/problem.c:1035
Theodore Ts'o6956f612005-12-31 16:46:15 -05001977msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001978msgstr ""
1979"Durchgang 1C: Verzeichnisse werden nach Inodes mit mehrfach belegten Blöcken "
1980"durchsucht.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001981
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001982#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001983#: e2fsck/problem.c:1041
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001984msgid "Pass 1D: Reconciling @m @bs\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001985msgstr "Durchgang 1D: Mehrfach belegte Blöcke werden abgeglichen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001986
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001987#. @-expanded: File %Q (inode #%i, mod time %IM) \n
Philipp Thomas77c871a2010-04-19 16:59:02 -04001988#. @-expanded: has %r multiply-claimed block(s), shared with %N file(s):\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001989#: e2fsck/problem.c:1046
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001990msgid ""
1991"File %Q (@i #%i, mod time %IM) \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001992" has %r @m @b(s), shared with %N file(s):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001993msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001994"Datei %Q (Inode #%i, Änderungszeit %IM) \n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001995" hat %r mehrfach belegte(n) Block/Blöcke, gemeinsam genutzt mit %N "
1996"Datei(en):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001997
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001998#. @-expanded: \t%Q (inode #%i, mod time %IM)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001999#: e2fsck/problem.c:1052
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002000msgid "\t%Q (@i #%i, mod time %IM)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002001msgstr "\t%Q (Inode #%i, Änderungszeit %IM)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002002
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002003#. @-expanded: \t<filesystem metadata>\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002004#: e2fsck/problem.c:1057
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002005msgid "\t<@f metadata>\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002006msgstr "\t<@f-Metadaten>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002007
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002008#. @-expanded: (There are %N inodes containing multiply-claimed blocks.)\n
2009#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002010#: e2fsck/problem.c:1062
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002011msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002012"(There are %N @is containing @m @bs.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002013"\n"
2014msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002015"(Es gibt %N Inodes, die mehrfach belegte Blöcke enthalten.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002016"\n"
2017
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002018#. @-expanded: multiply-claimed blocks already reassigned or cloned.\n
2019#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002020#: e2fsck/problem.c:1067
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002021msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002022"@m @bs already reassigned or cloned.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002023"\n"
2024msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002025"Mehrfach belegte Blöcke wurden bereits neu zugeordnet bzw. geklont.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002026"\n"
2027
Philipp Thomas37be3822015-05-17 20:21:39 -04002028#: e2fsck/problem.c:1080
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002029#, c-format
2030msgid "Couldn't clone file: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002031msgstr "Datei kann nicht geklont werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002032
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002033#. @-expanded: Pass 2: Checking directory structure\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002034#: e2fsck/problem.c:1086
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002035msgid "Pass 2: Checking @d structure\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002036msgstr "Durchgang 2: Verzeichnisstruktur wird geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002037
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002038#. @-expanded: invalid inode number for '.' in directory inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002039#: e2fsck/problem.c:1091
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002040#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002041msgid "@n @i number for '.' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002042msgstr "Falsche Inode-Nummer für „.“ in Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002043
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002044#. @-expanded: entry '%Dn' in %p (%i) has invalid inode #: %Di.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002045#: e2fsck/problem.c:1096
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002046msgid "@E has @n @i #: %Di.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002047msgstr "Eintrag hat falsche Inode-Nummer: %Di.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002048
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002049#. @-expanded: entry '%Dn' in %p (%i) has deleted/unused inode %Di.
Philipp Thomas37be3822015-05-17 20:21:39 -04002050#: e2fsck/problem.c:1101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002051msgid "@E has @D/unused @i %Di. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002052msgstr "Eintrag „%Dn“ in %p (%i) hat gelöschten/unbenutzten Inode %Di. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002053
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002054#. @-expanded: entry '%Dn' in %p (%i) is a link to '.'
Philipp Thomas37be3822015-05-17 20:21:39 -04002055#: e2fsck/problem.c:1106
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002056msgid "@E @L to '.' "
Philipp Thomasab02a742014-07-09 23:13:30 -04002057msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf „.“ "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002058
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002059#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002060#: e2fsck/problem.c:1111
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002061msgid "@E points to @i (%Di) located in a bad @b.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002062msgstr ""
2063"Eintrag „%Dn“ in %p (%i) zeigt auf einen Inode (%Di) in einem defekten "
2064"Block.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002065
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002066#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002067#: e2fsck/problem.c:1116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002068msgid "@E @L to @d %P (%Di).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002069msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf das Verzeichnis %P (%Di).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002070
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002071#. @-expanded: entry '%Dn' in %p (%i) is a link to the root inode.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002072#: e2fsck/problem.c:1121
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002073msgid "@E @L to the @r.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002074msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf den Root-Inode.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002075
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002076#. @-expanded: entry '%Dn' in %p (%i) has illegal characters in its name.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002077#: e2fsck/problem.c:1126
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002078msgid "@E has illegal characters in its name.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002079msgstr "Eintrag „%Dn“ in %p (%i) hat ein unzulässiges Zeichen im Namen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002080
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002081#. @-expanded: Missing '.' in directory inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002082#: e2fsck/problem.c:1131
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002083#, c-format
2084msgid "Missing '.' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002085msgstr "Fehlende „.“ im Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002086
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002087#. @-expanded: Missing '..' in directory inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002088#: e2fsck/problem.c:1136
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002089#, c-format
2090msgid "Missing '..' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002091msgstr "Fehlender Eintrag „..“ im Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002092
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002093#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002094#: e2fsck/problem.c:1141
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002095msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002096msgstr ""
2097"Der erste Eintrag „%Dn“ (Inode=%Di) im Verzeichnis-Inode %i (%p) sollte „.“ "
2098"sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002099
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002100#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002101#: e2fsck/problem.c:1146
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002102msgid "Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002103msgstr ""
2104"Der zweite Eintrag „%Dn“ (Inode=%Di) im Verzeichnis-Inode %i sollte „..“ "
2105"sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002106
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002107#. @-expanded: i_faddr for inode %i (%Q) is %IF, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002108#: e2fsck/problem.c:1151
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002109msgid "i_faddr @F %IF, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002110msgstr "i_faddr für Inode %i (%Q) ist %IF, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002111
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002112#. @-expanded: i_file_acl for inode %i (%Q) is %If, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002113#: e2fsck/problem.c:1156
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002114msgid "i_file_acl @F %If, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002115msgstr "i_file_acl für Inode %i (%Q) ist %If, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002116
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002117#. @-expanded: i_dir_acl for inode %i (%Q) is %Id, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002118#: e2fsck/problem.c:1161
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002119msgid "i_dir_acl @F %Id, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002120msgstr "i_dir_acl für Inode %i (%Q) ist %Id, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002121
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002122#. @-expanded: i_frag for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002123#: e2fsck/problem.c:1166
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002124msgid "i_frag @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002125msgstr "i_frag für Inode %i (%Q) ist %N, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002126
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002127#. @-expanded: i_fsize for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002128#: e2fsck/problem.c:1171
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002129msgid "i_fsize @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002130msgstr "i_fsize für Inode %i (%Q) ist %N, @s null.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002131
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002132#. @-expanded: inode %i (%Q) has invalid mode (%Im).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002133#: e2fsck/problem.c:1176
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002134msgid "@i %i (%Q) has @n mode (%Im).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002135msgstr "Inode %i (%Q) hat einen ungültigen Modus (%Im).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002136
Philipp Thomas77c871a2010-04-19 16:59:02 -04002137#. @-expanded: directory inode %i, %B, offset %N: directory corrupted\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002138#: e2fsck/problem.c:1181
Philipp Thomas77c871a2010-04-19 16:59:02 -04002139msgid "@d @i %i, %B, offset %N: @d corrupted\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002140msgstr "Verzeichnis-Inode %i, %B, Offset %N: Verzeichnis defekt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002141
Philipp Thomas77c871a2010-04-19 16:59:02 -04002142#. @-expanded: directory inode %i, %B, offset %N: filename too long\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002143#: e2fsck/problem.c:1186
Philipp Thomas77c871a2010-04-19 16:59:02 -04002144msgid "@d @i %i, %B, offset %N: filename too long\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002145msgstr "Verzeichnis-Inode %i, %B, Offset %N: Dateiname zu lang\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002146
Philipp Thomas77c871a2010-04-19 16:59:02 -04002147#. @-expanded: directory inode %i has an unallocated %B.
Philipp Thomas37be3822015-05-17 20:21:39 -04002148#: e2fsck/problem.c:1191
Philipp Thomas77c871a2010-04-19 16:59:02 -04002149msgid "@d @i %i has an unallocated %B. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002150msgstr "Verzeichnis-Inode %i hat einen nicht zugewiesenen %B. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002151
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002152#. @-expanded: '.' directory entry in directory inode %i is not NULL terminated\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002153#: e2fsck/problem.c:1196
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002154#, c-format
2155msgid "'.' @d @e in @d @i %i is not NULL terminated\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002156msgstr ""
2157"Verzeichniseintrag „.“ im Verzeichnis-Inode %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002158
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002159#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002160#: e2fsck/problem.c:1201
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002161#, c-format
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002162msgid "'..' @d @e in @d @i %i is not NULL terminated\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002163msgstr ""
2164"Verzeichniseintrag „..“ im Verzeichnis-Inode %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002165
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002166#. @-expanded: inode %i (%Q) is an illegal character device.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002167#: e2fsck/problem.c:1206
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002168msgid "@i %i (%Q) is an @I character @v.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002169msgstr "Inode %i (%Q) ist ein ungültiges zeichenorientiertes Gerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002170
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002171#. @-expanded: inode %i (%Q) is an illegal block device.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002172#: e2fsck/problem.c:1211
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002173msgid "@i %i (%Q) is an @I @b @v.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002174msgstr "Inode %i (%Q) ist ein ungültiges blockorientiertes Gerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002175
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002176#. @-expanded: entry '%Dn' in %p (%i) is duplicate '.' entry.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002177#: e2fsck/problem.c:1216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002178msgid "@E is duplicate '.' @e.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002179msgstr "Eintrag „%Dn“ in %p (%i) ist ein doppelter Eintrag für „.“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002180
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002181#. @-expanded: entry '%Dn' in %p (%i) is duplicate '..' entry.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002182#: e2fsck/problem.c:1221
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002183msgid "@E is duplicate '..' @e.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002184msgstr "Eintrag „%Dn“ in %p (%i) ist ein doppelter Eintrag für „..“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002185
Philipp Thomas37be3822015-05-17 20:21:39 -04002186#: e2fsck/problem.c:1226 e2fsck/problem.c:1526
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002187#, c-format
2188msgid "Internal error: couldn't find dir_info for %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002189msgstr "Interner Fehler: dir_info für %i kann nicht gefunden werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002190
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002191#. @-expanded: entry '%Dn' in %p (%i) has rec_len of %Dr, should be %N.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002192#: e2fsck/problem.c:1231
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002193msgid "@E has rec_len of %Dr, @s %N.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002194msgstr "Eintrag „%Dn“ in %p (%i) hat eine rec_len von %Dr, sollte %N sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002195
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002196#. @-expanded: error allocating icount structure: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002197#: e2fsck/problem.c:1236
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002198#, c-format
2199msgid "@A icount structure: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002200msgstr "Fehler beim Zuweisen der icount-Struktur: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002201
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002202#. @-expanded: Error iterating over directory blocks: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002203#: e2fsck/problem.c:1241
Theodore Ts'of9e6df42004-05-04 16:19:13 -04002204#, c-format
Theodore Ts'of592bed2003-07-26 00:51:54 -04002205msgid "Error iterating over @d @bs: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002206msgstr "Fehler beim Durchlaufen der Verzeichnisblöcke: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002207
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002208#. @-expanded: Error reading directory block %b (inode %i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002209#: e2fsck/problem.c:1246
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002210msgid "Error reading @d @b %b (@i %i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002211msgstr "Fehler beim Lesen des Verzeichnisblocks %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002212
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002213#. @-expanded: Error writing directory block %b (inode %i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002214#: e2fsck/problem.c:1251
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002215msgid "Error writing @d @b %b (@i %i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002216msgstr "Fehler beim Schreiben des Verzeichnisblocks %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002217
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002218#. @-expanded: error allocating new directory block for inode %i (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002219#: e2fsck/problem.c:1256
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002220#, c-format
2221msgid "@A new @d @b for @i %i (%s): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002222msgstr ""
2223"Fehler beim Zuweisen eines neuen Verzeichnisblocks für Inode %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002224
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002225#. @-expanded: Error deallocating inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002226#: e2fsck/problem.c:1261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002227#, c-format
2228msgid "Error deallocating @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002229msgstr "Fehler bei der Freigabe von Inode %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002230
Philipp Thomas40771272008-09-07 22:55:25 -04002231#. @-expanded: directory entry for '.' in %p (%i) is big.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002232#: e2fsck/problem.c:1266
Philipp Thomas40771272008-09-07 22:55:25 -04002233#, c-format
2234msgid "@d @e for '.' in %p (%i) is big.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002235msgstr "Verzeichniseintrag für „.“ in %p (%i) ist groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002236
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002237#. @-expanded: inode %i (%Q) is an illegal FIFO.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002238#: e2fsck/problem.c:1271
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002239msgid "@i %i (%Q) is an @I FIFO.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002240msgstr "Inode %i (%Q) ist eine ungültige FIFO.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002241
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002242#. @-expanded: inode %i (%Q) is an illegal socket.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002243#: e2fsck/problem.c:1276
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002244msgid "@i %i (%Q) is an @I socket.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002245msgstr "Inode %i (%Q) ist ein ungültiger Socket.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002246
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002247#. @-expanded: Setting filetype for entry '%Dn' in %p (%i) to %N.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002248#: e2fsck/problem.c:1281
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002249msgid "Setting filetype for @E to %N.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002250msgstr "Dateitypü für Eintrag „%Dn“ in %p (%i) wird auf %N gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002251
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002252#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002253#: e2fsck/problem.c:1286
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002254msgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002255msgstr ""
2256"Eintrag „%Dn“ in %p (%i) hat einen falschen Dateityp (war %Dt, sollte %N "
2257"sein).\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002258
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002259#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002260#: e2fsck/problem.c:1291
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002261msgid "@E has filetype set.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002262msgstr "Eintrag „%Dn“ in %p (%i) hat Dateityp gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002263
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002264#. @-expanded: entry '%Dn' in %p (%i) has a zero-length name.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002265#: e2fsck/problem.c:1296
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002266msgid "@E has a @z name.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002267msgstr "Eintrag „%Dn“ in %p (%i) hat einen Namen der Länge Null.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002268
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002269#. @-expanded: Symlink %Q (inode #%i) is invalid.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002270#: e2fsck/problem.c:1301
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002271msgid "Symlink %Q (@i #%i) is @n.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002272msgstr "Symlink %Q (Inode #%i) is invalid.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002273
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002274#. @-expanded: extended attribute block for inode %i (%Q) is invalid (%If).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002275#: e2fsck/problem.c:1306
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002276msgid "@a @b @F @n (%If).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002277msgstr "Erweiterte-Attribute-Block für Inode %i (%Q) ist ungültig (%If).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002278
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002279#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002280#: e2fsck/problem.c:1311
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002281msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002282msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002283"Dateisystem enthält große Dateien, aber im Superblock ist\n"
2284"der Bitschalter LARGE_FILE nicht gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002285
Philipp Thomas77c871a2010-04-19 16:59:02 -04002286#. @-expanded: problem in HTREE directory inode %d: %B not referenced\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002287#: e2fsck/problem.c:1316
Philipp Thomas77c871a2010-04-19 16:59:02 -04002288msgid "@p @h %d: %B not referenced\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002289msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B ist nicht referenziert\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002290
Philipp Thomas77c871a2010-04-19 16:59:02 -04002291#. @-expanded: problem in HTREE directory inode %d: %B referenced twice\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002292#: e2fsck/problem.c:1321
Philipp Thomas77c871a2010-04-19 16:59:02 -04002293msgid "@p @h %d: %B referenced twice\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002294msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B doppelt referenziert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002295
Philipp Thomas77c871a2010-04-19 16:59:02 -04002296#. @-expanded: problem in HTREE directory inode %d: %B has bad min hash\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002297#: e2fsck/problem.c:1326
Philipp Thomas77c871a2010-04-19 16:59:02 -04002298msgid "@p @h %d: %B has bad min hash\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002299msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat ungültigen Minimumhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002300
Philipp Thomas77c871a2010-04-19 16:59:02 -04002301#. @-expanded: problem in HTREE directory inode %d: %B has bad max hash\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002302#: e2fsck/problem.c:1331
Philipp Thomas77c871a2010-04-19 16:59:02 -04002303msgid "@p @h %d: %B has bad max hash\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002304msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat ungültigen Maximalhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002305
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002306#. @-expanded: invalid HTREE directory inode %d (%q).
Philipp Thomas37be3822015-05-17 20:21:39 -04002307#: e2fsck/problem.c:1336
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002308msgid "@n @h %d (%q). "
Philipp Thomasab02a742014-07-09 23:13:30 -04002309msgstr "Ungültiger HTREE-Verzeichnis-Inode %d (%q). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002310
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002311#. @-expanded: problem in HTREE directory inode %d (%q): bad block number %b.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002312#: e2fsck/problem.c:1340
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002313msgid "@p @h %d (%q): bad @b number %b.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002314msgstr "Problem im HTREE-Verzeichnis-Inode %d (%q): falsche Blocknummer %b.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002315
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002316#. @-expanded: problem in HTREE directory inode %d: root node is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002317#: e2fsck/problem.c:1350
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002318#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002319msgid "@p @h %d: root node is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002320msgstr "Problem im HTREE-Verzeichnis-Inode %d: Wurzelknoten ist ungültig\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002321
Philipp Thomas77c871a2010-04-19 16:59:02 -04002322#. @-expanded: problem in HTREE directory inode %d: %B has invalid limit (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002323#: e2fsck/problem.c:1355
Philipp Thomas77c871a2010-04-19 16:59:02 -04002324msgid "@p @h %d: %B has @n limit (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002325msgstr ""
2326"Problem im HTREE-Verzeichnis-Inode %d: %B hat eine ungültige Begrenzung "
2327"(%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002328
Philipp Thomas77c871a2010-04-19 16:59:02 -04002329#. @-expanded: problem in HTREE directory inode %d: %B has invalid count (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002330#: e2fsck/problem.c:1360
Philipp Thomas77c871a2010-04-19 16:59:02 -04002331msgid "@p @h %d: %B has @n count (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002332msgstr ""
2333"Problem im HTREE-Verzeichnis-Inode %d: %B hat einen ungültigen Zählerstand "
2334"(%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002335
Philipp Thomas77c871a2010-04-19 16:59:02 -04002336#. @-expanded: problem in HTREE directory inode %d: %B has an unordered hash table\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002337#: e2fsck/problem.c:1365
Philipp Thomas77c871a2010-04-19 16:59:02 -04002338msgid "@p @h %d: %B has an unordered hash table\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002339msgstr ""
2340"Problem im HTREE-Verzeichnis-Inode %d: %B hat eine unsortierte Hashtabelle\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002341
Philipp Thomas77c871a2010-04-19 16:59:02 -04002342#. @-expanded: problem in HTREE directory inode %d: %B has invalid depth (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002343#: e2fsck/problem.c:1370
Philipp Thomas77c871a2010-04-19 16:59:02 -04002344msgid "@p @h %d: %B has @n depth (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002345msgstr ""
2346"Problem im HTREE-Verzeichnis-Inode %d: %B hat eine ungültige Tiefe (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002347
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002348#. @-expanded: Duplicate entry '%Dn' in %p (%i) found.
Philipp Thomas37be3822015-05-17 20:21:39 -04002349#: e2fsck/problem.c:1375
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002350msgid "Duplicate @E found. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002351msgstr "Doppelter Eintrag „%Dn“ in %p (%i) gefunden. "
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002352
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002353#. @-expanded: entry '%Dn' in %p (%i) has a non-unique filename.\n
2354#. @-expanded: Rename to %s
Philipp Thomas37be3822015-05-17 20:21:39 -04002355#: e2fsck/problem.c:1380
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002356#, no-c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002357msgid ""
2358"@E has a non-unique filename.\n"
2359"Rename to %s"
2360msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002361"Eintrag „%Dn“ in %p (%i) hat keinen eindeutigen Dateinamen.\n"
2362"Wird in %s umbenannt"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002363
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002364#. @-expanded: Duplicate entry '%Dn' found.\n
2365#. @-expanded: \tMarking %p (%i) to be rebuilt.\n
2366#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002367#: e2fsck/problem.c:1385
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002368msgid ""
2369"Duplicate @e '%Dn' found.\n"
2370"\tMarking %p (%i) to be rebuilt.\n"
2371"\n"
2372msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002373"Doppelter Eintrag „%Dn“ gefunden.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002374"\t%p (%i) wird für die Neuerstellung markiert.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002375"\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002376
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002377#. @-expanded: i_blocks_hi for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002378#: e2fsck/problem.c:1390
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002379msgid "i_blocks_hi @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002380msgstr "i_blocks_hi für Inode %i (%Q) %N, sollte Null sein.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002381
Philipp Thomas720e6362008-06-21 14:06:00 -04002382#. @-expanded: Unexpected block in HTREE directory inode %d (%q).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002383#: e2fsck/problem.c:1395
Philipp Thomas720e6362008-06-21 14:06:00 -04002384msgid "Unexpected @b in @h %d (%q).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002385msgstr "Unerwarteter Block im HTREE-Verzeichnis-Inode %d (%q).\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002386
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002387#. @-expanded: entry '%Dn' in %p (%i) references inode %Di in group %g where _INODE_UNINIT is set.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002388#: e2fsck/problem.c:1399
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002389msgid "@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002390msgstr ""
2391"Eintrag „%Dn“ in %p (%i) verweist auf Inode %Di in Gruppe %g, für die "
2392"_INODE_UNINIT gesetzt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002393
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002394#. @-expanded: entry '%Dn' in %p (%i) references inode %Di found in group %g's unused inodes area.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002395#: e2fsck/problem.c:1404
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002396msgid "@E references @i %Di found in @g %g's unused inodes area.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002397msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04002398"Eintrag „%Dn“ in %p (%i) verweist auf Inode %Di, der im Bereich ungenutzter "
2399"Inodes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002400"von Gruppe %g zu finden ist.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002401
2402#. @-expanded: i_file_acl_hi for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002403#: e2fsck/problem.c:1409
Philipp Thomas77c871a2010-04-19 16:59:02 -04002404msgid "i_file_acl_hi @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002405msgstr "i_file_acl_hi für Inode %i (%Q) ist %N, sollte Null sein.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002406
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002407#. @-expanded: Pass 3: Checking directory connectivity\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002408#: e2fsck/problem.c:1416
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002409msgid "Pass 3: Checking @d connectivity\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002410msgstr "Durchgang 3: Verzeichnisverknüpfungen werden geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002411
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002412#. @-expanded: root inode not allocated.
Philipp Thomas37be3822015-05-17 20:21:39 -04002413#: e2fsck/problem.c:1421
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002414msgid "@r not allocated. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002415msgstr "Root-Inode nicht zugeordnet. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002416
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002417#. @-expanded: No room in lost+found directory.
Philipp Thomas37be3822015-05-17 20:21:39 -04002418#: e2fsck/problem.c:1426
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002419msgid "No room in @l @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002420msgstr "Kein Platz im Verzeichnis „lost+found“. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002421
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002422#. @-expanded: Unconnected directory inode %i (%p)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002423#: e2fsck/problem.c:1431
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002424#, c-format
2425msgid "Unconnected @d @i %i (%p)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002426msgstr "Nicht verbundener Verzeichnis-Inode %i (%p)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002427
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002428#. @-expanded: /lost+found not found.
Philipp Thomas37be3822015-05-17 20:21:39 -04002429#: e2fsck/problem.c:1436
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002430msgid "/@l not found. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002431msgstr "/lost+found nicht gefunden. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002432
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002433#. @-expanded: '..' in %Q (%i) is %P (%j), should be %q (%d).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002434#: e2fsck/problem.c:1441
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002435msgid "'..' in %Q (%i) is %P (%j), @s %q (%d).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002436msgstr "„..“ in %Q (%i) ist %P (%j), sollte %q (%d) sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002437
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002438#. @-expanded: Bad or non-existent /lost+found. Cannot reconnect.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002439#: e2fsck/problem.c:1446
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002440msgid "Bad or non-existent /@l. Cannot reconnect.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002441msgstr ""
2442"Verzeichnis /lost+found ist falsch oder fehlt. Wiederverbinden nicht "
2443"möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002444
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002445#. @-expanded: Could not expand /lost+found: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002446#: e2fsck/problem.c:1451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002447#, c-format
2448msgid "Could not expand /@l: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002449msgstr "Erweitern von /lost+found nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002450
Philipp Thomas37be3822015-05-17 20:21:39 -04002451#: e2fsck/problem.c:1456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002452#, c-format
2453msgid "Could not reconnect %i: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002454msgstr "Wiederverbinden von %i nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002455
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002456#. @-expanded: Error while trying to find /lost+found: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002457#: e2fsck/problem.c:1461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002458#, c-format
2459msgid "Error while trying to find /@l: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002460msgstr "Fehler während der Suche nach /lost+found: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002461
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002462#. @-expanded: ext2fs_new_block: %m while trying to create /lost+found directory\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002463#: e2fsck/problem.c:1466
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002464#, c-format
2465msgid "ext2fs_new_@b: %m while trying to create /@l @d\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002466msgstr ""
2467"ext2fs_new_@b: %m während des Versuches, das Verzeichnis /lost+found zu "
2468"erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002469
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002470#. @-expanded: ext2fs_new_inode: %m while trying to create /lost+found directory\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002471#: e2fsck/problem.c:1471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002472#, c-format
2473msgid "ext2fs_new_@i: %m while trying to create /@l @d\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002474msgstr ""
2475"ext2fs_new_@i: %m während des Versuches, das Verzeichnis /lost+found zu "
2476"erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002477
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002478#. @-expanded: ext2fs_new_dir_block: %m while creating new directory block\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002479#: e2fsck/problem.c:1476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002480#, c-format
2481msgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002482msgstr ""
2483"ext2fs_new_dir_@b: %m während des Versuches, das Verzeichnis /lost+found zu "
2484"erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002485
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002486#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002487#: e2fsck/problem.c:1481
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002488#, c-format
2489msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002490msgstr ""
2491"ext2fs_write_dir_@b: %m während des Schreibens des Verzeichnisblocks für /"
2492"lost+found\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002493
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002494#. @-expanded: Error while adjusting inode count on inode %i\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002495#: e2fsck/problem.c:1486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002496#, c-format
2497msgid "Error while adjusting @i count on @i %i\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002498msgstr "Fehler während des Anpassens der Inode-Anzahl auf Inode %i\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002499
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002500#. @-expanded: Couldn't fix parent of inode %i: %m\n
2501#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002502#: e2fsck/problem.c:1491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002503#, c-format
2504msgid ""
2505"Couldn't fix parent of @i %i: %m\n"
2506"\n"
2507msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002508"Eigentümer von Inode %i konnte nicht repariert werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002509"\n"
2510
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002511#. @-expanded: Couldn't fix parent of inode %i: Couldn't find parent directory entry\n
2512#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002513#: e2fsck/problem.c:1496
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002514#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002515msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002516"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002517"\n"
2518msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002519"Eigentümer von Inode %i konnte nicht repariert werden: \n"
2520"Verzeichniseintrag des Eigentümers wurde nicht gefunden.\n"
2521"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002522
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002523#. @-expanded: Error creating root directory (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002524#: e2fsck/problem.c:1506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002525#, c-format
2526msgid "Error creating root @d (%s): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002527msgstr "Fehler beim Erzeugen des Wurzelverzeichnisses (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002528
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002529#. @-expanded: Error creating /lost+found directory (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002530#: e2fsck/problem.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002531#, c-format
2532msgid "Error creating /@l @d (%s): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002533msgstr "Fehler beim Erzeugen des Verzeichnisses /lost+found (%s): %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002534
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002535#. @-expanded: root inode is not a directory; aborting.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002536#: e2fsck/problem.c:1516
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002537msgid "@r is not a @d; aborting.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002538msgstr "Der Wurzel-Inode ist kein Verzeichnis; Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002539
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002540#. @-expanded: Cannot proceed without a root inode.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002541#: e2fsck/problem.c:1521
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002542msgid "Cannot proceed without a @r.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002543msgstr "Ohne Wurzel-Inode ist weiteres Arbeiten nicht möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002544
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002545#. @-expanded: /lost+found is not a directory (ino=%i)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002546#: e2fsck/problem.c:1531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002547#, c-format
2548msgid "/@l is not a @d (ino=%i)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002549msgstr "/lost+found ist kein Verzeichnis (ino=%i)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002550
Philipp Thomas37be3822015-05-17 20:21:39 -04002551#: e2fsck/problem.c:1538
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002552msgid "Pass 3A: Optimizing directories\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002553msgstr "Durchgang 3A: Verzeichnisse werden optimiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002554
Philipp Thomas37be3822015-05-17 20:21:39 -04002555#: e2fsck/problem.c:1543
Philipp Thomas77c871a2010-04-19 16:59:02 -04002556#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002557msgid "Failed to create dirs_to_hash iterator: %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002558msgstr "dirs_to_hash Iterator konnte nicht erzeugt werden: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002559
Philipp Thomas37be3822015-05-17 20:21:39 -04002560#: e2fsck/problem.c:1548
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002561msgid "Failed to optimize directory %q (%d): %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002562msgstr "Verzeichnis %q (%d) konnte nicht optimiert werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002563
Philipp Thomas37be3822015-05-17 20:21:39 -04002564#: e2fsck/problem.c:1553
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002565msgid "Optimizing directories: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002566msgstr "Verzeichnisse werden optimiert: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002567
Philipp Thomas37be3822015-05-17 20:21:39 -04002568#: e2fsck/problem.c:1570
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002569msgid "Pass 4: Checking reference counts\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002570msgstr "Durchgang 4: Referenzzähler werden überprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002571
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002572#. @-expanded: unattached zero-length inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04002573#: e2fsck/problem.c:1575
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002574#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002575msgid "@u @z @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002576msgstr "Nicht verbundener Inode der Länge Null %i. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002577
2578#. @-expanded: unattached inode %i\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002579#: e2fsck/problem.c:1580
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002580#, c-format
2581msgid "@u @i %i\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002582msgstr "Nicht verbundener Inode %i\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002583
2584#. @-expanded: inode %i ref count is %Il, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04002585#: e2fsck/problem.c:1585
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002586msgid "@i %i ref count is %Il, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002587msgstr "Der Referenzzähler von Inode %i ist %Il, sollte aber %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002588
Philipp Thomasab02a742014-07-09 23:13:30 -04002589# So etwas sollte in einer ernstzunehmenden Software nicht erscheinen,
2590# selbst wenn es (derber) Humor ist.
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002591#. @-expanded: WARNING: PROGRAMMING BUG IN E2FSCK!\n
2592#. @-expanded: \tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n
2593#. @-expanded: inode_link_info[%i] is %N, inode.i_links_count is %Il. They should be the same!\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002594#: e2fsck/problem.c:1589
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002595msgid ""
2596"WARNING: PROGRAMMING BUG IN E2FSCK!\n"
2597"\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002598"@i_link_info[%i] is %N, @i.i_links_count is %Il. They @s the same!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002599msgstr ""
2600"WARNUNG: PROGRAMMIERFEHLER IN E2FSCK!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002601"\tODER JEMAND PRÜFT EIN EINGEHÄNGTES (AKTIVES) DATEISYSTEM.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002602"@i_link_info[%i] ist %N, @i.i_links_count ist %Il. Sie sollten identisch "
2603"sein!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002604
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002605#. @-expanded: Pass 5: Checking group summary information\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002606#: e2fsck/problem.c:1599
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002607msgid "Pass 5: Checking @g summary information\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002608msgstr "Durchgang 5: Zusammengefasste Gruppeninformation wird geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002609
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002610#. @-expanded: Padding at end of inode bitmap is not set.
Philipp Thomas37be3822015-05-17 20:21:39 -04002611#: e2fsck/problem.c:1604
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002612msgid "Padding at end of @i @B is not set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002613msgstr "Auffüllbyte am Ende der Inode-Bitmap ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002614
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002615#. @-expanded: Padding at end of block bitmap is not set.
Philipp Thomas37be3822015-05-17 20:21:39 -04002616#: e2fsck/problem.c:1609
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002617msgid "Padding at end of @b @B is not set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002618msgstr "Auffüllbyte am Ende der Inode-Bitmap ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002619
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002620#. @-expanded: block bitmap differences:
Philipp Thomas37be3822015-05-17 20:21:39 -04002621#: e2fsck/problem.c:1614
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002622msgid "@b @B differences: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002623msgstr "Unterschiede in der Block-Bitmap: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002624
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002625#. @-expanded: inode bitmap differences:
Philipp Thomas37be3822015-05-17 20:21:39 -04002626#: e2fsck/problem.c:1634
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002627msgid "@i @B differences: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002628msgstr "Unterschiede in der Inode-Bitmap: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002629
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002630#. @-expanded: Free inodes count wrong for group #%g (%i, counted=%j).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002631#: e2fsck/problem.c:1654
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002632msgid "Free @is count wrong for @g #%g (%i, counted=%j).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002633msgstr "Die Anzahl freier Inodes für Gruppe #%g ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002634
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002635#. @-expanded: Directories count wrong for group #%g (%i, counted=%j).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002636#: e2fsck/problem.c:1659
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002637msgid "Directories count wrong for @g #%g (%i, counted=%j).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002638msgstr ""
2639"Die Anzahl der Verzeichnisse für Gruppe #%g ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002640
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002641#. @-expanded: Free inodes count wrong (%i, counted=%j).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002642#: e2fsck/problem.c:1664
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002643msgid "Free @is count wrong (%i, counted=%j).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002644msgstr "Die Anzahl freier Inodes ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002645
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002646#. @-expanded: Free blocks count wrong for group #%g (%b, counted=%c).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002647#: e2fsck/problem.c:1669
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002648msgid "Free @bs count wrong for @g #%g (%b, counted=%c).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002649msgstr "Die Anzahl freier Blöcke in Gruppe #%g ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002650
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002651#. @-expanded: Free blocks count wrong (%b, counted=%c).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002652#: e2fsck/problem.c:1674
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002653msgid "Free @bs count wrong (%b, counted=%c).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002654msgstr "Die Anzahl freier Blöcke ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002655
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002656#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
2657#. @-expanded: endpoints (%i, %j)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002658#: e2fsck/problem.c:1679
Theodore Ts'obd386982015-05-17 20:34:58 -04002659msgid ""
2660"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
2661"endpoints (%i, %j)\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002662msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04002663"PROGRAMMIERFEHLER: Dateisystem (#%N) Bitmap-Endpunkte (%b, %c) stimmenen "
2664"nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002665"mit den berechneten Bitmap-Endpunkten (%i, %j) überein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002666
Philipp Thomas37be3822015-05-17 20:21:39 -04002667#: e2fsck/problem.c:1685
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002668msgid "Internal error: fudging end of bitmap (%N)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002669msgstr "Interner Fehler: das Ende der Bitmap (%N) wird erraten\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002670
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002671#. @-expanded: Error copying in replacement inode bitmap: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002672#: e2fsck/problem.c:1690
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002673#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002674msgid "Error copying in replacement @i @B: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002675msgstr "Fehler beim Hineinkopieren der Inode-Bitmap: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002676
2677#. @-expanded: Error copying in replacement block bitmap: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002678#: e2fsck/problem.c:1695
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002679#, c-format
2680msgid "Error copying in replacement @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002681msgstr "Fehler beim Hineinkopieren der Ersatz-Blockbitmap: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002682
Philipp Thomas720e6362008-06-21 14:06:00 -04002683#. @-expanded: group %g block(s) in use but group is marked BLOCK_UNINIT\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002684#: e2fsck/problem.c:1720
Philipp Thomas720e6362008-06-21 14:06:00 -04002685#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04002686msgid "@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002687msgstr ""
2688"Blöcke von Gruppe %g sind in Benutzung, obwohl die Gruppe als BLOCK_UNINIT "
2689"markiert ist\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04002690
2691#. @-expanded: group %g inode(s) in use but group is marked INODE_UNINIT\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002692#: e2fsck/problem.c:1725
Theodore Ts'o057a1592010-06-07 12:24:21 -04002693#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04002694msgid "@g %g @i(s) in use but @g is marked INODE_UNINIT\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002695msgstr ""
2696"Die Inodes der Gruppe %g sind in Benutzung, obwohl die Gruppe als "
2697"INODE_UNINIT markiert ist\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002698
Philipp Thomas77c871a2010-04-19 16:59:02 -04002699#. @-expanded: Recreate journal
Philipp Thomas37be3822015-05-17 20:21:39 -04002700#: e2fsck/problem.c:1732
Philipp Thomas77c871a2010-04-19 16:59:02 -04002701msgid "Recreate @j"
Philipp Thomasab02a742014-07-09 23:13:30 -04002702msgstr "Journal wird wiederhergestellt"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002703
Philipp Thomas37be3822015-05-17 20:21:39 -04002704#: e2fsck/problem.c:1737
Eric Sandeen032eafe2012-07-28 17:48:36 -04002705msgid "Update quota info for quota type %N"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002706msgstr "Quota-Info für Typ %N wird aktualisiert"
Eric Sandeen032eafe2012-07-28 17:48:36 -04002707
Philipp Thomas37be3822015-05-17 20:21:39 -04002708#. @-expanded: Error setting block group checksum info: %m\n
2709#: e2fsck/problem.c:1742
2710#, c-format
2711msgid "Error setting @b @g checksum info: %m\n"
2712msgstr "beim Setzen der Blockgruppen-Prüfsummeninfo: %m\n"
2713
2714#: e2fsck/problem.c:1747
2715#, c-format
2716msgid "Error writing file system info: %m\n"
2717msgstr "Fehler beim Lesen de Der Dateisysteminfo: %m\n"
2718
2719#: e2fsck/problem.c:1752
2720#, c-format
2721msgid "Error flushing writes to storage device: %m\n"
2722msgstr "Fehler beim Schreiben der gepufferten Daten: %m\n"
2723
2724#: e2fsck/problem.c:1871
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002725#, c-format
2726msgid "Unhandled error code (0x%x)!\n"
2727msgstr "Unbenutzter Fehlercode (0x%x)!\n"
2728
Philipp Thomas37be3822015-05-17 20:21:39 -04002729#: e2fsck/problem.c:1996 e2fsck/problem.c:2000
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002730msgid "IGNORED"
2731msgstr "IGNORIERT"
2732
Eric Sandeen032eafe2012-07-28 17:48:36 -04002733#: e2fsck/scantest.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002734#, c-format
2735msgid "Memory used: %d, elapsed time: %6.3f/%6.3f/%6.3f\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002736msgstr "Benutzter Speicher: %d, vergangende Zeit: %6.3f/%6.3f/%6.3f\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002737
Eric Sandeen032eafe2012-07-28 17:48:36 -04002738#: e2fsck/scantest.c:98
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002739#, c-format
2740msgid "size of inode=%d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002741msgstr "Größe des Inodes=%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002742
Eric Sandeen032eafe2012-07-28 17:48:36 -04002743#: e2fsck/scantest.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002744msgid "while starting inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -04002745msgstr "beim Starten der Inode-Prüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002746
Eric Sandeen032eafe2012-07-28 17:48:36 -04002747#: e2fsck/scantest.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002748msgid "while doing inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -04002749msgstr "während der Inode-Prüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002750
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002751#: e2fsck/super.c:190
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002752#, c-format
2753msgid "while calling ext2fs_block_iterate for inode %d"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002754msgstr "während des Aufrufs von ext2fs_block_iterate für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002755
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002756#: e2fsck/super.c:213
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002757#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002758msgid "while calling ext2fs_adjust_ea_refcount2 for inode %d"
2759msgstr "während des Aufrufs von ext2fs_adjust_ea_refcount2 für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002760
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002761#: e2fsck/super.c:274
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002762msgid "Truncating"
Philipp Thomasab02a742014-07-09 23:13:30 -04002763msgstr "Wird gekürzt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002764
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002765#: e2fsck/super.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002766msgid "Clearing"
Philipp Thomasab02a742014-07-09 23:13:30 -04002767msgstr "Wird bereinigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002768
Eric Sandeen032eafe2012-07-28 17:48:36 -04002769#: e2fsck/unix.c:74
Philipp Thomas68801282008-07-17 11:47:00 -04002770#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002771msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04002772"Usage: %s [-panyrcdfvtDFV] [-b superblock] [-B blocksize]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002773"\t\t[-I inode_buffer_blocks] [-P process_inode_size]\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002774"\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002775"\t\t[-E extended-options] device\n"
2776msgstr ""
Philipp Thomas68801282008-07-17 11:47:00 -04002777"Aufruf: %s [-panyrcdfvtDFV] [-b Superblock] [-B Blockgröße]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002778"\t\t[-I Inode_Puffer_Blöcke] [-P Prozess_Inodegröße]\n"
2779"\t\t[-l|-L Bad_Blocks_Datei] [-C Dateideskriptor] [-j externes_Journal]\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002780"\t\t[-E erweiterte_Optionen] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002781
Eric Sandeen032eafe2012-07-28 17:48:36 -04002782#: e2fsck/unix.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002783msgid ""
2784"\n"
2785"Emergency help:\n"
2786" -p Automatic repair (no questions)\n"
2787" -n Make no changes to the filesystem\n"
2788" -y Assume \"yes\" to all questions\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002789" -c Check for bad blocks and add them to the badblock "
2790"list\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002791" -f Force checking even if filesystem is marked clean\n"
2792msgstr ""
2793"\n"
Philipp Thomas18eaec22011-10-02 22:50:38 -04002794"Notfallhilfe:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002795" -p automatische Reparatur (keine Fragen)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002796" -n keine Veränderungen am Dateisystem vornehmen\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002797" -y Alle Fragen mit „Ja” benatworten\n"
2798" -c Nach defekten Blöcken suchen und diese zur\n"
2799" Liste der defekten Blöcke hinzufügen\n"
2800" -f Die Überprüfung erzwingen, auch wenn alles i.O. erscheint\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002801
Eric Sandeen032eafe2012-07-28 17:48:36 -04002802#: e2fsck/unix.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002803msgid ""
2804" -v Be verbose\n"
2805" -b superblock Use alternative superblock\n"
2806" -B blocksize Force blocksize when looking for superblock\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002807" -j external_journal Set location of the external journal\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002808" -l bad_blocks_file Add to badblocks list\n"
2809" -L bad_blocks_file Set badblocks list\n"
2810msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002811" -v Ausführliche Ausgaben\n"
2812" -b Superblock Superblockkopie verwenden\n"
2813" -B Blockgröße Blockgröße beim Suchen des Superblocks erzwingen\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002814" -j externes-Journal Angabe des Speicherortes des externen Jounals\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002815" -l bad_blocks_file Zur Liste der defekten Blöcke hinzufügen\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002816" -L bad_blocks_file Liste der defekten Blöcke definieren\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002817
Philipp Thomasd0275172013-01-15 23:30:35 -05002818#: e2fsck/unix.c:131
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002819#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002820msgid "%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks\n"
2821msgstr "%s: %u/%u Dateien (%0d.%d%% nicht zusammenhängend), %llu/%llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002822
Philipp Thomasd0275172013-01-15 23:30:35 -05002823#: e2fsck/unix.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002824#, c-format
2825msgid ""
2826"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002827"%12u inode used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002828msgid_plural ""
2829"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002830"%12u inodes used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002831msgstr[0] ""
2832"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002833"%12u Inode ist in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002834msgstr[1] ""
2835"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002836"%12u Inodes sind in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002837
Philipp Thomasd0275172013-01-15 23:30:35 -05002838#: e2fsck/unix.c:161
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002839#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002840msgid "%12u non-contiguous file (%0d.%d%%)\n"
2841msgid_plural "%12u non-contiguous files (%0d.%d%%)\n"
2842msgstr[0] "%12u nicht zusammenhängende Datei (%0d.%d%%)\n"
2843msgstr[1] "%12u nicht zusammenhängende Dateien (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002844
Philipp Thomasd0275172013-01-15 23:30:35 -05002845#: e2fsck/unix.c:166
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002846#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002847msgid "%12u non-contiguous directory (%0d.%d%%)\n"
2848msgid_plural "%12u non-contiguous directories (%0d.%d%%)\n"
2849msgstr[0] "%12u nicht zusammenhängendes Verzeichnis (%0d.%d%%)\n"
2850msgstr[1] "%12u nicht zusammenhängende Verzeichnisse (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002851
Eric Sandeen032eafe2012-07-28 17:48:36 -04002852#: e2fsck/unix.c:171
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002853#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002854msgid " # of inodes with ind/dind/tind blocks: %u/%u/%u\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002855msgstr " # von Inodes mit ind/dind/tind Blöcken: %u/%u/%u\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002856
Philipp Thomasd0275172013-01-15 23:30:35 -05002857#: e2fsck/unix.c:179
2858msgid " Extent depth histogram: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002859msgstr " Histogramm der Tiefe von Erweiterungen: "
Philipp Thomasd0275172013-01-15 23:30:35 -05002860
2861#: e2fsck/unix.c:188
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002862#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002863msgid "%12llu block used (%2.2f%%, out of %llu)\n"
2864msgid_plural "%12llu blocks used (%2.2f%%, out of %llu)\n"
2865msgstr[0] "%12llu Block wird benutzt (%2.2f%% von %llu)\n"
2866msgstr[1] "%12llu Blöcke werden benutzt (%2.2f%% von %llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002867
Philipp Thomasd0275172013-01-15 23:30:35 -05002868#: e2fsck/unix.c:192
2869#, c-format
2870msgid "%12u bad block\n"
2871msgid_plural "%12u bad blocks\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002872msgstr[0] "%12u defekter Block\n"
2873msgstr[1] "%12u defekte Blöcke\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002874
2875#: e2fsck/unix.c:194
2876#, c-format
2877msgid "%12u large file\n"
2878msgid_plural "%12u large files\n"
2879msgstr[0] "%12u große Datei\n"
2880msgstr[1] "%12u große Dateien\n"
2881
2882#: e2fsck/unix.c:196
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002883#, c-format
2884msgid ""
2885"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002886"%12u regular file\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002887msgid_plural ""
2888"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002889"%12u regular files\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002890msgstr[0] ""
2891"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002892"%12u reguläre Datei\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002893msgstr[1] ""
2894"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002895"%12u reguläre Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002896
Philipp Thomasd0275172013-01-15 23:30:35 -05002897#: e2fsck/unix.c:198
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002898#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002899msgid "%12u directory\n"
2900msgid_plural "%12u directories\n"
2901msgstr[0] "%12u Verzeichnis\n"
2902msgstr[1] "%12u Verzeichnisse\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002903
Philipp Thomasd0275172013-01-15 23:30:35 -05002904#: e2fsck/unix.c:200
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002905#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002906msgid "%12u character device file\n"
2907msgid_plural "%12u character device files\n"
2908msgstr[0] "%12u zeichenorientierte Gerätedatei\n"
2909msgstr[1] "%12u zeichenorientierte Gerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002910
Philipp Thomasd0275172013-01-15 23:30:35 -05002911#: e2fsck/unix.c:203
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002912#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002913msgid "%12u block device file\n"
2914msgid_plural "%12u block device files\n"
2915msgstr[0] "%12u Blockgerätedatei\n"
2916msgstr[1] "%12u Blockgerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002917
Philipp Thomasd0275172013-01-15 23:30:35 -05002918#: e2fsck/unix.c:205
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002919#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002920msgid "%12u fifo\n"
2921msgid_plural "%12u fifos\n"
2922msgstr[0] "%12u Fifo\n"
2923msgstr[1] "%12u Fifos\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002924
Philipp Thomasd0275172013-01-15 23:30:35 -05002925#: e2fsck/unix.c:207
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002926#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002927msgid "%12u link\n"
2928msgid_plural "%12u links\n"
2929msgstr[0] "%12u Verknüpfung\n"
2930msgstr[1] "%12u Verknüpfungen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002931
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002932#: e2fsck/unix.c:209
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002933#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002934msgid "%12u symbolic link"
2935msgid_plural "%12u symbolic links"
2936msgstr[0] "%12u symbolische Verknüpfung"
2937msgstr[1] "%12u symbolische Verknüpfungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002938
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002939#: e2fsck/unix.c:211
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002940#, c-format
2941msgid " (%u fast symbolic link)\n"
2942msgid_plural " (%u fast symbolic links)\n"
2943msgstr[0] " (%u schnelle symbolische Verknüpfung)\n"
2944msgstr[1] " (%u schnelle symbolische Verknüpfungen)\n"
2945
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002946#: e2fsck/unix.c:215
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002947#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002948msgid "%12u socket\n"
2949msgid_plural "%12u sockets\n"
2950msgstr[0] "%12u Socket\n"
2951msgstr[1] "%12u Sockets\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002952
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002953#: e2fsck/unix.c:219
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002954#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002955msgid "%12u file\n"
2956msgid_plural "%12u files\n"
2957msgstr[0] "%12u Datei\n"
2958msgstr[1] "%12u Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002959
Theodore Ts'obd386982015-05-17 20:34:58 -04002960#: e2fsck/unix.c:232 misc/badblocks.c:993 misc/tune2fs.c:2122 misc/util.c:316
2961#: resize/main.c:261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002962#, c-format
2963msgid "while determining whether %s is mounted."
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002964msgstr "bei der Prüfung, ob %s eingehängt ist."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002965
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002966#: e2fsck/unix.c:253
Philipp Thomasab02a742014-07-09 23:13:30 -04002967#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002968msgid "Warning! %s is mounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002969msgstr "Warnung! %s ist eingehängt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002970
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002971#: e2fsck/unix.c:256
Philipp Thomasab02a742014-07-09 23:13:30 -04002972#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002973msgid "Warning! %s is in use.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002974msgstr "Warnung! %s wird verwendet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002975
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002976#: e2fsck/unix.c:262
Philipp Thomasab02a742014-07-09 23:13:30 -04002977#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002978msgid "%s is mounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002979msgstr "%s ist eingehängt.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002980
2981#: e2fsck/unix.c:264
Philipp Thomasab02a742014-07-09 23:13:30 -04002982#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002983msgid "%s is in use.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002984msgstr "%s wird verwendet.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002985
2986#: e2fsck/unix.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002987msgid ""
2988"Cannot continue, aborting.\n"
2989"\n"
2990msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002991"Fortsetzung nicht möglich, wird abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002992"\n"
2993
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002994#: e2fsck/unix.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002995msgid ""
2996"\n"
2997"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002998"WARNING!!! The filesystem is mounted. If you continue you ***WILL***\n"
2999"cause ***SEVERE*** filesystem damage.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003000"\n"
3001msgstr ""
3002"\n"
3003"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003004"WARNUNG!!! Das Dateisystem ist eingehängt. Wenn Sie fortfahren, "
3005"***WERDEN***\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003006"Sie ***SCHWERWIEGENDE*** Schäden am Dateisystem verursachen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003007"\n"
3008
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003009#: e2fsck/unix.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003010msgid "Do you really want to continue"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003011msgstr "Wirklich fortfahren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003012
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003013#: e2fsck/unix.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003014msgid "check aborted.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003015msgstr "Prüfung abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003016
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003017#: e2fsck/unix.c:368
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003018msgid " contains a file system with errors"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003019msgstr " enthält ein fehlerhaftes Dateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003020
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003021#: e2fsck/unix.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003022msgid " was not cleanly unmounted"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003023msgstr " wurde nicht ordnungsgemäß ausgehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003024
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003025#: e2fsck/unix.c:372
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003026msgid " primary superblock features different from backup"
Theodore Ts'obd386982015-05-17 20:34:58 -04003027msgstr ""
3028"Eigenschaften des primären Superblocks unterscheiden sich von der "
3029"Datensicherung"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003030
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003031#: e2fsck/unix.c:376
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003032#, c-format
3033msgid " has been mounted %u times without being checked"
Philipp Thomasab02a742014-07-09 23:13:30 -04003034msgstr " wurde %u-mal ohne Überprüfung eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003035
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003036#: e2fsck/unix.c:383
Theodore Ts'o057a1592010-06-07 12:24:21 -04003037msgid " has filesystem last checked time in the future"
Theodore Ts'obd386982015-05-17 20:34:58 -04003038msgstr ""
3039" hat einen in der Zukunft liegenden Zeitpunkt der letzten Püfung des "
3040"Dateisystems"
Theodore Ts'o057a1592010-06-07 12:24:21 -04003041
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003042#: e2fsck/unix.c:389
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003043#, c-format
3044msgid " has gone %u days without being checked"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003045msgstr " wurde %u Tage ohne Überprüfung genutzt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003046
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003047#: e2fsck/unix.c:398
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003048msgid ", check forced.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003049msgstr ", Prüfung erzwungen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003050
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003051#: e2fsck/unix.c:431
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003052#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003053msgid "%s: clean, %u/%u files, %llu/%llu blocks"
3054msgstr "%s: sauber, %u/%u Dateien, %llu/%llu Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003055
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003056#: e2fsck/unix.c:451
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003057msgid " (check deferred; on battery)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003058msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003059
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003060#: e2fsck/unix.c:454
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003061msgid " (check after next mount)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003062msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003063
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003064#: e2fsck/unix.c:456
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003065#, c-format
3066msgid " (check in %ld mounts)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003067msgstr " (Prüfung nach %ld Einhängevorgängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003068
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003069#: e2fsck/unix.c:606
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003070#, c-format
3071msgid "ERROR: Couldn't open /dev/null (%s)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003072msgstr "Fehler: /dev/null (%s) kann nicht geöffnet werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003073
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003074#: e2fsck/unix.c:675
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003075msgid "Invalid EA version.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003076msgstr "Ungültige EA-Version.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003077
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003078#: e2fsck/unix.c:702
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003079#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04003080msgid "Unknown extended option: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003081msgstr "Unbekannte erweiterte Option: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003082
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003083#: e2fsck/unix.c:727
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003084#, c-format
3085msgid ""
3086"Syntax error in e2fsck config file (%s, line #%d)\n"
3087"\t%s\n"
3088msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003089"Syntaxfehler in der Konfigurationsdatei von e2fsck (%s, Zeile %d)\n"
3090"\t%s\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003091
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003092#: e2fsck/unix.c:797
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003093#, c-format
3094msgid "Error validating file descriptor %d: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003095msgstr "Fehler bei Überprüfung des Datei-Deskriptors %d: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003096
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003097#: e2fsck/unix.c:801
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003098msgid "Invalid completion information file descriptor"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003099msgstr "Ungültiger „completion information“-Datei-Deskriptor"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003100
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003101#: e2fsck/unix.c:816
Theodore Ts'o6956f612005-12-31 16:46:15 -05003102msgid "Only one of the options -p/-a, -n or -y may be specified."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003103msgstr "Nur eine der Optionen -p/-a, -n oder -y darf angegeben werden."
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003104
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003105#: e2fsck/unix.c:837
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003106#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003107msgid "The -t option is not supported on this version of e2fsck.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003108msgstr "Die Option -t wird von dieser e2fsck-Version nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003109
Theodore Ts'obd386982015-05-17 20:34:58 -04003110#: e2fsck/unix.c:868 e2fsck/unix.c:942 misc/tune2fs.c:879 misc/tune2fs.c:1174
3111#: misc/tune2fs.c:1192
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003112#, c-format
3113msgid "Unable to resolve '%s'"
Philipp Thomasab02a742014-07-09 23:13:30 -04003114msgstr "Nicht möglich, „%s“ aufzulösen"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003115
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003116#: e2fsck/unix.c:921
Philipp Thomas3e914b52011-01-24 15:03:41 -05003117msgid "The -n and -D options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04003118msgstr "Die Optionen -n und -D schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05003119
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003120#: e2fsck/unix.c:926
Philipp Thomas3e914b52011-01-24 15:03:41 -05003121msgid "The -n and -c options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04003122msgstr "Die Optionen -n und -c schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05003123
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003124#: e2fsck/unix.c:931
Philipp Thomas3e914b52011-01-24 15:03:41 -05003125msgid "The -n and -l/-L options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04003126msgstr "Die Optionen -n und -l/-L schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05003127
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003128#: e2fsck/unix.c:985
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003129msgid "The -c and the -l/-L options may not be both used at the same time.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003130msgstr ""
3131"Die Optionen -c und -l/-L dürfen nicht gleichzeitig verwendet werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003132
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003133#: e2fsck/unix.c:1032
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003134#, c-format
3135msgid ""
3136"E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
3137"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003138msgstr "2FSCK_JBD_DEBUG „%s“ ist keine Ganzzahl\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003139
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003140#: e2fsck/unix.c:1041
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003141#, c-format
3142msgid ""
3143"\n"
3144"Invalid non-numeric argument to -%c (\"%s\")\n"
3145"\n"
3146msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003147"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003148"Ungültiges nicht-numerisches Argument für -%c („%s“)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003149"\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003150
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003151#: e2fsck/unix.c:1132
Philipp Thomasedc733d2012-04-22 15:38:42 -04003152#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04003153msgid ""
3154"MMP interval is %u seconds and total wait time is %u seconds. Please "
3155"wait...\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003156msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003157"MMP-Intervall ist %u Sekunden und die gesamte Wartezeit ist %u Sekunden.\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003158"Bitte warten...\n"
3159
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003160#: e2fsck/unix.c:1149 e2fsck/unix.c:1154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003161msgid "while checking MMP block"
3162msgstr "beim Prüfen des MMP-Blocks"
3163
Theodore Ts'obd386982015-05-17 20:34:58 -04003164#: e2fsck/unix.c:1156 misc/tune2fs.c:2049
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003165msgid ""
3166"If you are sure the filesystem is not in use on any node, run:\n"
3167"'tune2fs -f -E clear_mmp {device}'\n"
3168msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003169"Wenn Sie sicher sind, dass das Dateisystem auf keinem Knoten benutzt wird,\n"
3170"führen Sie bitte Folgendes aus:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003171"„tune2fs -f -E clear_mmp {device}“\n"
3172
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003173#: e2fsck/unix.c:1207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003174msgid "Error: ext2fs library version out of date!\n"
3175msgstr "Fehler: ext2fs-Bibliotheks-Version ist zu alt!\n"
3176
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003177#: e2fsck/unix.c:1214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003178msgid "while trying to initialize program"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003179msgstr "bei der Programminitialisierung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003180
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003181#: e2fsck/unix.c:1237
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003182#, c-format
3183msgid "\tUsing %s, %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003184msgstr "\t%s wird verwendet, %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003185
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003186#: e2fsck/unix.c:1249
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003187msgid "need terminal for interactive repairs"
Philipp Thomasab02a742014-07-09 23:13:30 -04003188msgstr "Ein Terminal wird für interaktive Reparaturen benötigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003189
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003190#: e2fsck/unix.c:1303
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003191#, c-format
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003192msgid "%s: %s trying backup blocks...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003193msgstr "%s: %s Datensicherungs-Blöcke werden versucht ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003194
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003195#: e2fsck/unix.c:1305
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003196msgid "Superblock invalid,"
Philipp Thomasab02a742014-07-09 23:13:30 -04003197msgstr "Superblock ungültig,"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003198
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003199#: e2fsck/unix.c:1306
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003200msgid "Group descriptors look bad..."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003201msgstr "Gruppen-Deskriptoren scheinen defekt zu sein..."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003202
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003203#: e2fsck/unix.c:1316
Philipp Thomasedc733d2012-04-22 15:38:42 -04003204#, c-format
3205msgid "%s: %s while using the backup blocks"
Philipp Thomasab02a742014-07-09 23:13:30 -04003206msgstr "%s: %s beim Benutzen der Datensicherungs-Blöcke"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003207
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003208#: e2fsck/unix.c:1320
Philipp Thomas77c871a2010-04-19 16:59:02 -04003209#, c-format
3210msgid "%s: going back to original superblock\n"
3211msgstr "%s: es wird zum originalen Superblock zurück gekehrt\n"
3212
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003213#: e2fsck/unix.c:1349
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003214msgid ""
3215"The filesystem revision is apparently too high for this version of e2fsck.\n"
3216"(Or the filesystem superblock is corrupt)\n"
3217"\n"
3218msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003219"Diese Dateisystem-Revision ist offensichtlich zu neu für diese Version \n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003220"von e2fsck (oder der Dateisystem-Superblock ist defekt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003221"\n"
3222
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003223#: e2fsck/unix.c:1356
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003224msgid "Could this be a zero-length partition?\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003225msgstr "Könnte es eine Partion der Länge Null sein?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003226
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003227#: e2fsck/unix.c:1358
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003228#, c-format
3229msgid "You must have %s access to the filesystem or be root\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003230msgstr "Sie benötigen %s- oder root-Rechte für das Dateisystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003231
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003232#: e2fsck/unix.c:1364
Eric Sandeen032eafe2012-07-28 17:48:36 -04003233msgid "Possibly non-existent or swap device?\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003234msgstr ""
3235"Möglicherweise ist die Partition nicht vorhanden oder eine Swap-Partition?\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003236
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003237#: e2fsck/unix.c:1366
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003238msgid "Filesystem mounted or opened exclusively by another program?\n"
3239msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003240"Ist das Dateisystem eingehängt oder exklusiv von einem anderen Programm\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003241"geöffnet worden?\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003242
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003243#: e2fsck/unix.c:1370
Philipp Thomas3e914b52011-01-24 15:03:41 -05003244msgid "Possibly non-existent device?\n"
3245msgstr "Ist das Gerät möglicherweise nicht vorhanden?\n"
3246
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003247#: e2fsck/unix.c:1373
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003248msgid ""
3249"Disk write-protected; use the -n option to do a read-only\n"
3250"check of the device.\n"
3251msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003252"Laufwerk ist schreibgeschützt, nutzen Sie die Option -n,\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003253"um es im Nur-Lesen-Modus zu prüfen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003254
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003255#: e2fsck/unix.c:1437
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003256msgid "Get a newer version of e2fsck!"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003257msgstr "Neuere Version von e2fsck benötigt!"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003258
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003259#: e2fsck/unix.c:1480
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003260#, c-format
3261msgid "while checking ext3 journal for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003262msgstr "während der Prüfung des ext3-Journals für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003263
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003264#: e2fsck/unix.c:1492
Theodore Ts'obd386982015-05-17 20:34:58 -04003265msgid ""
3266"Warning: skipping journal recovery because doing a read-only filesystem "
3267"check.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003268msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04003269"Warnung: Journal-Wiederherstellung wird übersprungen, da sich das "
3270"Dateisystem\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003271"im Nur-Lesen-Modus befindet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003272
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003273#: e2fsck/unix.c:1504
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003274#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003275msgid "unable to set superblock flags on %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003276msgstr "Superblock-Flags konnten auf %s nicht gesetzt werden\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003277
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003278#: e2fsck/unix.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003279#, c-format
3280msgid "while recovering ext3 journal of %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003281msgstr "bei der Wiederherstellung des ext3-Journals von %s"
3282
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003283#: e2fsck/unix.c:1534
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003284#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003285msgid "%s has unsupported feature(s):"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003286msgstr "%s besitzt nicht unterstützte Eigenschaft(en):"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003287
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003288#: e2fsck/unix.c:1549
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003289#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003290msgid "%s: warning: compression support is experimental.\n"
3291msgstr "%s: Warnung: Die Kompressionsunterstützung ist experimentell.\n"
3292
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003293#: e2fsck/unix.c:1555
Philipp Thomasedc733d2012-04-22 15:38:42 -04003294#, c-format
3295msgid ""
3296"%s: e2fsck not compiled with HTREE support,\n"
3297"\tbut filesystem %s has HTREE directories.\n"
3298msgstr ""
3299"%s: e2fsck wurde ohne Unterstützung für HTREE kompiliert,\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003300"\taber das Dateisystem %s besitzt HTREE-Verzeichnisse.\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003301
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003302#: e2fsck/unix.c:1607
Philipp Thomasedc733d2012-04-22 15:38:42 -04003303#, c-format
3304msgid "%s: %s while reading bad blocks inode\n"
3305msgstr "%s: %s beim Lesen des Bad-Block-Inodes\n"
3306
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003307#: e2fsck/unix.c:1610
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003308msgid "This doesn't bode well, but we'll try to go on...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003309msgstr "Das verheißt nichts Gutes, aber es wird trotzdem versucht ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003310
Philipp Thomas37be3822015-05-17 20:21:39 -04003311#: e2fsck/unix.c:1652
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003312#, c-format
3313msgid "Creating journal (%d blocks): "
Philipp Thomasab02a742014-07-09 23:13:30 -04003314msgstr "Journal wird erstellt (%d Blöcke): "
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003315
Philipp Thomas37be3822015-05-17 20:21:39 -04003316#: e2fsck/unix.c:1662
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003317msgid " Done.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003318msgstr " Erledigt.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003319
Philipp Thomas37be3822015-05-17 20:21:39 -04003320#: e2fsck/unix.c:1664
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003321msgid ""
3322"\n"
3323"*** journal has been re-created - filesystem is now ext3 again ***\n"
3324msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003325"\n"
3326"*** Journal wurde wiederhergestellt - Dateisystem ist nun wieder ext3 ***\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003327
Philipp Thomas37be3822015-05-17 20:21:39 -04003328#: e2fsck/unix.c:1688
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003329msgid "Restarting e2fsck from the beginning...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003330msgstr "e2fsck wird neu gestartet ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003331
Philipp Thomas37be3822015-05-17 20:21:39 -04003332#: e2fsck/unix.c:1692
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003333msgid "while resetting context"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003334msgstr "beim Rücksetzen des Kontexts"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003335
Philipp Thomas37be3822015-05-17 20:21:39 -04003336#: e2fsck/unix.c:1699
3337msgid "aborted"
3338msgstr "abgebrochen"
3339
3340#: e2fsck/unix.c:1706
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003341#, c-format
3342msgid "%s: e2fsck canceled.\n"
Philipp Thomascfbdca12011-10-05 02:04:08 -04003343msgstr "%s: e2fsck abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003344
Philipp Thomas37be3822015-05-17 20:21:39 -04003345#: e2fsck/unix.c:1741 e2fsck/util.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003346#, c-format
3347msgid ""
3348"\n"
3349"%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
3350msgstr ""
3351"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003352"%s: ***** DATEISYSTEM WURDE VERÄNDERT *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003353
Philipp Thomas37be3822015-05-17 20:21:39 -04003354#: e2fsck/unix.c:1745
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003355#, c-format
3356msgid "%s: ***** REBOOT LINUX *****\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003357msgstr "%s: ***** LINUX MUSS NEU GESTARTET WERDEN *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003358
Philipp Thomas37be3822015-05-17 20:21:39 -04003359#: e2fsck/unix.c:1753 e2fsck/util.c:73
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003360#, c-format
3361msgid ""
3362"\n"
3363"%s: ********** WARNING: Filesystem still has errors **********\n"
3364"\n"
3365msgstr ""
3366"\n"
3367"%s: ********** WARNUNG: Noch Fehler im Dateisystem **********\n"
3368"\n"
3369
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003370#: e2fsck/util.c:190 misc/util.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003371msgid "yY"
Makoto Dei748cc432008-04-21 16:49:48 +09003372msgstr "jJ"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003373
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003374#: e2fsck/util.c:191
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003375msgid "nN"
3376msgstr "nN"
3377
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003378#: e2fsck/util.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003379msgid "<y>"
3380msgstr "<j>"
3381
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003382#: e2fsck/util.c:207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003383msgid "<n>"
3384msgstr "<n>"
3385
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003386#: e2fsck/util.c:209
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003387msgid " (y/n)"
3388msgstr " (j/n)"
3389
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003390#: e2fsck/util.c:223
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003391msgid "cancelled!\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003392msgstr "abgebrochen!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003393
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003394#: e2fsck/util.c:238
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003395msgid "yes\n"
3396msgstr "ja\n"
3397
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003398#: e2fsck/util.c:240
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003399msgid "no\n"
3400msgstr "nein\n"
3401
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003402#: e2fsck/util.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003403#, c-format
3404msgid ""
3405"%s? no\n"
3406"\n"
3407msgstr ""
3408"%s? nein\n"
3409"\n"
3410
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003411#: e2fsck/util.c:254
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003412#, c-format
3413msgid ""
3414"%s? yes\n"
3415"\n"
3416msgstr ""
3417"%s? ja\n"
3418"\n"
3419
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003420#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003421msgid "yes"
3422msgstr "ja"
3423
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003424#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003425msgid "no"
3426msgstr "nein"
3427
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003428#: e2fsck/util.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003429#, c-format
3430msgid "e2fsck_read_bitmaps: illegal bitmap block(s) for %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003431msgstr "e2fsck_read_bitmaps: ungültiger Bitmpa-Block(-Blöcke) für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003432
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003433#: e2fsck/util.c:278
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003434msgid "reading inode and block bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04003435msgstr "Inode und Block-Bitmaps werden gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003436
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003437#: e2fsck/util.c:286
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003438#, c-format
3439msgid "while retrying to read bitmaps for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003440msgstr "während des wiederholten Versuches, Bitmaps für %s einzulesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003441
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003442#: e2fsck/util.c:298
Philipp Thomas40771272008-09-07 22:55:25 -04003443msgid "writing block and inode bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04003444msgstr "Block- und Inode-Bitmaps werden geschrieben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003445
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003446#: e2fsck/util.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003447#, c-format
Philipp Thomas40771272008-09-07 22:55:25 -04003448msgid "while rewriting block and inode bitmaps for %s"
Theodore Ts'obd386982015-05-17 20:34:58 -04003449msgstr ""
3450"während des wiederholten Versuches, Block- und Inode-Bitmaps für %s zu "
3451"schreiben."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003452
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003453#: e2fsck/util.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003454#, c-format
3455msgid ""
3456"\n"
3457"\n"
3458"%s: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.\n"
3459"\t(i.e., without -a or -p options)\n"
3460msgstr ""
3461"\n"
3462"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003463"%s: UNERWARTETE INKONSISTENZ; fsck MANUELL AUSFÜHREN\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003464"\t(d.h. ohne die Optionen -a oder -p)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003465
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003466#: e2fsck/util.c:396
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003467#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003468msgid "Memory used: %luk/%luk (%luk/%luk), "
3469msgstr "Benutzter Speicher: %luk/%luk (%luk/%luk), "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003470
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003471#: e2fsck/util.c:400
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003472#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003473msgid "Memory used: %lu, "
3474msgstr "Benutzter Speicher: %lu, "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003475
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003476#: e2fsck/util.c:407
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003477#, c-format
3478msgid "time: %5.2f/%5.2f/%5.2f\n"
3479msgstr "Zeit: %5.2f/%5.2f/%5.2f\n"
3480
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003481#: e2fsck/util.c:412
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003482#, c-format
3483msgid "elapsed time: %6.3f\n"
3484msgstr "abgelaufende Zeit: %6.3f\n"
3485
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003486#: e2fsck/util.c:447 e2fsck/util.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003487#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003488msgid "while reading inode %lu in %s"
3489msgstr "beim Lesen von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003490
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003491#: e2fsck/util.c:475 e2fsck/util.c:488
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003492#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003493msgid "while writing inode %lu in %s"
3494msgstr "beim Schreiben von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003495
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003496#: e2fsck/util.c:637
Philipp Thomas720e6362008-06-21 14:06:00 -04003497msgid "while allocating zeroizing buffer"
Philipp Thomasab02a742014-07-09 23:13:30 -04003498msgstr "beim Reservieren eines Puffers zum Nullen"
Philipp Thomas720e6362008-06-21 14:06:00 -04003499
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003500#: e2fsck/util.c:785
Theodore Ts'obd386982015-05-17 20:34:58 -04003501msgid ""
3502"UNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is "
3503"running.\n"
3504msgstr ""
3505"UNERWARTETE INKONSISTENZ: das Dateisystem wird verändert, während fsck "
3506"läuft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003507
Theodore Ts'obd386982015-05-17 20:34:58 -04003508#: misc/badblocks.c:72
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003509msgid "done \n"
3510msgstr "erledigt \n"
3511
Theodore Ts'obd386982015-05-17 20:34:58 -04003512#: misc/badblocks.c:97
Philipp Thomas68801282008-07-17 11:47:00 -04003513#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003514msgid ""
3515"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003516" [-c blocks_at_once] [-d delay_factor_between_reads] [-e "
3517"max_bad_blocks]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003518" [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
3519" device [last_block [first_block]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003520msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003521"Aufruf: %s [-b Blockgröße] [-i Eingabedatei] [-o Ausgabedatei] [-svwnf]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003522" [-c Blöcke_auf_einmal] [-d "
3523"Verzögerungsfaktor_zwischen_Lesedurchgängen]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003524" [-e maximale_defekte_Blöcke] [-p Anzahl_Durchgänge]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003525" [-t Testmuster [-t Testmuster [...]]]\n"
3526" Gerät [letzter_Block [Startblock]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003527
Theodore Ts'obd386982015-05-17 20:34:58 -04003528#: misc/badblocks.c:108
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003529#, c-format
3530msgid ""
3531"%s: The -n and -w options are mutually exclusive.\n"
3532"\n"
3533msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003534"%s: Die Optionen -n und -w schließen sich gegenseitig aus.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003535"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003536
Theodore Ts'obd386982015-05-17 20:34:58 -04003537#: misc/badblocks.c:223
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003538#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003539msgid "%6.2f%% done, %s elapsed. (%d/%d/%d errors)"
3540msgstr "%6.2f%% erledigt, %s verstrichen. (%d/%d/%d Fehler)"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003541
Theodore Ts'obd386982015-05-17 20:34:58 -04003542#: misc/badblocks.c:328
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003543msgid "Testing with random pattern: "
Philipp Thomas37be3822015-05-17 20:21:39 -04003544msgstr "Es wird mit zufälligen Mustern getestet: "
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003545
Theodore Ts'obd386982015-05-17 20:34:58 -04003546#: misc/badblocks.c:346
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003547msgid "Testing with pattern 0x"
Philipp Thomas37be3822015-05-17 20:21:39 -04003548msgstr "Es wird getestet Mit Muster 0x"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003549
Theodore Ts'obd386982015-05-17 20:34:58 -04003550#: misc/badblocks.c:378 misc/badblocks.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003551msgid "during seek"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003552msgstr "beim Suchen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003553
Theodore Ts'obd386982015-05-17 20:34:58 -04003554#: misc/badblocks.c:389
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003555#, c-format
3556msgid "Weird value (%ld) in do_read\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003557msgstr "Merkwürdiger Wert (%ld) in do_read\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003558
Theodore Ts'obd386982015-05-17 20:34:58 -04003559#: misc/badblocks.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003560msgid "during ext2fs_sync_device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003561msgstr "während ext2fs_sync_device"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003562
Theodore Ts'obd386982015-05-17 20:34:58 -04003563#: misc/badblocks.c:496 misc/badblocks.c:758
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003564msgid "while beginning bad block list iteration"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003565msgstr "beim Beginn des „Bad Block“-Listendurchlaufs"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003566
Theodore Ts'obd386982015-05-17 20:34:58 -04003567#: misc/badblocks.c:511 misc/badblocks.c:611 misc/badblocks.c:769
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003568msgid "while allocating buffers"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003569msgstr "beim Zuweisen von Puffern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003570
Theodore Ts'obd386982015-05-17 20:34:58 -04003571#: misc/badblocks.c:515
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003572#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003573msgid "Checking blocks %lu to %lu\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003574msgstr "Es wird von Block %lu bis %lu geprüft\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003575
Theodore Ts'obd386982015-05-17 20:34:58 -04003576#: misc/badblocks.c:520
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003577msgid "Checking for bad blocks in read-only mode\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003578msgstr "Es wird nach defekten Blöcken im Nur-Lesen-Modus gesucht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003579
Theodore Ts'obd386982015-05-17 20:34:58 -04003580#: misc/badblocks.c:529
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003581msgid "Checking for bad blocks (read-only test): "
Philipp Thomas37be3822015-05-17 20:21:39 -04003582msgstr "Es wird nach defekten Blöcken gsucht (Nur-Lesen-Modus):"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003583
Theodore Ts'obd386982015-05-17 20:34:58 -04003584#: misc/badblocks.c:536 misc/badblocks.c:643 misc/badblocks.c:685
3585#: misc/badblocks.c:832
Philipp Thomas720e6362008-06-21 14:06:00 -04003586msgid "Too many bad blocks, aborting test\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003587msgstr "Zu viele defekte Blöcke, Test wird abgebrochen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003588
Theodore Ts'obd386982015-05-17 20:34:58 -04003589#: misc/badblocks.c:618
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003590msgid "Checking for bad blocks in read-write mode\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003591msgstr "Es wird nach defekten Blöcken gesucht (Lesen+Schreiben-Modus)\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003592
Theodore Ts'obd386982015-05-17 20:34:58 -04003593#: misc/badblocks.c:620 misc/badblocks.c:782
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003594#, c-format
3595msgid "From block %lu to %lu\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003596msgstr "Von Block %lu bis %lu\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003597
Theodore Ts'obd386982015-05-17 20:34:58 -04003598#: misc/badblocks.c:675
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003599msgid "Reading and comparing: "
3600msgstr "Lesen und Vergleichen:"
3601
Theodore Ts'obd386982015-05-17 20:34:58 -04003602#: misc/badblocks.c:781
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003603msgid "Checking for bad blocks in non-destructive read-write mode\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003604msgstr ""
3605"Es wird nach defekten Blöcken im zerstörungsfreien Lesen+Schreiben-Modus "
3606"gesucht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003607
Theodore Ts'obd386982015-05-17 20:34:58 -04003608#: misc/badblocks.c:787
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003609msgid "Checking for bad blocks (non-destructive read-write test)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003610msgstr ""
3611"Es wird nach defekten Blöcken gesucht (zerstörungsfreier Lesen+Schreiben-"
3612"Modus)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003613
Theodore Ts'obd386982015-05-17 20:34:58 -04003614#: misc/badblocks.c:794
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003615msgid ""
3616"\n"
3617"Interrupt caught, cleaning up\n"
3618msgstr ""
3619"\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003620"Unterbrechung empfangen, es wird aufgeräumt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003621
Theodore Ts'obd386982015-05-17 20:34:58 -04003622#: misc/badblocks.c:877
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003623#, c-format
3624msgid "during test data write, block %lu"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003625msgstr "beim Schreiben der Test-Daten; Block %lu"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003626
Theodore Ts'obd386982015-05-17 20:34:58 -04003627#: misc/badblocks.c:998 misc/util.c:321
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003628#, c-format
3629msgid "%s is mounted; "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003630msgstr "%s ist eingehängt; "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003631
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003632#: misc/badblocks.c:1000
Theodore Ts'obd386982015-05-17 20:34:58 -04003633msgid "badblocks forced anyway. Hope /etc/mtab is incorrect.\n"
3634msgstr ""
3635"Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
3636
3637#: misc/badblocks.c:1005
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003638msgid "it's not safe to run badblocks!\n"
3639msgstr "es ist zu unsicher, Badblocks zu starten!\n"
3640
Theodore Ts'obd386982015-05-17 20:34:58 -04003641#: misc/badblocks.c:1010 misc/util.c:332
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003642#, c-format
3643msgid "%s is apparently in use by the system; "
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003644msgstr "%s wird offensichtlich vom System genutzt; "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003645
Theodore Ts'obd386982015-05-17 20:34:58 -04003646#: misc/badblocks.c:1013
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003647msgid "badblocks forced anyway.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003648msgstr ""
3649"Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003650
Theodore Ts'obd386982015-05-17 20:34:58 -04003651#: misc/badblocks.c:1033
Philipp Thomas68801282008-07-17 11:47:00 -04003652#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04003653msgid "invalid %s - %s"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003654msgstr "ungültige %s - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04003655
Theodore Ts'obd386982015-05-17 20:34:58 -04003656#: misc/badblocks.c:1127
3657#, c-format
3658msgid "Too big max bad blocks count %u - maximum is %u"
3659msgstr ""
3660
3661#: misc/badblocks.c:1154
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003662#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003663msgid "can't allocate memory for test_pattern - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003664msgstr "Speicher für Testmuster kann nicht reserviert werden - %s"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003665
Theodore Ts'obd386982015-05-17 20:34:58 -04003666#: misc/badblocks.c:1184
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003667msgid "Maximum of one test_pattern may be specified in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003668msgstr "Es darf im Nur-Lesen-Modus nur ein Testmuster angegeben werden"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003669
Theodore Ts'obd386982015-05-17 20:34:58 -04003670#: misc/badblocks.c:1190
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003671msgid "Random test_pattern is not allowed in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003672msgstr "Zufälliges Testmuster ist im Nur-Lesen-Modus nicht erlaubt"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003673
Theodore Ts'obd386982015-05-17 20:34:58 -04003674#: misc/badblocks.c:1204
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003675msgid ""
3676"Couldn't determine device size; you must specify\n"
3677"the size manually\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003678msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003679"Größe des Gerätes ist nicht feststellbar.\n"
3680"Sie müssen sie manuell angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003681
Theodore Ts'obd386982015-05-17 20:34:58 -04003682#: misc/badblocks.c:1210
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003683msgid "while trying to determine device size"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003684msgstr "beim Versuch, die Gerätegröße festzustellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003685
Theodore Ts'obd386982015-05-17 20:34:58 -04003686#: misc/badblocks.c:1215
Philipp Thomas68801282008-07-17 11:47:00 -04003687msgid "last block"
3688msgstr "letzter Block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003689
Theodore Ts'obd386982015-05-17 20:34:58 -04003690#: misc/badblocks.c:1221
Philipp Thomas68801282008-07-17 11:47:00 -04003691msgid "first block"
3692msgstr "erster Block"
3693
Theodore Ts'obd386982015-05-17 20:34:58 -04003694#: misc/badblocks.c:1224
Philipp Thomasb93349a2014-05-31 13:32:39 -04003695#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003696msgid "invalid starting block (%llu): must be less than %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003697msgstr "Ungültiger Startblock (%llu): er muss kleiner als %llu sein"
Philipp Thomas68801282008-07-17 11:47:00 -04003698
Theodore Ts'obd386982015-05-17 20:34:58 -04003699#: misc/badblocks.c:1231
Philipp Thomasb93349a2014-05-31 13:32:39 -04003700#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003701msgid "invalid end block (%llu): must be 32-bit value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003702msgstr "Ungültiger Endblock (%llu): er muss ein 32-Bit Wert sein"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003703
Theodore Ts'obd386982015-05-17 20:34:58 -04003704#: misc/badblocks.c:1287
Theodore Ts'o197abba2005-06-20 18:00:23 -04003705msgid "while creating in-memory bad blocks list"
Philipp Thomasab02a742014-07-09 23:13:30 -04003706msgstr "beim Erstellen der Bad-Block-Liste im Speicher"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003707
Theodore Ts'obd386982015-05-17 20:34:58 -04003708#: misc/badblocks.c:1296
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003709msgid "input file - bad format"
Philipp Thomasab02a742014-07-09 23:13:30 -04003710msgstr "die Eingabedatei hat ein ungültiges Format"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003711
Theodore Ts'obd386982015-05-17 20:34:58 -04003712#: misc/badblocks.c:1304 misc/badblocks.c:1313
Theodore Ts'o197abba2005-06-20 18:00:23 -04003713msgid "while adding to in-memory bad block list"
Philipp Thomasab02a742014-07-09 23:13:30 -04003714msgstr "beim Hinzufügen zur Bad-Block-Liste im Speicher"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003715
Theodore Ts'obd386982015-05-17 20:34:58 -04003716#: misc/badblocks.c:1338
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003717#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003718msgid "Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"
3719msgstr "Durchgang beendet, %u defekte Blöcke gefunden. (%d/%d/%d Fehler)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003720
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003721#: misc/chattr.c:86
Philipp Thomasab02a742014-07-09 23:13:30 -04003722#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003723msgid "Usage: %s [-RVf] [-+=aAcCdDeijsStTu] [-v version] files...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003724msgstr "Aufruf: %s [-RVf] [-+=AaCcDdeijsStTu] [-v Version] Dateien...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003725
Philipp Thomasd0275172013-01-15 23:30:35 -05003726#: misc/chattr.c:155
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003727#, c-format
3728msgid "bad version - %s\n"
3729msgstr "falsche Version - %s\n"
3730
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003731#: misc/chattr.c:201 misc/lsattr.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003732#, c-format
3733msgid "while trying to stat %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003734msgstr "beim Auslesen des Status von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003735
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003736#: misc/chattr.c:208
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003737#, c-format
3738msgid "while reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003739msgstr "beim Lesens der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003740
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003741#: misc/chattr.c:213 misc/chattr.c:225
Philipp Thomas77c871a2010-04-19 16:59:02 -04003742#, c-format
3743msgid "Flags of %s set as "
3744msgstr "Flags von %s wie folgt gesetzt: "
3745
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003746#: misc/chattr.c:234
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003747#, c-format
3748msgid "while setting flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003749msgstr "beim Setzen der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003750
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003751#: misc/chattr.c:242
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003752#, c-format
3753msgid "Version of %s set as %lu\n"
3754msgstr "Version von %s gesetzt auf %lu\n"
3755
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003756#: misc/chattr.c:246
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003757#, c-format
3758msgid "while setting version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003759msgstr "beim Setzen der Version in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003760
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003761#: misc/chattr.c:267
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003762msgid "Couldn't allocate path variable in chattr_dir_proc"
Philipp Thomasab02a742014-07-09 23:13:30 -04003763msgstr "Pfad-Variable in chattr_dir_proc konnte nicht reserviert werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003764
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003765#: misc/chattr.c:307
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003766msgid "= is incompatible with - and +\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003767msgstr "= ist inkompatibel zu - und +\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003768
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003769#: misc/chattr.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003770msgid "Must use '-v', =, - or +\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003771msgstr "„-v“, =, - oder + verwenden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003772
Eric Sandeen032eafe2012-07-28 17:48:36 -04003773#: misc/dumpe2fs.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003774#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003775msgid "Usage: %s [-bfhixV] [-o superblock=<num>] [-o blocksize=<num>] device\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003776msgstr ""
3777"Aufruf: %s [-bfhixV] [-o superblock=<Nummer>] [-o blocksize=<Nummer>] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003778
Eric Sandeen032eafe2012-07-28 17:48:36 -04003779#: misc/dumpe2fs.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003780msgid "blocks"
3781msgstr "Blöcke"
3782
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003783#: misc/dumpe2fs.c:169
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003784msgid "clusters"
3785msgstr "Cluster"
3786
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003787#: misc/dumpe2fs.c:197
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003788#, c-format
3789msgid "Group %lu: (Blocks "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003790msgstr "Gruppe %lu: (Blöcke "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003791
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003792#: misc/dumpe2fs.c:205
Philipp Thomas720e6362008-06-21 14:06:00 -04003793#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003794msgid " Checksum 0x%04x"
Philipp Thomasab02a742014-07-09 23:13:30 -04003795msgstr " Prüfsumme 0x%04x"
Philipp Thomas720e6362008-06-21 14:06:00 -04003796
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003797#: misc/dumpe2fs.c:207
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003798#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003799msgid " (EXPECTED 0x%04x)"
3800msgstr " (0x%04x ERWARTET)"
3801
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003802#: misc/dumpe2fs.c:208
Philipp Thomasedc733d2012-04-22 15:38:42 -04003803#, c-format
3804msgid ", unused inodes %u\n"
3805msgstr ", ungenutzte Inodes %u\n"
3806
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003807#: misc/dumpe2fs.c:213
Philipp Thomasedc733d2012-04-22 15:38:42 -04003808#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003809msgid " %s superblock at "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003810msgstr " %s Superblock in "
3811
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003812#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003813msgid "Primary"
Philipp Thomasab02a742014-07-09 23:13:30 -04003814msgstr "Primär"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003815
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003816#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003817msgid "Backup"
Philipp Thomasab02a742014-07-09 23:13:30 -04003818msgstr "Datensicherung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003819
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003820#: misc/dumpe2fs.c:218
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003821msgid ", Group descriptors at "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003822msgstr ", Gruppendeskriptoren in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003823
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003824#: misc/dumpe2fs.c:222
Theodore Ts'obc759702005-05-09 20:40:55 -04003825msgid ""
3826"\n"
3827" Reserved GDT blocks at "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003828msgstr ""
3829"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003830" reservierte GDT-Blöcke bei "
Theodore Ts'obc759702005-05-09 20:40:55 -04003831
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003832#: misc/dumpe2fs.c:229
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003833msgid " Group descriptor at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003834msgstr " Gruppendeskriptor in "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003835
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003836#: misc/dumpe2fs.c:235
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003837msgid " Block bitmap at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003838msgstr " Block-Bitmap in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003839
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003840#: misc/dumpe2fs.c:239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003841msgid ", Inode bitmap at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003842msgstr ", Inode-Bitmap in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003843
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003844#: misc/dumpe2fs.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003845msgid ""
3846"\n"
3847" Inode table at "
3848msgstr ""
3849"\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003850" Inode-Tabelle in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003851
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003852#: misc/dumpe2fs.c:249
Philipp Thomas68801282008-07-17 11:47:00 -04003853#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003854msgid ""
3855"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003856" %u free %s, %u free inodes, %u directories%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003857msgstr ""
3858"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003859" %u freie %s, %u freie Inodes, %u Verzeichnisse%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003860
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003861#: misc/dumpe2fs.c:256
Philipp Thomas720e6362008-06-21 14:06:00 -04003862#, c-format
3863msgid ", %u unused inodes\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003864msgstr ", %u ungenutzte Inodes\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003865
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003866#: misc/dumpe2fs.c:259
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003867msgid " Free blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003868msgstr " Freie Blöcke: "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003869
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003870#: misc/dumpe2fs.c:274
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003871msgid " Free inodes: "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003872msgstr " Freie Inodes: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003873
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003874#: misc/dumpe2fs.c:310
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003875msgid "while printing bad block list"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003876msgstr "beim Ausgeben der „Bad Block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003877
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003878#: misc/dumpe2fs.c:316
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003879#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003880msgid "Bad blocks: %u"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003881msgstr "Bad Blocks: %u"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003882
Theodore Ts'obd386982015-05-17 20:34:58 -04003883#: misc/dumpe2fs.c:345 misc/tune2fs.c:347
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003884msgid "while reading journal inode"
3885msgstr "beim Lesen des Journal-Inodes"
3886
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003887#: misc/dumpe2fs.c:351
Philipp Thomas77c871a2010-04-19 16:59:02 -04003888msgid "while opening journal inode"
3889msgstr "beim Lesen des Journal-Inodes"
3890
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003891#: misc/dumpe2fs.c:357
Philipp Thomas77c871a2010-04-19 16:59:02 -04003892msgid "while reading journal super block"
3893msgstr "beim Lesen des Journal-Superblocks"
3894
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003895#: misc/dumpe2fs.c:364
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003896msgid "Journal superblock magic number invalid!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003897msgstr "Die magische Zahl im Journal-Superblock ist ungültig!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003898
3899#: misc/dumpe2fs.c:367
Philipp Thomas77c871a2010-04-19 16:59:02 -04003900msgid "Journal features: "
3901msgstr "Jounaleigenschaften: "
3902
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003903#: misc/dumpe2fs.c:380
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003904msgid "Journal size: "
Philipp Thomasab02a742014-07-09 23:13:30 -04003905msgstr "Journalgröße: "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003906
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003907#: misc/dumpe2fs.c:391
Philipp Thomas77c871a2010-04-19 16:59:02 -04003908#, c-format
3909msgid ""
3910"Journal length: %u\n"
3911"Journal sequence: 0x%08x\n"
3912"Journal start: %u\n"
3913msgstr ""
3914"Journal-Länge: %u\n"
3915"Journal-Sequenz: 0x%08x\n"
3916"Journal-Start: %u\n"
3917
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003918#: misc/dumpe2fs.c:398
Philipp Thomasd0275172013-01-15 23:30:35 -05003919#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003920msgid "Journal errno: %d\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05003921msgstr "Jounal-Fehlernummer: %d\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003922
Philipp Thomas37be3822015-05-17 20:21:39 -04003923#: misc/dumpe2fs.c:415 misc/tune2fs.c:196
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003924msgid "while reading journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003925msgstr "beim Lesen des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003926
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003927#: misc/dumpe2fs.c:423
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003928msgid "Couldn't find journal superblock magic numbers"
Theodore Ts'obd386982015-05-17 20:34:58 -04003929msgstr ""
3930"Die magische Nummer des Journal-Superblocks konnte nicht gefunden werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003931
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003932#: misc/dumpe2fs.c:427
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003933#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003934msgid ""
3935"\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003936"Journal block size: %u\n"
3937"Journal length: %u\n"
3938"Journal first block: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003939"Journal sequence: 0x%08x\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003940"Journal start: %u\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003941"Journal number of users: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003942msgstr ""
3943"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003944"Journal-Blockgröße: %u\n"
3945"Journal-Länge: %u\n"
3946"Journal-Startblock: %u\n"
3947"Journal-Sequenz: 0x%08x\n"
3948"Journal-Start: %u\n"
3949"Journal-Benutzeranzahl: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003950
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003951#: misc/dumpe2fs.c:440
Theodore Ts'o197abba2005-06-20 18:00:23 -04003952#, c-format
3953msgid "Journal users: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003954msgstr "Jounalbenutzer: %s\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04003955
Theodore Ts'obd386982015-05-17 20:34:58 -04003956#: misc/dumpe2fs.c:456 misc/mke2fs.c:743 misc/tune2fs.c:1211
Theodore Ts'o8f741372008-02-28 21:47:05 -05003957msgid "Couldn't allocate memory to parse options!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003958msgstr ""
3959"Speicher zum Verarbeiten der Optionen konnte nicht reserviert werden!\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003960
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003961#: misc/dumpe2fs.c:482
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003962#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003963msgid "Invalid superblock parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003964msgstr "Ungültiger Superblock-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003965
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003966#: misc/dumpe2fs.c:497
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003967#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003968msgid "Invalid blocksize parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003969msgstr "Ungültiger Blockgrößen-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003970
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003971#: misc/dumpe2fs.c:508
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003972#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003973msgid ""
3974"\n"
3975"Bad extended option(s) specified: %s\n"
3976"\n"
3977"Extended options are separated by commas, and may take an argument which\n"
3978"\tis set off by an equals ('=') sign.\n"
3979"\n"
3980"Valid extended options are:\n"
3981"\tsuperblock=<superblock number>\n"
3982"\tblocksize=<blocksize>\n"
3983msgstr ""
3984"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003985"Falsche erweiterte Optionen angegeben: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003986"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003987"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003988"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003989"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003990"Gültige erweiterte Optionen sind:\n"
3991"\tsuperblock=<Nummer des Spuperblocks>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003992"\tblocksize=<Blockgröße>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003993"\n"
3994
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003995#: misc/dumpe2fs.c:568 misc/mke2fs.c:1734
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003996#, c-format
3997msgid "\tUsing %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003998msgstr "\t%s wird benutzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003999
Theodore Ts'obd386982015-05-17 20:34:58 -04004000#: misc/dumpe2fs.c:606 misc/e2image.c:1582 misc/tune2fs.c:2060
4001#: resize/main.c:319
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004002msgid "Couldn't find valid filesystem superblock.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004003msgstr "Es kann kein gültiger Dateisystem-Superblock gefunden werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004004
Philipp Thomas37be3822015-05-17 20:21:39 -04004005#: misc/dumpe2fs.c:634
Theodore Ts'of9e6df42004-05-04 16:19:13 -04004006#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05004007msgid ""
4008"\n"
4009"%s: %s: error reading bitmaps: %s\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004010msgstr ""
4011"\n"
4012"%s: %s: Fehler beim Lesen von Bitmaps: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004013
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004014#: misc/e2image.c:101
Philipp Thomasb93349a2014-05-31 13:32:39 -04004015#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004016msgid "Usage: %s [ -r|Q ] [ -fr ] device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004017msgstr "Aufruf: %s [-r|Q ] [ -fr ] Gerätedatei Abbild-Datei\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004018
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004019#: misc/e2image.c:103
Philipp Thomasb93349a2014-05-31 13:32:39 -04004020#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004021msgid " %s -I device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004022msgstr " %s [-I] Gerätedatei Abbild-Datei\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004023
4024#: misc/e2image.c:104
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004025#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04004026msgid ""
4027" %s -ra [ -cfnp ] [ -o src_offset ] [ -O dest_offset ] src_fs "
4028"[ dest_fs ]\n"
4029msgstr ""
4030" %s -ra [ -cfnp ] [ -o Quelloffset ] [ -O Zieloffset ] Quell_Fs "
4031"[ Ziel_fs ]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004032
4033#: misc/e2image.c:169 misc/e2image.c:576 misc/e2image.c:582
4034#: misc/e2image.c:1178
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004035msgid "while allocating buffer"
4036msgstr "beim Zuweisen von Puffern"
4037
4038#: misc/e2image.c:174
Philipp Thomasb93349a2014-05-31 13:32:39 -04004039#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004040msgid "Writing block %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004041msgstr "Block %llu wird geschrieben\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004042
4043#: misc/e2image.c:188
Philipp Thomasb93349a2014-05-31 13:32:39 -04004044#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004045msgid "error writing block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004046msgstr "Schreibfehler - Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004047
4048#: misc/e2image.c:191
4049msgid "error in generic_write()"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004050msgstr "Fehler in generic_write()"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004051
4052#: misc/e2image.c:208
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004053msgid "Error: header size is bigger than wrt_size\n"
4054msgstr "Fehler: Größe des Headers übersteigt wrt_size\n"
4055
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004056#: misc/e2image.c:213
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004057msgid "Couldn't allocate header buffer\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004058msgstr "Header-Puffer konnte nicht zugewiesen werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004059
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004060#: misc/e2image.c:241
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004061msgid "while writing superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004062msgstr "beim Schreiben des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004063
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004064#: misc/e2image.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004065msgid "while writing inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004066msgstr "beim Schreiben der Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004067
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004068#: misc/e2image.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004069msgid "while writing block bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004070msgstr "beim Schreiben der Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004071
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004072#: misc/e2image.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004073msgid "while writing inode bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004074msgstr "beim Schreiben der Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004075
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004076#: misc/e2image.c:502
Philipp Thomasb93349a2014-05-31 13:32:39 -04004077#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004078msgid "Corrupt directory block %llu: bad rec_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004079msgstr "Defekter Verzeichnisblock %llu: ungültige rec_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004080
4081#: misc/e2image.c:514
Philipp Thomasb93349a2014-05-31 13:32:39 -04004082#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004083msgid "Corrupt directory block %llu: bad name_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004084msgstr "Defekter Verzeichnisblock %llu: ungültige name_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004085
4086#: misc/e2image.c:555
Philipp Thomasb93349a2014-05-31 13:32:39 -04004087#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004088msgid "%llu / %llu blocks (%d%%)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004089msgstr "%llu / %llu Blöcke (%d%%)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004090
4091#: misc/e2image.c:586 misc/e2image.c:626
4092msgid "Copying "
Philipp Thomasb93349a2014-05-31 13:32:39 -04004093msgstr "Kopieren "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004094
4095#: misc/e2image.c:623
Theodore Ts'obd386982015-05-17 20:34:58 -04004096msgid ""
4097"Stopping now will destroy the filesystem, interrupt again if you are sure\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004098msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004099"Jetzt anzuhalten würde das Dateisystem zerstören. Wenn Sie sicher sind,\n"
4100"unterbrechen Sie noch einmal.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004101
4102#: misc/e2image.c:649
4103#, c-format
4104msgid " %s remaining at %.2f MB/s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004105msgstr " %s bleibt bei %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004106
4107#: misc/e2image.c:661 misc/e2image.c:1188
Philipp Thomasb93349a2014-05-31 13:32:39 -04004108#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004109msgid "error reading block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004110msgstr "Fehler beim Lesen von Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004111
4112#: misc/e2image.c:715
4113#, c-format
4114msgid "Copied %llu / %llu blocks (%d%%) in %s "
Philipp Thomasb93349a2014-05-31 13:32:39 -04004115msgstr "%llu / %llu Blöcke (%d%%) wurden in %s kopiert "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004116
4117#: misc/e2image.c:719
4118#, c-format
4119msgid "at %.2f MB/s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004120msgstr "bei %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004121
4122#: misc/e2image.c:755
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004123msgid "while allocating l1 table"
Philipp Thomasab02a742014-07-09 23:13:30 -04004124msgstr "beim Anfordern von Speicher für die l1-Tabelle"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004125
4126#: misc/e2image.c:800
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004127msgid "while allocating l2 cache"
Philipp Thomasab02a742014-07-09 23:13:30 -04004128msgstr "beim Anfordern von Speicher für den l2-Zwischenspeicher"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004129
4130#: misc/e2image.c:823
Theodore Ts'obd386982015-05-17 20:34:58 -04004131msgid ""
4132"Warning: There are still tables in the cache while putting the cache, data "
4133"will be lost so the image may not be valid.\n"
4134msgstr ""
4135"Warnung: Beim Schreiben des Zwischenspeichers befinden sich immer noch "
4136"Tabellen in ihm. Damit gehen Daten verloren und das Abbild ist eventuell "
4137"ungültig.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004138
4139#: misc/e2image.c:1145
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004140msgid "while allocating ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004141msgstr "beim Reservieren von Speicher für ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004142
4143#: misc/e2image.c:1152
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004144msgid "while initializing ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004145msgstr "beim Initialisieren des ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004146
4147#: misc/e2image.c:1211 misc/e2image.c:1229
4148msgid "Programming error: multiple sequential refcount blocks created!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004149msgstr ""
4150"Programmierfehler: mehrere sequenzielle Refcount-Blöcke wurden erzeugt!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004151
4152#: misc/e2image.c:1269
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004153msgid "while allocating block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004154msgstr "beim Reservieren von Speicher für die Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004155
4156#: misc/e2image.c:1278
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004157msgid "while allocating scramble block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004158msgstr "beim Reservieren von Speicher für die verwürfelte Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004159
4160#: misc/e2image.c:1285
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004161msgid "Scanning inodes...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004162msgstr "Inodes werden eingelesen …\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004163
4164#: misc/e2image.c:1297
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004165msgid "Can't allocate block buffer"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004166msgstr "Es konnte kein Blockpuffer reserviert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004167
4168#: misc/e2image.c:1336 misc/e2image.c:1350
Philipp Thomasb93349a2014-05-31 13:32:39 -04004169#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004170msgid "while iterating over inode %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004171msgstr "beim Iterieren über Inode %u"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004172
4173#: misc/e2image.c:1381
4174msgid "Raw and qcow2 images cannot be installed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004175msgstr "Rohe und Qcow2-Abbilder können nicht installiert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004176
4177#: misc/e2image.c:1403
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004178msgid "error reading bitmaps"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004179msgstr "Fehler beim Lesen der Bitmaps"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004180
4181#: misc/e2image.c:1415
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004182msgid "while opening device file"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004183msgstr "beim Öffnen der Gerätedatei"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004184
4185#: misc/e2image.c:1426
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004186msgid "while restoring the image table"
4187msgstr "beim Schreiben der Inode-Tabelle"
4188
4189#: misc/e2image.c:1523
4190msgid "-a option can only be used with raw or QCOW2 images."
Philipp Thomasab02a742014-07-09 23:13:30 -04004191msgstr "Die Option „-a“ kann nur bei Roh- oder QCOW2-Abbildern benutzt werden."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004192
4193#: misc/e2image.c:1529
4194msgid "Offsets are only allowed with raw images."
Philipp Thomasb93349a2014-05-31 13:32:39 -04004195msgstr "Offsets sind nur bei Roh-Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004196
4197#: misc/e2image.c:1534
4198msgid "Move mode is only allowed with raw images."
Philipp Thomasab02a742014-07-09 23:13:30 -04004199msgstr "Verschieben ist nur bei Roh- Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004200
4201#: misc/e2image.c:1539
4202msgid "Move mode requires all data mode."
Philipp Thomasab02a742014-07-09 23:13:30 -04004203msgstr "Der Verschiebemodus erfordert den „Alle Daten“-Modus."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004204
4205#: misc/e2image.c:1549
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004206msgid "checking if mounted"
Philipp Thomasab02a742014-07-09 23:13:30 -04004207msgstr "Prüfung, ob eingehängt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004208
4209#: misc/e2image.c:1556
4210msgid ""
4211"\n"
4212"Running e2image on a R/W mounted filesystem can result in an\n"
4213"inconsistent image which will not be useful for debugging purposes.\n"
4214"Use -f option if you really want to do that.\n"
4215msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004216"\n"
4217"Das Starten von E2image auf einem schreib- und lesbar eingehängten\n"
4218"Dateisystem kann zu einem unvollständigen Abbild führen, welches\n"
4219"unbrauchbar für die Fehlersuche wäre. Verwenden Sie die Option -f, wenn\n"
4220"Sie das wirklich machen wollen.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004221
4222#: misc/e2image.c:1608
4223msgid "QCOW2 image can not be written to the stdout!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004224msgstr ""
4225"Das QCOW2-Abbild kann nicht auf die Standardausgabe geschrieben werden!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004226
4227#: misc/e2image.c:1614
4228msgid "Can not stat output\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004229msgstr "Der Status der Ausgabe lässt sich nicht feststellen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004230
4231#: misc/e2image.c:1624
4232#, c-format
4233msgid "Image (%s) is compressed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004234msgstr "Das Abbild (%s) ist komprimiert\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004235
4236#: misc/e2image.c:1627
4237#, c-format
4238msgid "Image (%s) is encrypted\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004239msgstr "Das Abbild (%s) ist verschlüsselt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004240
4241#: misc/e2image.c:1630
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004242#, c-format
4243msgid "while trying to convert qcow2 image (%s) into raw image (%s)"
Theodore Ts'obd386982015-05-17 20:34:58 -04004244msgstr ""
4245"beim Versuch, das Qcow2-Abbild (%s) in ein Roh-Abbild (%s) zu konvertieren"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004246
4247#: misc/e2image.c:1639
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004248msgid "The -c option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004249msgstr "Die Option „-c“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004250
4251#: misc/e2image.c:1644
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004252msgid "The -c option not supported when writing to stdout\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004253msgstr ""
4254"Die Option „-c“ wird beim Schreiben auf die Standardausgabe nicht "
4255"unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004256
4257#: misc/e2image.c:1651
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004258msgid "while allocating check_buf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004259msgstr "beim Anfordern des Prüfpuffers"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004260
4261#: misc/e2image.c:1657
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004262msgid "The -p option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004263msgstr "Die Option „-p“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004264
4265#: misc/e2image.c:1667
4266#, c-format
4267msgid "%d blocks already contained the data to be copied\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004268msgstr "%d Blöcke enthielten bereits die zu kopierenden Daten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004269
4270#: misc/e2label.c:58
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004271#, c-format
4272msgid "e2label: cannot open %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004273msgstr "e2label: %s kann nicht geöffnet werden.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004274
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004275#: misc/e2label.c:63
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004276#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004277msgid "e2label: cannot seek to superblock\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004278msgstr "e2label: Springen zum Superblock nicht möglich\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004279
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004280#: misc/e2label.c:68
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004281#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004282msgid "e2label: error reading superblock\n"
4283msgstr "e2label: Lesefehler im Superblock\n"
4284
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004285#: misc/e2label.c:72
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004286#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004287msgid "e2label: not an ext2 filesystem\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004288msgstr "e2label: Kein ext2-Dateisystem\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004289
Theodore Ts'obd386982015-05-17 20:34:58 -04004290#: misc/e2label.c:97 misc/tune2fs.c:2225
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004291#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004292msgid "Warning: label too long, truncating.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004293msgstr "Warnung: Name zu lang, wird gekürzt.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004294
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004295#: misc/e2label.c:100
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004296#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004297msgid "e2label: cannot seek to superblock again\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004298msgstr "e2label: Erneutes Springen zum Superblock nicht möglich\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004299
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004300#: misc/e2label.c:105
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004301#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004302msgid "e2label: error writing superblock\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004303msgstr "e2label: Fehler beim Schreiben des Superblocks\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004304
Theodore Ts'obd386982015-05-17 20:34:58 -04004305#: misc/e2label.c:117 misc/tune2fs.c:871
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004306#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004307msgid "Usage: e2label device [newlabel]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004308msgstr "Aufruf: e2label Gerät [neuer_Name]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004309
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004310#: misc/e2undo.c:36
Philipp Thomas720e6362008-06-21 14:06:00 -04004311#, c-format
4312msgid "Usage: %s <transaction file> <filesystem>\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004313msgstr "Aufruf: %s <Transaktionsdatei> <Dateisystem>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004314
Philipp Thomas40771272008-09-07 22:55:25 -04004315#: misc/e2undo.c:52
Philipp Thomas720e6362008-06-21 14:06:00 -04004316msgid "Failed to read the file system data \n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004317msgstr "Die Dateisystemdaten konnten nicht gelesen werden \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004318
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004319#: misc/e2undo.c:62 misc/e2undo.c:83 misc/e2undo.c:108 misc/e2undo.c:206
Philipp Thomas720e6362008-06-21 14:06:00 -04004320#, c-format
4321msgid "Failed tdb_fetch %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004322msgstr "tdb_fetch von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004323
Philipp Thomas40771272008-09-07 22:55:25 -04004324#: misc/e2undo.c:70
Philipp Thomas720e6362008-06-21 14:06:00 -04004325#, c-format
4326msgid "The file system Mount time didn't match %u\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004327msgstr "Die Zeit des letzten Einhängens des Dateisystems war nicht %u\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004328
Philipp Thomas40771272008-09-07 22:55:25 -04004329#: misc/e2undo.c:89
Philipp Thomas720e6362008-06-21 14:06:00 -04004330msgid "The file system UUID didn't match \n"
Philipp Thomas68801282008-07-17 11:47:00 -04004331msgstr "Die UUID des Dateisystems stimmte nicht überein \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004332
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004333#: misc/e2undo.c:163
Philipp Thomas68801282008-07-17 11:47:00 -04004334#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004335msgid "Failed tdb_open %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004336msgstr "tdb_open von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004337
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004338#: misc/e2undo.c:169
Philipp Thomas68801282008-07-17 11:47:00 -04004339#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004340msgid "Error while determining whether %s is mounted.\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004341msgstr "Fehler beim Überprüfen, ob %s eingehängt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004342
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004343#: misc/e2undo.c:175
Philipp Thomas40771272008-09-07 22:55:25 -04004344msgid "e2undo should only be run on unmounted file system\n"
4345msgstr "e2undo sollte nur auf nicht-eingehängten Dateisystemen laufen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004346
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004347#: misc/e2undo.c:184
Philipp Thomas68801282008-07-17 11:47:00 -04004348#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004349msgid "Failed to open %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004350msgstr "%s konnte nicht geöffnet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004351
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004352#: misc/e2undo.c:210
Philipp Thomas720e6362008-06-21 14:06:00 -04004353#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004354msgid "Replayed transaction of size %zd at location %llu\n"
4355msgstr "Zurückgespielte Transaktion der Größe %zd an Position %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004356
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004357#: misc/e2undo.c:216
Philipp Thomas720e6362008-06-21 14:06:00 -04004358#, c-format
4359msgid "Failed write %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004360msgstr "Schreiben von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004361
Eric Sandeen032eafe2012-07-28 17:48:36 -04004362#: misc/fsck.c:343
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004363#, c-format
4364msgid "WARNING: couldn't open %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004365msgstr "WARNUNG: %s konnte nicht geöffnet werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004366
Eric Sandeen032eafe2012-07-28 17:48:36 -04004367#: misc/fsck.c:353
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004368#, c-format
4369msgid "WARNING: bad format on line %d of %s\n"
4370msgstr "WARNUNG: falsches Format in Zeile %d von %s\n"
4371
Eric Sandeen032eafe2012-07-28 17:48:36 -04004372#: misc/fsck.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004373msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004374"WARNING: Your /etc/fstab does not contain the fsck passno\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004375"\tfield. I will kludge around things for you, but you\n"
4376"\tshould fix your /etc/fstab file as soon as you can.\n"
4377"\n"
4378msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004379"WARNUNG: Ihre /etc/fstab enthält keine Angabe darüber, wann\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004380"\tdas Dateisystem geprüft werden soll. Dies wird\n"
4381"\tignoriert, aber Sie sollten Ihre /etc/fstab so schnell\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004382"\twie möglich korrigieren.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004383"\n"
4384
Eric Sandeen032eafe2012-07-28 17:48:36 -04004385#: misc/fsck.c:478
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004386#, c-format
4387msgid "fsck: %s: not found\n"
4388msgstr "fsck: %s: nicht gefunden\n"
4389
Eric Sandeen032eafe2012-07-28 17:48:36 -04004390#: misc/fsck.c:594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004391#, c-format
4392msgid "%s: wait: No more child process?!?\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004393msgstr "%s: wait: kein Kindprozess mehr?!?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004394
Eric Sandeen032eafe2012-07-28 17:48:36 -04004395#: misc/fsck.c:616
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004396#, c-format
4397msgid "Warning... %s for device %s exited with signal %d.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004398msgstr "Warnung... %s für Gerät %s wurde mit Signal %d beendet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004399
Eric Sandeen032eafe2012-07-28 17:48:36 -04004400#: misc/fsck.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004401#, c-format
4402msgid "%s %s: status is %x, should never happen.\n"
4403msgstr "%s %s: Status ist %x, sollte nie vorkommen.\n"
4404
Eric Sandeen032eafe2012-07-28 17:48:36 -04004405#: misc/fsck.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004406#, c-format
4407msgid "Finished with %s (exit status %d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004408msgstr "Beendet mit %s (Exit-Status %d)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004409
Eric Sandeen032eafe2012-07-28 17:48:36 -04004410#: misc/fsck.c:721
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004411#, c-format
4412msgid "%s: Error %d while executing fsck.%s for %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004413msgstr "%s: Fehler %d bei Ausführung von fsck.%s für %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004414
Eric Sandeen032eafe2012-07-28 17:48:36 -04004415#: misc/fsck.c:742
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004416msgid ""
4417"Either all or none of the filesystem types passed to -t must be prefixed\n"
4418"with 'no' or '!'.\n"
4419msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004420"Bei -t müssen entweder allen oder keinem Dateisystem ein „no“ bzw. „!“\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004421"vorangestellt werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004422
Eric Sandeen032eafe2012-07-28 17:48:36 -04004423#: misc/fsck.c:761
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004424msgid "Couldn't allocate memory for filesystem types\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004425msgstr "Speicher für Dateisystemtypen kann nicht reserviert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004426
Eric Sandeen032eafe2012-07-28 17:48:36 -04004427#: misc/fsck.c:884
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004428#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04004429msgid ""
4430"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
4431"number\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004432msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004433"%s: Ungültige Zeile in /etc/fstab wird übersprungen: bind mount mit\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004434" Durchgangsnummer für fsck, die nicht Null ist\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004435
Eric Sandeen032eafe2012-07-28 17:48:36 -04004436#: misc/fsck.c:911
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004437#, c-format
4438msgid "fsck: cannot check %s: fsck.%s not found\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004439msgstr "fsck: %s kann nicht überprüft werden: fsck.%s nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004440
Eric Sandeen032eafe2012-07-28 17:48:36 -04004441#: misc/fsck.c:967
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004442msgid "Checking all file systems.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004443msgstr "Alle Dateisysteme werden überprüft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004444
Eric Sandeen032eafe2012-07-28 17:48:36 -04004445#: misc/fsck.c:1058
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004446#, c-format
4447msgid "--waiting-- (pass %d)\n"
4448msgstr "--warten-- (Durchgang %d)\n"
4449
Eric Sandeen032eafe2012-07-28 17:48:36 -04004450#: misc/fsck.c:1078
Theodore Ts'obd386982015-05-17 20:34:58 -04004451msgid ""
4452"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
4453msgstr ""
4454"Aufruf: fsck [-AMNPRTV] [ -C [ fd ] ] [-t Datesystemtyp] [FS-Optionen] "
4455"[Dateisystem...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004456
Eric Sandeen032eafe2012-07-28 17:48:36 -04004457#: misc/fsck.c:1120
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004458#, c-format
4459msgid "%s: too many devices\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004460msgstr "%s: zu viele Geräte\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004461
Eric Sandeen032eafe2012-07-28 17:48:36 -04004462#: misc/fsck.c:1153 misc/fsck.c:1239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004463#, c-format
4464msgid "%s: too many arguments\n"
4465msgstr "%s: zu viele Argumente\n"
4466
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004467#: misc/lsattr.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004468#, c-format
4469msgid "Usage: %s [-RVadlv] [files...]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004470msgstr "Aufruf: %s [-RVadlv] [Dateien...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004471
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004472#: misc/lsattr.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004473#, c-format
4474msgid "While reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004475msgstr "Beim Lesen der Flags von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004476
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004477#: misc/lsattr.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004478#, c-format
4479msgid "While reading version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004480msgstr "Beim Lesen der Version von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004481
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004482#: misc/mke2fs.c:123
Philipp Thomas77c871a2010-04-19 16:59:02 -04004483#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004484msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004485"Usage: %s [-c|-l filename] [-b block-size] [-C cluster-size]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004486"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004487"\t[-G flex-group-size] [-N number-of-inodes]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004488"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004489"\t[-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004490"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004491"\t[-t fs-type] [-T usage-type ] [-U UUID] [-jnqvDFKSV] device [blocks-"
4492"count]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004493msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004494"Aufruf: %s [-c|-l Dateiname] [-b Blockgröße] [-C Clustergröße]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004495"\t[-i Bytes-pro-Inode] [-I Inode-Größe] [-J Journal-Optionen]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004496"\t[-G Größe_der_Metagruppe] [-N Anzahl_der_Inodes]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004497"\t[-m Reservierte-Blöcke-Prozentsatz] [-o Erzeuger-OS]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004498"\t[-g Blöcke-pro-Gruppe] [-L Volume-Label]\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04004499"\t[-M letztes-eingehängtes-Verzeichnis] [-O Eigenschaft[,...]]\n"
4500"\t[-r fs-Revision] [-E erweiterte-Option[,...]]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004501"\t[-t Dateisystemtyp] [-T Verwendungs-Typ ] [-U UUID] [-jnqvDFKSV]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004502"\tGerät [Block-Anzahl]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004503
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004504#: misc/mke2fs.c:252
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004505#, c-format
4506msgid "Running command: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004507msgstr "Befehl wird ausgeführt: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004508
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004509#: misc/mke2fs.c:256
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004510#, c-format
4511msgid "while trying to run '%s'"
4512msgstr "während des Versuchs, „%s“ auszuführen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004513
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004514#: misc/mke2fs.c:263
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004515msgid "while processing list of bad blocks from program"
4516msgstr "beim Auswerten der „Bad Block“-Liste vom Programm"
4517
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004518#: misc/mke2fs.c:290
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004519#, c-format
4520msgid "Block %d in primary superblock/group descriptor area bad.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004521msgstr "Block %d im primären Superblock/Gruppendeskriptorbereich defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004522
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004523#: misc/mke2fs.c:292
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004524#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004525msgid "Blocks %u through %u must be good in order to build a filesystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004526msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004527"Die Blöcke %u bis einschließlich %u müssen in Ordnung sein, um ein\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004528"\tDateisystem zu erstellen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004529
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004530#: misc/mke2fs.c:295
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004531msgid "Aborting....\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004532msgstr "Abbruch...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004533
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004534#: misc/mke2fs.c:315
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004535#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004536msgid ""
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004537"Warning: the backup superblock/group descriptors at block %u contain\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004538"\tbad blocks.\n"
4539"\n"
4540msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004541"Warnung: Die Sicherung des Superblocks bzw. Gruppendeskriptors in Block %u\n"
4542"\tenthält defekte Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004543"\n"
4544
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004545#: misc/mke2fs.c:334
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004546msgid "while marking bad blocks as used"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004547msgstr "beim Markieren von defekten Blöcken als „belegt“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004548
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004549#: misc/mke2fs.c:386
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004550msgid "Writing inode tables: "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004551msgstr "Inode-Tabellen werden geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004552
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004553#: misc/mke2fs.c:407
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004554#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004555msgid ""
4556"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004557"Could not write %d blocks in inode table starting at %llu: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004558msgstr ""
4559"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004560"%d Blöcke konnten nicht in die Inoden-Tabellen beginnend bei %llu "
4561"geschrieben werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004562
Philipp Thomas37be3822015-05-17 20:21:39 -04004563#: misc/mke2fs.c:421 misc/mke2fs.c:2479 misc/mke2fs.c:2764
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004564msgid "done \n"
4565msgstr "erledigt \n"
4566
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004567#: misc/mke2fs.c:432
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004568msgid "while creating root dir"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004569msgstr "beim Erstellen des Wurzelverzeichnisses"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004570
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004571#: misc/mke2fs.c:439
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004572msgid "while reading root inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04004573msgstr "beim Lesen des Root-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004574
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004575#: misc/mke2fs.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004576msgid "while setting root inode ownership"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004577msgstr "beim Setzen des Root-Inode-Eigentümers"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004578
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004579#: misc/mke2fs.c:469
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004580msgid "while creating /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004581msgstr "beim Erstellen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004582
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004583#: misc/mke2fs.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004584msgid "while looking up /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004585msgstr "beim Suchen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004586
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004587#: misc/mke2fs.c:489
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004588msgid "while expanding /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004589msgstr "beim Expandieren von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004590
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004591#: misc/mke2fs.c:504
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004592msgid "while setting bad block inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004593msgstr "beim Setzen des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004594
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004595#: misc/mke2fs.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004596#, c-format
4597msgid "Out of memory erasing sectors %d-%d\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004598msgstr "Speicher voll beim Löschen der Sektoren %d-%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004599
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004600#: misc/mke2fs.c:541
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004601#, c-format
4602msgid "Warning: could not read block 0: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004603msgstr "Warnung: Block %s konnte nicht gelesen werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004604
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004605#: misc/mke2fs.c:557
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004606#, c-format
4607msgid "Warning: could not erase sector %d: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004608msgstr "Warnung: Sektor %d konnte nicht gelöscht werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004609
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004610#: misc/mke2fs.c:573
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004611msgid "while initializing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004612msgstr "beim Initialisieren des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004613
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004614#: misc/mke2fs.c:581
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004615msgid "Zeroing journal device: "
Philipp Thomasab02a742014-07-09 23:13:30 -04004616msgstr "Journal-Gerät wird mit Nullen überschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004617
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004618#: misc/mke2fs.c:593
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004619#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004620msgid "while zeroing journal device (block %llu, count %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04004621msgstr "beim Überschreiben des Journal-Gerätes mit Nullen (Block %llu, Nr. %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004622
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004623#: misc/mke2fs.c:611
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004624msgid "while writing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004625msgstr "beim Schreiben des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004626
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004627#: misc/mke2fs.c:626
Philipp Thomasb93349a2014-05-31 13:32:39 -04004628#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004629msgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004630msgstr "Ein Dateisystems mit %llu (%dk) Blöcken und %u Inodes wird erzeugt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004631
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004632#: misc/mke2fs.c:634
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004633#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004634msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004635"warning: %llu blocks unused.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004636"\n"
4637msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004638"Warnung: %llu Blöcke unbenutzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004639"\n"
4640
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004641#: misc/mke2fs.c:639
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004642#, c-format
4643msgid "Filesystem label=%s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004644msgstr "Dateisystembezeichnung=%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004645
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004646#: misc/mke2fs.c:642
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004647#, c-format
4648msgid "OS type: %s\n"
4649msgstr "OS-Typ: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004650
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004651#: misc/mke2fs.c:644
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004652#, c-format
4653msgid "Block size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004654msgstr "Blockgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004655
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004656#: misc/mke2fs.c:648
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004657#, c-format
4658msgid "Cluster size=%u (log=%u)\n"
4659msgstr "Clustergröße=%u (log=%u)\n"
4660
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004661#: misc/mke2fs.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004662#, c-format
4663msgid "Fragment size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004664msgstr "Fragmentgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004665
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004666#: misc/mke2fs.c:654
Philipp Thomas77c871a2010-04-19 16:59:02 -04004667#, c-format
4668msgid "Stride=%u blocks, Stripe width=%u blocks\n"
4669msgstr "Stride=%u Blöcke, Stripebreite=%u Blöcke\n"
4670
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004671#: misc/mke2fs.c:656
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004672#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004673msgid "%u inodes, %llu blocks\n"
4674msgstr "%u Inodes, %llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004675
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004676#: misc/mke2fs.c:658
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004677#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004678msgid "%llu blocks (%2.2f%%) reserved for the super user\n"
4679msgstr "%llu Blöcke (%2.2f%%) reserviert für den Superuser\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004680
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004681#: misc/mke2fs.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004682#, c-format
4683msgid "First data block=%u\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004684msgstr "Erster Datenblock=%u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004685
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004686#: misc/mke2fs.c:663
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004687#, c-format
4688msgid "Root directory owner=%u:%u\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004689msgstr "Eigentümer des Wurzelverzeichnisses=%u:%u\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004690
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004691#: misc/mke2fs.c:665
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004692#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004693msgid "Maximum filesystem blocks=%lu\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004694msgstr "Maximale Dateisystem-Blöcke=%lu\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004695
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004696#: misc/mke2fs.c:669
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004697#, c-format
4698msgid "%u block groups\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004699msgstr "%u Blockgruppen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004700
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004701#: misc/mke2fs.c:671
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004702#, c-format
4703msgid "%u block group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004704msgstr "%u Blockgruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004705
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004706#: misc/mke2fs.c:674
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004707#, c-format
4708msgid "%u blocks per group, %u clusters per group\n"
4709msgstr "%u Blöcke pro Gruppe, %u Cluster pro Gruppe\n"
4710
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004711#: misc/mke2fs.c:677
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004712#, c-format
4713msgid "%u blocks per group, %u fragments per group\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004714msgstr "%u Blöcke pro Gruppe, %u Fragmente pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004715
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004716#: misc/mke2fs.c:679
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004717#, c-format
4718msgid "%u inodes per group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004719msgstr "%u Inodes pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004720
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004721#: misc/mke2fs.c:688
Philipp Thomasb93349a2014-05-31 13:32:39 -04004722#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004723msgid "Filesystem UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004724msgstr "UUID des Dateisystems: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004725
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004726#: misc/mke2fs.c:689
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004727msgid "Superblock backups stored on blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004728msgstr "Superblock-Sicherungskopien gespeichert in den Blöcken: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004729
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004730#: misc/mke2fs.c:766
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004731#, c-format
4732msgid "%s requires '-O 64bit'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004733msgstr "%s erfordert „-O 64Bit“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004734
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004735#: misc/mke2fs.c:772
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004736#, c-format
4737msgid "'%s' must be before 'resize=%u'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004738msgstr "„%s“ muss vor „resize=%u“ kommen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004739
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004740#: misc/mke2fs.c:785
Philipp Thomasb93349a2014-05-31 13:32:39 -04004741#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004742msgid "Invalid desc_size: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004743msgstr "Unzulässige desc_size: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004744
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004745#: misc/mke2fs.c:798
Philipp Thomasb93349a2014-05-31 13:32:39 -04004746#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004747msgid "Invalid offset: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004748msgstr "Unzulässiger Offset: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004749
Theodore Ts'obd386982015-05-17 20:34:58 -04004750#: misc/mke2fs.c:812 misc/tune2fs.c:1239
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004751#, c-format
4752msgid "Invalid mmp_update_interval: %s\n"
4753msgstr "Ungültiges mmp_update_interval: %s\n"
4754
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004755#: misc/mke2fs.c:826
Philipp Thomasab02a742014-07-09 23:13:30 -04004756#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004757msgid "Invalid # of backup superblocks: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004758msgstr "Ungültige Anzahl von Ersatz-Superblöcken: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004759
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004760#: misc/mke2fs.c:848
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004761#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004762msgid "Invalid stride parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004763msgstr "Ungültiger „stride“-Parameter: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004764
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004765#: misc/mke2fs.c:863
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004766#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05004767msgid "Invalid stripe-width parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004768msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004769
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004770#: misc/mke2fs.c:886
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004771#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004772msgid "Invalid resize parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004773msgstr "Ungültiger „resize“-Parameter: %s\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004774
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004775#: misc/mke2fs.c:893
Theodore Ts'obc759702005-05-09 20:40:55 -04004776msgid "The resize maximum must be greater than the filesystem size.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004777msgstr ""
4778"Das Maximum der Vergrößerung muss oberhalb als der Dateisystem-Größe "
4779"liegen.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004780
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004781#: misc/mke2fs.c:917
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004782msgid "On-line resizing not supported with revision 0 filesystems\n"
4783msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004784"Online-Größenänderungen werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004785"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004786
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004787#: misc/mke2fs.c:944 misc/mke2fs.c:953
Philipp Thomasb93349a2014-05-31 13:32:39 -04004788#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004789msgid "Invalid root_owner: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004790msgstr "Ungültiger Eigentümer der Wurzel: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004791
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004792#: misc/mke2fs.c:978
Philipp Thomasedc733d2012-04-22 15:38:42 -04004793#, c-format
4794msgid "Invalid quotatype parameter: %s\n"
4795msgstr "Ungültiger Quotatyp-Parameter: %s\n"
4796
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004797#: misc/mke2fs.c:989
Philipp Thomasb93349a2014-05-31 13:32:39 -04004798#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004799msgid ""
4800"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004801"Bad option(s) specified: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004802"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004803"Extended options are separated by commas, and may take an argument which\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004804"\tis set off by an equals ('=') sign.\n"
4805"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004806"Valid extended options are:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004807"\tmmp_update_interval=<interval>\n"
4808"\tnum_backup_sb=<0|1|2>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004809"\tstride=<RAID per-disk data chunk in blocks>\n"
4810"\tstripe-width=<RAID stride * data disks in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004811"\toffset=<offset to create the file system>\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004812"\tresize=<resize maximum size in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004813"\tpacked_meta_blocks=<0 to disable, 1 to enable>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004814"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004815"\tlazy_journal_init=<0 to disable, 1 to enable>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004816"\troot_uid=<uid of root directory>\n"
4817"\troot_gid=<gid of root directory>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05004818"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004819"\tdiscard\n"
4820"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004821"\tquotatype=<usr OR grp>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004822"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004823msgstr ""
4824"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004825"Ungültige Option(en) angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004826"\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004827"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004828"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004829"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004830"Gültige erweiterte Optionen sind:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004831"\tmmp_update_interval=<Intervall>\n"
4832"\tnum_backup_sb=<0|1|2>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004833"\tstride=<RAID-Segmentgröße in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004834"\tstripe-width=<RAID Stride * Datenplatten in Blöcken>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004835"\toffset=<Offset für das Dateisystem>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004836"\tresize=<Obergrenze für Größenänderung in Blöcken>\n"
4837"\tpacked_meta_blocks=<0 deaktiviert, 1 aktiviert>\n"
4838"\tlazy_itable_init=<0 für deaktiviert, 1 für aktiviert>\n"
4839"\tlazy_journal_init=<0 für deaktiviert, 1 für aktiviert>\n"
4840"\troot_uid=<UID des Wurzelverzeichnisses>\n"
4841"\troot_gid=<GID des Wurzelverzeichnisses>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004842"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004843"\tdiscard\n"
4844"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004845"\tquotatype=<usr ODER grp>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004846"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004847
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004848#: misc/mke2fs.c:1015
Theodore Ts'o8f741372008-02-28 21:47:05 -05004849#, c-format
4850msgid ""
4851"\n"
4852"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
4853"\n"
4854msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004855"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004856"Warnung: Die Stripebreite %u des RAIDs ist kein Vielfaches des Strides %u.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004857"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004858
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004859#: misc/mke2fs.c:1055
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004860#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004861msgid ""
4862"Syntax error in mke2fs config file (%s, line #%d)\n"
4863"\t%s\n"
4864msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004865"Syntaxfehler in der Konfigurationsdatei von mke2fs (%s, Zeile #%d)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004866"\t%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004867
Theodore Ts'obd386982015-05-17 20:34:58 -04004868#: misc/mke2fs.c:1068 misc/tune2fs.c:449
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004869#, c-format
4870msgid "Invalid filesystem option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004871msgstr "Ungültige Dateisystem-Option angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004872
Theodore Ts'obd386982015-05-17 20:34:58 -04004873#: misc/mke2fs.c:1080 misc/tune2fs.c:390
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004874#, c-format
4875msgid "Invalid mount option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004876msgstr "Ungültige Option für das Einhängen angegeben: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004877
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004878#: misc/mke2fs.c:1220
Philipp Thomas40771272008-09-07 22:55:25 -04004879#, c-format
4880msgid ""
4881"\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004882"Your mke2fs.conf file does not define the %s filesystem type.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004883msgstr ""
4884"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004885"Ihre Datei mke2fs.conf definiert den Typ des Dateisystems %s nicht.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004886
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004887#: misc/mke2fs.c:1224
Philipp Thomas40771272008-09-07 22:55:25 -04004888msgid ""
4889"You probably need to install an updated mke2fs.conf file.\n"
4890"\n"
4891msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04004892"Sie müssen wahrscheinlich eine aktualisierte Version der Datei "
4893"installieren.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004894"\n"
4895
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004896#: misc/mke2fs.c:1228
Philipp Thomas3e914b52011-01-24 15:03:41 -05004897msgid "Aborting...\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004898msgstr "Abbruch…\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004899
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004900#: misc/mke2fs.c:1269
Philipp Thomas3e914b52011-01-24 15:03:41 -05004901#, c-format
4902msgid ""
4903"\n"
4904"Warning: the fs_type %s is not defined in mke2fs.conf\n"
4905"\n"
4906msgstr ""
4907"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004908"Warnung: der Dateisystemtyp %s ist in mke2fs.conf nicht definiert\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004909"\n"
4910
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004911#: misc/mke2fs.c:1449
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004912msgid "Couldn't allocate memory for new PATH.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004913msgstr "Es konnte kein Speicher für den neuen PFAD reserviert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004914
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004915#: misc/mke2fs.c:1490
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004916#, c-format
4917msgid "Couldn't init profile successfully (error: %ld).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004918msgstr "Das Profil konnte nicht erfolgreich initialisiert werden: %ld).\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004919
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004920#: misc/mke2fs.c:1523
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004921#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004922msgid "invalid block size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004923msgstr "ungültige Blockgröße - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004924
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004925#: misc/mke2fs.c:1527
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004926#, c-format
4927msgid "Warning: blocksize %d not usable on most systems.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004928msgstr ""
4929"Warnung: Eine Blockgröße von %d ist auf den meisten System unbrauchbar.\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004930
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004931#: misc/mke2fs.c:1543
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004932#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004933msgid "invalid cluster size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004934msgstr "ungültige Clustergröße - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004935
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004936#: misc/mke2fs.c:1553
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004937msgid "'-R' is deprecated, use '-E' instead"
Philipp Thomasab02a742014-07-09 23:13:30 -04004938msgstr "„-R“ ist veraltet, bitte verwenden Sie stattdessen „-E“"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004939
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004940#: misc/mke2fs.c:1565
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004941msgid "Illegal number for blocks per group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004942msgstr "Die Zahl der Blöcke pro Gruppe ist unzulässig"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004943
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004944#: misc/mke2fs.c:1570
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004945msgid "blocks per group must be multiple of 8"
Philipp Thomasab02a742014-07-09 23:13:30 -04004946msgstr "Die Anzahl der Blöcke pro Gruppe muss ein Vielfaches von 8 sein"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004947
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004948#: misc/mke2fs.c:1578
Philipp Thomas720e6362008-06-21 14:06:00 -04004949msgid "Illegal number for flex_bg size"
Philipp Thomasab02a742014-07-09 23:13:30 -04004950msgstr "Der Wert für die Größe von flex_bg ist unzulässig"
Philipp Thomas720e6362008-06-21 14:06:00 -04004951
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004952#: misc/mke2fs.c:1584
Philipp Thomas720e6362008-06-21 14:06:00 -04004953msgid "flex_bg size must be a power of 2"
Philipp Thomasab02a742014-07-09 23:13:30 -04004954msgstr "Die Größe von flex_bg muss eine Potenz von 2 sein"
Philipp Thomas720e6362008-06-21 14:06:00 -04004955
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004956#: misc/mke2fs.c:1589
Philipp Thomasab02a742014-07-09 23:13:30 -04004957#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004958msgid "flex_bg size (%lu) must be less than or equal to 2^31"
Philipp Thomasab02a742014-07-09 23:13:30 -04004959msgstr "Die Größe von flex_bg (%lu) muss gleich oder weniger als 2^31 sein"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004960
4961#: misc/mke2fs.c:1600
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004962#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004963msgid "invalid inode ratio %s (min %d/max %d)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004964msgstr "Unzulässige Inode-Rate %s (min %d/max %d)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004965
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004966#: misc/mke2fs.c:1610
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004967#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004968msgid "invalid inode size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004969msgstr "ungültige Inode-Größe - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004970
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004971#: misc/mke2fs.c:1623
Theodore Ts'obd386982015-05-17 20:34:58 -04004972msgid ""
4973"Warning: -K option is deprecated and should not be used anymore. Use '-E "
4974"nodiscard' extended option instead!\n"
4975msgstr ""
4976"Warnung: Die Option -K wird bald nicht mehr unterstüzt. Verwenden Sie "
4977"stattdessen die Erweiterungsoption „-E nodiscard“!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004978
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004979#: misc/mke2fs.c:1634
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004980msgid "in malloc for bad_blocks_filename"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004981msgstr "in malloc für bad_blocks_filename"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004982
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004983#: misc/mke2fs.c:1647
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004984#, c-format
4985msgid "invalid reserved blocks percent - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004986msgstr "Ungültiger Wert für die prozentuale Anzahl reservierter Blöcke - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004987
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004988#: misc/mke2fs.c:1662
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004989#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004990msgid "bad num inodes - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004991msgstr "ungültige Anzahl von Inodes - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004992
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004993#: misc/mke2fs.c:1679
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004994#, c-format
4995msgid "bad revision level - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004996msgstr "ungültige Version - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004997
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004998#: misc/mke2fs.c:1684
Philipp Thomasab02a742014-07-09 23:13:30 -04004999#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005000msgid "while trying to create revision %d"
Philipp Thomasab02a742014-07-09 23:13:30 -04005001msgstr "beim Versuch, Revision %d zu erzeugen"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005002
5003#: misc/mke2fs.c:1698
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005004msgid "The -t option may only be used once"
Philipp Thomasab02a742014-07-09 23:13:30 -04005005msgstr "Die Option „-t“ darf nur einmal angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005006
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005007#: misc/mke2fs.c:1706
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005008msgid "The -T option may only be used once"
Philipp Thomasab02a742014-07-09 23:13:30 -04005009msgstr "Die Option „-T“ darf nur einmal angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005010
Philipp Thomas37be3822015-05-17 20:21:39 -04005011#: misc/mke2fs.c:1759 misc/mke2fs.c:2845
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005012#, c-format
5013msgid "while trying to open journal device %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005014msgstr "beim Versuch, das Journalgerät %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005015
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005016#: misc/mke2fs.c:1765
Theodore Ts'oa04eba32003-05-03 16:35:17 -04005017#, c-format
Theodore Ts'oddc32a02003-05-03 18:45:55 -04005018msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005019msgstr ""
5020"Die Blockgröße des Journalgeräts (%d) ist kleiner als die minimale "
5021"Blockgröße %d\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04005022
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005023#: misc/mke2fs.c:1771
Philipp Thomas68801282008-07-17 11:47:00 -04005024#, c-format
5025msgid "Using journal device's blocksize: %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005026msgstr "Die Blockgröße des Journalgerätes wird verwendet: %d\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005027
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005028#: misc/mke2fs.c:1782
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005029#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005030msgid "invalid blocks '%s' on device '%s'"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005031msgstr "ungültiger Block „%s“ auf Gerät „%s“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005032
Philipp Thomas37be3822015-05-17 20:21:39 -04005033#: misc/mke2fs.c:1804
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005034msgid "filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04005035msgstr "Dateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005036
Theodore Ts'obd386982015-05-17 20:34:58 -04005037#: misc/mke2fs.c:1817 resize/main.c:395
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005038msgid "while trying to determine filesystem size"
Philipp Thomasab02a742014-07-09 23:13:30 -04005039msgstr "beim Versuch, die Größe des Dateisystems zu bestimmen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005040
Philipp Thomas37be3822015-05-17 20:21:39 -04005041#: misc/mke2fs.c:1823
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005042msgid ""
5043"Couldn't determine device size; you must specify\n"
5044"the size of the filesystem\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005045msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005046"Die Größe des Gerätes ist nicht feststellbar. Sie müssen die Größe\n"
5047"des Dateisystems manuell angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005048
Philipp Thomas37be3822015-05-17 20:21:39 -04005049#: misc/mke2fs.c:1830
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005050msgid ""
5051"Device size reported to be zero. Invalid partition specified, or\n"
5052"\tpartition table wasn't reread after running fdisk, due to\n"
5053"\ta modified partition being busy and in use. You may need to reboot\n"
5054"\tto re-read your partition table.\n"
5055msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005056"Als Größe des Geräts wird Null zurück geliefert. Entweder wurde eine\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005057"\tungültige Partition angegeben oder die Partitionstabelle wurde nach\n"
5058"\teinem Lauf von fdisk nicht neu eingelesen, weil die modifizierte\n"
5059"\tPartition vewendet wurde. Sie müssen unter Umständen den Rechner neu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005060"\tstarten, damit die Partitionstabelle neu eingelesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005061
Philipp Thomas37be3822015-05-17 20:21:39 -04005062#: misc/mke2fs.c:1847
Theodore Ts'oa04eba32003-05-03 16:35:17 -04005063msgid "Filesystem larger than apparent device size."
Philipp Thomasab02a742014-07-09 23:13:30 -04005064msgstr "Das Dateisystem ist größer als als die Partition."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005065
Philipp Thomas37be3822015-05-17 20:21:39 -04005066#: misc/mke2fs.c:1867
Philipp Thomas720e6362008-06-21 14:06:00 -04005067msgid "Failed to parse fs types list\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005068msgstr "Die Liste der Dateisystemtypen konnte nicht verarbeitet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005069
Philipp Thomas37be3822015-05-17 20:21:39 -04005070#: misc/mke2fs.c:1908
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005071msgid "while trying to determine hardware sector size"
Philipp Thomasab02a742014-07-09 23:13:30 -04005072msgstr "beim Versuch, die Hardware-Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005073
Philipp Thomas37be3822015-05-17 20:21:39 -04005074#: misc/mke2fs.c:1914
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005075msgid "while trying to determine physical sector size"
Philipp Thomasab02a742014-07-09 23:13:30 -04005076msgstr "beim Versuch, die physische Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005077
Philipp Thomas37be3822015-05-17 20:21:39 -04005078#: misc/mke2fs.c:1946
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005079msgid "while setting blocksize; too small for device\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005080msgstr "beim Setzen der Blockgröße: zu klein für das Gerät\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005081
Philipp Thomas37be3822015-05-17 20:21:39 -04005082#: misc/mke2fs.c:1951
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005083#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04005084msgid ""
5085"Warning: specified blocksize %d is less than device physical sectorsize %d\n"
5086msgstr ""
5087"Warnung: die angegebene Blockgröße %d ist kleiner als die physische "
5088"Sektorgröße %d\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005089
Philipp Thomas37be3822015-05-17 20:21:39 -04005090#: misc/mke2fs.c:1975
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005091#, c-format
5092msgid ""
5093"%s: Size of device (0x%llx blocks) %s too big to be expressed\n"
5094"\tin 32 bits using a blocksize of %d.\n"
5095msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005096"%1$s: Die Größe des Gerätes %3$s (0x%2$llx Blöcke) kann bei einer "
5097"Blockgröße\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005098"\tvon %4$d kann mit 32 Bits nicht dargestellt werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005099
Philipp Thomas37be3822015-05-17 20:21:39 -04005100#: misc/mke2fs.c:1991
Philipp Thomas68801282008-07-17 11:47:00 -04005101msgid "fs_types for mke2fs.conf resolution: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005102msgstr "Dateisystemtypen für das Aufschlüsseln von mke2fs.conf: "
Philipp Thomas68801282008-07-17 11:47:00 -04005103
Philipp Thomas37be3822015-05-17 20:21:39 -04005104#: misc/mke2fs.c:1998
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05005105msgid "Filesystem features not supported with revision 0 filesystems\n"
5106msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005107"Eigenschaften von Dateisystemen werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005108"\tunterstützt\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05005109
Philipp Thomas37be3822015-05-17 20:21:39 -04005110#: misc/mke2fs.c:2006
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005111msgid "Sparse superblocks not supported with revision 0 filesystems\n"
5112msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005113"Sparse-Superblöcke werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005114"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005115
Philipp Thomas37be3822015-05-17 20:21:39 -04005116#: misc/mke2fs.c:2018
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005117msgid "Journals not supported with revision 0 filesystems\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005118msgstr ""
5119"Journale werden bei Revison-0-Dateisystemen nicht\n"
5120"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005121
Philipp Thomas37be3822015-05-17 20:21:39 -04005122#: misc/mke2fs.c:2032
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005123#, c-format
5124msgid "invalid reserved blocks percent - %lf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005125msgstr "Ungültiger Werte für Prozent reservierter Blöcke - %lf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005126
Philipp Thomas37be3822015-05-17 20:21:39 -04005127#: misc/mke2fs.c:2049
Theodore Ts'obd386982015-05-17 20:34:58 -04005128msgid ""
5129"Extents MUST be enabled for a 64-bit filesystem. Pass -O extents to "
5130"rectify.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005131msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005132"Erweiterungen MÜSSEN für 64-Bit-Dateisysteme aktiviert werden.\n"
5133"\tGeben Sie „-O extents“ an, um dies zu tun.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005134
Philipp Thomas37be3822015-05-17 20:21:39 -04005135#: misc/mke2fs.c:2069
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005136msgid "The cluster size may not be smaller than the block size.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005137msgstr "Die Clustergröße darf nicht kleiner als die Blockgröße sein.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005138
Philipp Thomas37be3822015-05-17 20:21:39 -04005139#: misc/mke2fs.c:2075
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005140msgid "specifying a cluster size requires the bigalloc feature"
Philipp Thomasab02a742014-07-09 23:13:30 -04005141msgstr "Die Angabe einer Clustergröße erfordert die Eigenschaft „bigalloc“."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005142
Philipp Thomas37be3822015-05-17 20:21:39 -04005143#: misc/mke2fs.c:2094
Philipp Thomas720e6362008-06-21 14:06:00 -04005144#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005145msgid "warning: Unable to get device geometry for %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005146msgstr "Warnung: Die Geometrie des Gerätes „%s“ kann nicht bestimmt werden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005147
Philipp Thomas37be3822015-05-17 20:21:39 -04005148#: misc/mke2fs.c:2097
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005149#, c-format
5150msgid "%s alignment is offset by %lu bytes.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005151msgstr "Die Ausrichtung von %s ist um %lu Bytes versetzt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005152
Philipp Thomas37be3822015-05-17 20:21:39 -04005153#: misc/mke2fs.c:2099
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005154#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04005155msgid ""
5156"This may result in very poor performance, (re)-partitioning suggested.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005157msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005158"Dies könnte in sehr schlechter Leistung resultieren. Eine "
5159"Neupartitionierung\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005160"ist angeraten.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005161
Philipp Thomas37be3822015-05-17 20:21:39 -04005162#: misc/mke2fs.c:2120
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005163#, c-format
5164msgid "%d-byte blocks too big for system (max %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04005165msgstr "Blöcke mit %d Bytes sind zu groß für das Gerät (max %d)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005166
Philipp Thomas37be3822015-05-17 20:21:39 -04005167#: misc/mke2fs.c:2124
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005168#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04005169msgid ""
5170"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005171msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005172"Warnung: Blöcke mit %d Bytes sind zu groß für das Gerät (max %d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005173"\t Weiterverarbeitung wurde erzwungen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005174
Philipp Thomas37be3822015-05-17 20:21:39 -04005175#: misc/mke2fs.c:2180
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005176msgid "Can't support bigalloc feature without extents feature"
Philipp Thomasab02a742014-07-09 23:13:30 -04005177msgstr "„Bigalloc“ ist nur mit „Extents“ möglich"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005178
Philipp Thomas37be3822015-05-17 20:21:39 -04005179#: misc/mke2fs.c:2187
Philipp Thomas720e6362008-06-21 14:06:00 -04005180msgid ""
5181"The resize_inode and meta_bg features are not compatible.\n"
5182"They can not be both enabled simultaneously.\n"
5183msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005184"resize_inode und meta_bg sind nicht kompatibel und können\n"
5185"daher nicht gleichzeitig aktiviert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005186
Philipp Thomas37be3822015-05-17 20:21:39 -04005187#: misc/mke2fs.c:2196
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005188msgid ""
5189"\n"
5190"Warning: the bigalloc feature is still under development\n"
5191"See https://ext4.wiki.kernel.org/index.php/Bigalloc for more information\n"
5192"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005193msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005194"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005195"Warnung: „bigalloc“ befindet sich noch in Entwicklung.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005196"Lesen Sie https://ext4.wiki.kernel.org/index.php/Bigalloc für weitere\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005197"Informationen.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005198"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005199
Philipp Thomas37be3822015-05-17 20:21:39 -04005200#: misc/mke2fs.c:2207
Theodore Ts'obc759702005-05-09 20:40:55 -04005201msgid "reserved online resize blocks not supported on non-sparse filesystem"
5202msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005203"Reservierte Blöcke für die Online-Größenänderung werden auf Nicht-Sparse-\n"
5204"Dateisystemen nicht unterstützt."
Theodore Ts'obc759702005-05-09 20:40:55 -04005205
Philipp Thomas37be3822015-05-17 20:21:39 -04005206#: misc/mke2fs.c:2216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005207msgid "blocks per group count out of range"
Philipp Thomasab02a742014-07-09 23:13:30 -04005208msgstr "Die Anzahl der Blöcke pro Gruppe ist außerhalb des gültigen Bereichs."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005209
Philipp Thomas37be3822015-05-17 20:21:39 -04005210#: misc/mke2fs.c:2240
Philipp Thomas720e6362008-06-21 14:06:00 -04005211msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
Theodore Ts'obd386982015-05-17 20:34:58 -04005212msgstr ""
5213"Flex_bg ist nicht aktiviert, daher darf dafür auch keine Größe angegeben "
5214"werden."
Theodore Ts'o6956f612005-12-31 16:46:15 -05005215
Philipp Thomas37be3822015-05-17 20:21:39 -04005216#: misc/mke2fs.c:2252
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005217#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04005218msgid "invalid inode size %d (min %d/max %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04005219msgstr "unzulässige Inode-Größe %d (min %d/max %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005220
Philipp Thomas37be3822015-05-17 20:21:39 -04005221#: misc/mke2fs.c:2270
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005222#, c-format
5223msgid "too many inodes (%llu), raise inode ratio?"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005224msgstr "zu wenige Inodes (%llu), Anzahl erhöhen?"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005225
Philipp Thomas37be3822015-05-17 20:21:39 -04005226#: misc/mke2fs.c:2277
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005227#, c-format
5228msgid "too many inodes (%llu), specify < 2^32 inodes"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005229msgstr "zu viele Inodes (%llu), geben Sie weniger als 2^32 Inodes an"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005230
Philipp Thomas37be3822015-05-17 20:21:39 -04005231#: misc/mke2fs.c:2291
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005232#, c-format
5233msgid ""
5234"inode_size (%u) * inodes_count (%u) too big for a\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005235"\tfilesystem with %llu blocks, specify higher inode_ratio (-i)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005236"\tor lower inode count (-N).\n"
5237msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005238"inode_size (%u) * inodes_count (%u) ist zu groß für ein\n"
5239"\tDateisystem mit %llu Blöcken, geben Sie ein höheres inode_ratio (-i)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005240"\tan oder eine niedrigere Anzahl Inodes (-N) an.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005241
Philipp Thomas37be3822015-05-17 20:21:39 -04005242#: misc/mke2fs.c:2418
Philipp Thomas720e6362008-06-21 14:06:00 -04005243#, c-format
5244msgid ""
5245"Overwriting existing filesystem; this can be undone using the command:\n"
5246" e2undo %s %s\n"
5247"\n"
5248msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005249"Das bestehende Dateisystem wird überschrieben, dies kann mittels des "
5250"Befehls\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005251"„e2undo %s %s“ rückgängig gemacht werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005252
Philipp Thomas37be3822015-05-17 20:21:39 -04005253#: misc/mke2fs.c:2432
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005254msgid "while trying to setup undo file\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005255msgstr ""
5256"beim Versuch, die Datei mit den Daten zur Rückgängigmachung anzulegen\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005257
Philipp Thomas37be3822015-05-17 20:21:39 -04005258#: misc/mke2fs.c:2458
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005259msgid "Discarding device blocks: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005260msgstr "Geräteblöcke werden verworfen: "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005261
Philipp Thomas37be3822015-05-17 20:21:39 -04005262#: misc/mke2fs.c:2474
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005263msgid "failed - "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005264msgstr "gescheitert - "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005265
Philipp Thomas37be3822015-05-17 20:21:39 -04005266#: misc/mke2fs.c:2596
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005267msgid "while setting up superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005268msgstr "beim Erstellen des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005269
Philipp Thomas37be3822015-05-17 20:21:39 -04005270#: misc/mke2fs.c:2612
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005271msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
5272msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005273"Verwerfen war erfolgreich und wird Nullen zurück liefern - daher wird\n"
5274"das Löschen der Inode-Tabelle übersprungen\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005275
Philipp Thomas37be3822015-05-17 20:21:39 -04005276#: misc/mke2fs.c:2700
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005277#, c-format
5278msgid "unknown os - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005279msgstr "unbekanntes Betriebssystem - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005280
Philipp Thomas37be3822015-05-17 20:21:39 -04005281#: misc/mke2fs.c:2752
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005282msgid "Allocating group tables: "
Philipp Thomasab02a742014-07-09 23:13:30 -04005283msgstr "beim Anfordern von Speicher für die Gruppentabellen: "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005284
Philipp Thomas37be3822015-05-17 20:21:39 -04005285#: misc/mke2fs.c:2760
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005286msgid "while trying to allocate filesystem tables"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005287msgstr "beim Anfordern von Speicher für die Dateisystemtabellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005288
Philipp Thomas37be3822015-05-17 20:21:39 -04005289#: misc/mke2fs.c:2769
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005290msgid ""
5291"\n"
5292"\twhile converting subcluster bitmap"
5293msgstr ""
5294"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005295"\tbeim Konvertieren der Subclusterbitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005296
Philipp Thomas37be3822015-05-17 20:21:39 -04005297#: misc/mke2fs.c:2812
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005298#, c-format
5299msgid "while zeroing block %llu at end of filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04005300msgstr "beim Nullen von Block %llu am Ende des Dateisystems"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005301
Philipp Thomas37be3822015-05-17 20:21:39 -04005302#: misc/mke2fs.c:2826
Theodore Ts'obc759702005-05-09 20:40:55 -04005303msgid "while reserving blocks for online resize"
Philipp Thomasab02a742014-07-09 23:13:30 -04005304msgstr "beim Reservieren von Blöcken für die Online-Größenänderung"
Theodore Ts'obc759702005-05-09 20:40:55 -04005305
Theodore Ts'obd386982015-05-17 20:34:58 -04005306#: misc/mke2fs.c:2838 misc/tune2fs.c:712
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005307msgid "journal"
5308msgstr "Journal"
5309
Philipp Thomas37be3822015-05-17 20:21:39 -04005310#: misc/mke2fs.c:2850
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005311#, c-format
5312msgid "Adding journal to device %s: "
Philipp Thomasab02a742014-07-09 23:13:30 -04005313msgstr "Ein Journal wird auf Gerät %s hinzugefügt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005314
Philipp Thomas37be3822015-05-17 20:21:39 -04005315#: misc/mke2fs.c:2857
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005316#, c-format
5317msgid ""
5318"\n"
5319"\twhile trying to add journal to device %s"
5320msgstr ""
5321"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005322"\tbeim Versuch, ein Journal auf Gerät %s hinzuzufügen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005323
Theodore Ts'obd386982015-05-17 20:34:58 -04005324#: misc/mke2fs.c:2862 misc/mke2fs.c:2893 misc/tune2fs.c:741 misc/tune2fs.c:760
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005325msgid "done\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005326msgstr "erledgt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005327
Philipp Thomas37be3822015-05-17 20:21:39 -04005328#: misc/mke2fs.c:2869
Philipp Thomas77c871a2010-04-19 16:59:02 -04005329msgid "Skipping journal creation in super-only mode\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005330msgstr "Die Erzeugung eines Journals wird im Nur-Super-Modus übersprungen\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005331
Philipp Thomas37be3822015-05-17 20:21:39 -04005332#: misc/mke2fs.c:2880
Philipp Thomas68801282008-07-17 11:47:00 -04005333#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005334msgid "Creating journal (%u blocks): "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005335msgstr "Das Journal (%u Blöcke) wird angelegt: "
Philipp Thomas720e6362008-06-21 14:06:00 -04005336
Philipp Thomas37be3822015-05-17 20:21:39 -04005337#: misc/mke2fs.c:2889
Philipp Thomasedc733d2012-04-22 15:38:42 -04005338msgid ""
5339"\n"
5340"\twhile trying to create journal"
5341msgstr ""
5342"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005343"\tbeim Anlegen des Journals"
Philipp Thomasedc733d2012-04-22 15:38:42 -04005344
Theodore Ts'obd386982015-05-17 20:34:58 -04005345#: misc/mke2fs.c:2901 misc/tune2fs.c:516
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005346msgid ""
5347"\n"
5348"Error while enabling multiple mount protection feature."
5349msgstr ""
5350"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005351"Fehler beim Aktivieren des Schutzes gegen mehrfaches Einhängen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005352
Philipp Thomas37be3822015-05-17 20:21:39 -04005353#: misc/mke2fs.c:2906
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005354#, c-format
5355msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005356msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005357"Der Schutz gegen mehrfaches Einhängen wurde aktiviert mit einem\n"
5358"Aktualisierungsintervall von %d Sekunden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005359
Philipp Thomas37be3822015-05-17 20:21:39 -04005360#: misc/mke2fs.c:2923
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005361msgid "Writing superblocks and filesystem accounting information: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005362msgstr ""
5363"Die Superblöcke und die Informationen über die Dateisystemnutzung werden\n"
5364"geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005365
Philipp Thomas37be3822015-05-17 20:21:39 -04005366#: misc/mke2fs.c:2930
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005367msgid ""
5368"\n"
5369"Warning, had trouble writing out superblocks."
5370msgstr ""
5371"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005372"Es gab Schwierigkeiten beim Schreiben der Superblöcke."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005373
Philipp Thomas37be3822015-05-17 20:21:39 -04005374#: misc/mke2fs.c:2932
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005375msgid ""
5376"done\n"
5377"\n"
5378msgstr ""
5379"erledigt\n"
5380"\n"
5381
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005382#: misc/mklost+found.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005383msgid "Usage: mklost+found\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005384msgstr "Aufruf: mklost+found\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005385
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005386#: misc/partinfo.c:41
Philipp Thomasa700f512008-08-29 08:49:57 -04005387#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005388msgid ""
5389"Usage: %s device...\n"
5390"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005391"Prints out the partition information for each given device.\n"
5392"For example: %s /dev/hda\n"
5393"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005394msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005395"Aufruf: %s Gerät…\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005396"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005397"Gibt Informationen über die Partitionierung jedes angegebenen Geräts aus.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005398"Zum Beispiel: %s /dev/hda\n"
5399"\n"
5400
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005401#: misc/partinfo.c:51
Philipp Thomas40771272008-09-07 22:55:25 -04005402#, c-format
5403msgid "Cannot open %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005404msgstr "%s kann nicht geöffnet werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005405
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005406#: misc/partinfo.c:57
Philipp Thomas40771272008-09-07 22:55:25 -04005407#, c-format
5408msgid "Cannot get geometry of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005409msgstr "Die Geometrie von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005410
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005411#: misc/partinfo.c:65
Philipp Thomas40771272008-09-07 22:55:25 -04005412#, c-format
5413msgid "Cannot get size of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005414msgstr "Die Größe von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005415
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005416#: misc/partinfo.c:71
Philipp Thomas40771272008-09-07 22:55:25 -04005417#, c-format
5418msgid "%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005419msgstr "%s: h=%3d s=%3d c=%4d Start=%8d Größe=%8lu Ende=%8d\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005420
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005421#: misc/tune2fs.c:112
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005422msgid "Please run e2fsck on the filesystem.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005423msgstr "Bitte lassen Sie e2fsck dieses Dateisystem überprüfen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005424
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005425#: misc/tune2fs.c:121
Philipp Thomasb93349a2014-05-31 13:32:39 -04005426#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005427msgid ""
Theodore Ts'o197abba2005-06-20 18:00:23 -04005428"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005429"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005430"\t[-m reserved_blocks_percent] [-o [^]mount_options[,...]] [-p "
5431"mmp_update_interval]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005432"\t[-r reserved_blocks_count] [-u user] [-C mount_count] [-L volume_label]\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005433"\t[-M last_mounted_dir] [-O [^]feature[,...]]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005434"\t[-Q quota_options]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005435"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID]\n"
5436"\t[ -I new_inode_size ] device\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005437msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005438"Aufruf: %s [-c max_Anzahl_Einhängungen] [-e Fehlerverhalten] [-g Gruppe]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005439"\t[-i Intervall[d|m|w]] [-j] [-J Journal_Optionen] [-l]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005440"\t[-m reservierte_Blöcke_Prozent] [-o [^]Einhängeoptionen[,...]] [-p "
5441"mmp_Aktualisierungsintervall]\n"
5442"\t[-r Anzahl_reservierter_Blöcke] [-u Benutzer] [-C Anzahl_Einhängungen] [-L "
5443"Volume_Kennung]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005444"\t[-M letztes_eingehängtes_Verzeichnis] [-O [^]Eigenschaft[,...]]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005445"\t[-Q Quota-Optionen]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005446"\t[-E erweiterte_Optionen[,...]] [-T Zeitpunkt_letzter_Prüfung] [-U UUID]\n"
5447"\t[ -I neue_Inodegröße ] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005448
Philipp Thomas37be3822015-05-17 20:21:39 -04005449#: misc/tune2fs.c:203
5450msgid "Journal superblock not found!\n"
5451msgstr "Der Journal-Superblock wurde nicht gefunden!\n"
5452
5453#: misc/tune2fs.c:261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005454msgid "while trying to open external journal"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005455msgstr "beim Versuch, das externe Journal zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005456
Theodore Ts'obd386982015-05-17 20:34:58 -04005457#: misc/tune2fs.c:267 misc/tune2fs.c:1963
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005458#, c-format
5459msgid "%s is not a journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005460msgstr "%s ist kein Journalgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005461
Theodore Ts'obd386982015-05-17 20:34:58 -04005462#: misc/tune2fs.c:277 misc/tune2fs.c:1974
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005463msgid "Filesystem's UUID not found on journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005464msgstr "Die UUID des Dateisystems wurde auf dem Journalgerät nicht gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005465
Philipp Thomas37be3822015-05-17 20:21:39 -04005466#: misc/tune2fs.c:301
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005467msgid ""
5468"Cannot locate journal device. It was NOT removed\n"
5469"Use -f option to remove missing journal device.\n"
5470msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005471"Das Journalgerät wurde nicht gefunden. Es wurde NICHT entfernt\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005472"Bitte benutzen Sie die Option „-f“, um das fehlende Gerät zu entfernen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005473
Theodore Ts'obd386982015-05-17 20:34:58 -04005474#: misc/tune2fs.c:310
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005475msgid "Journal removed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005476msgstr "Das Journal wurde entfernt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005477
Theodore Ts'obd386982015-05-17 20:34:58 -04005478#: misc/tune2fs.c:354
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005479msgid "while reading bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04005480msgstr "beim Lesen der Bitmaps"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005481
Theodore Ts'obd386982015-05-17 20:34:58 -04005482#: misc/tune2fs.c:362
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005483msgid "while clearing journal inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04005484msgstr "beim Zurücksetzen der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005485
Theodore Ts'obd386982015-05-17 20:34:58 -04005486#: misc/tune2fs.c:373
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005487msgid "while writing journal inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04005488msgstr "beim Schreiben der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005489
Theodore Ts'obd386982015-05-17 20:34:58 -04005490#: misc/tune2fs.c:405 misc/tune2fs.c:418
Philipp Thomas3e914b52011-01-24 15:03:41 -05005491msgid "(and reboot afterwards!)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005492msgstr "(und starten Sie danach das System neu)\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005493
Theodore Ts'obd386982015-05-17 20:34:58 -04005494#: misc/tune2fs.c:452
Theodore Ts'o8f741372008-02-28 21:47:05 -05005495#, c-format
5496msgid "Clearing filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005497msgstr "Das Deaktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005498
Theodore Ts'obd386982015-05-17 20:34:58 -04005499#: misc/tune2fs.c:458
Philipp Thomas67671422008-05-14 18:42:45 -04005500#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005501msgid "Setting filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005502msgstr "Das Aktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005503
Theodore Ts'obd386982015-05-17 20:34:58 -04005504#: misc/tune2fs.c:467
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005505msgid ""
Philipp Thomas68801282008-07-17 11:47:00 -04005506"The has_journal feature may only be cleared when the filesystem is\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005507"unmounted or mounted read-only.\n"
5508msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005509"Has_journal kann nur zurückgesetzt werden, wenn das Dateisystem nicht\n"
5510"oder nur-lesbar eingehängt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005511
Theodore Ts'obd386982015-05-17 20:34:58 -04005512#: misc/tune2fs.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005513msgid ""
5514"The needs_recovery flag is set. Please run e2fsck before clearing\n"
5515"the has_journal flag.\n"
5516msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005517"needs_recovery ist gesetzt. Bitte führen Sie e2fsck aus, bevor Sie\n"
5518"has_journal zurück setzen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005519
Theodore Ts'obd386982015-05-17 20:34:58 -04005520#: misc/tune2fs.c:495
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005521msgid ""
5522"Setting filesystem feature 'sparse_super' not supported\n"
5523"for filesystems with the meta_bg feature enabled.\n"
5524msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005525"Das Setzen von „sparse_super“ wird auf Dateisystemen mit aktiviertem\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005526"„meta_bg“ nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005527
Theodore Ts'obd386982015-05-17 20:34:58 -04005528#: misc/tune2fs.c:508
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005529msgid ""
5530"The multiple mount protection feature can't\n"
5531"be set if the filesystem is mounted or\n"
5532"read-only.\n"
5533msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005534"Der Schutz vor mehrfachem Einhängen kann nur aktiviert werden, wenn das\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005535"Dateisystem nicht oder nur-lesbar eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005536
Theodore Ts'obd386982015-05-17 20:34:58 -04005537#: misc/tune2fs.c:526
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005538#, c-format
5539msgid "Multiple mount protection has been enabled with update interval %ds.\n"
5540msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005541"Der Schutz vor mehrfachem Einhängen wurde mit einem "
5542"Aktualisierungsintervall\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005543"von %d Sekunden aktiviert.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005544
Theodore Ts'obd386982015-05-17 20:34:58 -04005545#: misc/tune2fs.c:535
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005546msgid ""
5547"The multiple mount protection feature cannot\n"
5548"be disabled if the filesystem is readonly.\n"
5549msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005550"Der Schutz vor mehrfachem Einhängen kann nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005551"deaktiviert werden, wenn das Dateisystem nur-lesbar\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005552"eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005553
Theodore Ts'obd386982015-05-17 20:34:58 -04005554#: misc/tune2fs.c:543
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005555msgid "Error while reading bitmaps\n"
5556msgstr "Fehler beim Lesen der Bitmaps\n"
5557
Theodore Ts'obd386982015-05-17 20:34:58 -04005558#: misc/tune2fs.c:552
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005559#, c-format
5560msgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005561msgstr ""
5562"Die magische Zahl im MMP-Block passt nicht. Erwartet: %x, gefunden: %x\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005563
Theodore Ts'obd386982015-05-17 20:34:58 -04005564#: misc/tune2fs.c:557
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005565msgid "while reading MMP block."
Philipp Thomasb93349a2014-05-31 13:32:39 -04005566msgstr "beim Lesen des MMP-Blocks."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005567
Theodore Ts'obd386982015-05-17 20:34:58 -04005568#: misc/tune2fs.c:589
Philipp Thomas720e6362008-06-21 14:06:00 -04005569msgid ""
5570"Clearing the flex_bg flag would cause the the filesystem to be\n"
5571"inconsistent.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005572msgstr ""
5573"Das Deaktivieren von flex_bg würde das Dateisystem inkonsistent machen.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005574
Theodore Ts'obd386982015-05-17 20:34:58 -04005575#: misc/tune2fs.c:600
Philipp Thomas68801282008-07-17 11:47:00 -04005576msgid ""
5577"The huge_file feature may only be cleared when the filesystem is\n"
5578"unmounted or mounted read-only.\n"
5579msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005580"huge_file kann nur aktiviert werden, wenn das Dateisystem nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005581"oder nur-lesbar eingehängt ist.\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005582
Theodore Ts'obd386982015-05-17 20:34:58 -04005583#: misc/tune2fs.c:660
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005584msgid ""
5585"\n"
5586"Warning: '^quota' option overrides '-Q'arguments.\n"
5587msgstr ""
5588"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005589"Warnung: die Option „^quota“ hat Vorrang vor „-Q“-Argumenten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005590
Theodore Ts'obd386982015-05-17 20:34:58 -04005591#: misc/tune2fs.c:705
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005592msgid "The filesystem already has a journal.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005593msgstr "Das Dateisystem hat bereits ein Journal.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005594
Theodore Ts'obd386982015-05-17 20:34:58 -04005595#: misc/tune2fs.c:725
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005596#, c-format
5597msgid ""
5598"\n"
5599"\twhile trying to open journal on %s\n"
5600msgstr ""
5601"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005602"\tbeim Versuch, das Journal auf %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005603
Theodore Ts'obd386982015-05-17 20:34:58 -04005604#: misc/tune2fs.c:729
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005605#, c-format
5606msgid "Creating journal on device %s: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005607msgstr "Journal wird erzeugt auf Gerät %s: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005608
Theodore Ts'obd386982015-05-17 20:34:58 -04005609#: misc/tune2fs.c:737
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005610#, c-format
5611msgid "while adding filesystem to journal on %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005612msgstr "beim Hinzufügen des Dateisystems zum Journal auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005613
Theodore Ts'obd386982015-05-17 20:34:58 -04005614#: misc/tune2fs.c:743
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005615msgid "Creating journal inode: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005616msgstr "Journal-Inodes werden erzeugt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005617
Theodore Ts'obd386982015-05-17 20:34:58 -04005618#: misc/tune2fs.c:757
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005619msgid ""
5620"\n"
5621"\twhile trying to create journal file"
5622msgstr ""
5623"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005624"\tbeim Versuch, die Journaldatei zu erzeugen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005625
Theodore Ts'obd386982015-05-17 20:34:58 -04005626#: misc/tune2fs.c:832
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005627msgid "Couldn't allocate memory to parse quota options!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005628msgstr ""
5629"Speicher zum Einlesen der Quota-Optionen konnte nicht reserviert werden!\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005630
Theodore Ts'obd386982015-05-17 20:34:58 -04005631#: misc/tune2fs.c:854
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005632msgid ""
5633"\n"
5634"Bad quota options specified.\n"
5635"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005636"Following valid quota options are available (pass by separating with "
5637"comma):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005638"\t[^]usrquota\n"
5639"\t[^]grpquota\n"
5640"\n"
5641"\n"
5642msgstr ""
5643"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005644"Es wurden ungültige Quotaoptionen angegeben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005645"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005646"Die folgenden gültigen Quotaoptionen sind verfügbar (durch Kommata getrennt\n"
5647"angeben):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005648"\t[^]usrquota\n"
5649"\t[^]grpquota\n"
5650"\n"
5651"\n"
5652
Theodore Ts'obd386982015-05-17 20:34:58 -04005653#: misc/tune2fs.c:914
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005654#, c-format
5655msgid "Couldn't parse date/time specifier: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005656msgstr "Die Angabe von Zeit/Datum war unverständlich: %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005657
Theodore Ts'obd386982015-05-17 20:34:58 -04005658#: misc/tune2fs.c:942 misc/tune2fs.c:955
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005659#, c-format
5660msgid "bad mounts count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005661msgstr "ungültge Anzahl Einhängungen - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005662
Theodore Ts'obd386982015-05-17 20:34:58 -04005663#: misc/tune2fs.c:971
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005664#, c-format
5665msgid "bad error behavior - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005666msgstr "ungültiges Verhalten im Fehlerfall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005667
Theodore Ts'obd386982015-05-17 20:34:58 -04005668#: misc/tune2fs.c:998
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005669#, c-format
5670msgid "bad gid/group name - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005671msgstr "ungültige Gruppen-ID/Gruppe - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005672
Theodore Ts'obd386982015-05-17 20:34:58 -04005673#: misc/tune2fs.c:1031
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005674#, c-format
5675msgid "bad interval - %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005676msgstr "ungültiges Intervall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005677
Theodore Ts'obd386982015-05-17 20:34:58 -04005678#: misc/tune2fs.c:1060
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005679#, c-format
5680msgid "bad reserved block ratio - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005681msgstr "ungültiges Verhältnis reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005682
Theodore Ts'obd386982015-05-17 20:34:58 -04005683#: misc/tune2fs.c:1075
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005684msgid "-o may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005685msgstr "-o darf nur einmal angegeben werden"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005686
Theodore Ts'obd386982015-05-17 20:34:58 -04005687#: misc/tune2fs.c:1084
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005688msgid "-O may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005689msgstr "-O darf nur einmal angegeben werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005690
Theodore Ts'obd386982015-05-17 20:34:58 -04005691#: misc/tune2fs.c:1101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005692#, c-format
5693msgid "bad reserved blocks count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005694msgstr "ungültige Anzahl reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005695
Theodore Ts'obd386982015-05-17 20:34:58 -04005696#: misc/tune2fs.c:1130
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005697#, c-format
5698msgid "bad uid/user name - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005699msgstr "falsche Benutzer-ID/Benutzername - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005700
Theodore Ts'obd386982015-05-17 20:34:58 -04005701#: misc/tune2fs.c:1147
Philipp Thomas68801282008-07-17 11:47:00 -04005702#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005703msgid "bad inode size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005704msgstr "ungültige Inode-Größe - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005705
Theodore Ts'obd386982015-05-17 20:34:58 -04005706#: misc/tune2fs.c:1154
Philipp Thomas720e6362008-06-21 14:06:00 -04005707#, c-format
5708msgid "Inode size must be a power of two- %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005709msgstr "Die Inode-Größe muss eine Zweierpotenz sein - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005710
Theodore Ts'obd386982015-05-17 20:34:58 -04005711#: misc/tune2fs.c:1248
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005712#, c-format
5713msgid "mmp_update_interval too big: %lu\n"
5714msgstr "mmp_update_interval ist zu groß: %lu\n"
5715
Theodore Ts'obd386982015-05-17 20:34:58 -04005716#: misc/tune2fs.c:1253
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005717#, c-format
5718msgid "Setting multiple mount protection update interval to %lu second\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005719msgid_plural ""
5720"Setting multiple mount protection update interval to %lu seconds\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005721msgstr[0] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005722"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5723"wird auf %lu Sekunde gesetzt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005724msgstr[1] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005725"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5726"wird auf %lu Sekunden gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005727
Theodore Ts'obd386982015-05-17 20:34:58 -04005728#: misc/tune2fs.c:1276
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005729#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005730msgid "Invalid RAID stride: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005731msgstr "Ungültiger RAID-Stride: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005732
Theodore Ts'obd386982015-05-17 20:34:58 -04005733#: misc/tune2fs.c:1291
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005734#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005735msgid "Invalid RAID stripe-width: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005736msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005737
Theodore Ts'obd386982015-05-17 20:34:58 -04005738#: misc/tune2fs.c:1306
Philipp Thomas40771272008-09-07 22:55:25 -04005739#, c-format
5740msgid "Invalid hash algorithm: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005741msgstr "Ungültiger Hash-Algorithmus: %s\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005742
Theodore Ts'obd386982015-05-17 20:34:58 -04005743#: misc/tune2fs.c:1312
Philipp Thomas40771272008-09-07 22:55:25 -04005744#, c-format
5745msgid "Setting default hash algorithm to %s (%d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005746msgstr "Der Standard-Hash-Algorithmus wird auf %s (%d) gesetzt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005747
Theodore Ts'obd386982015-05-17 20:34:58 -04005748#: misc/tune2fs.c:1331
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005749msgid ""
5750"\n"
5751"Bad options specified.\n"
5752"\n"
5753"Extended options are separated by commas, and may take an argument which\n"
5754"\tis set off by an equals ('=') sign.\n"
5755"\n"
5756"Valid extended options are:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005757"\tclear_mmp\n"
5758"\thash_alg=<hash algorithm>\n"
5759"\tmount_opts=<extended default mount options>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005760"\tstride=<RAID per-disk chunk size in blocks>\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005761"\tstripe_width=<RAID stride*data disks in blocks>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005762"\ttest_fs\n"
5763"\t^test_fs\n"
5764msgstr ""
5765"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005766"Falsche erweiterte Optionen angegeben.\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005767"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005768"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005769"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005770"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005771"Gültige erweiterte Optionen sind:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005772"\tclear_mmp\n"
5773"\thash_alg=<Hashalgorithmus>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005774"\tmount_opts=<erweiterte Standardeinhängoptionen>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005775"\tstride=<RAID-Blockgröße pro PLatte in Blöcken\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005776"\tstripe_width=<RAID Stride*Datenplatten in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005777"\ttest_fs\n"
5778"\t^test_fs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005779"\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005780
Theodore Ts'obd386982015-05-17 20:34:58 -04005781#: misc/tune2fs.c:1798
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005782msgid "Failed to read inode bitmap\n"
5783msgstr "Die Inode-Bitmap konnte nicht gelesen werden\n"
5784
Theodore Ts'obd386982015-05-17 20:34:58 -04005785#: misc/tune2fs.c:1803
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005786msgid "Failed to read block bitmap\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005787msgstr "Die Block-Bitmap konnte nicht gelesen werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005788
Theodore Ts'obd386982015-05-17 20:34:58 -04005789#: misc/tune2fs.c:1820 resize/resize2fs.c:931
Philipp Thomas720e6362008-06-21 14:06:00 -04005790msgid "blocks to be moved"
5791msgstr "zu verschiebende Blöcke"
5792
Theodore Ts'obd386982015-05-17 20:34:58 -04005793#: misc/tune2fs.c:1823
Philipp Thomas77c871a2010-04-19 16:59:02 -04005794msgid "Failed to allocate block bitmap when increasing inode size\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005795msgstr ""
5796"Beim Erhöhen der Inode-Größe konnte keine Blockbitmap reserviert werden\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005797
Theodore Ts'obd386982015-05-17 20:34:58 -04005798#: misc/tune2fs.c:1829
Philipp Thomas77c871a2010-04-19 16:59:02 -04005799msgid "Not enough space to increase inode size \n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005800msgstr "Der Platz reicht nicht aus für eine Erhöhung der Inode-Größe \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005801
Theodore Ts'obd386982015-05-17 20:34:58 -04005802#: misc/tune2fs.c:1834
Philipp Thomas77c871a2010-04-19 16:59:02 -04005803msgid "Failed to relocate blocks during inode resize \n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005804msgstr ""
5805"Das Verschieben von Blöcken während der Größenänderung der Inodes "
5806"scheiterte \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005807
Theodore Ts'obd386982015-05-17 20:34:58 -04005808#: misc/tune2fs.c:1866
Philipp Thomas77c871a2010-04-19 16:59:02 -04005809msgid ""
5810"Error in resizing the inode size.\n"
5811"Run e2undo to undo the file system changes. \n"
5812msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005813"Fehler beim Ändern der Inode-Größe.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005814"Starten Sie e2undo, um die Änderungen am Dateisystem rückgängig zu machen. \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005815
Theodore Ts'obd386982015-05-17 20:34:58 -04005816#: misc/tune2fs.c:1893
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005817msgid "Couldn't allocate memory for tdb filename\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005818msgstr "Es kann kein Speicher für den Tdb-Dateinamen reserviert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005819
Theodore Ts'obd386982015-05-17 20:34:58 -04005820#: misc/tune2fs.c:1914
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005821#, c-format
5822msgid "while trying to delete %s"
5823msgstr "beim Versuch, %s zu löschen"
5824
Theodore Ts'obd386982015-05-17 20:34:58 -04005825#: misc/tune2fs.c:1922
Philipp Thomas77c871a2010-04-19 16:59:02 -04005826#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005827msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005828"To undo the tune2fs operation please run the command\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005829" e2undo %s %s\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005830"\n"
5831msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005832"Um die durch Tune2fs gemachten Änderungen rückgängig zu machen, starten Sie\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005833"bitte\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005834" e2undo %s %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005835"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005836
Theodore Ts'obd386982015-05-17 20:34:58 -04005837#: misc/tune2fs.c:2056
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005838#, c-format
5839msgid ""
5840"MMP block magic is bad. Try to fix it by running:\n"
5841"'e2fsck -f %s'\n"
5842msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005843"Die magische Zahl des MMP-Blocks ist ungültig. Versuchen Sie, dies durch\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005844"„e2fsck -f %s“\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005845"zu beheben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005846
Theodore Ts'obd386982015-05-17 20:34:58 -04005847#: misc/tune2fs.c:2074
Philipp Thomas40771272008-09-07 22:55:25 -04005848#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04005849msgid "The inode size is already %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005850msgstr "Die Inode-Größe ist bereits %lu\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005851
Theodore Ts'obd386982015-05-17 20:34:58 -04005852#: misc/tune2fs.c:2081
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005853msgid "Shrinking inode size is not supported\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005854msgstr "Das Verringern der Inode-Größe wird nicht unterstützt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005855
Theodore Ts'obd386982015-05-17 20:34:58 -04005856#: misc/tune2fs.c:2086
Philipp Thomasb93349a2014-05-31 13:32:39 -04005857#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005858msgid "Invalid inode size %lu (max %d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005859msgstr "Unzulässige Inode-Größe: %lu (max %d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005860
Theodore Ts'obd386982015-05-17 20:34:58 -04005861#: misc/tune2fs.c:2133
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005862#, c-format
5863msgid "Setting maximal mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005864msgstr "Die maximale Anzahl von Einhängungen wird auf %d gesezt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005865
Theodore Ts'obd386982015-05-17 20:34:58 -04005866#: misc/tune2fs.c:2139
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005867#, c-format
5868msgid "Setting current mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005869msgstr "Die Anzahl der Einhängungen wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005870
Theodore Ts'obd386982015-05-17 20:34:58 -04005871#: misc/tune2fs.c:2144
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005872#, c-format
5873msgid "Setting error behavior to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005874msgstr "Das Fehlerverhalten wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005875
Theodore Ts'obd386982015-05-17 20:34:58 -04005876#: misc/tune2fs.c:2149
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005877#, c-format
5878msgid "Setting reserved blocks gid to %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005879msgstr "Die Gruppen-ID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005880
Theodore Ts'obd386982015-05-17 20:34:58 -04005881#: misc/tune2fs.c:2154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005882#, c-format
5883msgid "interval between checks is too big (%lu)"
Philipp Thomasab02a742014-07-09 23:13:30 -04005884msgstr "Der Abstand zwischen zwei Prüfläufen ist zu groß (%lu)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005885
Theodore Ts'obd386982015-05-17 20:34:58 -04005886#: misc/tune2fs.c:2161
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005887#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04005888msgid "Setting interval between checks to %lu seconds\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005889msgstr "Der Abstand zwischen den Prüfläufen wird auf %lu Sekunden gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005890
Theodore Ts'obd386982015-05-17 20:34:58 -04005891#: misc/tune2fs.c:2168
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005892#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005893msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005894msgstr ""
5895"Der prozentuelle Anteil reservierter Blöcke wird auf %g%% (%llu Blöcke) "
5896"gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005897
Theodore Ts'obd386982015-05-17 20:34:58 -04005898#: misc/tune2fs.c:2174
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005899#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005900msgid "reserved blocks count is too big (%llu)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005901msgstr "Die Anzahl reservierter Blöcke ist zu groß (%llu)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005902
Theodore Ts'obd386982015-05-17 20:34:58 -04005903#: misc/tune2fs.c:2181
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005904#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005905msgid "Setting reserved blocks count to %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005906msgstr "Die Anzahl reservierter Blöcke wird auf %llu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005907
Theodore Ts'obd386982015-05-17 20:34:58 -04005908#: misc/tune2fs.c:2187
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005909msgid ""
5910"\n"
5911"The filesystem already has sparse superblocks.\n"
5912msgstr ""
5913"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005914"Das Dateisystem hat bereits Sparse-Superblöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005915
Theodore Ts'obd386982015-05-17 20:34:58 -04005916#: misc/tune2fs.c:2191
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005917msgid ""
5918"\n"
5919"Setting the sparse superblock flag not supported\n"
5920"for filesystems with the meta_bg feature enabled.\n"
5921msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005922"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005923"Das Aktivieren von Sparse-Superblöcken wird auf Dateisystemen mit "
5924"aktivierter\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005925"Eigenschaft meta_bg nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005926
Theodore Ts'obd386982015-05-17 20:34:58 -04005927#: misc/tune2fs.c:2202
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005928#, c-format
5929msgid ""
5930"\n"
5931"Sparse superblock flag set. %s"
5932msgstr ""
5933"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005934"Kennung „Sparse-Superblöcke“ ist gesetzt. %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005935
Theodore Ts'obd386982015-05-17 20:34:58 -04005936#: misc/tune2fs.c:2207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005937msgid ""
5938"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005939"Clearing the sparse superblock flag not supported.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005940msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005941"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005942"Das Zurücksetzen der Kennung „Sparse-Superblöcke“ wird nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005943
Theodore Ts'obd386982015-05-17 20:34:58 -04005944#: misc/tune2fs.c:2215
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005945#, c-format
5946msgid "Setting time filesystem last checked to %s\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005947msgstr ""
5948"Der Zeitpunkt der letzten Prüfung des Dateisystems wird auf %s gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005949
Theodore Ts'obd386982015-05-17 20:34:58 -04005950#: misc/tune2fs.c:2221
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005951#, c-format
5952msgid "Setting reserved blocks uid to %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005953msgstr "Die Benutzer-ID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005954
Theodore Ts'obd386982015-05-17 20:34:58 -04005955#: misc/tune2fs.c:2253
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005956msgid "Error in using clear_mmp. It must be used with -f\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005957msgstr ""
5958"Fehler bei der Verwendung von clear_mmp. Es muss zusammen mit -f benutzt "
5959"werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005960
Theodore Ts'obd386982015-05-17 20:34:58 -04005961#: misc/tune2fs.c:2271
5962msgid ""
5963"The quota feature may only be changed when the filesystem is unmounted.\n"
5964msgstr ""
5965"Quotas können nur bei nicht eingehängten Dateisystemen geändert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005966
Theodore Ts'obd386982015-05-17 20:34:58 -04005967#: misc/tune2fs.c:2292
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005968msgid "The UUID may only be changed when the filesystem is unmounted.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005969msgstr ""
5970"Die UUID kann nur bei nicht eingehängtem Dateisystem geändert werden.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005971
Theodore Ts'obd386982015-05-17 20:34:58 -04005972#: misc/tune2fs.c:2322
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005973msgid "Invalid UUID format\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005974msgstr "Ungültiges UUID-Format\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005975
Theodore Ts'obd386982015-05-17 20:34:58 -04005976#: misc/tune2fs.c:2337
Philipp Thomas37be3822015-05-17 20:21:39 -04005977msgid "Need to update journal superblock.\n"
5978msgstr "Der Journal-Superblock muss aktualisiert werden.\n"
5979
Theodore Ts'obd386982015-05-17 20:34:58 -04005980#: misc/tune2fs.c:2358
Philipp Thomas720e6362008-06-21 14:06:00 -04005981msgid "The inode size may only be changed when the filesystem is unmounted.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005982msgstr ""
5983"Die Inode-Größe kann nur bei ausgehängtem Dateisystem geändert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005984
Theodore Ts'obd386982015-05-17 20:34:58 -04005985#: misc/tune2fs.c:2366
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005986msgid ""
5987"Changing the inode size not supported for filesystems with the flex_bg\n"
5988"feature enabled.\n"
5989msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005990"Das Ändern der Inode-Größe auf Dateisystemen mit aktiviertem flex_bg\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005991"wird nicht unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005992
Theodore Ts'obd386982015-05-17 20:34:58 -04005993#: misc/tune2fs.c:2379
Philipp Thomas68801282008-07-17 11:47:00 -04005994#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005995msgid "Setting inode size %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005996msgstr "Die Inode-Größe wird auf %lu gesetzt\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005997
Theodore Ts'obd386982015-05-17 20:34:58 -04005998#: misc/tune2fs.c:2382
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005999msgid "Failed to change inode size\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006000msgstr "Die Inode-Größe konnte nicht geändert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006001
Theodore Ts'obd386982015-05-17 20:34:58 -04006002#: misc/tune2fs.c:2393
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006003#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05006004msgid "Setting stride size to %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006005msgstr "Die Stride-Größe wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05006006
Theodore Ts'obd386982015-05-17 20:34:58 -04006007#: misc/tune2fs.c:2398
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006008#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05006009msgid "Setting stripe width to %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006010msgstr "Die Stripebreite wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05006011
Theodore Ts'obd386982015-05-17 20:34:58 -04006012#: misc/tune2fs.c:2405
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006013#, c-format
6014msgid "Setting extended default mount options to '%s'\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006015msgstr "Die erweiterten Standard-Einhängeoptionen werden auf „%s“ gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006016
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006017#: misc/util.c:93
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006018msgid "<proceeding>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006019msgstr "<Verarbeitung läuft\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006020
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006021#: misc/util.c:97
Philipp Thomasb93349a2014-05-31 13:32:39 -04006022#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006023msgid "Proceed anyway (or wait %d seconds) ? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04006024msgstr "Trotzdem fortfahren (oder %d Sekunden warten) ? (j,n) "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006025
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006026#: misc/util.c:101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006027msgid "Proceed anyway? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04006028msgstr "Trotzdem fortfahren? (j,n) "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006029
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006030#: misc/util.c:132
Philipp Thomasb93349a2014-05-31 13:32:39 -04006031#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006032msgid "\tlast mounted on %s on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006033msgstr "\tzuletzt auf %s auf %s eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006034
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006035#: misc/util.c:135
Philipp Thomasb93349a2014-05-31 13:32:39 -04006036#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006037msgid "\tlast mounted on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006038msgstr "\tzuletzt auf %s eingehängt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006039
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006040#: misc/util.c:138
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006041#, c-format
6042msgid "\tcreated on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006043msgstr "\tauf %s erzeugt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006044
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006045#: misc/util.c:141
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006046#, c-format
6047msgid "\tlast modified on %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04006048msgstr "\tzuletzt geändert %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006049
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006050#: misc/util.c:175
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006051#, c-format
6052msgid "Found a %s partition table in %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006053msgstr "In %2$s wurde eine %1$s-Partitionstabelle gefunden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006054
Philipp Thomas37be3822015-05-17 20:21:39 -04006055#: misc/util.c:202
6056#, c-format
6057msgid "The file %s does not exist and no size was specified.\n"
6058msgstr "Die Datei %s existiert nicht und es wurde keine Größe angegeben.\n"
6059
6060#: misc/util.c:210
Philipp Thomasb93349a2014-05-31 13:32:39 -04006061#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006062msgid "Creating regular file %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006063msgstr "Die reguläre Datei %s wird angelegt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006064
Philipp Thomas37be3822015-05-17 20:21:39 -04006065#: misc/util.c:213
Philipp Thomasb93349a2014-05-31 13:32:39 -04006066#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006067msgid "Could not open %s: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006068msgstr "%s kann nicht geöffnet werden: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006069
Philipp Thomas37be3822015-05-17 20:21:39 -04006070#: misc/util.c:216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006071msgid ""
6072"\n"
6073"The device apparently does not exist; did you specify it correctly?\n"
6074msgstr ""
6075"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006076"Das Gerät existiert offensichtlich nicht; haben Sie es korrekt angegeben?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006077
Philipp Thomas37be3822015-05-17 20:21:39 -04006078#: misc/util.c:238
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006079#, c-format
6080msgid "%s is not a block special device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006081msgstr "%s ist kein spezielles Blockgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006082
Philipp Thomas37be3822015-05-17 20:21:39 -04006083#: misc/util.c:260
Philipp Thomasb93349a2014-05-31 13:32:39 -04006084#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006085msgid "%s contains a %s file system labelled '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006086msgstr "%s hat ein %s-Dateisystem mit Namen „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006087
Philipp Thomas37be3822015-05-17 20:21:39 -04006088#: misc/util.c:263
Philipp Thomasb93349a2014-05-31 13:32:39 -04006089#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006090msgid "%s contains a %s file system\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006091msgstr "%s hat ein %s-Dateisystem\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006092
Philipp Thomas37be3822015-05-17 20:21:39 -04006093#: misc/util.c:300
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006094#, c-format
6095msgid "%s is entire device, not just one partition!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006096msgstr "%s ist das ganze Gerät und nicht nur eine einzelne Partition!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006097
Philipp Thomas37be3822015-05-17 20:21:39 -04006098#: misc/util.c:323
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006099msgid "mke2fs forced anyway. Hope /etc/mtab is incorrect.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006100msgstr ""
6101"mke2fs wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006102
Philipp Thomas37be3822015-05-17 20:21:39 -04006103#: misc/util.c:328
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006104#, c-format
6105msgid "will not make a %s here!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006106msgstr "%s wird hier nicht angelegt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006107
Philipp Thomas37be3822015-05-17 20:21:39 -04006108#: misc/util.c:335
Theodore Ts'o7ae19832005-06-19 09:45:36 -04006109msgid "mke2fs forced anyway.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006110msgstr "mke2fs wird trotzdem erzwungen.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04006111
Philipp Thomas37be3822015-05-17 20:21:39 -04006112#: misc/util.c:351
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006113msgid "Couldn't allocate memory to parse journal options!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006114msgstr ""
6115"Es konnte kein Speicher zum Einlesen der Journaloptionen reserviert werden!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006116
Philipp Thomas37be3822015-05-17 20:21:39 -04006117#: misc/util.c:376
Philipp Thomas3e914b52011-01-24 15:03:41 -05006118#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04006119msgid ""
6120"\n"
6121"Could not find journal device matching %s\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05006122msgstr ""
6123"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006124"Ein zu %s passendes Journalgerät konnte nicht gefunden werden\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04006125
Philipp Thomas37be3822015-05-17 20:21:39 -04006126#: misc/util.c:403
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006127msgid ""
6128"\n"
6129"Bad journal options specified.\n"
6130"\n"
6131"Journal options are separated by commas, and may take an argument which\n"
6132"\tis set off by an equals ('=') sign.\n"
6133"\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04006134"Valid journal options are:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006135"\tsize=<journal size in megabytes>\n"
6136"\tdevice=<journal device>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006137"\tlocation=<journal location>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006138"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04006139"The journal size must be between 1024 and 10240000 filesystem blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006140"\n"
6141msgstr ""
6142"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006143"Falsche Journaloptionen angegeben:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006144"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006145"Journaloptionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006146"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006147"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006148"Gültige Journaloptionen sind:\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006149"\tsize=<Journalgröße in Megabytes>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006150"\tdevice=<Journalgerät>\n"
6151"\tlocation=<Position des Journals>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006152"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006153"Die Größe des Journals muss zwischen 1024 und 10240000 Dateisystemblöcken\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006154"\tliegen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006155"\n"
6156
Philipp Thomas37be3822015-05-17 20:21:39 -04006157#: misc/util.c:434
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006158msgid ""
6159"\n"
6160"Filesystem too small for a journal\n"
6161msgstr ""
6162"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006163"Das Dateisystem ist für ein Journal zu klein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006164
Philipp Thomas37be3822015-05-17 20:21:39 -04006165#: misc/util.c:441
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006166#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006167msgid ""
6168"\n"
6169"The requested journal size is %d blocks; it must be\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006170"between 1024 and 10240000 blocks. Aborting.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006171msgstr ""
6172"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006173"Die gewünschte Journalgröße ist %d Blöcke; sie muss\n"
6174"zwischen 1024 und 10240000 Blöcken liegen. Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006175
Philipp Thomas37be3822015-05-17 20:21:39 -04006176#: misc/util.c:449
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006177msgid ""
6178"\n"
6179"Journal size too big for filesystem.\n"
6180msgstr ""
6181"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006182"Das Journal ist für dieses Dateisystem zu groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006183
Philipp Thomas37be3822015-05-17 20:21:39 -04006184#: misc/util.c:463
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006185#, c-format
6186msgid ""
6187"This filesystem will be automatically checked every %d mounts or\n"
6188"%g days, whichever comes first. Use tune2fs -c or -i to override.\n"
6189msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006190"Dieses Dateisystem wird automatisch alle %d Einhängungen oder\n"
6191"%g Tage überprüft, was immer zuerst kommt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006192
Philipp Thomas37be3822015-05-17 20:21:39 -04006193#: misc/uuidd.c:49
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006194#, c-format
6195msgid "Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006196msgstr "Aufruf: %s [-d] [-p Prozess-ID-Datei] [-s Socketpfad] [-T Timeout]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006197
Philipp Thomas37be3822015-05-17 20:21:39 -04006198#: misc/uuidd.c:51
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006199#, c-format
6200msgid " %s [-r|t] [-n num] [-s socketpath]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006201msgstr " %s [-r|t] [-n Anzahl] [-s Socketpfad]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006202
Philipp Thomas37be3822015-05-17 20:21:39 -04006203#: misc/uuidd.c:53
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006204#, c-format
6205msgid " %s -k\n"
6206msgstr " %s -k\n"
6207
Philipp Thomas37be3822015-05-17 20:21:39 -04006208#: misc/uuidd.c:155
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006209msgid "bad arguments"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006210msgstr "ungültige Argumente"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006211
Philipp Thomas37be3822015-05-17 20:21:39 -04006212#: misc/uuidd.c:173
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006213msgid "connect"
6214msgstr "verbinden"
6215
Philipp Thomas37be3822015-05-17 20:21:39 -04006216#: misc/uuidd.c:192
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006217msgid "write"
6218msgstr "schreiben"
6219
Philipp Thomas37be3822015-05-17 20:21:39 -04006220#: misc/uuidd.c:200
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006221msgid "read count"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006222msgstr "Lesezähler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006223
Philipp Thomas37be3822015-05-17 20:21:39 -04006224#: misc/uuidd.c:206
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006225msgid "bad response length"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006226msgstr "ungültige Länge der Antwort"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006227
Philipp Thomas37be3822015-05-17 20:21:39 -04006228#: misc/uuidd.c:271
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006229#, c-format
6230msgid "uuidd daemon already running at pid %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006231msgstr "der uuidd-Dämon läft bereits mit Prozess-ID %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006232
Philipp Thomas37be3822015-05-17 20:21:39 -04006233#: misc/uuidd.c:279
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006234#, c-format
6235msgid "Couldn't create unix stream socket: %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04006236msgstr "Es konnte kein Unix-Stream-Socket erzeugt werden: %s"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006237
Philipp Thomas37be3822015-05-17 20:21:39 -04006238#: misc/uuidd.c:308
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006239#, c-format
6240msgid "Couldn't bind unix socket %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006241msgstr "Es konnte nicht mit Unix-Socket %s verbunden werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006242
Philipp Thomas37be3822015-05-17 20:21:39 -04006243#: misc/uuidd.c:316
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006244#, c-format
6245msgid "Couldn't listen on unix socket %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006246msgstr "Lauschen auf Unix-Socket %s war nicht möglich: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006247
Philipp Thomas37be3822015-05-17 20:21:39 -04006248#: misc/uuidd.c:354
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006249#, c-format
6250msgid "Error reading from client, len = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006251msgstr "Fehler beim Lesen vom Client, Länge = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006252
Philipp Thomas37be3822015-05-17 20:21:39 -04006253#: misc/uuidd.c:362
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006254#, c-format
6255msgid "operation %d, incoming num = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006256msgstr "Operation %d, eingehende Nummer = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006257
Philipp Thomas37be3822015-05-17 20:21:39 -04006258#: misc/uuidd.c:381
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006259#, c-format
6260msgid "Generated time UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006261msgstr "Zeit-UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006262
Philipp Thomas37be3822015-05-17 20:21:39 -04006263#: misc/uuidd.c:391
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006264#, c-format
6265msgid "Generated random UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006266msgstr "Zufällige UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006267
Philipp Thomas37be3822015-05-17 20:21:39 -04006268#: misc/uuidd.c:400
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006269#, c-format
6270msgid "Generated time UUID %s and subsequent UUID\n"
6271msgid_plural "Generated time UUID %s and %d subsequent UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006272msgstr[0] "Zeit-UUID %s und die folgende UUID erzeugt\n"
6273msgstr[1] "Zeit-UUID %s und die folgenden %d UUIDs erzeugt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006274
Philipp Thomas37be3822015-05-17 20:21:39 -04006275#: misc/uuidd.c:421
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006276#, c-format
6277msgid "Generated %d UUID's:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006278msgstr "%d UUIDs erzeugt:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006279
Philipp Thomas37be3822015-05-17 20:21:39 -04006280#: misc/uuidd.c:433
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006281#, c-format
6282msgid "Invalid operation %d\n"
6283msgstr "Ungültige Operation %d\n"
6284
Philipp Thomas37be3822015-05-17 20:21:39 -04006285#: misc/uuidd.c:477 misc/uuidd.c:499
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006286#, c-format
6287msgid "Bad number: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006288msgstr "Ungültige Nummer: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006289
Philipp Thomas37be3822015-05-17 20:21:39 -04006290#: misc/uuidd.c:534 misc/uuidd.c:563
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006291#, c-format
6292msgid "Error calling uuidd daemon (%s): %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006293msgstr "Fehler beim Aufruf des Uuid-Dämons (%s): %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006294
Philipp Thomas37be3822015-05-17 20:21:39 -04006295#: misc/uuidd.c:544
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006296#, c-format
6297msgid "%s and subsequent UUID\n"
6298msgid_plural "%s and subsequent %d UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006299msgstr[0] "%s und die folgende UUID\n"
6300msgstr[1] "%s und die folgenden %d UUIDs\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006301
Philipp Thomas37be3822015-05-17 20:21:39 -04006302#: misc/uuidd.c:548
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006303msgid "List of UUID's:\n"
6304msgstr "Liste der UUIDs:\n"
6305
Philipp Thomas37be3822015-05-17 20:21:39 -04006306#: misc/uuidd.c:569
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006307#, c-format
6308msgid "Unexpected reply length from server %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006309msgstr "Unerwartete Antwortlänge von Server %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006310
Philipp Thomas37be3822015-05-17 20:21:39 -04006311#: misc/uuidd.c:586
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006312#, c-format
6313msgid "Couldn't kill uuidd running at pid %d: %s\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006314msgstr ""
6315"Der mit Prozess-ID %d laufende uuidd konnte nicht abgeschossen werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006316
Philipp Thomas37be3822015-05-17 20:21:39 -04006317#: misc/uuidd.c:592
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006318#, c-format
6319msgid "Killed uuidd running at pid %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006320msgstr "Der mit PID %d laufende uuidd wurde abgeschossen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006321
6322#: misc/uuidgen.c:32
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006323#, c-format
6324msgid "Usage: %s [-r] [-t]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006325msgstr "Aufruf: %s [-r] [-t]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006326
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006327#: resize/extent.c:202
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006328msgid "# Extent dump:\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006329msgstr "# Dump der Erweiterung:\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006330
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006331#: resize/extent.c:203
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006332#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006333msgid "#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006334msgstr "#\tAnz=%llu, Größe=%llu, Cursor=%llu, Sortiert=%llu\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006335
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006336#: resize/main.c:44
Philipp Thomas68801282008-07-17 11:47:00 -04006337#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006338msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04006339"Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] device [new_size]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006340"\n"
6341msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006342"Aufruf: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] Gerät [neue_Größe]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006343"\n"
6344
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006345#: resize/main.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006346msgid "Extending the inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006347msgstr "Die Inode-Tabelle wird erweitert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006348
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006349#: resize/main.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006350msgid "Relocating blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006351msgstr "Blöcke werden verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006352
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006353#: resize/main.c:72
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006354msgid "Scanning inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006355msgstr "Die Inode-Tabelle wird gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006356
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006357#: resize/main.c:75
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006358msgid "Updating inode references"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006359msgstr "Die Inode-Referenzen werden aktualisiert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006360
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006361#: resize/main.c:78
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006362msgid "Moving inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006363msgstr "Die Inode-Tabelle wird verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006364
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006365#: resize/main.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006366msgid "Unknown pass?!?"
6367msgstr "Unbekannter Durchgang?!?"
6368
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006369#: resize/main.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006370#, c-format
6371msgid "Begin pass %d (max = %lu)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006372msgstr "Start von Durchgang %d (max = %lu)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006373
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006374#: resize/main.c:155
6375msgid ""
6376"\n"
6377"Resizing bigalloc file systems has not been fully tested. Proceed at\n"
6378"your own risk! Use the force option if you want to go ahead anyway.\n"
6379"\n"
6380msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006381"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006382"Die Größenveränderung von Bigalloc-Dateisystemen wurde noch nicht "
6383"vollständig\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006384"geprüft. Deswegen handeln Sie auf eigene Gefahr!. Verwenden Sie die Option\n"
6385"„force“, wenn Sie trotzdem fortfahren wollen.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006386
Theodore Ts'obd386982015-05-17 20:34:58 -04006387#: resize/main.c:273
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006388#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006389msgid "while opening %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006390msgstr "beim Öffnen von %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006391
Theodore Ts'obd386982015-05-17 20:34:58 -04006392#: resize/main.c:281
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006393#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006394msgid "while getting stat information for %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006395msgstr "beim Abfragen der Statusinformation für %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006396
Theodore Ts'obd386982015-05-17 20:34:58 -04006397#: resize/main.c:349
Theodore Ts'o057a1592010-06-07 12:24:21 -04006398#, c-format
6399msgid ""
6400"Please run 'e2fsck -f %s' first.\n"
6401"\n"
6402msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006403"Bitte lassen Sie zuerst „e2fsck -f %s“ laufen.\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04006404"\n"
6405
Theodore Ts'obd386982015-05-17 20:34:58 -04006406#: resize/main.c:368
Philipp Thomas720e6362008-06-21 14:06:00 -04006407#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006408msgid "Estimated minimum size of the filesystem: %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006409msgstr "Geschätzte minimale Größe des Dateisystems: %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006410
Theodore Ts'obd386982015-05-17 20:34:58 -04006411#: resize/main.c:405
Philipp Thomas77c871a2010-04-19 16:59:02 -04006412#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006413msgid "Invalid new size: %s\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006414msgstr "Unzulässige neue Größe: %s\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006415
Theodore Ts'obd386982015-05-17 20:34:58 -04006416#: resize/main.c:421
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006417msgid "New size too large to be expressed in 32 bits\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006418msgstr "Die neue Größe lässt sich nicht mehr mit 32 Bits ausdrücken\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006419
Theodore Ts'obd386982015-05-17 20:34:58 -04006420#: resize/main.c:429
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006421#, c-format
6422msgid "New size smaller than minimum (%llu)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006423msgstr "Die neue Größe ist kleiner als das Minimum (%llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006424
Theodore Ts'obd386982015-05-17 20:34:58 -04006425#: resize/main.c:435
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006426msgid "Invalid stride length"
Philipp Thomasab02a742014-07-09 23:13:30 -04006427msgstr "Ungültige „Stride“-Länge"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006428
Theodore Ts'obd386982015-05-17 20:34:58 -04006429#: resize/main.c:459
Philipp Thomasa4edef12011-01-26 18:54:24 -05006430#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006431msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006432"The containing partition (or device) is only %llu (%dk) blocks.\n"
6433"You requested a new size of %llu blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006434"\n"
6435msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006436"Die sie enthaltende Partition (oder Gerät) ist nur %llu (%dk) Blöcke groß.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006437"Sie wollen %llu Blöcke haben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006438
Theodore Ts'obd386982015-05-17 20:34:58 -04006439#: resize/main.c:466
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006440#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006441msgid ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006442"The filesystem is already %llu (%dk) blocks long. Nothing to do!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006443"\n"
6444msgstr ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006445"Das Dateisystem ist bereits %llu (%dk) Blöcke lang. Nichts zu tun!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006446"\n"
6447
Theodore Ts'obd386982015-05-17 20:34:58 -04006448#: resize/main.c:476
Philipp Thomas77c871a2010-04-19 16:59:02 -04006449#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006450msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006451msgstr ""
6452"Die Größe des Dateisystems auf %s wird auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006453
Theodore Ts'obd386982015-05-17 20:34:58 -04006454#: resize/main.c:485
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006455#, c-format
6456msgid "while trying to resize %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006457msgstr "beim Versuch, die Größe von %s zu ändern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006458
Theodore Ts'obd386982015-05-17 20:34:58 -04006459#: resize/main.c:488
Philipp Thomas77c871a2010-04-19 16:59:02 -04006460#, c-format
6461msgid ""
6462"Please run 'e2fsck -fy %s' to fix the filesystem\n"
6463"after the aborted resize operation.\n"
6464msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006465"Bitte lassen Sie „e2fsck -fy %s“ laufen, um das\n"
6466"Dateisystem nach der abgebrochenen Größenänderung\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006467"zu reparieren.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006468
Theodore Ts'obd386982015-05-17 20:34:58 -04006469#: resize/main.c:494
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006470#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006471msgid ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006472"The filesystem on %s is now %llu (%dk) blocks long.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006473"\n"
6474msgstr ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006475"Das Dateisystem auf %s is nun %llu (%dk) Blöcke lang.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006476"\n"
6477
Theodore Ts'obd386982015-05-17 20:34:58 -04006478#: resize/main.c:509
Philipp Thomas77c871a2010-04-19 16:59:02 -04006479#, c-format
6480msgid "while trying to truncate %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006481msgstr "beim Versuch, %s abzuschneiden"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006482
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006483#: resize/online.c:82
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006484msgid "kernel does not support online resize with sparse_super2"
Theodore Ts'obd386982015-05-17 20:34:58 -04006485msgstr ""
6486"Der Kernel unterstützt die Online-Größenänderung mit sparse_super2 nicht"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006487
6488#: resize/online.c:87
Philipp Thomas720e6362008-06-21 14:06:00 -04006489#, c-format
6490msgid "Filesystem at %s is mounted on %s; on-line resizing required\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006491msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006492"Dateisystem bei %s ist auf %s eingehängt; Online-Größenänderung ist\n"
6493"erforderlich\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006494
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006495#: resize/online.c:91
Philipp Thomas3e914b52011-01-24 15:03:41 -05006496msgid "On-line shrinking not supported"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006497msgstr "Online-Schrumpfen wird nicht unterstützt"
Philipp Thomas720e6362008-06-21 14:06:00 -04006498
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006499#: resize/online.c:116
Philipp Thomas720e6362008-06-21 14:06:00 -04006500msgid "Filesystem does not support online resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006501msgstr "Das Dateisystem unterstützt die Online-Größenänderung nicht"
Philipp Thomas720e6362008-06-21 14:06:00 -04006502
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006503#: resize/online.c:125
Philipp Thomasd0275172013-01-15 23:30:35 -05006504msgid "Not enough reserved gdt blocks for resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006505msgstr "Nicht genug reservierte GDT-Blöcke für die Größenänderung"
Philipp Thomasd0275172013-01-15 23:30:35 -05006506
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006507#: resize/online.c:132
Philipp Thomasd0275172013-01-15 23:30:35 -05006508msgid "Kernel does not support resizing a file system this large"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006509msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006510"Der Kernel unterstützt die Online-Größenänderungen eines so großen\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006511"Dateisystems nicht"
Philipp Thomasd0275172013-01-15 23:30:35 -05006512
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006513#: resize/online.c:140
Philipp Thomas68801282008-07-17 11:47:00 -04006514#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006515msgid "while trying to open mountpoint %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04006516msgstr "beim Versuch, den Einhängepunkt %s zu öffnen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006517
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006518#: resize/online.c:145
Philipp Thomasb93349a2014-05-31 13:32:39 -04006519#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006520msgid "Old resize interface requested.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006521msgstr "Die alte Schnittstelle für Größenänderung wurde angefordert.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006522
6523#: resize/online.c:164 resize/online.c:181
Philipp Thomas720e6362008-06-21 14:06:00 -04006524msgid "Permission denied to resize filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006525msgstr "Die Erlaubnis zum Ändern der Dateisystemgröße wurde verweigert."
Philipp Thomas720e6362008-06-21 14:06:00 -04006526
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006527#: resize/online.c:167 resize/online.c:187
Philipp Thomas720e6362008-06-21 14:06:00 -04006528msgid "While checking for on-line resizing support"
Philipp Thomasab02a742014-07-09 23:13:30 -04006529msgstr "Beim Überprüfen der Unterstützung für Online-Größenänderung"
Philipp Thomas720e6362008-06-21 14:06:00 -04006530
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006531#: resize/online.c:184
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006532msgid "Kernel does not support online resizing"
Philipp Thomasab02a742014-07-09 23:13:30 -04006533msgstr "Der Kernel bietet keine Unterstützung für eine Online-Größenänderung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006534
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006535#: resize/online.c:223
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006536#, c-format
6537msgid "Performing an on-line resize of %s to %llu (%dk) blocks.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006538msgstr "Die Größe von %s wird gerade online auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006539
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006540#: resize/online.c:233
Philipp Thomas720e6362008-06-21 14:06:00 -04006541msgid "While trying to extend the last group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006542msgstr "beim Versuch, die letzte Gruppe zu erweitern"
Philipp Thomas720e6362008-06-21 14:06:00 -04006543
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006544#: resize/online.c:287
Philipp Thomas68801282008-07-17 11:47:00 -04006545#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006546msgid "While trying to add group #%d"
Philipp Thomasab02a742014-07-09 23:13:30 -04006547msgstr "beim Versuch, die Gruppe #%d hinzuzufügen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006548
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006549#: resize/online.c:298
Philipp Thomasa700f512008-08-29 08:49:57 -04006550#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04006551msgid ""
6552"Filesystem at %s is mounted on %s, and on-line resizing is not supported on "
6553"this system.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006554msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006555"Das Dateisystem bei %s ist auf %s eingehängt und die Änderung der Größe im\n"
6556"laufenden System wird auf diesem System nicht unterstützt.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006557
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006558#: resize/resize2fs.c:402
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006559#, c-format
6560msgid "inodes (%llu) must be less than %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006561msgstr "Die Inodes (%llu) müssen unter %u liegen"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006562
Philipp Thomas37be3822015-05-17 20:21:39 -04006563#: resize/resize2fs.c:691
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006564msgid "reserved blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006565msgstr "reservierte Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006566
Philipp Thomas37be3822015-05-17 20:21:39 -04006567#: resize/resize2fs.c:936
Theodore Ts'obc759702005-05-09 20:40:55 -04006568msgid "meta-data blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006569msgstr "Metadaten-Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006570
Philipp Thomas37be3822015-05-17 20:21:39 -04006571#: resize/resize2fs.c:1039 resize/resize2fs.c:1836
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006572msgid "new meta blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006573msgstr "neue Metadaten-Blöcke"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006574
Theodore Ts'obd386982015-05-17 20:34:58 -04006575#: resize/resize2fs.c:2056
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006576msgid "Should never happen! No sb in last super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006577msgstr "Dies sollte nie geschehen! Kein sb im letzten super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006578
Theodore Ts'obd386982015-05-17 20:34:58 -04006579#: resize/resize2fs.c:2061
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006580msgid "Should never happen! Unexpected old_desc in super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006581msgstr "Dies sollte nie geschehen! Unerwartete old_desc in super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006582
Theodore Ts'obd386982015-05-17 20:34:58 -04006583#: resize/resize2fs.c:2139
Theodore Ts'obc759702005-05-09 20:40:55 -04006584msgid "Should never happen: resize inode corrupt!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006585msgstr "Dies sollte nie geschehen: Der Größenänderungs-Inode ist defekt!\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05006586
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006587#: lib/ext2fs/ext2_err.c:11
Theodore Ts'oe622f9a2015-05-17 21:10:07 -04006588#, fuzzy
6589msgid "EXT2FS Library version 1.42.13"
Philipp Thomas37be3822015-05-17 20:21:39 -04006590msgstr "EXT2FS-Bibliothek, Version 1.42.12"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006591
6592#: lib/ext2fs/ext2_err.c:12
6593msgid "Wrong magic number for ext2_filsys structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006594msgstr "Falsche magische Zahl für eine ext2_filesys-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006595
6596#: lib/ext2fs/ext2_err.c:13
6597msgid "Wrong magic number for badblocks_list structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006598msgstr "Falsche magische Zahl für eine badblocks_list-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006599
6600#: lib/ext2fs/ext2_err.c:14
6601msgid "Wrong magic number for badblocks_iterate structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006602msgstr "Falsche magische Zahl für eine badblocks_iterate-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006603
6604#: lib/ext2fs/ext2_err.c:15
6605msgid "Wrong magic number for inode_scan structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006606msgstr "Falsche magische Zahl für eine inode_scan-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006607
6608#: lib/ext2fs/ext2_err.c:16
6609msgid "Wrong magic number for io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006610msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006611
6612#: lib/ext2fs/ext2_err.c:17
6613msgid "Wrong magic number for unix io_channel structure"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006614msgstr "Falsche magische Zahl für eine Unix io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006615
6616#: lib/ext2fs/ext2_err.c:18
6617msgid "Wrong magic number for io_manager structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006618msgstr "Falsche magische Zahl für eine io_manager-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006619
6620#: lib/ext2fs/ext2_err.c:19
6621msgid "Wrong magic number for block_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006622msgstr "Falsche magische Zahl für eine block_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006623
6624#: lib/ext2fs/ext2_err.c:20
6625msgid "Wrong magic number for inode_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006626msgstr "Falsche magische Zahl für eine inode_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006627
6628#: lib/ext2fs/ext2_err.c:21
6629msgid "Wrong magic number for generic_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006630msgstr "Falsche magische Zahl für eine generic_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006631
6632#: lib/ext2fs/ext2_err.c:22
6633msgid "Wrong magic number for test io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006634msgstr "Falsche magische Zahl für eine test-io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006635
6636#: lib/ext2fs/ext2_err.c:23
6637msgid "Wrong magic number for directory block list structure"
Theodore Ts'obd386982015-05-17 20:34:58 -04006638msgstr ""
6639"Falsche magische Zahl für eine Struktur für die Liste der Verzeichnisblöcke"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006640
6641#: lib/ext2fs/ext2_err.c:24
6642msgid "Wrong magic number for icount structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006643msgstr "Falsche magische Zahl für eine icount-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006644
6645#: lib/ext2fs/ext2_err.c:25
6646msgid "Wrong magic number for Powerquest io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006647msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006648
6649#: lib/ext2fs/ext2_err.c:26
6650msgid "Wrong magic number for ext2 file structure"
Philipp Thomasab02a742014-07-09 23:13:30 -04006651msgstr "Falsche magische Zahl für eine Ext2-Datei-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006652
6653#: lib/ext2fs/ext2_err.c:27
6654msgid "Wrong magic number for Ext2 Image Header"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006655msgstr "Falsche magische Zahl für einen Ext2-Abbild-Kopf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006656
6657#: lib/ext2fs/ext2_err.c:28
6658msgid "Wrong magic number for inode io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006659msgstr "Falsche magische Zahl für eine Struktur des Inode-io_channels"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006660
6661#: lib/ext2fs/ext2_err.c:29
6662msgid "Wrong magic number for ext4 extent handle"
Philipp Thomasab02a742014-07-09 23:13:30 -04006663msgstr "Falsche magische Zahl für eine Ext4-Erweiterungshandle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006664
6665#: lib/ext2fs/ext2_err.c:30
6666msgid "Bad magic number in super-block"
6667msgstr "Ungültige magische Zahl im Superblock"
6668
6669#: lib/ext2fs/ext2_err.c:31
6670msgid "Filesystem revision too high"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006671msgstr "Die Dateisystemversion ist zu hoch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006672
6673#: lib/ext2fs/ext2_err.c:32
6674msgid "Attempt to write to filesystem opened read-only"
Theodore Ts'obd386982015-05-17 20:34:58 -04006675msgstr ""
6676"Dies ist ein Versuch, auf ein nur-lesbar geöffnetes Dateisystem zu schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006677
6678#: lib/ext2fs/ext2_err.c:33
6679msgid "Can't read group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006680msgstr "Die Gruppendeskriptoren konnten nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006681
6682#: lib/ext2fs/ext2_err.c:34
6683msgid "Can't write group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006684msgstr "Die Gruppendeskriptoren konnten nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006685
6686#: lib/ext2fs/ext2_err.c:35
6687msgid "Corrupt group descriptor: bad block for block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006688msgstr "Defekter Gruppendeskriptor: defekter Block für die Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006689
6690#: lib/ext2fs/ext2_err.c:36
6691msgid "Corrupt group descriptor: bad block for inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006692msgstr "Defekter Gruppendeskriptor: defekter Block für die Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006693
6694#: lib/ext2fs/ext2_err.c:37
6695msgid "Corrupt group descriptor: bad block for inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006696msgstr "Defekter Gruppendeskriptor: defekter Block für die Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006697
6698#: lib/ext2fs/ext2_err.c:38
6699msgid "Can't write an inode bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006700msgstr "Eine Inode-Bitmap konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006701
6702#: lib/ext2fs/ext2_err.c:39
6703msgid "Can't read an inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006704msgstr "Eine Inode-Bitmap konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006705
6706#: lib/ext2fs/ext2_err.c:40
Darrick J. Wong580d8a02013-10-07 09:20:28 -04006707msgid "Can't write a block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006708msgstr "Eine Block-Bitmap konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006709
6710#: lib/ext2fs/ext2_err.c:41
Darrick J. Wongba0230f2013-12-12 12:41:58 -05006711msgid "Can't read a block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006712msgstr "Eine Block-Bitmap konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006713
6714#: lib/ext2fs/ext2_err.c:42
6715msgid "Can't write an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006716msgstr "Eine Inode-Tabelle konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006717
6718#: lib/ext2fs/ext2_err.c:43
6719msgid "Can't read an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006720msgstr "Eine Inode-Tabelle konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006721
6722#: lib/ext2fs/ext2_err.c:44
6723msgid "Can't read next inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04006724msgstr "Der nächste Inode kann nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006725
6726#: lib/ext2fs/ext2_err.c:45
6727msgid "Filesystem has unexpected block size"
6728msgstr "Das Dateisystem hat eine unerwartete Blockgröße"
6729
6730#: lib/ext2fs/ext2_err.c:46
6731msgid "EXT2 directory corrupted"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006732msgstr "Das Ext2-Verzeichnis ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006733
6734#: lib/ext2fs/ext2_err.c:47
6735msgid "Attempt to read block from filesystem resulted in short read"
Theodore Ts'obd386982015-05-17 20:34:58 -04006736msgstr ""
6737"Der Versuch, einen Block vom Dateisystem zu lesen, endete in kurzem Lesen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006738
6739#: lib/ext2fs/ext2_err.c:48
6740msgid "Attempt to write block to filesystem resulted in short write"
Theodore Ts'obd386982015-05-17 20:34:58 -04006741msgstr ""
6742"Der Versuch, einen Block auf das Dateisystem zu schreiben, endete in kurzem "
6743"Schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006744
6745#: lib/ext2fs/ext2_err.c:49
6746msgid "No free space in the directory"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006747msgstr "Kein freier Platz im Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006748
6749#: lib/ext2fs/ext2_err.c:50
6750msgid "Inode bitmap not loaded"
Philipp Thomasab02a742014-07-09 23:13:30 -04006751msgstr "die Inode-Bitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006752
6753#: lib/ext2fs/ext2_err.c:51
6754msgid "Block bitmap not loaded"
Philipp Thomasab02a742014-07-09 23:13:30 -04006755msgstr "die Block-Bitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006756
6757#: lib/ext2fs/ext2_err.c:52
6758msgid "Illegal inode number"
Philipp Thomasab02a742014-07-09 23:13:30 -04006759msgstr "Ungültige Inode-Nummer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006760
6761#: lib/ext2fs/ext2_err.c:53
6762msgid "Illegal block number"
Philipp Thomasab02a742014-07-09 23:13:30 -04006763msgstr "Ungültige Blockzahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006764
6765#: lib/ext2fs/ext2_err.c:54
6766msgid "Internal error in ext2fs_expand_dir"
6767msgstr "Interner Fehler in ext2fs_expand_dir"
6768
6769#: lib/ext2fs/ext2_err.c:55
6770msgid "Not enough space to build proposed filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006771msgstr "Nicht genug Platz, um das vorgeschlagene Dateisystem zu bauen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006772
6773#: lib/ext2fs/ext2_err.c:56
6774msgid "Illegal block number passed to ext2fs_mark_block_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006775msgstr ""
6776"Es wurde eine ungültige Blocknummer an ext2fs_mark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006777
6778#: lib/ext2fs/ext2_err.c:57
6779msgid "Illegal block number passed to ext2fs_unmark_block_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006780msgstr ""
6781"Es wurde eine ungültige Blocknummer an ext2fs_unmark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006782
6783#: lib/ext2fs/ext2_err.c:58
6784msgid "Illegal block number passed to ext2fs_test_block_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006785msgstr ""
6786"Es wurde eine ungültige Blocknummer an ext2fs_test_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006787
6788#: lib/ext2fs/ext2_err.c:59
6789msgid "Illegal inode number passed to ext2fs_mark_inode_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006790msgstr ""
6791"Es wurde eine ungültige Inode-Nummer an ext2fs_mark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006792
6793#: lib/ext2fs/ext2_err.c:60
6794msgid "Illegal inode number passed to ext2fs_unmark_inode_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006795msgstr ""
6796"Es wurde eine ungültige Inode-Nummer an ext2fs_unmark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006797
6798#: lib/ext2fs/ext2_err.c:61
6799msgid "Illegal inode number passed to ext2fs_test_inode_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006800msgstr ""
6801"Es wurde eine ungültige Inode-Nummer an ext2fs_test_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006802
6803#: lib/ext2fs/ext2_err.c:62
6804msgid "Attempt to fudge end of block bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006805msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006806"Es wird versucht, das Ende der Block-Bitmap jenseits des wirklichen Endes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006807"zu platzieren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006808
6809#: lib/ext2fs/ext2_err.c:63
6810msgid "Attempt to fudge end of inode bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006811msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006812"Es wird versucht, das Ende der Inode-Bitmap jenseits des wirklichen Endes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006813"zu platzieren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006814
6815#: lib/ext2fs/ext2_err.c:64
6816msgid "Illegal indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006817msgstr "Es wurde ein ungültiger indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006818
6819#: lib/ext2fs/ext2_err.c:65
6820msgid "Illegal doubly indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006821msgstr "Es wurde ein ungültiger doppelt indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006822
6823#: lib/ext2fs/ext2_err.c:66
6824msgid "Illegal triply indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006825msgstr "Es wurde ein ungültiger dreifach indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006826
6827#: lib/ext2fs/ext2_err.c:67
6828msgid "Block bitmaps are not the same"
Philipp Thomasab02a742014-07-09 23:13:30 -04006829msgstr "Die Block-Bitmaps sind nicht identisch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006830
6831#: lib/ext2fs/ext2_err.c:68
6832msgid "Inode bitmaps are not the same"
Philipp Thomasab02a742014-07-09 23:13:30 -04006833msgstr "Die Inode-Bitmaps sind nicht identisch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006834
6835#: lib/ext2fs/ext2_err.c:69
6836msgid "Illegal or malformed device name"
Philipp Thomasab02a742014-07-09 23:13:30 -04006837msgstr "Ungültiger oder fehlerhafter Gerätename"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006838
6839#: lib/ext2fs/ext2_err.c:70
6840msgid "A block group is missing an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006841msgstr "Einer Blockgruppe fehlt eine Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006842
6843#: lib/ext2fs/ext2_err.c:71
6844msgid "The ext2 superblock is corrupt"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006845msgstr "Der Ext2-Superblock ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006846
6847#: lib/ext2fs/ext2_err.c:72
6848msgid "Illegal generic bit number passed to ext2fs_mark_generic_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006849msgstr ""
6850"Eine unzulässige generische Bitnummer wurde an ext2fs_mark_generic_bitmap "
6851"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006852
6853#: lib/ext2fs/ext2_err.c:73
6854msgid "Illegal generic bit number passed to ext2fs_unmark_generic_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006855msgstr ""
6856"Eine unzulässige generische Bitnummer wurde an ext2fs_unmark_generic_bitmap "
6857"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006858
6859#: lib/ext2fs/ext2_err.c:74
6860msgid "Illegal generic bit number passed to ext2fs_test_generic_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006861msgstr ""
6862"Eine unzulässige generische Bitnummer wurde an ext2fs_test_generic_bitmap "
6863"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006864
6865#: lib/ext2fs/ext2_err.c:75
6866msgid "Too many symbolic links encountered."
Philipp Thomasab02a742014-07-09 23:13:30 -04006867msgstr "Es wurden zu viele symbolische Verknüpfungen gefunden."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006868
6869#: lib/ext2fs/ext2_err.c:76
6870msgid "The callback function will not handle this case"
Philipp Thomasab02a742014-07-09 23:13:30 -04006871msgstr "Die Callback-Funktion kann diesen Fall nicht handhaben."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006872
6873#: lib/ext2fs/ext2_err.c:77
6874msgid "The inode is from a bad block in the inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006875msgstr "Der Inode kommt von einem beschädigten Block in der Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006876
6877#: lib/ext2fs/ext2_err.c:78
6878msgid "Filesystem has unsupported feature(s)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006879msgstr "Das Dateisystem besitzt nicht unterstützte Eigenschaft(en)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006880
6881#: lib/ext2fs/ext2_err.c:79
6882msgid "Filesystem has unsupported read-only feature(s)"
Philipp Thomasab02a742014-07-09 23:13:30 -04006883msgstr "Das Dateisystem besitzt nicht unterstützte Nur-Lesen-Eigenschaft(en):"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006884
6885#: lib/ext2fs/ext2_err.c:80
6886msgid "IO Channel failed to seek on read or write"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006887msgstr "Der EA-Kanal hat nicht positioniert beim Lesen oder Schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006888
6889#: lib/ext2fs/ext2_err.c:81
6890msgid "Memory allocation failed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006891msgstr "Die Reservierung von Speicher schlug fehl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006892
6893#: lib/ext2fs/ext2_err.c:82
6894msgid "Invalid argument passed to ext2 library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006895msgstr "Ein ungültiges Argument wurde an die Ext2-Bibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006896
6897#: lib/ext2fs/ext2_err.c:83
6898msgid "Could not allocate block in ext2 filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006899msgstr "Im Ext2-Dateisystem konnte kein Block angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006900
6901#: lib/ext2fs/ext2_err.c:84
6902msgid "Could not allocate inode in ext2 filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006903msgstr "Im Ext2-Dateisystem konnte kein Inode angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006904
6905#: lib/ext2fs/ext2_err.c:85
6906msgid "Ext2 inode is not a directory"
Philipp Thomasab02a742014-07-09 23:13:30 -04006907msgstr "Der Ext2-Inode weist nicht auf ein Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006908
6909#: lib/ext2fs/ext2_err.c:86
6910msgid "Too many references in table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006911msgstr "Zu viele Referenzen in der Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006912
6913#: lib/ext2fs/ext2_err.c:87
6914msgid "File not found by ext2_lookup"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006915msgstr "Die Datei wurde von ext2_lookup nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006916
6917#: lib/ext2fs/ext2_err.c:88
6918msgid "File open read-only"
Philipp Thomasab02a742014-07-09 23:13:30 -04006919msgstr "Die Datei wurde nur-lesbar geöffnet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006920
6921#: lib/ext2fs/ext2_err.c:89
6922msgid "Ext2 directory block not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006923msgstr "Der Verzeichnisblock des ext2-Dateisystems wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006924
6925#: lib/ext2fs/ext2_err.c:90
6926msgid "Ext2 directory already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006927msgstr "Das Ext2-Verzeichnis existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006928
6929#: lib/ext2fs/ext2_err.c:91
6930msgid "Unimplemented ext2 library function"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006931msgstr "Nicht implementierte Ext2-Bibliotheksfunktion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006932
6933#: lib/ext2fs/ext2_err.c:92
6934msgid "User cancel requested"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006935msgstr "Der Benutzer hat abgebrochen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006936
6937#: lib/ext2fs/ext2_err.c:93
6938msgid "Ext2 file too big"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006939msgstr "Die Ext2-Datei ist zu groß"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006940
6941#: lib/ext2fs/ext2_err.c:94
6942msgid "Supplied journal device not a block device"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006943msgstr "Das angegebene Journalgerät ist kein blockorientiertes Gerät"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006944
6945#: lib/ext2fs/ext2_err.c:95
6946msgid "Journal superblock not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006947msgstr "Der Journal-Superblock wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006948
6949#: lib/ext2fs/ext2_err.c:96
6950msgid "Journal must be at least 1024 blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006951msgstr "Das Journal muß mindestens 1024 Blöcke groß sein"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006952
6953#: lib/ext2fs/ext2_err.c:97
6954msgid "Unsupported journal version"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006955msgstr "Nicht unterstützte Journalversion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006956
6957#: lib/ext2fs/ext2_err.c:98
6958msgid "Error loading external journal"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006959msgstr "Fehler beim Laden des externen Journals"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006960
6961#: lib/ext2fs/ext2_err.c:99
6962msgid "Journal not found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006963msgstr "Das Journal wurde nicht gefunden."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006964
6965#: lib/ext2fs/ext2_err.c:100
6966msgid "Directory hash unsupported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006967msgstr "Verzeichnishashes werden nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006968
6969#: lib/ext2fs/ext2_err.c:101
6970msgid "Illegal extended attribute block number"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006971msgstr "Die Nummer des Blocks für erweiterte Attribute ist unzulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006972
6973#: lib/ext2fs/ext2_err.c:102
6974msgid "Cannot create filesystem with requested number of inodes"
Theodore Ts'obd386982015-05-17 20:34:58 -04006975msgstr ""
6976"Ein Dateisystem mit der gewünschten Anzahl Inodes kann nicht erzeugt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006977
6978#: lib/ext2fs/ext2_err.c:103
6979msgid "E2image snapshot not in use"
Philipp Thomasab02a742014-07-09 23:13:30 -04006980msgstr "Der E2image-Schnappschuss wird nicht verwendet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006981
6982#: lib/ext2fs/ext2_err.c:104
6983msgid "Too many reserved group descriptor blocks"
Philipp Thomasab02a742014-07-09 23:13:30 -04006984msgstr "Zu viele reservierte Blöcke für Gruppen-Deskriptoren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006985
6986#: lib/ext2fs/ext2_err.c:105
6987msgid "Resize inode is corrupt"
Philipp Thomasab02a742014-07-09 23:13:30 -04006988msgstr "Der Größenänderungs-Inode ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006989
6990#: lib/ext2fs/ext2_err.c:106
6991msgid "Tried to set block bmap with missing indirect block"
Theodore Ts'obd386982015-05-17 20:34:58 -04006992msgstr ""
6993"Es wurde versucht, eine Block-Bitmap mit fehlendem indirektem Block zu "
6994"schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006995
6996#: lib/ext2fs/ext2_err.c:107
6997msgid "TDB: Success"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006998msgstr "TDB: Erfolg"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006999
7000#: lib/ext2fs/ext2_err.c:108
7001msgid "TDB: Corrupt database"
Philipp Thomasab02a742014-07-09 23:13:30 -04007002msgstr "TDB: Datenbank ist beschädigt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007003
7004#: lib/ext2fs/ext2_err.c:109
7005msgid "TDB: IO Error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007006msgstr "TDB: EA-Fehler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007007
7008#: lib/ext2fs/ext2_err.c:110
7009msgid "TDB: Locking error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007010msgstr "TDB: Fehler beim Sperren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007011
7012#: lib/ext2fs/ext2_err.c:111
7013msgid "TDB: Out of memory"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007014msgstr "TDB: Hauptspeicher erschöpft"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007015
7016#: lib/ext2fs/ext2_err.c:112
7017msgid "TDB: Record exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007018msgstr "TDB: Datensatz existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007019
7020#: lib/ext2fs/ext2_err.c:113
7021msgid "TDB: Lock exists on other keys"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007022msgstr "TDB: Die Sperre existiert schon auf anderen Schlüsseln"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007023
7024#: lib/ext2fs/ext2_err.c:114
7025msgid "TDB: Invalid parameter"
7026msgstr "TDB: Ungültiger Parameter"
7027
7028#: lib/ext2fs/ext2_err.c:115
7029msgid "TDB: Record does not exist"
Philipp Thomasab02a742014-07-09 23:13:30 -04007030msgstr "TDB: Der Datensatz existiert nicht"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007031
7032#: lib/ext2fs/ext2_err.c:116
7033msgid "TDB: Write not permitted"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007034msgstr "TDB: Schreiben ist nicht zulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007035
7036#: lib/ext2fs/ext2_err.c:117
7037msgid "Ext2fs directory block list is empty"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007038msgstr "Die Liste der Ext2fs-Verzeichnisblöcke ist leer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007039
7040#: lib/ext2fs/ext2_err.c:118
7041msgid "Attempt to modify a block mapping via a read-only block iterator"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007042msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04007043"Es wird versucht, eine Blockzuweisung über einen nur-lesbaren Blockiterator "
7044"zu\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007045"ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007046
7047#: lib/ext2fs/ext2_err.c:119
7048msgid "Wrong magic number for ext4 extent saved path"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007049msgstr "Falsche magische Zahl für einen gespeicherten Pfad zu ext4-Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007050
7051#: lib/ext2fs/ext2_err.c:120
7052msgid "Wrong magic number for 64-bit generic bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007053msgstr "Falsche magische Zahl für eine generische 64-Bit-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007054
7055#: lib/ext2fs/ext2_err.c:121
7056msgid "Wrong magic number for 64-bit block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007057msgstr "Falsche magische Zahl für eine 64-Bit-Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007058
7059#: lib/ext2fs/ext2_err.c:122
7060msgid "Wrong magic number for 64-bit inode bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007061msgstr "Falsche magische Zahl für eine 64-Bit-Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007062
7063#: lib/ext2fs/ext2_err.c:123
7064msgid "Wrong magic number --- RESERVED_13"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007065msgstr "Falsche magische Zahl --- RESERVED_13"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007066
7067#: lib/ext2fs/ext2_err.c:124
7068msgid "Wrong magic number --- RESERVED_14"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007069msgstr "Falsche magische Zahl --- RESERVED_14"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007070
7071#: lib/ext2fs/ext2_err.c:125
7072msgid "Wrong magic number --- RESERVED_15"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007073msgstr "Falsche magische Zahl --- RESERVED_15"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007074
7075#: lib/ext2fs/ext2_err.c:126
7076msgid "Wrong magic number --- RESERVED_16"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007077msgstr "Falsche magische Zahl --- RESERVED_16"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007078
7079#: lib/ext2fs/ext2_err.c:127
7080msgid "Wrong magic number --- RESERVED_17"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007081msgstr "Falsche magische Zahl --- RESERVED_17"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007082
7083#: lib/ext2fs/ext2_err.c:128
7084msgid "Wrong magic number --- RESERVED_18"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007085msgstr "Falsche magische Zahl --- RESERVED_18"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007086
7087#: lib/ext2fs/ext2_err.c:129
7088msgid "Wrong magic number --- RESERVED_19"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007089msgstr "Falsche magische Zahl --- RESERVED_19"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007090
7091#: lib/ext2fs/ext2_err.c:130
7092msgid "Corrupt extent header"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007093msgstr "Defekter Kopf einer Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007094
7095#: lib/ext2fs/ext2_err.c:131
7096msgid "Corrupt extent index"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007097msgstr "Beschädigter Erweiterungsindex"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007098
7099#: lib/ext2fs/ext2_err.c:132
7100msgid "Corrupt extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007101msgstr "Beschädigte Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007102
7103#: lib/ext2fs/ext2_err.c:133
7104msgid "No free space in extent map"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007105msgstr "Es ist kein freier Platz in der Karte der Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007106
7107#: lib/ext2fs/ext2_err.c:134
7108msgid "Inode does not use extents"
Philipp Thomasab02a742014-07-09 23:13:30 -04007109msgstr "Der Inode verwendet keine Erweiterungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007110
7111#: lib/ext2fs/ext2_err.c:135
7112msgid "No 'next' extent"
7113msgstr "Keine „nächste“ Erweiterung"
7114
7115#: lib/ext2fs/ext2_err.c:136
7116msgid "No 'previous' extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007117msgstr "Keine „vorherige“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007118
7119#: lib/ext2fs/ext2_err.c:137
7120msgid "No 'up' extent"
Philipp Thomasab02a742014-07-09 23:13:30 -04007121msgstr "Keine „obere“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007122
7123#: lib/ext2fs/ext2_err.c:138
7124msgid "No 'down' extent"
Philipp Thomasab02a742014-07-09 23:13:30 -04007125msgstr "Keine „untere“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007126
7127#: lib/ext2fs/ext2_err.c:139
7128msgid "No current node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007129msgstr "Kein aktueller Knoten"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007130
7131#: lib/ext2fs/ext2_err.c:140
7132msgid "Ext2fs operation not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007133msgstr "Diese Ext2fs-Operation wird nicht unterstẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007134
7135#: lib/ext2fs/ext2_err.c:141
7136msgid "No room to insert extent in node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007137msgstr "Es gibt keinen Platz, um die Erweiterung in den Knoten einzufügen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007138
7139#: lib/ext2fs/ext2_err.c:142
7140msgid "Splitting would result in empty node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007141msgstr "Die Aufteilung würde zu einem leeren Knoten führen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007142
7143#: lib/ext2fs/ext2_err.c:143
7144msgid "Extent not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007145msgstr "Die Erweiterung wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007146
7147#: lib/ext2fs/ext2_err.c:144
7148msgid "Operation not supported for inodes containing extents"
Philipp Thomasab02a742014-07-09 23:13:30 -04007149msgstr "Die Operation wird für Inodes mit Erweiterungen nicht unterstüẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007150
7151#: lib/ext2fs/ext2_err.c:145
7152msgid "Extent length is invalid"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007153msgstr "Die Länge der Erweiterung in ungültig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007154
7155#: lib/ext2fs/ext2_err.c:146
7156msgid "I/O Channel does not support 64-bit block numbers"
Philipp Thomasab02a742014-07-09 23:13:30 -04007157msgstr "Der EA-Kanal unterstützt keine 64-Bit-Blocknummern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007158
7159#: lib/ext2fs/ext2_err.c:147
7160msgid "Can't check if filesystem is mounted due to missing mtab file"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007161msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04007162"Wegen des Fehlens von /etc/mtab kann nicht geprüft werden, ob das "
7163"Dateisystem\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007164"eingehängt ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007165
7166#: lib/ext2fs/ext2_err.c:148
7167msgid "Filesystem too large to use legacy bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04007168msgstr "Das Dateisystem ist zu groß, um die veralteten Bitmaps zu verwenden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007169
7170#: lib/ext2fs/ext2_err.c:149
7171msgid "MMP: invalid magic number"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007172msgstr "MMP: fehlende magische Zahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007173
7174#: lib/ext2fs/ext2_err.c:150
7175msgid "MMP: device currently active"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007176msgstr "MMP: das Gerät ist derzeit aktiv"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007177
7178#: lib/ext2fs/ext2_err.c:151
7179msgid "MMP: fsck being run"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007180msgstr "MMP: fsck läuft derzeit"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007181
7182#: lib/ext2fs/ext2_err.c:152
7183msgid "MMP: block number beyond filesystem range"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007184msgstr "MMP: die Blocknummer ist jenseits der Dateisystemgrenzen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007185
7186#: lib/ext2fs/ext2_err.c:153
7187msgid "MMP: undergoing an unknown operation"
Philipp Thomasab02a742014-07-09 23:13:30 -04007188msgstr "MMP: eine unbekannte Operation wird durchgeführt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007189
7190#: lib/ext2fs/ext2_err.c:154
7191msgid "MMP: filesystem still in use"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007192msgstr "MMP: das Dateisystem wird immer noch verwendet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007193
7194#: lib/ext2fs/ext2_err.c:155
7195msgid "MMP: open with O_DIRECT failed"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007196msgstr "MMP: öffnen mit O_DIRECT ist gescheitert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007197
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007198#: lib/ext2fs/ext2_err.c:156
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007199msgid "Block group descriptor size incorrect"
Philipp Thomasab02a742014-07-09 23:13:30 -04007200msgstr "Die Größe des „Blockgruppen-Deskriptors“ ist unzulässig"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007201
7202#: lib/ext2fs/ext2_err.c:157
7203msgid "Inode checksum does not match inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04007204msgstr "Die Prüfsumme des Inodes passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007205
7206#: lib/ext2fs/ext2_err.c:158
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007207msgid "Inode bitmap checksum does not match bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007208msgstr "Die Prüfsumme der Inode-Bitmap passt nicht zur Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007209
7210#: lib/ext2fs/ext2_err.c:159
7211msgid "Extent block checksum does not match extent block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007212msgstr "Die Prüfsumme des Erweiterungsblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007213
7214#: lib/ext2fs/ext2_err.c:160
7215msgid "Directory block does not have space for checksum"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007216msgstr "Der Verzeichnisblock hat keinen Platz für eine Prüfsumme"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007217
7218#: lib/ext2fs/ext2_err.c:161
7219msgid "Directory block checksum does not match directory block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007220msgstr "Die Prüfsumme des Verzeichnisblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007221
7222#: lib/ext2fs/ext2_err.c:162
7223msgid "Extended attribute block checksum does not match block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007224msgstr "Die Prüfsumme des Blocks für erweiterte Attribute passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007225
7226#: lib/ext2fs/ext2_err.c:163
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007227msgid "Superblock checksum does not match superblock"
Philipp Thomasab02a742014-07-09 23:13:30 -04007228msgstr "Die Prüfsumme des Superblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007229
7230#: lib/ext2fs/ext2_err.c:164
7231msgid "Unknown checksum algorithm"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007232msgstr "Unbekannter Prüfsummenalgorithmus"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007233
7234#: lib/ext2fs/ext2_err.c:165
7235msgid "MMP block checksum does not match MMP block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007236msgstr "Die Prüfsumme des MMP-Blocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007237
7238#: lib/ext2fs/ext2_err.c:166
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007239msgid "Ext2 file already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007240msgstr "Die Ext2-Datei existiert bereits"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007241
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007242#: e2fsck/prof_err.c:11
7243msgid "Profile version 0.0"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007244msgstr "Profilversion 0.0"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007245
7246#: e2fsck/prof_err.c:12
7247msgid "Bad magic value in profile_node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007248msgstr "Ungültige magische Zahl im profile_node"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007249
7250#: e2fsck/prof_err.c:13
7251msgid "Profile section not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007252msgstr "die Profilsektion wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007253
7254#: e2fsck/prof_err.c:14
7255msgid "Profile relation not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007256msgstr "Zusammenhang des Profils wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007257
7258#: e2fsck/prof_err.c:15
7259msgid "Attempt to add a relation to node which is not a section"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007260msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04007261"Dies ist ein Versuch, einen Bezug zu einem Knoten hinzuzufügen, der keine\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007262"Sektion ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007263
7264#: e2fsck/prof_err.c:16
7265msgid "A profile section header has a non-zero value"
Philipp Thomasab02a742014-07-09 23:13:30 -04007266msgstr "Der Header der Profilsektion hat einen von Null verschiedenen Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007267
7268#: e2fsck/prof_err.c:17
7269msgid "Bad linked list in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007270msgstr "Ungültige verkettete Liste in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007271
7272#: e2fsck/prof_err.c:18
7273msgid "Bad group level in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007274msgstr "Ungültige Gruppenebene in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007275
7276#: e2fsck/prof_err.c:19
7277msgid "Bad parent pointer in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007278msgstr "Ungültiger Zeiger auf die Eltern in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007279
7280#: e2fsck/prof_err.c:20
7281msgid "Bad magic value in profile iterator"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007282msgstr "Ungültige magische Zahl im Profiliterator"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007283
7284#: e2fsck/prof_err.c:21
7285msgid "Can't set value on section node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007286msgstr "In dem Sektionsknoten kann der Wert nicht gesetzt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007287
7288#: e2fsck/prof_err.c:22
7289msgid "Invalid argument passed to profile library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007290msgstr "Es wurde ein unzulässiges Argument an die Profilbibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007291
7292#: e2fsck/prof_err.c:23
7293msgid "Attempt to modify read-only profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007294msgstr "Es wird versucht, ein nur lesbares Profil zu ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007295
7296#: e2fsck/prof_err.c:24
7297msgid "Profile section header not at top level"
Philipp Thomasab02a742014-07-09 23:13:30 -04007298msgstr "Der Header der Profilsektion ist nicht auf der obersten Ebene"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007299
7300#: e2fsck/prof_err.c:25
7301msgid "Syntax error in profile section header"
Philipp Thomasab02a742014-07-09 23:13:30 -04007302msgstr "Syntaxfehler im Header der Profilsektion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007303
7304#: e2fsck/prof_err.c:26
7305msgid "Syntax error in profile relation"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007306msgstr "Syntaxfehler in den Profilbeziehungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007307
7308#: e2fsck/prof_err.c:27
7309msgid "Extra closing brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007310msgstr "Überzählige schließende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007311
7312#: e2fsck/prof_err.c:28
7313msgid "Missing open brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007314msgstr "Fehlende öffnende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007315
7316#: e2fsck/prof_err.c:29
7317msgid "Bad magic value in profile_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007318msgstr "Ungültige magische Zahl im profile_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007319
7320#: e2fsck/prof_err.c:30
7321msgid "Bad magic value in profile_section_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007322msgstr "Unbekannte magische Zahl im section_t des Profils"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007323
7324#: e2fsck/prof_err.c:31
7325msgid "Iteration through all top level section not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007326msgstr "Iteration durch alle Toplevel-Sektionen wird nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007327
7328#: e2fsck/prof_err.c:32
7329msgid "Invalid profile_section object"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007330msgstr "Ungültiges profile_section-Objekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007331
7332#: e2fsck/prof_err.c:33
7333msgid "No more sections"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007334msgstr "Keine weiteren Sektionen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007335
7336#: e2fsck/prof_err.c:34
7337msgid "Bad nameset passed to query routine"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007338msgstr "Ungültige Namen an die Abfrageroutine übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007339
7340#: e2fsck/prof_err.c:35
7341msgid "No profile file open"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007342msgstr "Es ist keine Profildatei offen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007343
7344#: e2fsck/prof_err.c:36
7345msgid "Bad magic value in profile_file_t"
Philipp Thomasab02a742014-07-09 23:13:30 -04007346msgstr "Ungültige magische Zahl im profile_file_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007347
7348#: e2fsck/prof_err.c:37
7349msgid "Couldn't open profile file"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05007350msgstr "Die Profildatei konnte nicht geöffnet werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007351
7352#: e2fsck/prof_err.c:38
7353msgid "Section already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007354msgstr "Die Sektion existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007355
7356#: e2fsck/prof_err.c:39
7357msgid "Invalid boolean value"
Philipp Thomasab02a742014-07-09 23:13:30 -04007358msgstr "Ungültiger boolescher Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007359
7360#: e2fsck/prof_err.c:40
7361msgid "Invalid integer value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007362msgstr "Ungültiger ganzzahliger Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007363
7364#: e2fsck/prof_err.c:41
7365msgid "Bad magic value in profile_file_data_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007366msgstr "Ungültige magische Zahl im profile_file_data_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007367
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007368#~ msgid "Clearing extent flag not supported on %s"
7369#~ msgstr ""
7370#~ "Das Zurücksetzen des Kennzeichens für „Erweiterung“ wird auf %s\n"
7371#~ "\tnicht unterstützt"
7372
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007373#~ msgid ""
7374#~ "%s: The combination of flex_bg and\n"
7375#~ "\t!resize_inode features is not supported by resize2fs.\n"
7376#~ msgstr ""
7377#~ "%s: Die Kombination der Eigenschaften flex_bg und\n"
7378#~ "t!resize_inode wird von resize2fs nicht unterestützt.\n"
7379
Philipp Thomasedc733d2012-04-22 15:38:42 -04007380#~ msgid "@i %i should not have EOFBLOCKS_FL set (size %Is, lblk %r)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04007381#~ msgstr ""
7382#~ " in @i %i sollte EOFBLOCKS_FL nicht gesetzt sein (Größe %Is, lblk %r)\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04007383
7384#~ msgid "Couldn't determine journal size"
7385#~ msgstr "Konnte die Größe des Dateisystems nicht ermitteln"
7386
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007387#~ msgid "#\t\t %llu -> %llu (%llu)\n"
7388#~ msgstr "#\t\t %llu -> %llu (%llu)\n"
7389
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007390#~ msgid "short write (only %d bytes) for writing image header"
7391#~ msgstr "short write (only %d bytes) for writing image header"
7392
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007393#~ msgid "Warning: fragments not supported. Ignoring -f option\n"
7394#~ msgstr "Warnung: Fragmente werden nicht unterstützt. Ignoriere -f Option\n"
7395
7396#~ msgid "Calling BLKDISCARD from %llu to %llu "
7397#~ msgstr "Der Aufruf von BLKDISCARD für den Bereich von %llu bis %llu war "
7398
7399#~ msgid "succeeded.\n"
7400#~ msgstr "erfolgreich.\n"