blob: e770861fcf0f72750028aac086b302975adf6295 [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 Thomasab02a742014-07-09 23:13:30 -040073"Project-Id-Version: e2fsprogs-1.42.11-rc0\n"
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050074"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040075"POT-Creation-Date: 2014-07-05 23:41-0400\n"
Philipp Thomasab02a742014-07-09 23:13:30 -040076"PO-Revision-Date: 2014-07-07 11:59+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
99#: e2fsck/unix.c:1434 misc/badblocks.c:1227 misc/badblocks.c:1235
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400100#: misc/badblocks.c:1249 misc/badblocks.c:1261 misc/dumpe2fs.c:602
101#: misc/e2image.c:1396 misc/e2image.c:1580 misc/e2image.c:1599
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400102#: misc/mke2fs.c:227 misc/tune2fs.c:1945 resize/main.c:316
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"
Philipp Thomasab02a742014-07-09 23:13:30 -0400123msgstr "Warnung: Nicht zulässiger Block %u im „Bad Blocks“-Inode gefunden! Bereinigt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500124
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400125#: e2fsck/ehandler.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500126#, c-format
127msgid "Error reading block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400128msgstr "Lesefehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500129
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400130#: e2fsck/ehandler.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500131#, c-format
132msgid "Error reading block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400133msgstr "Lesefehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500134
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400135#: e2fsck/ehandler.c:61 e2fsck/ehandler.c:110
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500136msgid "Ignore error"
Philipp Thomasab02a742014-07-09 23:13:30 -0400137msgstr "Fehler ignorieren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500138
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400139#: e2fsck/ehandler.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500140msgid "Force rewrite"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400141msgstr "Rückschreiben erzwingen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500142
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400143#: e2fsck/ehandler.c:104
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500144#, c-format
145msgid "Error writing block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400146msgstr "Schreibfehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500147
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400148#: e2fsck/ehandler.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500149#, c-format
150msgid "Error writing block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400151msgstr "Schreibfehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500152
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400153#: e2fsck/emptydir.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500154msgid "empty dirblocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400155msgstr "leere Verzeichnisblöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500156
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400157#: e2fsck/emptydir.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500158msgid "empty dir map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500159msgstr "leere Verzeichnisliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500160
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400161#: e2fsck/emptydir.c:98
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500162#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400163msgid "Empty directory block %u (#%d) in inode %u\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500164msgstr "leerer Verzeichnisblock %u (#%d) im Inode %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500165
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400166#: e2fsck/extend.c:22
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500167#, c-format
168msgid "%s: %s filename nblocks blocksize\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400169msgstr "%s: %s Dateiname nblocks Blockgröße\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500170
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400171#: e2fsck/extend.c:44
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500172#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500173msgid "Illegal number of blocks!\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400174msgstr "Blockanzahl nicht zulässig!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500175
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400176#: e2fsck/extend.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500177#, c-format
178msgid "Couldn't allocate block buffer (size=%d)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500179msgstr "Es konnte kein Blockpuffer (Größe=%d) reserviert werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500180
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400181#: e2fsck/flushb.c:35
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500182#, c-format
183msgid "Usage: %s disk\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400184msgstr "Aufruf: %s Laufwerk\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500185
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400186#: e2fsck/flushb.c:64
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500187#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500188msgid "BLKFLSBUF ioctl not supported! Can't flush buffers.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400189msgstr "BLKFLSBUF ioctl nicht unterstützt! Puffer kann nicht geleert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500190
Eric Sandeen032eafe2012-07-28 17:48:36 -0400191#: e2fsck/iscan.c:44
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500192#, c-format
193msgid "Usage: %s [-F] [-I inode_buffer_blocks] device\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400194msgstr "Aufruf: %s [-F] [-I inode_buffer_blocks] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500195
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400196#: e2fsck/iscan.c:81 e2fsck/unix.c:972
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500197#, c-format
198msgid "while opening %s for flushing"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500199msgstr "beim Öffnen von %s für die Puffer-Leerung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500200
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400201#: e2fsck/iscan.c:86 e2fsck/unix.c:978 resize/main.c:289
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500202#, c-format
203msgid "while trying to flush %s"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400204msgstr "während des Rückschreibeversuches auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500205
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400206#: e2fsck/iscan.c:110
Philipp Thomasb93349a2014-05-31 13:32:39 -0400207#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400208msgid "while trying to open '%s'"
209msgstr "beim Versuch, %s zu öffnen"
210
211#: e2fsck/iscan.c:119 e2fsck/scantest.c:114 misc/e2image.c:1290
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500212msgid "while opening inode scan"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500213msgstr "beim Start des Inode-Scans"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500214
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400215#: e2fsck/iscan.c:127 misc/e2image.c:1309
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500216msgid "while getting next inode"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400217msgstr "beim Laden des nächsten Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500218
Eric Sandeen032eafe2012-07-28 17:48:36 -0400219#: e2fsck/iscan.c:136
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500220#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400221msgid "%u inodes scanned.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400222msgstr "%u Inodes untersucht.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500223
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400224#: e2fsck/journal.c:525
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500225msgid "reading journal superblock\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400226msgstr "Journal-Superblock wird gelesen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500227
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400228#: e2fsck/journal.c:582
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500229#, c-format
230msgid "%s: no valid journal superblock found\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400231msgstr "%s: keinen gültigen Journal-Superblock gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500232
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400233#: e2fsck/journal.c:591
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500234#, c-format
235msgid "%s: journal too short\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400236msgstr "%s: Das Journal ist zu kurz\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500237
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400238#: e2fsck/journal.c:882
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500239#, c-format
240msgid "%s: recovering journal\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400241msgstr "%s: Journal wird wiederhergestellt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500242
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400243#: e2fsck/journal.c:884
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500244#, c-format
245msgid "%s: won't do journal recovery while read-only\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500246msgstr "%s: Das Journal ist nur lesbar - Keine Wiederherstellung\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500247
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400248#: e2fsck/journal.c:911
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500249#, c-format
250msgid "while trying to re-open %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400251msgstr "beim Versuch, %s erneut zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500252
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400253#: e2fsck/message.c:113
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500254msgid "aextended attribute"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500255msgstr "aerweiterte Attribute"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500256
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400257#: e2fsck/message.c:114
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500258msgid "Aerror allocating"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500259msgstr "AFehler beim Reservieren von Platz für"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500260
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400261#: e2fsck/message.c:115
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500262msgid "bblock"
263msgstr "bBlock"
264
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400265#: e2fsck/message.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500266msgid "Bbitmap"
267msgstr "BBitmap"
268
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400269#: e2fsck/message.c:117
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500270msgid "ccompress"
271msgstr "ckomprimieren"
272
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400273#: e2fsck/message.c:118
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500274msgid "Cconflicts with some other fs @b"
Philipp Thomasab02a742014-07-09 23:13:30 -0400275msgstr "CKonflikte mit einem anderen Dateisystemblock"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500276
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400277#: e2fsck/message.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500278msgid "ddirectory"
279msgstr "dVerzeichnis"
280
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400281#: e2fsck/message.c:120
282msgid "Ddeleted"
283msgstr "Dgelöscht"
284
285#: e2fsck/message.c:121
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500286msgid "eentry"
287msgstr "eEintrag"
288
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400289#: e2fsck/message.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500290msgid "E@e '%Dn' in %p (%i)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400291msgstr "E@e „%Dn“ in %p (%i)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500292
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400293#: e2fsck/message.c:123
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500294msgid "ffilesystem"
295msgstr "fDateisystem"
296
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400297#: e2fsck/message.c:124
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500298msgid "Ffor @i %i (%Q) is"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400299msgstr "Ffür @i %i (%Q) ist"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500300
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400301#: e2fsck/message.c:125
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500302msgid "ggroup"
303msgstr "gGruppe"
304
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400305#: e2fsck/message.c:126
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500306msgid "hHTREE @d @i"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500307msgstr "hHTREE @dinode"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500308
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400309#: e2fsck/message.c:127
310msgid "iinode"
311msgstr "iInode"
312
313#: e2fsck/message.c:128
314msgid "Iillegal"
315msgstr "Iillegal(er)"
316
317#: e2fsck/message.c:129
318msgid "jjournal"
319msgstr "jJournal"
320
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400321#: e2fsck/message.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500322msgid "llost+found"
323msgstr "llost+found"
324
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400325#: e2fsck/message.c:131
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500326msgid "Lis a link"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500327msgstr "List eine Verknüpfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500328
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400329#: e2fsck/message.c:132
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400330msgid "mmultiply-claimed"
Philipp Thomas9564ee52008-08-22 03:22:50 -0400331msgstr "mmehrfach beansprucht"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400332
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400333#: e2fsck/message.c:133
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400334msgid "ninvalid"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400335msgstr "nungültig"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400336
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400337#: e2fsck/message.c:134
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500338msgid "oorphaned"
339msgstr "overwaist"
340
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400341#: e2fsck/message.c:135
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500342msgid "pproblem in"
343msgstr "pProblem in"
344
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400345#: e2fsck/message.c:136
346msgid "qquota"
347msgstr "qQuota"
348
349#: e2fsck/message.c:137
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500350msgid "rroot @i"
351msgstr "rRoot @i"
352
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400353#: e2fsck/message.c:138
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500354msgid "sshould be"
355msgstr "ssollte sein"
356
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400357#: e2fsck/message.c:139
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500358msgid "Ssuper@b"
359msgstr "SSuper@b"
360
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400361#: e2fsck/message.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500362msgid "uunattached"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500363msgstr "unicht verbunden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500364
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400365#: e2fsck/message.c:141
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500366msgid "vdevice"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400367msgstr "vGerät"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500368
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400369#: e2fsck/message.c:142
Philipp Thomas720e6362008-06-21 14:06:00 -0400370msgid "xextent"
Philipp Thomas68801282008-07-17 11:47:00 -0400371msgstr "xErweiterung"
Philipp Thomas720e6362008-06-21 14:06:00 -0400372
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400373#: e2fsck/message.c:143
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500374msgid "zzero-length"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500375msgstr "zmit Länge Null"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500376
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400377#: e2fsck/message.c:154
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500378msgid "<The NULL inode>"
Philipp Thomasab02a742014-07-09 23:13:30 -0400379msgstr "<Der NULL-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500380
Philipp Thomas77c871a2010-04-19 16:59:02 -0400381#: e2fsck/message.c:155
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400382msgid "<The bad blocks inode>"
383msgstr "<Der „Bad Blocks“-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500384
Philipp Thomas77c871a2010-04-19 16:59:02 -0400385#: e2fsck/message.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400386msgid "<The user quota inode>"
387msgstr "<Die Benutzerquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500388
Philipp Thomas77c871a2010-04-19 16:59:02 -0400389#: e2fsck/message.c:158
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400390msgid "<The group quota inode>"
391msgstr "<Die Gruppenquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500392
Philipp Thomas77c871a2010-04-19 16:59:02 -0400393#: e2fsck/message.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400394msgid "<The boot loader inode>"
Philipp Thomasab02a742014-07-09 23:13:30 -0400395msgstr "<Der „boot loader“-Inode>"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400396
397#: e2fsck/message.c:160
398msgid "<The undelete directory inode>"
399msgstr "<Der „undelete directory“-Inode>"
400
401#: e2fsck/message.c:161
402msgid "<The group descriptor inode>"
403msgstr "<Des „group descriptor“-Inode>"
404
405#: e2fsck/message.c:162
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500406msgid "<The journal inode>"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500407msgstr "<Der Journal-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500408
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400409#: e2fsck/message.c:163
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500410msgid "<Reserved inode 9>"
411msgstr "<Der reservierte Inode 9>"
412
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400413#: e2fsck/message.c:164
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500414msgid "<Reserved inode 10>"
415msgstr "<Der reservierte Inode 10>"
416
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400417#: e2fsck/message.c:334
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400418msgid "regular file"
Philipp Thomasab02a742014-07-09 23:13:30 -0400419msgstr "reguläre Datei"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400420
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400421#: e2fsck/message.c:336
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400422msgid "directory"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500423msgstr "Verzeichnis"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400424
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400425#: e2fsck/message.c:338
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400426msgid "character device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400427msgstr "zeichenorientiertes Gerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400428
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400429#: e2fsck/message.c:340
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400430msgid "block device"
Philipp Thomasab02a742014-07-09 23:13:30 -0400431msgstr "blockorientiertes Gerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400432
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400433#: e2fsck/message.c:342
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400434msgid "named pipe"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400435msgstr "named pipe"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400436
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400437#: e2fsck/message.c:344
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400438msgid "symbolic link"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400439msgstr "symbolische Verknüpfung"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400440
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400441#: e2fsck/message.c:346 misc/uuidd.c:161
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400442msgid "socket"
Philipp Thomasab02a742014-07-09 23:13:30 -0400443msgstr "Socket"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400444
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400445#: e2fsck/message.c:348
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400446#, c-format
447msgid "unknown file type with mode 0%o"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400448msgstr "unbekannter Dateityp mit Modus 0%o"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400449
Philipp Thomasedc733d2012-04-22 15:38:42 -0400450#: e2fsck/message.c:423
Philipp Thomas77c871a2010-04-19 16:59:02 -0400451msgid "indirect block"
452msgstr "indirekte Blöcke"
453
Philipp Thomasedc733d2012-04-22 15:38:42 -0400454#: e2fsck/message.c:425
Philipp Thomas77c871a2010-04-19 16:59:02 -0400455msgid "double indirect block"
456msgstr "doppelt indirekte Blöcke"
457
Philipp Thomasedc733d2012-04-22 15:38:42 -0400458#: e2fsck/message.c:427
Philipp Thomas77c871a2010-04-19 16:59:02 -0400459msgid "triple indirect block"
460msgstr "dreifach indirekte Blöcke"
461
Philipp Thomasedc733d2012-04-22 15:38:42 -0400462#: e2fsck/message.c:429
Philipp Thomas77c871a2010-04-19 16:59:02 -0400463msgid "translator block"
464msgstr "Übersetzerblock"
465
Philipp Thomasedc733d2012-04-22 15:38:42 -0400466#: e2fsck/message.c:431
Philipp Thomas77c871a2010-04-19 16:59:02 -0400467msgid "block #"
468msgstr "Block Nr."
469
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400470#: e2fsck/pass1b.c:222
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500471msgid "multiply claimed inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500472msgstr "mehrfach beanspruchte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500473
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400474#: e2fsck/pass1b.c:610 e2fsck/pass1b.c:730
Philipp Thomas68801282008-07-17 11:47:00 -0400475#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400476msgid "internal error: can't find dup_blk for %llu\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500477msgstr "interner Fehler: dup_blk für %llu wurde nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500478
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400479#: e2fsck/pass1b.c:821
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500480msgid "returned from clone_file_block"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400481msgstr "zurückgegeben von clone_file_block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500482
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400483#: e2fsck/pass1b.c:843
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400484#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400485msgid "internal error: couldn't lookup EA block record for %llu"
Philipp Thomasab02a742014-07-09 23:13:30 -0400486msgstr "interner Fehler: EA-Blockliste für %llu wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400487
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400488#: e2fsck/pass1b.c:855
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400489#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400490msgid "internal error: couldn't lookup EA inode record for %u"
Philipp Thomasab02a742014-07-09 23:13:30 -0400491msgstr "Interner Fehler: EA-Inodeliste für %u wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400492
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400493#: e2fsck/pass1.c:475 e2fsck/pass2.c:782
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400494msgid "reading directory block"
Philipp Thomasab02a742014-07-09 23:13:30 -0400495msgstr "Verzeichnisblock wird gelesen"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400496
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400497#: e2fsck/pass1.c:598
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500498msgid "in-use inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400499msgstr "„in-use inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500500
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400501#: e2fsck/pass1.c:609
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500502msgid "directory inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400503msgstr "„directory inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500504
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400505#: e2fsck/pass1.c:619
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500506msgid "regular file inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400507msgstr "„regular file inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500508
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400509#: e2fsck/pass1.c:628 misc/e2image.c:1265
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500510msgid "in-use block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400511msgstr "„in-use block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500512
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400513#: e2fsck/pass1.c:693
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400514msgid "opening inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -0400515msgstr "Inode-Scan wird gestartet"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500516
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400517#: e2fsck/pass1.c:727
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400518msgid "getting next inode from scan"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400519msgstr "beim Lesen des nächsten Inodes"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400520
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400521#: e2fsck/pass1.c:1243
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500522msgid "Pass 1"
523msgstr "Durchgang 1"
524
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400525#: e2fsck/pass1.c:1300
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500526#, c-format
527msgid "reading indirect blocks of inode %u"
Philipp Thomasab02a742014-07-09 23:13:30 -0400528msgstr "indirekte Blöcke von Inode %u werden gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500529
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400530#: e2fsck/pass1.c:1350
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500531msgid "bad inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500532msgstr "fehlerhafte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500533
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400534#: e2fsck/pass1.c:1373
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500535msgid "inode in bad block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400536msgstr "Inode in „Bad Blocks“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500537
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400538#: e2fsck/pass1.c:1393
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500539msgid "imagic inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400540msgstr "i„magic inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500541
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400542#: e2fsck/pass1.c:1420
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500543msgid "multiply claimed block map"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500544msgstr "mehrfach referenzierte Blockliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500545
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400546#: e2fsck/pass1.c:1531
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500547msgid "ext attr block map"
548msgstr "ext attr block map"
549
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400550#: e2fsck/pass1.c:2315
Philipp Thomas77c871a2010-04-19 16:59:02 -0400551#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500552msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -0400553msgstr "%6lu(%c): erwartete %6lu erhielt phys %6lu (Blockanzahl %lld)\n"
Philipp Thomas40771272008-09-07 22:55:25 -0400554
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400555#: e2fsck/pass1.c:2678
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500556msgid "block bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500557msgstr "Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500558
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400559#: e2fsck/pass1.c:2684
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500560msgid "inode bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500561msgstr "Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500562
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400563#: e2fsck/pass1.c:2690
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500564msgid "inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500565msgstr "Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500566
Philipp Thomasedc733d2012-04-22 15:38:42 -0400567#: e2fsck/pass2.c:283
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500568msgid "Pass 2"
Theodore Ts'oddc32a02003-05-03 18:45:55 -0400569msgstr "Durchgang 2"
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500570
Philipp Thomasedc733d2012-04-22 15:38:42 -0400571#: e2fsck/pass2.c:805
Philipp Thomas720e6362008-06-21 14:06:00 -0400572msgid "Can not continue."
Philipp Thomasab02a742014-07-09 23:13:30 -0400573msgstr "Das Programm kann nicht fortfahren."
Philipp Thomas720e6362008-06-21 14:06:00 -0400574
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400575#: e2fsck/pass3.c:77
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500576msgid "inode done bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400577msgstr "„inode done“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500578
Philipp Thomasedc733d2012-04-22 15:38:42 -0400579#: e2fsck/pass3.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500580msgid "Peak memory"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500581msgstr "Peak-Memory"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500582
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400583#: e2fsck/pass3.c:137
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500584msgid "Pass 3"
585msgstr "Durchgang 3"
586
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400587#: e2fsck/pass3.c:323
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500588msgid "inode loop detection bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400589msgstr "„inode loop detection“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500590
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400591#: e2fsck/pass4.c:196
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500592msgid "Pass 4"
593msgstr "Durchgang 4"
594
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400595#: e2fsck/pass5.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500596msgid "Pass 5"
597msgstr "Durchgang 5"
598
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400599#: e2fsck/problem.c:51
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500600msgid "(no prompt)"
601msgstr "(nicht interaktiv)"
602
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400603#: e2fsck/problem.c:52
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500604msgid "Fix"
Philipp Thomasab02a742014-07-09 23:13:30 -0400605msgstr "Reparieren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500606
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400607#: e2fsck/problem.c:53
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500608msgid "Clear"
Philipp Thomasab02a742014-07-09 23:13:30 -0400609msgstr "Bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500610
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400611#: e2fsck/problem.c:54
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500612msgid "Relocate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400613msgstr "Zurücksetzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500614
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400615#: e2fsck/problem.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500616msgid "Allocate"
Philipp Thomasab02a742014-07-09 23:13:30 -0400617msgstr "Freigeben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500618
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400619#: e2fsck/problem.c:56
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500620msgid "Expand"
Philipp Thomasab02a742014-07-09 23:13:30 -0400621msgstr "Erweitern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500622
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400623#: e2fsck/problem.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500624msgid "Connect to /lost+found"
Philipp Thomasab02a742014-07-09 23:13:30 -0400625msgstr "Nach /lost+found verbinden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500626
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400627#: e2fsck/problem.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500628msgid "Create"
Philipp Thomasab02a742014-07-09 23:13:30 -0400629msgstr "Erstellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500630
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400631#: e2fsck/problem.c:59
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500632msgid "Salvage"
Philipp Thomasab02a742014-07-09 23:13:30 -0400633msgstr "Retten"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500634
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400635#: e2fsck/problem.c:60
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500636msgid "Truncate"
Philipp Thomasab02a742014-07-09 23:13:30 -0400637msgstr "Verkürzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500638
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400639#: e2fsck/problem.c:61
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500640msgid "Clear inode"
Philipp Thomasab02a742014-07-09 23:13:30 -0400641msgstr "Inode bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500642
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400643#: e2fsck/problem.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500644msgid "Abort"
645msgstr "Abbrechen"
646
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400647#: e2fsck/problem.c:63
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500648msgid "Split"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500649msgstr "Aufteilen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500650
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400651#: e2fsck/problem.c:64
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500652msgid "Continue"
653msgstr "Fortsetzen"
654
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400655#: e2fsck/problem.c:65
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400656msgid "Clone multiply-claimed blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400657msgstr "Mehrfach referenzierte Blöcke werden geklont"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500658
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400659#: e2fsck/problem.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500660msgid "Delete file"
Philipp Thomasab02a742014-07-09 23:13:30 -0400661msgstr "Datei löschen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500662
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400663#: e2fsck/problem.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500664msgid "Suppress messages"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400665msgstr "Ausgaben unterdrücken"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500666
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400667#: e2fsck/problem.c:68
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500668msgid "Unlink"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500669msgstr "Trennen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500670
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400671#: e2fsck/problem.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500672msgid "Clear HTree index"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400673msgstr "Der HTree-Index wird bereinigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500674
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400675#: e2fsck/problem.c:70
Theodore Ts'obc759702005-05-09 20:40:55 -0400676msgid "Recreate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400677msgstr "Zurücksetzen"
Theodore Ts'obc759702005-05-09 20:40:55 -0400678
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400679#: e2fsck/problem.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500680msgid "(NONE)"
681msgstr "(NICHTS)"
682
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400683#: e2fsck/problem.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500684msgid "FIXED"
685msgstr "REPARIERT"
686
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400687#: e2fsck/problem.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500688msgid "CLEARED"
689msgstr "BEREINIGT"
690
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400691#: e2fsck/problem.c:82
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500692msgid "RELOCATED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400693msgstr "ZURÜCKGESETZT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500694
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400695#: e2fsck/problem.c:83
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500696msgid "ALLOCATED"
697msgstr "FREIGEGEBEN"
698
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400699#: e2fsck/problem.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500700msgid "EXPANDED"
701msgstr "ERWEITERT"
702
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400703#: e2fsck/problem.c:85
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500704msgid "RECONNECTED"
705msgstr "WIEDER VERBUNDEN"
706
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400707#: e2fsck/problem.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500708msgid "CREATED"
709msgstr "ANGELEGT"
710
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400711#: e2fsck/problem.c:87
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500712msgid "SALVAGED"
713msgstr "GERETTET"
714
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400715#: e2fsck/problem.c:88
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500716msgid "TRUNCATED"
Philipp Thomasab02a742014-07-09 23:13:30 -0400717msgstr "ABGESCHNITTEN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500718
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400719#: e2fsck/problem.c:89
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500720msgid "INODE CLEARED"
721msgstr "INODE BEREINIGT"
722
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400723#: e2fsck/problem.c:90
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500724msgid "ABORTED"
725msgstr "ABGEBROCHEN"
726
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400727#: e2fsck/problem.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500728msgid "SPLIT"
Philipp Thomasab02a742014-07-09 23:13:30 -0400729msgstr "ABGESPALTEN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500730
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400731#: e2fsck/problem.c:92
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500732msgid "CONTINUING"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400733msgstr "ES WIRD FORTGEFAHREN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500734
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400735#: e2fsck/problem.c:93
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400736msgid "MULTIPLY-CLAIMED BLOCKS CLONED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400737msgstr "MEHRFACH REFERENZIERTE BLÖCKE WURDEN GEKLONT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500738
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400739#: e2fsck/problem.c:94
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500740msgid "FILE DELETED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400741msgstr "DATEI WURDE GELÖSCHT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500742
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400743#: e2fsck/problem.c:95
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500744msgid "SUPPRESSED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400745msgstr "UNTERDRÜCKT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500746
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400747#: e2fsck/problem.c:96
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500748msgid "UNLINKED"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500749msgstr "GETRENNT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500750
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400751#: e2fsck/problem.c:97
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500752msgid "HTREE INDEX CLEARED"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500753msgstr "HTREE-INDEX BEREINIGT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500754
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400755#: e2fsck/problem.c:98
Theodore Ts'obc759702005-05-09 20:40:55 -0400756msgid "WILL RECREATE"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500757msgstr "WIRD WIEDER AUFGEBAUT"
Theodore Ts'obc759702005-05-09 20:40:55 -0400758
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400759#. @-expanded: block bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400760#: e2fsck/problem.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500761msgid "@b @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400762msgstr "Block-Bitmap für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500763
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400764#. @-expanded: inode bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400765#: e2fsck/problem.c:111
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500766msgid "@i @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400767msgstr "Inode-Bitmap für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500768
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400769#. @-expanded: inode table for group %g is not in group. (block %b)\n
770#. @-expanded: WARNING: SEVERE DATA LOSS POSSIBLE.\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400771#: e2fsck/problem.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500772msgid ""
773"@i table for @g %g is not in @g. (@b %b)\n"
774"WARNING: SEVERE DATA LOSS POSSIBLE.\n"
775msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400776"Inode-Tabelle für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400777"WARNUNG: GROSSER DATENVERLUST IST MÖGLICH.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500778
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400779#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400780#. @-expanded: The superblock could not be read or does not describe a valid ext2/ext3/ext4\n
781#. @-expanded: filesystem. If the device is valid and it really contains an ext2/ext3/ext4\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400782#. @-expanded: filesystem (and not swap or ufs or something else), then the superblock\n
783#. @-expanded: is corrupt, and you might try running e2fsck with an alternate superblock:\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400784#. @-expanded: e2fsck -b 8193 <device>\n
785#. @-expanded: or\n
786#. @-expanded: e2fsck -b 32768 <device>\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400787#. @-expanded: \n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400788#: e2fsck/problem.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500789msgid ""
790"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400791"The @S could not be read or does not describe a valid ext2/ext3/ext4\n"
792"@f. If the @v is valid and it really contains an ext2/ext3/ext4\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500793"@f (and not swap or ufs or something else), then the @S\n"
794"is corrupt, and you might try running e2fsck with an alternate @S:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400795" e2fsck -b 8193 <@v>\n"
796" or\n"
797" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500798"\n"
799msgstr ""
800"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400801"Der Superblock ist unlesbar bzw. beschreibt kein gültiges ext2/ext3/ext4-\n"
802"Dateisystem. Wenn das Gerät gültig ist und ein ext2/ext3/ext4-\n"
803"Dateisystem (kein swap oder ufs usw.) enthält, dann ist der Superblock\n"
804"beschädigt, und Sie könnten versuchen, e2fsck mit einem anderen Superblock\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -0400805"zu starten:\n"
806" e2fsck -b 8193 <@v>\n"
807" oder\n"
808" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500809"\n"
810
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400811#. @-expanded: The filesystem size (according to the superblock) is %b blocks\n
812#. @-expanded: The physical size of the device is %c blocks\n
813#. @-expanded: Either the superblock or the partition table is likely to be corrupt!\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400814#: e2fsck/problem.c:133
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500815msgid ""
816"The @f size (according to the @S) is %b @bs\n"
817"The physical size of the @v is %c @bs\n"
818"Either the @S or the partition table is likely to be corrupt!\n"
819msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400820"Die Größe des Dateisystems (laut Superblock) ist %b Blöcke.\n"
821"Die physikalische Größe des Gerätes ist %c Blöcke.\n"
822"Entweder ist der Superblock oder die Partionstabelle beschädigt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500823
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400824#. @-expanded: superblock block_size = %b, fragsize = %c.\n
825#. @-expanded: This version of e2fsck does not support fragment sizes different\n
826#. @-expanded: from the block size.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400827#: e2fsck/problem.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500828msgid ""
829"@S @b_size = %b, fragsize = %c.\n"
830"This version of e2fsck does not support fragment sizes different\n"
831"from the @b size.\n"
832msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500833"@S-@b_size = %b, fragsize = %c.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400834"Diese Version von e2fsck unterstützt keine von Blockgrößen verschiedene Fragmentgrößen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500835
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400836#. @-expanded: superblock blocks_per_group = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400837#: e2fsck/problem.c:147
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500838msgid "@S @bs_per_group = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500839msgstr "@bs_per_group im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500840
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400841#. @-expanded: superblock first_data_block = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400842#: e2fsck/problem.c:152
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500843msgid "@S first_data_@b = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500844msgstr "first_data_@b im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500845
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400846#. @-expanded: filesystem did not have a UUID; generating one.\n
847#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400848#: e2fsck/problem.c:157
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500849msgid ""
850"@f did not have a UUID; generating one.\n"
851"\n"
852msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400853"Das Dateisystem hat keine UUID; es wird eine generiert.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500854"\n"
855
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400856#: e2fsck/problem.c:162
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400857#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500858msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400859"Note: if several inode or block bitmap blocks or part\n"
860"of the inode table require relocation, you may wish to try\n"
861"running e2fsck with the '-b %S' option first. The problem\n"
862"may lie only with the primary block group descriptors, and\n"
863"the backup block group descriptors may be OK.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500864"\n"
865msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400866"Hinweis: Wenn mehrere Inodes oder Bitmap-Blöcke\n"
867"neu geordnet werden müssen, oder ein Teil der Inode-Tabelle\n"
868"verschoben werden muss, könnte es helfen, e2fsck erst einmal\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400869"mit der Option „-b %S“ zu starten. Das Problem könnte\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500870"im primären Blockgruppenbezeichner liegen und seine\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500871"Sicherungskopie in Ordnung sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500872"\n"
873
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400874#. @-expanded: Corruption found in superblock. (%s = %N).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400875#: e2fsck/problem.c:171
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500876msgid "Corruption found in @S. (%s = %N).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400877msgstr "Beschädigung gefunden im Superblock. (%s = %N).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500878
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400879#. @-expanded: Error determining size of the physical device: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400880#: e2fsck/problem.c:176
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500881#, c-format
882msgid "Error determining size of the physical @v: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400883msgstr "Fehler bei der Feststellung der Größe des physischen Gerät: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500884
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400885#. @-expanded: inode count in superblock is %i, should be %j.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400886#: e2fsck/problem.c:181
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400887msgid "@i count in @S is %i, @s %j.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400888msgstr "@i-Anzahl in @S ist %i, sollte %j sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500889
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400890#: e2fsck/problem.c:185
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500891msgid "The Hurd does not support the filetype feature.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500892msgstr "Hurd unterstützt keine Dateitypen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500893
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500894#. @-expanded: superblock has an invalid journal (inode %i).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400895#: e2fsck/problem.c:190
Philipp Thomas77c871a2010-04-19 16:59:02 -0400896#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500897msgid "@S has an @n @j (@i %i).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400898msgstr "Der Superblock hat ein defektes Journal (Inode %i).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500899
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400900#. @-expanded: External journal has multiple filesystem users (unsupported).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400901#: e2fsck/problem.c:195
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500902msgid "External @j has multiple @f users (unsupported).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400903msgstr "Externes Journal hat mehrere Dateisystem-Benutzer (nicht unterstützt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500904
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400905#. @-expanded: Can't find external journal\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400906#: e2fsck/problem.c:200
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500907msgid "Can't find external @j\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400908msgstr "Externes Journal kann nicht gefunden werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500909
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400910#. @-expanded: External journal has bad superblock\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400911#: e2fsck/problem.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500912msgid "External @j has bad @S\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400913msgstr "Externes Journal hat einen ungültigen Superblock\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500914
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400915#. @-expanded: External journal does not support this filesystem\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400916#: e2fsck/problem.c:210
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500917msgid "External @j does not support this @f\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400918msgstr "Externes Journal unterstützt dieses Dateisystem nicht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500919
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500920#. @-expanded: filesystem journal superblock is unknown type %N (unsupported).\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400921#. @-expanded: It is likely that your copy of e2fsck is old and/or doesn't support this journal
922#. @-expanded: format.\n
923#. @-expanded: It is also possible the journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400924#: e2fsck/problem.c:215
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500925msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500926"@f @j @S is unknown type %N (unsupported).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400927"It is likely that your copy of e2fsck is old and/or doesn't support this @j format.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500928"It is also possible the @j @S is corrupt.\n"
929msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400930"Der Superblock des Dateisystem-Journals hat den unbekannten Typ %N (nicht unterstützt).\n"
931"Es ist möglich, dass Ihr e2fsck älter ist und/oder dieses Journal-Format nicht unterstützt.\n"
932"Es ist ebenso möglich, dass der Joornal-Superblock defekt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500933
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500934#. @-expanded: journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400935#: e2fsck/problem.c:223
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500936msgid "@j @S is corrupt.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400937msgstr "Der Journal-Superblock ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500938
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400939#. @-expanded: superblock has_journal flag is clear, but a journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400940#: e2fsck/problem.c:228
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400941msgid "@S has_@j flag is clear, but a @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500942msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400943"Der Bitschalter has_journal im Superblock ist nicht gesetzt, aber ein\n"
944"Journal %s ist vorhanden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500945
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500946#. @-expanded: superblock needs_recovery flag is set, but no journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400947#: e2fsck/problem.c:233
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500948msgid "@S needs_recovery flag is set, but no @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500949msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400950"Im Superblock ist der Bitschalter „needs_recovery“ gesetzt, aber ein Journal\n"
951"ist nicht 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 clear, but journal has data.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400954#: e2fsck/problem.c:238
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500955msgid "@S needs_recovery flag is clear, but @j has data.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500956msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400957"Der Bitschalter „needs_recovery“ im Superblock ist nicht gesetzt, aber das\n"
958"Journal enthält Daten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500959
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400960#. @-expanded: Clear journal
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400961#: e2fsck/problem.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500962msgid "Clear @j"
Philipp Thomasab02a742014-07-09 23:13:30 -0400963msgstr "Journal bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500964
Philipp Thomas77c871a2010-04-19 16:59:02 -0400965#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400966#: e2fsck/problem.c:248 e2fsck/problem.c:702
Philipp Thomas77c871a2010-04-19 16:59:02 -0400967msgid "@f has feature flag(s) set, but is a revision 0 @f. "
Philipp Thomasab02a742014-07-09 23:13:30 -0400968msgstr ""
969"Das Dateisystem hat Eigenschafts-Bitschalter gesetzt, ist aber ein\n"
970"Revision-0-Dateisystem. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500971
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400972#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400973#: e2fsck/problem.c:253
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500974msgid "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400975msgstr "%s verwaister Inode (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500976
Philipp Thomas77c871a2010-04-19 16:59:02 -0400977#. @-expanded: illegal %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400978#: e2fsck/problem.c:258
Philipp Thomas77c871a2010-04-19 16:59:02 -0400979msgid "@I %B (%b) found in @o @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400980msgstr "Unzulässiges %B (%b) in verwaisten Inode %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500981
Philipp Thomas77c871a2010-04-19 16:59:02 -0400982#. @-expanded: Already cleared %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400983#: e2fsck/problem.c:263
Philipp Thomas77c871a2010-04-19 16:59:02 -0400984msgid "Already cleared %B (%b) found in @o @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400985msgstr "Bereits bereinigter %B (%b) im verwaisten Inode %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500986
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400987#. @-expanded: illegal orphaned inode %i in superblock.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400988#: e2fsck/problem.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500989#, c-format
990msgid "@I @o @i %i in @S.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400991msgstr "Unzulässiger verwaister Inode %i im Superblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500992
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400993#. @-expanded: illegal inode %i in orphaned inode list.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400994#: e2fsck/problem.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500995#, c-format
996msgid "@I @i %i in @o @i list.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400997msgstr "Unzulässiger Inode %i in der Liste der verwaisten Inodes.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500998
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500999#. @-expanded: journal superblock has an unknown read-only feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001000#: e2fsck/problem.c:278
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001001msgid "@j @S has an unknown read-only feature flag set.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001002msgstr "Der Journal-Superblock hat einen unbekannten Nur-Lesen-Bitschalter gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001003
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001004#. @-expanded: journal superblock has an unknown incompatible feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001005#: e2fsck/problem.c:283
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001006msgid "@j @S has an unknown incompatible feature flag set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001007msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001008"Im Journal-Superblock ist ein unbekannter Bitschalter für eine\n"
1009"inkompatible Eigenschaft gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001010
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001011#. @-expanded: journal version not supported by this e2fsck.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001012#: e2fsck/problem.c:288
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001013msgid "@j version not supported by this e2fsck.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001014msgstr "Diese Journal-Version wird von diesem e2fsck nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001015
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001016#. @-expanded: Moving journal from /%s to hidden inode.\n
1017#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001018#: e2fsck/problem.c:293
Theodore Ts'o7527ef12007-12-05 19:35:20 -05001019#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001020msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001021"Moving @j from /%s to hidden @i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001022"\n"
1023msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001024"Journal wird von /%s zum versteckten Inode verschoben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001025"\n"
1026
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001027#. @-expanded: Error moving journal: %m\n
1028#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001029#: e2fsck/problem.c:298
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001030#, c-format
1031msgid ""
1032"Error moving @j: %m\n"
1033"\n"
1034msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001035"Fehler beim Verschieben des Journals: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001036"\n"
1037
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001038#. @-expanded: Found invalid V2 journal superblock fields (from V1 journal).\n
1039#. @-expanded: Clearing fields beyond the V1 journal superblock...\n
1040#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001041#: e2fsck/problem.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001042msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001043"Found @n V2 @j @S fields (from V1 @j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001044"Clearing fields beyond the V1 @j @S...\n"
1045"\n"
1046msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001047"Unvollständige V2-Journal-Superblock-Felder (vom V1-Journal) gefunden.\n"
1048"Die Felder nach dem V1-Journal-Superblock werden bereinigt...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001049"\n"
1050
Philipp Thomas77c871a2010-04-19 16:59:02 -04001051#. @-expanded: Run journal anyway
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001052#: e2fsck/problem.c:309
Philipp Thomas77c871a2010-04-19 16:59:02 -04001053msgid "Run @j anyway"
Philipp Thomasab02a742014-07-09 23:13:30 -04001054msgstr "Journal trotzdem starten"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001055
1056#. @-expanded: Recovery flag not set in backup superblock, so running journal anyway.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001057#: e2fsck/problem.c:314
Philipp Thomas77c871a2010-04-19 16:59:02 -04001058msgid "Recovery flag not set in backup @S, so running @j anyway.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001059msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001060"Der Bitschalter für Wiederherstellung ist im Sicherungs-Superblock nicht\n"
1061"gesetzt, das Journal wird daher trotzdem gestartet.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001062
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001063#. @-expanded: Backing up journal inode block information.\n
1064#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001065#: e2fsck/problem.c:319
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001066msgid ""
1067"Backing up @j @i @b information.\n"
1068"\n"
1069msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001070"Die Informationen des Journal-Inodeblocks werden gesichert.\n"
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001071"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001072
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001073#. @-expanded: filesystem does not have resize_inode enabled, but s_reserved_gdt_blocks\n
1074#. @-expanded: is %N; should be zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001075#: e2fsck/problem.c:324
Theodore Ts'obc759702005-05-09 20:40:55 -04001076msgid ""
1077"@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
1078"is %N; @s zero. "
1079msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001080"Für @f ist resize_@i nicht eingeschaltet, aber s_reserved_gdt_@bs\n"
1081"ist %N; @s Null. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001082
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001083#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001084#: e2fsck/problem.c:330
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001085msgid "Resize_@i not enabled, but the resize @i is non-zero. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001086msgstr "Resize_@i ist nicht aktiviert, aber der zu modifizierende Inode ist nicht-Null."
Theodore Ts'obc759702005-05-09 20:40:55 -04001087
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001088#. @-expanded: Resize inode not valid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001089#: e2fsck/problem.c:335
Theodore Ts'obc759702005-05-09 20:40:55 -04001090msgid "Resize @i not valid. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001091msgstr "Resize-Inode ist ungültig. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001092
Philipp Thomas77c871a2010-04-19 16:59:02 -04001093#. @-expanded: superblock last mount time (%t,\n
1094#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001095#: e2fsck/problem.c:340
Philipp Thomas77c871a2010-04-19 16:59:02 -04001096msgid ""
1097"@S last mount time (%t,\n"
1098"\tnow = %T) is in the future.\n"
1099msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001100"Der Zeitpunkt des letzten Einhängens des Superblocks (%t,\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001101"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001102
Philipp Thomas77c871a2010-04-19 16:59:02 -04001103#. @-expanded: superblock last write time (%t,\n
1104#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001105#: e2fsck/problem.c:345
Philipp Thomas77c871a2010-04-19 16:59:02 -04001106msgid ""
1107"@S last write time (%t,\n"
1108"\tnow = %T) is in the future.\n"
1109msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001110"Der Zeitpunkt des letzten Schreibens des Superblocks (%t,\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001111"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001112
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001113#. @-expanded: superblock hint for external superblock should be %X.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001114#: e2fsck/problem.c:349
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001115#, c-format
1116msgid "@S hint for external superblock @s %X. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001117msgstr "Superblock-Hinweis für externen Superblock sollte %X sein. "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001118
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001119#. @-expanded: Adding dirhash hint to filesystem.\n
1120#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001121#: e2fsck/problem.c:354
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001122msgid ""
1123"Adding dirhash hint to @f.\n"
1124"\n"
1125msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001126"Verzeichnishash-Hinweis wird zum Dateisystem hinzugefügt.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001127"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001128
Philipp Thomasedc733d2012-04-22 15:38:42 -04001129#. @-expanded: group descriptor %g checksum is %04x, should be %04y.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001130#: e2fsck/problem.c:359
Philipp Thomasedc733d2012-04-22 15:38:42 -04001131msgid "@g descriptor %g checksum is %04x, should be %04y. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001132msgstr "Die Prüfsumme des Gruppendeskriptors %g ist %04x, sie sollte %04y sein. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001133
1134#. @-expanded: group descriptor %g marked uninitialized without feature set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001135#: e2fsck/problem.c:364
Philipp Thomas720e6362008-06-21 14:06:00 -04001136#, c-format
1137msgid "@g descriptor %g marked uninitialized without feature set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001138msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001139"Gruppendeskriptor %g ist ohne eine gesetzte Eigenschaft.\n"
1140"als nicht initialisiert gekennzeichnet.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001141
Philipp Thomas720e6362008-06-21 14:06:00 -04001142#. @-expanded: group descriptor %g has invalid unused inodes count %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001143#: e2fsck/problem.c:369
Philipp Thomas720e6362008-06-21 14:06:00 -04001144msgid "@g descriptor %g has invalid unused inodes count %b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001145msgstr "Gruppendeskriptor %g hat eine ungültige Anzahl ungenutzter Inodes von %b. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001146
1147#. @-expanded: Last group block bitmap uninitialized.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001148#: e2fsck/problem.c:374
Philipp Thomas720e6362008-06-21 14:06:00 -04001149msgid "Last @g @b @B uninitialized. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001150msgstr "Die letzte Gruppen-Blockbitmap ist nicht initialisiert. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001151
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001152#: e2fsck/problem.c:379
Philipp Thomas720e6362008-06-21 14:06:00 -04001153#, c-format
1154msgid "Journal transaction %i was corrupt, replay was aborted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001155msgstr "Journaltransaktion %i war beschädigt, die Wiederholung wurde abgebrochen.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001156
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001157#: e2fsck/problem.c:383
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001158msgid "The test_fs flag is set (and ext4 is available). "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001159msgstr "Die Kennung test_fs wurde gesetzt (und ext4 ist verfügbar). "
1160
1161#. @-expanded: superblock last mount time is in the future.\n
1162#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1163#. @-expanded: set)
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001164#: e2fsck/problem.c:388
Philipp Thomas77c871a2010-04-19 16:59:02 -04001165msgid ""
1166"@S last mount time is in the future.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001167"\t(by less than a day, probably due to the hardware clock being incorrectly set) "
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001168msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001169"Der Zeitpunkt des letzten Einhängens des Superblocks liegt in der Zukunft.\n"
1170"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001171
1172#. @-expanded: superblock last write time is in the future.\n
1173#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1174#. @-expanded: set).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001175#: e2fsck/problem.c:394
Philipp Thomas77c871a2010-04-19 16:59:02 -04001176msgid ""
1177"@S last write time is in the future.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001178"\t(by less than a day, probably due to the hardware clock being incorrectly set). "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001179msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001180"Der Zeitpunkt des letzten Schreibens des Superblocks liegt in der Zukunft.\n"
1181"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001182
1183#. @-expanded: One or more block group descriptor checksums are invalid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001184#: e2fsck/problem.c:400
Philipp Thomas77c871a2010-04-19 16:59:02 -04001185msgid "One or more @b @g descriptor checksums are invalid. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001186msgstr "Die Prüfsumme eines oder mehrerer Gruppendeskriptoren ist ungültig. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001187
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001188#. @-expanded: Setting free inodes count to %j (was %i)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001189#: e2fsck/problem.c:405
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001190msgid "Setting free @is count to %j (was %i)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001191msgstr "Die Anzahl der freien Inodes wird auf %j gesetzt (war %i)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001192
1193#. @-expanded: Setting free blocks count to %c (was %b)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001194#: e2fsck/problem.c:410
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001195msgid "Setting free @bs count to %c (was %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001196msgstr "Die Anzahl der freien Blöcke wird auf %c gesetzt (war %b)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001197
Eric Sandeen032eafe2012-07-28 17:48:36 -04001198#. @-expanded: Making quota inode %i (%Q) hidden.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001199#: e2fsck/problem.c:415
Eric Sandeen032eafe2012-07-28 17:48:36 -04001200msgid "Making @q @i %i (%Q) hidden.\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05001201msgstr "Quota-Inode %i (%Q) wird versteckt.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001202
1203#. @-expanded: superblock has invalid MMP block.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001204#: e2fsck/problem.c:420
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001205msgid "@S has invalid MMP block. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001206msgstr "Der Superblock hat einen ungültigen MMP-Block. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001207
1208#. @-expanded: superblock has invalid MMP magic.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001209#: e2fsck/problem.c:425
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001210msgid "@S has invalid MMP magic. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001211msgstr "Der Superblock besitzt eine falsche MMP-Kennung. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001212
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001213#: e2fsck/problem.c:430
Philipp Thomasedc733d2012-04-22 15:38:42 -04001214#, c-format
1215msgid "ext2fs_open2: %m\n"
1216msgstr "ext2fs_open2: %m\n"
1217
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001218#: e2fsck/problem.c:435
Philipp Thomasedc733d2012-04-22 15:38:42 -04001219#, c-format
1220msgid "ext2fs_check_desc: %m\n"
1221msgstr "ext2fs_check_desc: %m\n"
1222
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001223#. @-expanded: superblock 64bit filesystems needs extents to access the whole disk.
Philipp Thomasedc733d2012-04-22 15:38:42 -04001224#: e2fsck/problem.c:440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001225msgid "@S 64bit filesystems needs extents to access the whole disk. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001226msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001227"Superblock-64Bit-Dateisysteme brauchen Erweiterungen, um auf die gesamte\n"
1228"Platte zugreifen zu können. "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001229
1230#. @-expanded: Pass 1: Checking inodes, blocks, and sizes\n
1231#: e2fsck/problem.c:447
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001232msgid "Pass 1: Checking @is, @bs, and sizes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001233msgstr "Durchgang 1: Inodes, Blöcke und Größen werden geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001234
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001235#. @-expanded: root inode is not a directory.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001236#: e2fsck/problem.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001237msgid "@r is not a @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001238msgstr "Root-Inode ist kein Verzeichnis. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001239
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001240#. @-expanded: root inode has dtime set (probably due to old mke2fs).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001241#: e2fsck/problem.c:456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001242msgid "@r has dtime set (probably due to old mke2fs). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001243msgstr "Für Root-Inode ist dtime gesetzt (vielleicht durch ein zu altes mke2fs). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001244
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001245#. @-expanded: Reserved inode %i (%Q) has invalid mode.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001246#: e2fsck/problem.c:461
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001247msgid "Reserved @i %i (%Q) has @n mode. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001248msgstr "Reservierter Inode %i (%Q) hat einen ungültigen Modus. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001249
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001250#. @-expanded: deleted inode %i has zero dtime.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001251#: e2fsck/problem.c:466
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001252#, c-format
1253msgid "@D @i %i has zero dtime. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001254msgstr "dtime für gelöschten Inode %i ist Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001255
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001256#. @-expanded: inode %i is in use, but has dtime set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001257#: e2fsck/problem.c:471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001258#, c-format
1259msgid "@i %i is in use, but has dtime set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001260msgstr "Inode %i ist in Benutzung, aber hat dtime gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001261
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001262#. @-expanded: inode %i is a zero-length directory.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001263#: e2fsck/problem.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001264#, c-format
1265msgid "@i %i is a @z @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001266msgstr "Inode %i ist ein Verzeichnis mit Länge Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001267
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001268#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001269#: e2fsck/problem.c:481
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001270msgid "@g %g's @b @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001271msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001272"Die Blockbitmap der Gruppe %g auf %b überschneidet sich mit\n"
1273"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001274
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001275#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001276#: e2fsck/problem.c:486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001277msgid "@g %g's @i @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001278msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001279"Die Inode-Bitmap der Gruppe %g bei %b überschneidet sich mit\n"
1280"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001281
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001282#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001283#: e2fsck/problem.c:491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001284msgid "@g %g's @i table at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001285msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001286"Die Inode-Tabelle der Gruppe %g bei %b überschneidet sich mit\n"
1287"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001288
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001289#. @-expanded: group %g's block bitmap (%b) is bad.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001290#: e2fsck/problem.c:496
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001291msgid "@g %g's @b @B (%b) is bad. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001292msgstr "die @b-@B (%b) von @g %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001293
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001294#. @-expanded: group %g's inode bitmap (%b) is bad.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001295#: e2fsck/problem.c:501
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001296msgid "@g %g's @i @B (%b) is bad. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001297msgstr "Die Inode-Bitmap (%b) der Gruppe %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001298
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001299#. @-expanded: inode %i, i_size is %Is, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001300#: e2fsck/problem.c:506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001301msgid "@i %i, i_size is %Is, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001302msgstr "Inode %i, i_size ist %Is, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001303
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001304#. @-expanded: inode %i, i_blocks is %Ib, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001305#: e2fsck/problem.c:511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001306msgid "@i %i, i_@bs is %Ib, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001307msgstr "Inode %i, i_@bs ist %Ib, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001308
Philipp Thomas77c871a2010-04-19 16:59:02 -04001309#. @-expanded: illegal %B (%b) in inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001310#: e2fsck/problem.c:516
Philipp Thomas77c871a2010-04-19 16:59:02 -04001311msgid "@I %B (%b) in @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001312msgstr "Unzulässiger %B (%b) in Inode %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001313
Philipp Thomas77c871a2010-04-19 16:59:02 -04001314#. @-expanded: %B (%b) overlaps filesystem metadata in inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001315#: e2fsck/problem.c:521
Philipp Thomas77c871a2010-04-19 16:59:02 -04001316msgid "%B (%b) overlaps @f metadata in @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001317msgstr "%B (%b) überlappt Dateisystem-Metadaten in @i %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001318
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001319#. @-expanded: inode %i has illegal block(s).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001320#: e2fsck/problem.c:526
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001321#, c-format
1322msgid "@i %i has illegal @b(s). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001323msgstr "Inode %i hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001324
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001325#. @-expanded: Too many illegal blocks in inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001326#: e2fsck/problem.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001327#, c-format
1328msgid "Too many illegal @bs in @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001329msgstr "Zu viele unzulässige Blöcke in @i %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001330
Philipp Thomas77c871a2010-04-19 16:59:02 -04001331#. @-expanded: illegal %B (%b) in bad block inode.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001332#: e2fsck/problem.c:536
Philipp Thomas77c871a2010-04-19 16:59:02 -04001333msgid "@I %B (%b) in bad @b @i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001334msgstr "Ungültiger %B (%b) in „bad block“-Inode. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001335
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001336#. @-expanded: Bad block inode has illegal block(s).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001337#: e2fsck/problem.c:541
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001338msgid "Bad @b @i has illegal @b(s). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001339msgstr "„Bad Block“-Inode hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001340
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001341#. @-expanded: Duplicate or bad block in use!\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001342#: e2fsck/problem.c:546
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001343msgid "Duplicate or bad @b in use!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001344msgstr "Doppelter oder unzulässiger Block in Gebrauch!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001345
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001346#. @-expanded: Bad block %b used as bad block inode indirect block.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001347#: e2fsck/problem.c:551
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001348msgid "Bad @b %b used as bad @b @i indirect @b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001349msgstr "Ungültiger Block %b wird benutzt als indirekter Block des „Bad Block“-Inodes. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001350
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001351#. @-expanded: \n
1352#. @-expanded: The bad block inode has probably been corrupted. You probably\n
1353#. @-expanded: should stop now and run e2fsck -c to scan for bad blocks\n
1354#. @-expanded: in the filesystem.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001355#: e2fsck/problem.c:556
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001356msgid ""
1357"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001358"The bad @b @i has probably been corrupted. You probably\n"
1359"should stop now and run e2fsck -c to scan for bad blocks\n"
1360"in the @f.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001361msgstr ""
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001362"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001363"Der „Bad Block“-Inode ist wahrscheinlich beschädigt worden. Sie sollten\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001364"nun innehalten und „e2fsck -c“ ausführen, um nach defekten Blöcken in\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001365"dem Dateisystem zu suchen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001366
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001367#. @-expanded: \n
1368#. @-expanded: If the block is really bad, the filesystem can not be fixed.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001369#: e2fsck/problem.c:563
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001370msgid ""
1371"\n"
1372"If the @b is really bad, the @f can not be fixed.\n"
1373msgstr ""
1374"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001375"Wenn der Block wirklich defekt ist, kann das Dateisystem nicht repariert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001376
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001377#. @-expanded: You can remove this block from the bad block list and hope\n
1378#. @-expanded: that the block is really OK. But there are no guarantees.\n
1379#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001380#: e2fsck/problem.c:568
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001381msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001382"You can remove this @b from the bad @b list and hope\n"
1383"that the @b is really OK. But there are no guarantees.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001384"\n"
1385msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001386"Sie können diesen Block aus der Liste der defekten Blöcke löschen\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001387"und hoffen, das dieser wirklich in Ordnung ist, es gibt aber\n"
1388"KEINE GARANTIEN.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001389"\n"
1390
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001391#. @-expanded: The primary superblock (%b) is on the bad block list.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001392#: e2fsck/problem.c:574
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001393msgid "The primary @S (%b) is on the bad @b list.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001394msgstr "Der primäre Superblock (%b) ist in der Liste der defekten Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001395
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001396#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001397#: e2fsck/problem.c:579
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001398msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001399msgstr "Block %b im primären Gruppendeskriptor ist in der Liste der defekten Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001400
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001401#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001402#: e2fsck/problem.c:585
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001403msgid "Warning: Group %g's @S (%b) is bad.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001404msgstr "Warnung: der Superblock der Gruppe %g (%b) ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001405
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001406#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001407#: e2fsck/problem.c:590
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001408msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001409msgstr "Warnung: die Kopie des Gruppendeskriptors von Gruppe %g hat einen defekten Block (%b).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001410
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001411#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001412#: e2fsck/problem.c:596
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001413msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001414msgstr "Programmierfehler? Block #%b wird ohne Grund in process_bad_@b verlangt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001415
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001416#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001417#: e2fsck/problem.c:602
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001418msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001419msgstr "Fehler beim Zuweisen von %N zusammenhängenende(m/n) Block/Blöcken in der @b-@g %g für %s: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001420
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001421#. @-expanded: error allocating block buffer for relocating %s\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001422#: e2fsck/problem.c:607
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001423#, c-format
1424msgid "@A @b buffer for relocating %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001425msgstr "Fehler beim Zuweisen eines Blockpuffers zum Verschieben von %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001426
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001427#. @-expanded: Relocating group %g's %s from %b to %c...\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001428#: e2fsck/problem.c:612
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001429msgid "Relocating @g %g's %s from %b to %c...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001430msgstr "Gruppe %g's %s wird von %b nach %c verschoben ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001431
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001432#. @-expanded: Relocating group %g's %s to %c...\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001433#: e2fsck/problem.c:617
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001434#, c-format
1435msgid "Relocating @g %g's %s to %c...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001436msgstr "Gruppe %g's %s wird nach %c verschoben ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001437
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001438#. @-expanded: Warning: could not read block %b of %s: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001439#: e2fsck/problem.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001440msgid "Warning: could not read @b %b of %s: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001441msgstr "Warnung: Block %b von %s konnte nicht gelesen werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001442
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001443#. @-expanded: Warning: could not write block %b for %s: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001444#: e2fsck/problem.c:627
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001445msgid "Warning: could not write @b %b for %s: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001446msgstr "Warnung: Block %b von %s konnte nicht geschrieben werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001447
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001448#. @-expanded: error allocating inode bitmap (%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001449#: e2fsck/problem.c:632 e2fsck/problem.c:1481
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001450msgid "@A @i @B (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001451msgstr "Fehler beim Zuweisen der Inode-Bitmap (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001452
1453#. @-expanded: error allocating block bitmap (%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001454#: e2fsck/problem.c:637
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001455msgid "@A @b @B (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001456msgstr "Fehler beim Zuweisen der Block-Bitmap (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001457
1458#. @-expanded: error allocating icount link information: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001459#: e2fsck/problem.c:642
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001460#, c-format
1461msgid "@A icount link information: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001462msgstr "Fehler beim Zuweisen der „icount link information“: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001463
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001464#. @-expanded: error allocating directory block array: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001465#: e2fsck/problem.c:647
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001466#, c-format
1467msgid "@A @d @b array: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001468msgstr "Fehler beim Zuweisen des Verzeichnis-Block-Feldes: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001469
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001470#. @-expanded: Error while scanning inodes (%i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001471#: e2fsck/problem.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001472#, c-format
1473msgid "Error while scanning @is (%i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001474msgstr "Fehler während des Durchsuchens der Inodes (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001475
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001476#. @-expanded: Error while iterating over blocks in inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001477#: e2fsck/problem.c:657
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001478#, c-format
1479msgid "Error while iterating over @bs in @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001480msgstr "Fehler beim Iterieren über die Blöcke in Inode %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001481
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001482#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001483#: e2fsck/problem.c:662
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001484msgid "Error storing @i count information (@i=%i, count=%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001485msgstr "Fehler beim Speichern der Informationen zur Inode-Anzahl (Inode=%i, Anzahl=%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001486
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001487#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001488#: e2fsck/problem.c:667
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001489msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001490msgstr "Fehler beim Speichern der Verzeichnis-Block-Informationen (Inode=%i, Block=%b, Anzahl=%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001491
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001492#. @-expanded: Error reading inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001493#: e2fsck/problem.c:673
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001494#, c-format
1495msgid "Error reading @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001496msgstr "Fehler beim Lesen des Inodes %i: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001497
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001498#. @-expanded: inode %i has imagic flag set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001499#: e2fsck/problem.c:681
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001500#, c-format
1501msgid "@i %i has imagic flag set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001502msgstr "Inode %i hat den Imagic-Bitschalter gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001503
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001504#. @-expanded: Special (device/socket/fifo/symlink) file (inode %i) has immutable\n
1505#. @-expanded: or append-only flag set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001506#: e2fsck/problem.c:686
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001507#, c-format
1508msgid ""
1509"Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
1510"or append-only flag set. "
1511msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001512"Spezielle Geräte-/Socket-/Fifo-/Symlink-Datei (Inode %i) hat den Bitschalter für\n"
1513"unveränderbar oder Nur-Anhängen gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001514
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001515#. @-expanded: inode %i has compression flag set on filesystem without compression support.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001516#: e2fsck/problem.c:692
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001517#, c-format
1518msgid "@i %i has @cion flag set on @f without @cion support. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001519msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001520"Inode %i hat den Kompressions-Bitschalter auf einem Dateisystem gesetzt,\n"
1521"welches dies nicht unterstützt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001522
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001523#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001524#: e2fsck/problem.c:697
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001525#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001526msgid "Special (@v/socket/fifo) @i %i has non-zero size. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001527msgstr "Spezieller Geräte-/Socket-/Fifo-Inode %i hat die Größe Null. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001528
1529#. @-expanded: journal inode is not in use, but contains data.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001530#: e2fsck/problem.c:707
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001531msgid "@j @i is not in use, but contains data. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001532msgstr "Inode %i wird nicht verwendet, aber enthält Daten. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001533
1534#. @-expanded: journal is not regular file.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001535#: e2fsck/problem.c:712
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001536msgid "@j is not regular file. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001537msgstr "Journal ist keine reguläre Datei. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001538
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001539#. @-expanded: inode %i was part of the orphaned inode list.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001540#: e2fsck/problem.c:717
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001541#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001542msgid "@i %i was part of the @o @i list. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001543msgstr "Inode %i war Teil der Liste verwaister Inodes. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001544
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001545#. @-expanded: inodes that were part of a corrupted orphan linked list found.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001546#: e2fsck/problem.c:723
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001547msgid "@is that were part of a corrupted orphan linked list found. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001548msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001549"Inodes wurden gefunden, die Teil einer defekten verketteten Liste von\n"
1550"verwaisten Inodes waren. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001551
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001552#. @-expanded: error allocating refcount structure (%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001553#: e2fsck/problem.c:728
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001554msgid "@A refcount structure (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001555msgstr "Fehler beim Zuweisen der refcount-Struktur (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001556
1557#. @-expanded: Error reading extended attribute block %b for inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001558#: e2fsck/problem.c:733
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001559msgid "Error reading @a @b %b for @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001560msgstr "Fehler beim Lesen des Blocks für erweiterte Attribute %b für Inode %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001561
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001562#. @-expanded: inode %i has a bad extended attribute block %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001563#: e2fsck/problem.c:738
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001564msgid "@i %i has a bad @a @b %b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001565msgstr "Inode %i hat einen defekten Erweiterte-Attribute-Block %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001566
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001567#. @-expanded: Error reading extended attribute block %b (%m).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001568#: e2fsck/problem.c:743
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001569msgid "Error reading @a @b %b (%m). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001570msgstr "Fehler beim Lesen des Blocks für erweiterte Attribute (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001571
Philipp Thomas77c871a2010-04-19 16:59:02 -04001572#. @-expanded: extended attribute block %b has reference count %r, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001573#: e2fsck/problem.c:748
Philipp Thomas77c871a2010-04-19 16:59:02 -04001574msgid "@a @b %b has reference count %r, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001575msgstr "Der Referenzzähler des Blocks für erweiterte Attribute %b ist %r, richtig wäre %N. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001576
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001577#. @-expanded: Error writing extended attribute block %b (%m).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001578#: e2fsck/problem.c:753
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001579msgid "Error writing @a @b %b (%m). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001580msgstr "Fehler beim Schreiben des Blocks für erweiterte Attribute %b (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001581
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001582#. @-expanded: extended attribute block %b has h_blocks > 1.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001583#: e2fsck/problem.c:758
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001584msgid "@a @b %b has h_@bs > 1. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001585msgstr "Der Block für erweiterte Attribute %b hat h_blocks > 1. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001586
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001587#. @-expanded: error allocating extended attribute block %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001588#: e2fsck/problem.c:763
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001589msgid "@A @a @b %b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001590msgstr "Fehler beim Zuweisen des Blocks für erweiterte Attribute %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001591
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001592#. @-expanded: extended attribute block %b is corrupt (allocation collision).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001593#: e2fsck/problem.c:768
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001594msgid "@a @b %b is corrupt (allocation collision). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001595msgstr "Der Block für erweiterte Attribute %b ist defekt (Kollision der Platzanforderungen). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001596
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001597#. @-expanded: extended attribute block %b is corrupt (invalid name).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001598#: e2fsck/problem.c:773
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001599msgid "@a @b %b is corrupt (@n name). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001600msgstr "Der Block für erweiterte Attribute %b ist defekt (ungültiger Name). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001601
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001602#. @-expanded: extended attribute block %b is corrupt (invalid value).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001603#: e2fsck/problem.c:778
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001604msgid "@a @b %b is corrupt (@n value). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001605msgstr "Der Block für erweiterte Attribute %b ist defekt (ungültiger Wert). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001606
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001607#. @-expanded: inode %i is too big.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001608#: e2fsck/problem.c:783
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001609#, c-format
1610msgid "@i %i is too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001611msgstr "Inode %i ist zu groß. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001612
Philipp Thomas77c871a2010-04-19 16:59:02 -04001613#. @-expanded: %B (%b) causes directory to be too big.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001614#: e2fsck/problem.c:787
Philipp Thomas77c871a2010-04-19 16:59:02 -04001615msgid "%B (%b) causes @d to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001616msgstr "%B (%b) macht das Verzeichnis zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001617
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001618#: e2fsck/problem.c:792
Philipp Thomas77c871a2010-04-19 16:59:02 -04001619msgid "%B (%b) causes file to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001620msgstr "Block #%B (%b) macht die Datei zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001621
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001622#: e2fsck/problem.c:797
Philipp Thomas77c871a2010-04-19 16:59:02 -04001623msgid "%B (%b) causes symlink to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001624msgstr "Block #%B (%b) macht den Symlink zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001625
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001626#. @-expanded: inode %i has INDEX_FL flag set on filesystem without htree support.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001627#: e2fsck/problem.c:802
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001628#, c-format
1629msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001630msgstr "Inode %i hat INDEX_FL Flag auf einem Dateisystem ohne HTREE-Unterstützung gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001631
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001632#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001633#: e2fsck/problem.c:807
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001634#, c-format
1635msgid "@i %i has INDEX_FL flag set but is not a @d.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001636msgstr "Inode %i hat den INDEX_FL-Bitschalter gesetzt, ist aber kein Verzeichnis.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001637
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001638#. @-expanded: HTREE directory inode %i has an invalid root node.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001639#: e2fsck/problem.c:812
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001640#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001641msgid "@h %i has an @n root node.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001642msgstr "HTREE-Verzeichnis-Inode %i hat einen unvollständigen Wurzelknoten („root node“).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001643
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001644#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001645#: e2fsck/problem.c:817
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001646msgid "@h %i has an unsupported hash version (%N)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001647msgstr "HTREE-Verzeichnis-Inode %i hat eine nicht unterstützte Hash-Version (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001648
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001649#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001650#: e2fsck/problem.c:822
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001651#, c-format
1652msgid "@h %i uses an incompatible htree root node flag.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001653msgstr "@h %i benutzt einen nicht unterstützten Bitschalter für einen Htree-Wurzelknoten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001654
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001655#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001656#: e2fsck/problem.c:827
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001657msgid "@h %i has a tree depth (%N) which is too big\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001658msgstr "@h %i hat eine zu große Verzeichnistiefe von (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001659
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001660#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
1661#. @-expanded: filesystem metadata.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001662#: e2fsck/problem.c:832
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001663msgid ""
1664"Bad @b @i has an indirect @b (%b) that conflicts with\n"
1665"@f metadata. "
1666msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001667"Der Inode für defekte Blöcke hat einen indirekten Block (%b), der mit\n"
1668"den Dateisystem-Metadaten in Konflikt steht. "
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001669
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001670#. @-expanded: Resize inode (re)creation failed: %m.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001671#: e2fsck/problem.c:838
Theodore Ts'obc759702005-05-09 20:40:55 -04001672#, c-format
1673msgid "Resize @i (re)creation failed: %m."
Philipp Thomasab02a742014-07-09 23:13:30 -04001674msgstr "Erzeugung des Vergrößerungs-Inodes scheiterte: %m."
Theodore Ts'obc759702005-05-09 20:40:55 -04001675
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001676#. @-expanded: inode %i has a extra size (%IS) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001677#: e2fsck/problem.c:843
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001678msgid "@i %i has a extra size (%IS) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001679msgstr "Inode %i hat eine ungültige Extragröße (%IS)\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001680
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001681#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001682#: e2fsck/problem.c:848
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001683msgid "@a in @i %i has a namelen (%N) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001684msgstr "Ein erweitertes Attribut in Inode %i hat eine ungültige „namelen“ von %N.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001685
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001686#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001687#: e2fsck/problem.c:853
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001688msgid "@a in @i %i has a value offset (%N) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001689msgstr "Ein erweitertes Attribut in Inode %i hat einen ungültigen Werteversatz von %N.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001690
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001691#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001692#: e2fsck/problem.c:858
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001693msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001694msgstr "Ein erweitertes Attribut in Inode %i hat einen ungültigen Werteblock von %N (muss 0 sein).\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001695
Philipp Thomas77c871a2010-04-19 16:59:02 -04001696#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001697#: e2fsck/problem.c:863
Philipp Thomas77c871a2010-04-19 16:59:02 -04001698msgid "@a in @i %i has a value size (%N) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001699msgstr "Ein erweitertes Attribut in Inode %i hat eine ungültige Wertegröße von %N.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001700
Philipp Thomas720e6362008-06-21 14:06:00 -04001701#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001702#: e2fsck/problem.c:868
Philipp Thomas720e6362008-06-21 14:06:00 -04001703msgid "@a in @i %i has a hash (%N) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001704msgstr "Ein erweitertes Attribut in Inode %i hat den ungültigen Hash %N.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001705
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001706#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001707#: e2fsck/problem.c:873
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001708msgid "@i %i is a %It but it looks like it is really a directory.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001709msgstr "Inode %i ist ein %It, aber es sieht so aus, als ob es tatsächlich ein Verzeichnis ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001710
Philipp Thomas40771272008-09-07 22:55:25 -04001711#. @-expanded: Error while reading over extent tree in inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001712#: e2fsck/problem.c:878
Philipp Thomas68801282008-07-17 11:47:00 -04001713#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001714msgid "Error while reading over @x tree in @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001715msgstr "Fehler beim Iterieren über den Extent-Baum @x in Inode %i: %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001716
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001717#. @-expanded: Failed to iterate extents in inode %i\n
1718#. @-expanded: \t(op %s, blk %b, lblk %c): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001719#: e2fsck/problem.c:883
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001720msgid ""
1721"Failed to iterate extents in @i %i\n"
1722"\t(op %s, blk %b, lblk %c): %m\n"
1723msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001724"Das Iterieren der Erweiterungen (Extents) in Inode %i scheiterte\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001725"\t(op %s, blk %b, lblk %c): %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001726
1727#. @-expanded: inode %i has an invalid extent\n
1728#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001729#: e2fsck/problem.c:889
Philipp Thomas720e6362008-06-21 14:06:00 -04001730msgid ""
1731"@i %i has an @n extent\n"
1732"\t(logical @b %c, @n physical @b %b, len %N)\n"
1733msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001734"Inode %i hat eine @ne Erweiterung\n"
1735"\t(logischer Block %c, @n physischer Block %b, Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001736
1737#. @-expanded: inode %i has an invalid extent\n
1738#. @-expanded: \t(logical block %c, physical block %b, invalid len %N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001739#: e2fsck/problem.c:894
Philipp Thomas720e6362008-06-21 14:06:00 -04001740msgid ""
1741"@i %i has an @n extent\n"
1742"\t(logical @b %c, physical @b %b, @n len %N)\n"
1743msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001744"Inode %i hat eine ungültige Erweiterung\n"
1745"\t(logischer Block %c, physischer Block %b, unzulässige Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001746
1747#. @-expanded: inode %i has EXTENTS_FL flag set on filesystem without extents support.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001748#: e2fsck/problem.c:899
Philipp Thomas720e6362008-06-21 14:06:00 -04001749#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001750msgid "@i %i has EXTENTS_FL flag set on @f without extents support.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001751msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001752"Inode %i hat den EXTENTS_FL-Bitschalter gesetzt, obwohl das Dateisystem\n"
1753"Erweiterungen nicht unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001754
1755#. @-expanded: inode %i is in extent format, but superblock is missing EXTENTS feature\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001756#: e2fsck/problem.c:904
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001757#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001758msgid "@i %i is in extent format, but @S is missing EXTENTS feature\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001759msgstr "Inode %i besitzt das Erweiterungsformat, aber dem Superblock fehlt die Eigenschaft EXTENTS\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001760
1761#. @-expanded: inode %i missing EXTENT_FL, but is in extents format\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001762#: e2fsck/problem.c:909
Philipp Thomas720e6362008-06-21 14:06:00 -04001763#, c-format
1764msgid "@i %i missing EXTENT_FL, but is in extents format\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001765msgstr "Dem Inode %i fehlt EXTENT_FL, er hat aber das Format einer Erweiterung\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001766
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001767#: e2fsck/problem.c:914
Philipp Thomas720e6362008-06-21 14:06:00 -04001768#, c-format
1769msgid "Fast symlink %i has EXTENT_FL set. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001770msgstr "In schnellem Symlink %i ist EXTENT_FL gesetzt. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001771
1772#. @-expanded: inode %i has out of order extents\n
1773#. @-expanded: \t(invalid logical block %c, physical block %b, len %N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001774#: e2fsck/problem.c:919
Philipp Thomas720e6362008-06-21 14:06:00 -04001775msgid ""
1776"@i %i has out of order extents\n"
1777"\t(@n logical @b %c, physical @b %b, len %N)\n"
1778msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001779"Inode %i hat unregelmäßige Erweiterungen\n"
1780"\t(ungültiger logischer Block %c, physischer Block %b, Länge %N)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001781
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001782#. @-expanded: inode %i has an invalid extent node (blk %b, lblk %c)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001783#: e2fsck/problem.c:923
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001784msgid "@i %i has an invalid extent node (blk %b, lblk %c)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001785msgstr "Inode %i hat einen ungültigen Erweiterungs-Knoten (blk %b, lblk %c)\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001786
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001787#. @-expanded: Error converting subcluster block bitmap: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001788#: e2fsck/problem.c:928
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001789#, c-format
1790msgid "Error converting subcluster @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001791msgstr "Fehler beim Umwandeln der Subcluster-Blockbitmap: %m\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001792
1793#. @-expanded: quota inode is not regular file.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001794#: e2fsck/problem.c:933
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001795msgid "@q @i is not regular file. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001796msgstr "Der Quota-Inode ist keine reguläre Datei. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001797
1798#. @-expanded: quota inode is not in use, but contains data.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001799#: e2fsck/problem.c:938
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001800msgid "@q @i is not in use, but contains data. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001801msgstr "Quota-Inode wird nicht benutzt, enthält aber Daten. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001802
1803#. @-expanded: quota inode is visible to the user.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001804#: e2fsck/problem.c:943
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001805msgid "@q @i is visible to the user. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001806msgstr "Der Quota-Inode ist sichtbar für den Benutzer. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001807
1808#. @-expanded: The bad block inode looks invalid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001809#: e2fsck/problem.c:948
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001810msgid "The bad @b @i looks @n. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001811msgstr "Der Inode für defekte Blöcke sieht ungültig aus. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001812
Philipp Thomasedc733d2012-04-22 15:38:42 -04001813#. @-expanded: inode %i has zero length extent\n
1814#. @-expanded: \t(invalid logical block %c, physical block %b)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001815#: e2fsck/problem.c:953
Philipp Thomasedc733d2012-04-22 15:38:42 -04001816msgid ""
1817"@i %i has zero length extent\n"
1818"\t(@n logical @b %c, physical @b %b)\n"
1819msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001820"Inode %i hat eine Erweitertung der Länge Null\n"
1821"\t(ungültiger logischer Block %c, physischer Block %b)\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04001822
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001823#. @-expanded: Interior extent node level %N of inode %i:\n
1824#. @-expanded: Logical start %b does not match logical start %c at next level.
1825#: e2fsck/problem.c:960
1826msgid ""
1827"Interior @x node level %N of @i %i:\n"
1828"Logical start %b does not match logical start %c at next level. "
1829msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001830"Ebene %N des internen Erweiterungsknotens von Inode %i:\n"
1831"Der logische Start %b passt nicht zum logischen Start %c auf der nächsten Ebene."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001832
1833#. @-expanded: inode %i, end of extent exceeds allowed value\n
1834#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
1835#: e2fsck/problem.c:966
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001836msgid ""
1837"@i %i, end of extent exceeds allowed value\n"
1838"\t(logical @b %c, physical @b %b, len %N)\n"
1839msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001840"Inode %i, das Ende der Erweiterung ist außerhalb des gültigen Bereichs\n"
1841"\t(logischer Block %c, physischer Block %b, Länge %N)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001842
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001843#. @-expanded: \n
1844#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
1845#. @-expanded: Pass 1B: Rescanning for multiply-claimed blocks\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001846#: e2fsck/problem.c:974
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001847msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001848"\n"
1849"Running additional passes to resolve @bs claimed by more than one @i...\n"
1850"Pass 1B: Rescanning for @m @bs\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001851msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001852"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001853"Zusätzliche Läufe werden durchgeführt, um die von mehr als einem Inode\n"
1854"beanspruchten Blöcke zu klären ...\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001855"Durchgang 1B: Suche nach mehrfach beanspruchten Blöcken\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001856
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001857#. @-expanded: multiply-claimed block(s) in inode %i:
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001858#: e2fsck/problem.c:980
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001859#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001860msgid "@m @b(s) in @i %i:"
Philipp Thomasab02a742014-07-09 23:13:30 -04001861msgstr "Mehrfach beanspruchte(r) Block/Blöcke in Inode %i:"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001862
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001863#: e2fsck/problem.c:995
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001864#, c-format
1865msgid "Error while scanning inodes (%i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001866msgstr "Fehler beim Prüfen der Inodes (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001867
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001868#. @-expanded: error allocating inode bitmap (inode_dup_map): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001869#: e2fsck/problem.c:1000
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001870#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001871msgid "@A @i @B (@i_dup_map): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001872msgstr "Fehler beim Zuweisen der Inode-Bitmap (inode_dup_map): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001873
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001874#. @-expanded: Error while iterating over blocks in inode %i (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001875#: e2fsck/problem.c:1005
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001876#, c-format
1877msgid "Error while iterating over @bs in @i %i (%s): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001878msgstr "Fehler beim Iterieren über die Blöcke in Inode %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001879
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001880#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001881#: e2fsck/problem.c:1010 e2fsck/problem.c:1325
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001882msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001883msgstr "Fehler bei der Anpassung des Referenzzählers des Blocks für erweiterte Attribute %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001884
Theodore Ts'o6956f612005-12-31 16:46:15 -05001885#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001886#: e2fsck/problem.c:1015
Theodore Ts'o6956f612005-12-31 16:46:15 -05001887msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001888msgstr "Durchgang 1C: Verzeichnisse werden nach Inodes mit mehrfach belegten Blöcken durchsucht.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001889
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001890#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001891#: e2fsck/problem.c:1021
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001892msgid "Pass 1D: Reconciling @m @bs\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001893msgstr "Durchgang 1D: Mehrfach belegte Blöcke werden abgeglichen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001894
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001895#. @-expanded: File %Q (inode #%i, mod time %IM) \n
Philipp Thomas77c871a2010-04-19 16:59:02 -04001896#. @-expanded: has %r multiply-claimed block(s), shared with %N file(s):\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001897#: e2fsck/problem.c:1026
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001898msgid ""
1899"File %Q (@i #%i, mod time %IM) \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001900" has %r @m @b(s), shared with %N file(s):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001901msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001902"Datei %Q (Inode #%i, Änderungszeit %IM) \n"
1903" hat %r mehrfach belegte(n) Block/Blöcke, gemeinsam genutzt mit %N Datei(en):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001904
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001905#. @-expanded: \t%Q (inode #%i, mod time %IM)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001906#: e2fsck/problem.c:1032
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001907msgid "\t%Q (@i #%i, mod time %IM)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001908msgstr "\t%Q (Inode #%i, Änderungszeit %IM)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001909
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001910#. @-expanded: \t<filesystem metadata>\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001911#: e2fsck/problem.c:1037
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001912msgid "\t<@f metadata>\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001913msgstr "\t<@f-Metadaten>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001914
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001915#. @-expanded: (There are %N inodes containing multiply-claimed blocks.)\n
1916#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001917#: e2fsck/problem.c:1042
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001918msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001919"(There are %N @is containing @m @bs.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001920"\n"
1921msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001922"(Es gibt %N Inodes, die mehrfach belegte Blöcke enthalten.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001923"\n"
1924
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001925#. @-expanded: multiply-claimed blocks already reassigned or cloned.\n
1926#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001927#: e2fsck/problem.c:1047
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001928msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001929"@m @bs already reassigned or cloned.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001930"\n"
1931msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001932"Mehrfach belegte Blöcke wurden bereits neu zugeordnet bzw. geklont.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001933"\n"
1934
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001935#: e2fsck/problem.c:1060
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001936#, c-format
1937msgid "Couldn't clone file: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001938msgstr "Datei kann nicht geklont werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001939
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001940#. @-expanded: Pass 2: Checking directory structure\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001941#: e2fsck/problem.c:1066
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001942msgid "Pass 2: Checking @d structure\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001943msgstr "Durchgang 2: Verzeichnisstruktur wird geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001944
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001945#. @-expanded: invalid inode number for '.' in directory inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001946#: e2fsck/problem.c:1071
Theodore Ts'o7527ef12007-12-05 19:35:20 -05001947#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001948msgid "@n @i number for '.' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001949msgstr "Falsche Inode-Nummer für „.“ in Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001950
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001951#. @-expanded: entry '%Dn' in %p (%i) has invalid inode #: %Di.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001952#: e2fsck/problem.c:1076
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001953msgid "@E has @n @i #: %Di.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001954msgstr "Eintrag hat falsche Inode-Nummer: %Di.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001955
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001956#. @-expanded: entry '%Dn' in %p (%i) has deleted/unused inode %Di.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001957#: e2fsck/problem.c:1081
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001958msgid "@E has @D/unused @i %Di. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001959msgstr "Eintrag „%Dn“ in %p (%i) hat gelöschten/unbenutzten Inode %Di. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001960
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001961#. @-expanded: entry '%Dn' in %p (%i) is a link to '.'
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001962#: e2fsck/problem.c:1086
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001963msgid "@E @L to '.' "
Philipp Thomasab02a742014-07-09 23:13:30 -04001964msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf „.“ "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001965
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001966#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001967#: e2fsck/problem.c:1091
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001968msgid "@E points to @i (%Di) located in a bad @b.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001969msgstr "Eintrag „%Dn“ in %p (%i) zeigt auf einen Inode (%Di) in einem defekten Block.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001970
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001971#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001972#: e2fsck/problem.c:1096
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001973msgid "@E @L to @d %P (%Di).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001974msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf das Verzeichnis %P (%Di).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001975
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001976#. @-expanded: entry '%Dn' in %p (%i) is a link to the root inode.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001977#: e2fsck/problem.c:1101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001978msgid "@E @L to the @r.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001979msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf den Root-Inode.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001980
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001981#. @-expanded: entry '%Dn' in %p (%i) has illegal characters in its name.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001982#: e2fsck/problem.c:1106
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001983msgid "@E has illegal characters in its name.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001984msgstr "Eintrag „%Dn“ in %p (%i) hat ein unzulässiges Zeichen im Namen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001985
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001986#. @-expanded: Missing '.' in directory inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001987#: e2fsck/problem.c:1111
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001988#, c-format
1989msgid "Missing '.' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001990msgstr "Fehlende „.“ im Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001991
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001992#. @-expanded: Missing '..' in directory inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001993#: e2fsck/problem.c:1116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001994#, c-format
1995msgid "Missing '..' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001996msgstr "Fehlender Eintrag „..“ im Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001997
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001998#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001999#: e2fsck/problem.c:1121
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002000msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002001msgstr "Der erste Eintrag „%Dn“ (Inode=%Di) im Verzeichnis-Inode %i (%p) sollte „.“ sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002002
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002003#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002004#: e2fsck/problem.c:1126
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002005msgid "Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002006msgstr "Der zweite Eintrag „%Dn“ (Inode=%Di) im Verzeichnis-Inode %i sollte „..“ sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002007
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002008#. @-expanded: i_faddr for inode %i (%Q) is %IF, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002009#: e2fsck/problem.c:1131
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002010msgid "i_faddr @F %IF, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002011msgstr "i_faddr für Inode %i (%Q) ist %IF, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002012
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002013#. @-expanded: i_file_acl for inode %i (%Q) is %If, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002014#: e2fsck/problem.c:1136
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002015msgid "i_file_acl @F %If, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002016msgstr "i_file_acl für Inode %i (%Q) ist %If, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002017
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002018#. @-expanded: i_dir_acl for inode %i (%Q) is %Id, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002019#: e2fsck/problem.c:1141
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002020msgid "i_dir_acl @F %Id, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002021msgstr "i_dir_acl für Inode %i (%Q) ist %Id, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002022
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002023#. @-expanded: i_frag for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002024#: e2fsck/problem.c:1146
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002025msgid "i_frag @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002026msgstr "i_frag für Inode %i (%Q) ist %N, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002027
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002028#. @-expanded: i_fsize for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002029#: e2fsck/problem.c:1151
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002030msgid "i_fsize @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002031msgstr "i_fsize für Inode %i (%Q) ist %N, @s null.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002032
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002033#. @-expanded: inode %i (%Q) has invalid mode (%Im).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002034#: e2fsck/problem.c:1156
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002035msgid "@i %i (%Q) has @n mode (%Im).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002036msgstr "Inode %i (%Q) hat einen ungültigen Modus (%Im).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002037
Philipp Thomas77c871a2010-04-19 16:59:02 -04002038#. @-expanded: directory inode %i, %B, offset %N: directory corrupted\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002039#: e2fsck/problem.c:1161
Philipp Thomas77c871a2010-04-19 16:59:02 -04002040msgid "@d @i %i, %B, offset %N: @d corrupted\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002041msgstr "Verzeichnis-Inode %i, %B, Offset %N: Verzeichnis defekt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002042
Philipp Thomas77c871a2010-04-19 16:59:02 -04002043#. @-expanded: directory inode %i, %B, offset %N: filename too long\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002044#: e2fsck/problem.c:1166
Philipp Thomas77c871a2010-04-19 16:59:02 -04002045msgid "@d @i %i, %B, offset %N: filename too long\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002046msgstr "Verzeichnis-Inode %i, %B, Offset %N: Dateiname zu lang\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002047
Philipp Thomas77c871a2010-04-19 16:59:02 -04002048#. @-expanded: directory inode %i has an unallocated %B.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002049#: e2fsck/problem.c:1171
Philipp Thomas77c871a2010-04-19 16:59:02 -04002050msgid "@d @i %i has an unallocated %B. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002051msgstr "Verzeichnis-Inode %i hat einen nicht zugewiesenen %B. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002052
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002053#. @-expanded: '.' directory entry in directory inode %i is not NULL terminated\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002054#: e2fsck/problem.c:1176
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002055#, c-format
2056msgid "'.' @d @e in @d @i %i is not NULL terminated\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002057msgstr "Verzeichniseintrag „.“ im Verzeichnis-Inode %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002058
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002059#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002060#: e2fsck/problem.c:1181
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002061#, c-format
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002062msgid "'..' @d @e in @d @i %i is not NULL terminated\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002063msgstr "Verzeichniseintrag „..“ im Verzeichnis-Inode %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002064
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002065#. @-expanded: inode %i (%Q) is an illegal character device.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002066#: e2fsck/problem.c:1186
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002067msgid "@i %i (%Q) is an @I character @v.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002068msgstr "Inode %i (%Q) ist ein ungültiges zeichenorientiertes Gerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002069
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002070#. @-expanded: inode %i (%Q) is an illegal block device.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002071#: e2fsck/problem.c:1191
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002072msgid "@i %i (%Q) is an @I @b @v.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002073msgstr "Inode %i (%Q) ist ein ungültiges blockorientiertes Gerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002074
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002075#. @-expanded: entry '%Dn' in %p (%i) is duplicate '.' entry.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002076#: e2fsck/problem.c:1196
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002077msgid "@E is duplicate '.' @e.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002078msgstr "Eintrag „%Dn“ in %p (%i) ist ein doppelter Eintrag für „.“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002079
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002080#. @-expanded: entry '%Dn' in %p (%i) is duplicate '..' entry.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002081#: e2fsck/problem.c:1201
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002082msgid "@E is duplicate '..' @e.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002083msgstr "Eintrag „%Dn“ in %p (%i) ist ein doppelter Eintrag für „..“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002084
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002085#: e2fsck/problem.c:1206 e2fsck/problem.c:1506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002086#, c-format
2087msgid "Internal error: couldn't find dir_info for %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002088msgstr "Interner Fehler: dir_info für %i kann nicht gefunden werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002089
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002090#. @-expanded: entry '%Dn' in %p (%i) has rec_len of %Dr, should be %N.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002091#: e2fsck/problem.c:1211
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002092msgid "@E has rec_len of %Dr, @s %N.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002093msgstr "Eintrag „%Dn“ in %p (%i) hat eine rec_len von %Dr, sollte %N sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002094
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002095#. @-expanded: error allocating icount structure: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002096#: e2fsck/problem.c:1216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002097#, c-format
2098msgid "@A icount structure: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002099msgstr "Fehler beim Zuweisen der icount-Struktur: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002100
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002101#. @-expanded: Error iterating over directory blocks: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002102#: e2fsck/problem.c:1221
Theodore Ts'of9e6df42004-05-04 16:19:13 -04002103#, c-format
Theodore Ts'of592bed2003-07-26 00:51:54 -04002104msgid "Error iterating over @d @bs: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002105msgstr "Fehler beim Durchlaufen der Verzeichnisblöcke: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002106
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002107#. @-expanded: Error reading directory block %b (inode %i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002108#: e2fsck/problem.c:1226
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002109msgid "Error reading @d @b %b (@i %i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002110msgstr "Fehler beim Lesen des Verzeichnisblocks %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002111
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002112#. @-expanded: Error writing directory block %b (inode %i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002113#: e2fsck/problem.c:1231
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002114msgid "Error writing @d @b %b (@i %i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002115msgstr "Fehler beim Schreiben des Verzeichnisblocks %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002116
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002117#. @-expanded: error allocating new directory block for inode %i (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002118#: e2fsck/problem.c:1236
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002119#, c-format
2120msgid "@A new @d @b for @i %i (%s): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002121msgstr "Fehler beim Zuweisen eines neuen Verzeichnisblocks für Inode %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002122
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002123#. @-expanded: Error deallocating inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002124#: e2fsck/problem.c:1241
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002125#, c-format
2126msgid "Error deallocating @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002127msgstr "Fehler bei der Freigabe von Inode %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002128
Philipp Thomas40771272008-09-07 22:55:25 -04002129#. @-expanded: directory entry for '.' in %p (%i) is big.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002130#: e2fsck/problem.c:1246
Philipp Thomas40771272008-09-07 22:55:25 -04002131#, c-format
2132msgid "@d @e for '.' in %p (%i) is big.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002133msgstr "Verzeichniseintrag für „.“ in %p (%i) ist groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002134
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002135#. @-expanded: inode %i (%Q) is an illegal FIFO.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002136#: e2fsck/problem.c:1251
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002137msgid "@i %i (%Q) is an @I FIFO.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002138msgstr "Inode %i (%Q) ist eine ungültige FIFO.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002139
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002140#. @-expanded: inode %i (%Q) is an illegal socket.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002141#: e2fsck/problem.c:1256
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002142msgid "@i %i (%Q) is an @I socket.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002143msgstr "Inode %i (%Q) ist ein ungültiger Socket.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002144
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002145#. @-expanded: Setting filetype for entry '%Dn' in %p (%i) to %N.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002146#: e2fsck/problem.c:1261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002147msgid "Setting filetype for @E to %N.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002148msgstr "Dateitypü für Eintrag „%Dn“ in %p (%i) wird auf %N gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002149
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002150#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002151#: e2fsck/problem.c:1266
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002152msgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002153msgstr "Eintrag „%Dn“ in %p (%i) hat einen falschen Dateityp (war %Dt, sollte %N sein).\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002154
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002155#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002156#: e2fsck/problem.c:1271
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002157msgid "@E has filetype set.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002158msgstr "Eintrag „%Dn“ in %p (%i) hat Dateityp gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002159
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002160#. @-expanded: entry '%Dn' in %p (%i) has a zero-length name.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002161#: e2fsck/problem.c:1276
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002162msgid "@E has a @z name.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002163msgstr "Eintrag „%Dn“ in %p (%i) hat einen Namen der Länge Null.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002164
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002165#. @-expanded: Symlink %Q (inode #%i) is invalid.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002166#: e2fsck/problem.c:1281
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002167msgid "Symlink %Q (@i #%i) is @n.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002168msgstr "Symlink %Q (Inode #%i) is invalid.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002169
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002170#. @-expanded: extended attribute block for inode %i (%Q) is invalid (%If).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002171#: e2fsck/problem.c:1286
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002172msgid "@a @b @F @n (%If).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002173msgstr "Erweiterte-Attribute-Block für Inode %i (%Q) ist ungültig (%If).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002174
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002175#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002176#: e2fsck/problem.c:1291
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002177msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002178msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002179"Dateisystem enthält große Dateien, aber im Superblock ist\n"
2180"der Bitschalter LARGE_FILE nicht gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002181
Philipp Thomas77c871a2010-04-19 16:59:02 -04002182#. @-expanded: problem in HTREE directory inode %d: %B not referenced\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002183#: e2fsck/problem.c:1296
Philipp Thomas77c871a2010-04-19 16:59:02 -04002184msgid "@p @h %d: %B not referenced\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002185msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B ist nicht referenziert\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002186
Philipp Thomas77c871a2010-04-19 16:59:02 -04002187#. @-expanded: problem in HTREE directory inode %d: %B referenced twice\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002188#: e2fsck/problem.c:1301
Philipp Thomas77c871a2010-04-19 16:59:02 -04002189msgid "@p @h %d: %B referenced twice\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002190msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B doppelt referenziert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002191
Philipp Thomas77c871a2010-04-19 16:59:02 -04002192#. @-expanded: problem in HTREE directory inode %d: %B has bad min hash\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002193#: e2fsck/problem.c:1306
Philipp Thomas77c871a2010-04-19 16:59:02 -04002194msgid "@p @h %d: %B has bad min hash\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002195msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat ungültigen Minimumhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002196
Philipp Thomas77c871a2010-04-19 16:59:02 -04002197#. @-expanded: problem in HTREE directory inode %d: %B has bad max hash\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002198#: e2fsck/problem.c:1311
Philipp Thomas77c871a2010-04-19 16:59:02 -04002199msgid "@p @h %d: %B has bad max hash\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002200msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat ungültigen Maximalhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002201
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002202#. @-expanded: invalid HTREE directory inode %d (%q).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002203#: e2fsck/problem.c:1316
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002204msgid "@n @h %d (%q). "
Philipp Thomasab02a742014-07-09 23:13:30 -04002205msgstr "Ungültiger HTREE-Verzeichnis-Inode %d (%q). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002206
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002207#. @-expanded: problem in HTREE directory inode %d (%q): bad block number %b.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002208#: e2fsck/problem.c:1320
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002209msgid "@p @h %d (%q): bad @b number %b.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002210msgstr "Problem im HTREE-Verzeichnis-Inode %d (%q): falsche Blocknummer %b.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002211
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002212#. @-expanded: problem in HTREE directory inode %d: root node is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002213#: e2fsck/problem.c:1330
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002214#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002215msgid "@p @h %d: root node is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002216msgstr "Problem im HTREE-Verzeichnis-Inode %d: Wurzelknoten ist ungültig\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002217
Philipp Thomas77c871a2010-04-19 16:59:02 -04002218#. @-expanded: problem in HTREE directory inode %d: %B has invalid limit (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002219#: e2fsck/problem.c:1335
Philipp Thomas77c871a2010-04-19 16:59:02 -04002220msgid "@p @h %d: %B has @n limit (%N)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002221msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat eine ungültige Begrenzung (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002222
Philipp Thomas77c871a2010-04-19 16:59:02 -04002223#. @-expanded: problem in HTREE directory inode %d: %B has invalid count (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002224#: e2fsck/problem.c:1340
Philipp Thomas77c871a2010-04-19 16:59:02 -04002225msgid "@p @h %d: %B has @n count (%N)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002226msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat einen ungültigen Zählerstand (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002227
Philipp Thomas77c871a2010-04-19 16:59:02 -04002228#. @-expanded: problem in HTREE directory inode %d: %B has an unordered hash table\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002229#: e2fsck/problem.c:1345
Philipp Thomas77c871a2010-04-19 16:59:02 -04002230msgid "@p @h %d: %B has an unordered hash table\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002231msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat eine unsortierte Hashtabelle\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002232
Philipp Thomas77c871a2010-04-19 16:59:02 -04002233#. @-expanded: problem in HTREE directory inode %d: %B has invalid depth (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002234#: e2fsck/problem.c:1350
Philipp Thomas77c871a2010-04-19 16:59:02 -04002235msgid "@p @h %d: %B has @n depth (%N)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002236msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat eine ungültige Tiefe (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002237
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002238#. @-expanded: Duplicate entry '%Dn' in %p (%i) found.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002239#: e2fsck/problem.c:1355
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002240msgid "Duplicate @E found. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002241msgstr "Doppelter Eintrag „%Dn“ in %p (%i) gefunden. "
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002242
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002243#. @-expanded: entry '%Dn' in %p (%i) has a non-unique filename.\n
2244#. @-expanded: Rename to %s
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002245#: e2fsck/problem.c:1360
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002246#, no-c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002247msgid ""
2248"@E has a non-unique filename.\n"
2249"Rename to %s"
2250msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002251"Eintrag „%Dn“ in %p (%i) hat keinen eindeutigen Dateinamen.\n"
2252"Wird in %s umbenannt"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002253
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002254#. @-expanded: Duplicate entry '%Dn' found.\n
2255#. @-expanded: \tMarking %p (%i) to be rebuilt.\n
2256#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002257#: e2fsck/problem.c:1365
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002258msgid ""
2259"Duplicate @e '%Dn' found.\n"
2260"\tMarking %p (%i) to be rebuilt.\n"
2261"\n"
2262msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002263"Doppelter Eintrag „%Dn“ gefunden.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002264"\t%p (%i) wird für die Neuerstellung markiert.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002265"\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002266
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002267#. @-expanded: i_blocks_hi for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002268#: e2fsck/problem.c:1370
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002269msgid "i_blocks_hi @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002270msgstr "i_blocks_hi für Inode %i (%Q) %N, sollte Null sein.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002271
Philipp Thomas720e6362008-06-21 14:06:00 -04002272#. @-expanded: Unexpected block in HTREE directory inode %d (%q).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002273#: e2fsck/problem.c:1375
Philipp Thomas720e6362008-06-21 14:06:00 -04002274msgid "Unexpected @b in @h %d (%q).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002275msgstr "Unerwarteter Block im HTREE-Verzeichnis-Inode %d (%q).\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002276
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002277#. @-expanded: entry '%Dn' in %p (%i) references inode %Di in group %g where _INODE_UNINIT is set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002278#: e2fsck/problem.c:1379
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002279msgid "@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002280msgstr "Eintrag „%Dn“ in %p (%i) verweist auf Inode %Di in Gruppe %g, für die _INODE_UNINIT gesetzt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002281
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002282#. @-expanded: entry '%Dn' in %p (%i) references inode %Di found in group %g's unused inodes area.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002283#: e2fsck/problem.c:1384
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002284msgid "@E references @i %Di found in @g %g's unused inodes area.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002285msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002286"Eintrag „%Dn“ in %p (%i) verweist auf Inode %Di, der im Bereich ungenutzter Inodes\n"
2287"von Gruppe %g zu finden ist.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002288
2289#. @-expanded: i_file_acl_hi for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002290#: e2fsck/problem.c:1389
Philipp Thomas77c871a2010-04-19 16:59:02 -04002291msgid "i_file_acl_hi @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002292msgstr "i_file_acl_hi für Inode %i (%Q) ist %N, sollte Null sein.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002293
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002294#. @-expanded: Pass 3: Checking directory connectivity\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002295#: e2fsck/problem.c:1396
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002296msgid "Pass 3: Checking @d connectivity\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002297msgstr "Durchgang 3: Verzeichnisverknüpfungen werden geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002298
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002299#. @-expanded: root inode not allocated.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002300#: e2fsck/problem.c:1401
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002301msgid "@r not allocated. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002302msgstr "Root-Inode nicht zugeordnet. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002303
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002304#. @-expanded: No room in lost+found directory.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002305#: e2fsck/problem.c:1406
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002306msgid "No room in @l @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002307msgstr "Kein Platz im Verzeichnis „lost+found“. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002308
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002309#. @-expanded: Unconnected directory inode %i (%p)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002310#: e2fsck/problem.c:1411
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002311#, c-format
2312msgid "Unconnected @d @i %i (%p)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002313msgstr "Nicht verbundener Verzeichnis-Inode %i (%p)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002314
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002315#. @-expanded: /lost+found not found.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002316#: e2fsck/problem.c:1416
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002317msgid "/@l not found. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002318msgstr "/lost+found nicht gefunden. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002319
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002320#. @-expanded: '..' in %Q (%i) is %P (%j), should be %q (%d).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002321#: e2fsck/problem.c:1421
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002322msgid "'..' in %Q (%i) is %P (%j), @s %q (%d).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002323msgstr "„..“ in %Q (%i) ist %P (%j), sollte %q (%d) sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002324
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002325#. @-expanded: Bad or non-existent /lost+found. Cannot reconnect.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002326#: e2fsck/problem.c:1426
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002327msgid "Bad or non-existent /@l. Cannot reconnect.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002328msgstr "Verzeichnis /lost+found ist falsch oder fehlt. Wiederverbinden nicht möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002329
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002330#. @-expanded: Could not expand /lost+found: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002331#: e2fsck/problem.c:1431
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002332#, c-format
2333msgid "Could not expand /@l: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002334msgstr "Erweitern von /lost+found nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002335
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002336#: e2fsck/problem.c:1436
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002337#, c-format
2338msgid "Could not reconnect %i: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002339msgstr "Wiederverbinden von %i nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002340
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002341#. @-expanded: Error while trying to find /lost+found: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002342#: e2fsck/problem.c:1441
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002343#, c-format
2344msgid "Error while trying to find /@l: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002345msgstr "Fehler während der Suche nach /lost+found: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002346
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002347#. @-expanded: ext2fs_new_block: %m while trying to create /lost+found directory\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002348#: e2fsck/problem.c:1446
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002349#, c-format
2350msgid "ext2fs_new_@b: %m while trying to create /@l @d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002351msgstr "ext2fs_new_@b: %m während des Versuches, das Verzeichnis /lost+found zu erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002352
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002353#. @-expanded: ext2fs_new_inode: %m while trying to create /lost+found directory\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002354#: e2fsck/problem.c:1451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002355#, c-format
2356msgid "ext2fs_new_@i: %m while trying to create /@l @d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002357msgstr "ext2fs_new_@i: %m während des Versuches, das Verzeichnis /lost+found zu erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002358
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002359#. @-expanded: ext2fs_new_dir_block: %m while creating new directory block\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002360#: e2fsck/problem.c:1456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002361#, c-format
2362msgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002363msgstr "ext2fs_new_dir_@b: %m während des Versuches, das Verzeichnis /lost+found zu erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002364
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002365#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002366#: e2fsck/problem.c:1461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002367#, c-format
2368msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002369msgstr "ext2fs_write_dir_@b: %m während des Schreibens des Verzeichnisblocks für /lost+found\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002370
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002371#. @-expanded: Error while adjusting inode count on inode %i\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002372#: e2fsck/problem.c:1466
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002373#, c-format
2374msgid "Error while adjusting @i count on @i %i\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002375msgstr "Fehler während des Anpassens der Inode-Anzahl auf Inode %i\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002376
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002377#. @-expanded: Couldn't fix parent of inode %i: %m\n
2378#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002379#: e2fsck/problem.c:1471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002380#, c-format
2381msgid ""
2382"Couldn't fix parent of @i %i: %m\n"
2383"\n"
2384msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002385"Eigentümer von Inode %i konnte nicht repariert werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002386"\n"
2387
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002388#. @-expanded: Couldn't fix parent of inode %i: Couldn't find parent directory entry\n
2389#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002390#: e2fsck/problem.c:1476
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002391#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002392msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002393"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002394"\n"
2395msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002396"Eigentümer von Inode %i konnte nicht repariert werden: \n"
2397"Verzeichniseintrag des Eigentümers wurde nicht gefunden.\n"
2398"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002399
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002400#. @-expanded: Error creating root directory (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002401#: e2fsck/problem.c:1486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002402#, c-format
2403msgid "Error creating root @d (%s): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002404msgstr "Fehler beim Erzeugen des Wurzelverzeichnisses (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002405
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002406#. @-expanded: Error creating /lost+found directory (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002407#: e2fsck/problem.c:1491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002408#, c-format
2409msgid "Error creating /@l @d (%s): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002410msgstr "Fehler beim Erzeugen des Verzeichnisses /lost+found (%s): %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002411
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002412#. @-expanded: root inode is not a directory; aborting.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002413#: e2fsck/problem.c:1496
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002414msgid "@r is not a @d; aborting.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002415msgstr "Der Wurzel-Inode ist kein Verzeichnis; Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002416
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002417#. @-expanded: Cannot proceed without a root inode.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002418#: e2fsck/problem.c:1501
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002419msgid "Cannot proceed without a @r.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002420msgstr "Ohne Wurzel-Inode ist weiteres Arbeiten nicht möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002421
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002422#. @-expanded: /lost+found is not a directory (ino=%i)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002423#: e2fsck/problem.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002424#, c-format
2425msgid "/@l is not a @d (ino=%i)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002426msgstr "/lost+found ist kein Verzeichnis (ino=%i)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002427
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002428#: e2fsck/problem.c:1518
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002429msgid "Pass 3A: Optimizing directories\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002430msgstr "Durchgang 3A: Verzeichnisse werden optimiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002431
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002432#: e2fsck/problem.c:1523
Philipp Thomas77c871a2010-04-19 16:59:02 -04002433#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002434msgid "Failed to create dirs_to_hash iterator: %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002435msgstr "dirs_to_hash Iterator konnte nicht erzeugt werden: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002436
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002437#: e2fsck/problem.c:1528
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002438msgid "Failed to optimize directory %q (%d): %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002439msgstr "Verzeichnis %q (%d) konnte nicht optimiert werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002441#: e2fsck/problem.c:1533
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002442msgid "Optimizing directories: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002443msgstr "Verzeichnisse werden optimiert: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002444
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002445#: e2fsck/problem.c:1550
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002446msgid "Pass 4: Checking reference counts\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002447msgstr "Durchgang 4: Referenzzähler werden überprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002448
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002449#. @-expanded: unattached zero-length inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002450#: e2fsck/problem.c:1555
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002451#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002452msgid "@u @z @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002453msgstr "Nicht verbundener Inode der Länge Null %i. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002454
2455#. @-expanded: unattached inode %i\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002456#: e2fsck/problem.c:1560
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002457#, c-format
2458msgid "@u @i %i\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002459msgstr "Nicht verbundener Inode %i\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002460
2461#. @-expanded: inode %i ref count is %Il, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002462#: e2fsck/problem.c:1565
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002463msgid "@i %i ref count is %Il, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002464msgstr "Der Referenzzähler von Inode %i ist %Il, sollte aber %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002465
Philipp Thomasab02a742014-07-09 23:13:30 -04002466# So etwas sollte in einer ernstzunehmenden Software nicht erscheinen,
2467# selbst wenn es (derber) Humor ist.
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002468#. @-expanded: WARNING: PROGRAMMING BUG IN E2FSCK!\n
2469#. @-expanded: \tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n
2470#. @-expanded: inode_link_info[%i] is %N, inode.i_links_count is %Il. They should be the same!\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002471#: e2fsck/problem.c:1569
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002472msgid ""
2473"WARNING: PROGRAMMING BUG IN E2FSCK!\n"
2474"\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002475"@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 -05002476msgstr ""
2477"WARNUNG: PROGRAMMIERFEHLER IN E2FSCK!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002478"\tODER JEMAND PRÜFT EIN EINGEHÄNGTES (AKTIVES) DATEISYSTEM.\n"
2479"@i_link_info[%i] ist %N, @i.i_links_count ist %Il. Sie sollten identisch sein!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002480
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002481#. @-expanded: Pass 5: Checking group summary information\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002482#: e2fsck/problem.c:1579
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002483msgid "Pass 5: Checking @g summary information\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002484msgstr "Durchgang 5: Zusammengefasste Gruppeninformation wird geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002485
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002486#. @-expanded: Padding at end of inode bitmap is not set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002487#: e2fsck/problem.c:1584
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002488msgid "Padding at end of @i @B is not set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002489msgstr "Auffüllbyte am Ende der Inode-Bitmap ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002490
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002491#. @-expanded: Padding at end of block bitmap is not set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002492#: e2fsck/problem.c:1589
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002493msgid "Padding at end of @b @B is not set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002494msgstr "Auffüllbyte am Ende der Inode-Bitmap ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002495
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002496#. @-expanded: block bitmap differences:
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002497#: e2fsck/problem.c:1594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002498msgid "@b @B differences: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002499msgstr "Unterschiede in der Block-Bitmap: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002500
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002501#. @-expanded: inode bitmap differences:
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002502#: e2fsck/problem.c:1614
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002503msgid "@i @B differences: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002504msgstr "Unterschiede in der Inode-Bitmap: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002505
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002506#. @-expanded: Free inodes count wrong for group #%g (%i, counted=%j).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002507#: e2fsck/problem.c:1634
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002508msgid "Free @is count wrong for @g #%g (%i, counted=%j).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002509msgstr "Die Anzahl freier Inodes für Gruppe #%g ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002510
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002511#. @-expanded: Directories count wrong for group #%g (%i, counted=%j).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002512#: e2fsck/problem.c:1639
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002513msgid "Directories count wrong for @g #%g (%i, counted=%j).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002514msgstr "Die Anzahl der Verzeichnisse für Gruppe #%g ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002515
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002516#. @-expanded: Free inodes count wrong (%i, counted=%j).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002517#: e2fsck/problem.c:1644
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002518msgid "Free @is count wrong (%i, counted=%j).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002519msgstr "Die Anzahl freier Inodes ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002520
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002521#. @-expanded: Free blocks count wrong for group #%g (%b, counted=%c).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002522#: e2fsck/problem.c:1649
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002523msgid "Free @bs count wrong for @g #%g (%b, counted=%c).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002524msgstr "Die Anzahl freier Blöcke in Gruppe #%g ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002525
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002526#. @-expanded: Free blocks count wrong (%b, counted=%c).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002527#: e2fsck/problem.c:1654
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002528msgid "Free @bs count wrong (%b, counted=%c).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002529msgstr "Die Anzahl freier Blöcke ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002530
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002531#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
2532#. @-expanded: endpoints (%i, %j)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002533#: e2fsck/problem.c:1659
Philipp Thomasab02a742014-07-09 23:13:30 -04002534msgid "PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B endpoints (%i, %j)\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002535msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002536"PROGRAMMIERFEHLER: Dateisystem (#%N) Bitmap-Endpunkte (%b, %c) stimmenen nicht\n"
2537"mit den berechneten Bitmap-Endpunkten (%i, %j) überein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002538
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002539#: e2fsck/problem.c:1665
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002540msgid "Internal error: fudging end of bitmap (%N)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002541msgstr "Interner Fehler: das Ende der Bitmap (%N) wird erraten\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002542
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002543#. @-expanded: Error copying in replacement inode bitmap: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002544#: e2fsck/problem.c:1670
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002545#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002546msgid "Error copying in replacement @i @B: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002547msgstr "Fehler beim Hineinkopieren der Inode-Bitmap: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002548
2549#. @-expanded: Error copying in replacement block bitmap: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002550#: e2fsck/problem.c:1675
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002551#, c-format
2552msgid "Error copying in replacement @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002553msgstr "Fehler beim Hineinkopieren der Ersatz-Blockbitmap: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002554
Philipp Thomas720e6362008-06-21 14:06:00 -04002555#. @-expanded: group %g block(s) in use but group is marked BLOCK_UNINIT\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002556#: e2fsck/problem.c:1700
Philipp Thomas720e6362008-06-21 14:06:00 -04002557#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04002558msgid "@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002559msgstr "Blöcke von Gruppe %g sind in Benutzung, obwohl die Gruppe als BLOCK_UNINIT markiert ist\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04002560
2561#. @-expanded: group %g inode(s) in use but group is marked INODE_UNINIT\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002562#: e2fsck/problem.c:1705
Theodore Ts'o057a1592010-06-07 12:24:21 -04002563#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04002564msgid "@g %g @i(s) in use but @g is marked INODE_UNINIT\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002565msgstr "Die Inodes der Gruppe %g sind in Benutzung, obwohl die Gruppe als INODE_UNINIT markiert ist\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002566
Philipp Thomas77c871a2010-04-19 16:59:02 -04002567#. @-expanded: Recreate journal
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002568#: e2fsck/problem.c:1712
Philipp Thomas77c871a2010-04-19 16:59:02 -04002569msgid "Recreate @j"
Philipp Thomasab02a742014-07-09 23:13:30 -04002570msgstr "Journal wird wiederhergestellt"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002571
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002572#: e2fsck/problem.c:1717
Eric Sandeen032eafe2012-07-28 17:48:36 -04002573msgid "Update quota info for quota type %N"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002574msgstr "Quota-Info für Typ %N wird aktualisiert"
Eric Sandeen032eafe2012-07-28 17:48:36 -04002575
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002576#: e2fsck/problem.c:1836
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002577#, c-format
2578msgid "Unhandled error code (0x%x)!\n"
2579msgstr "Unbenutzter Fehlercode (0x%x)!\n"
2580
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002581#: e2fsck/problem.c:1961 e2fsck/problem.c:1965
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002582msgid "IGNORED"
2583msgstr "IGNORIERT"
2584
Eric Sandeen032eafe2012-07-28 17:48:36 -04002585#: e2fsck/scantest.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002586#, c-format
2587msgid "Memory used: %d, elapsed time: %6.3f/%6.3f/%6.3f\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002588msgstr "Benutzter Speicher: %d, vergangende Zeit: %6.3f/%6.3f/%6.3f\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002589
Eric Sandeen032eafe2012-07-28 17:48:36 -04002590#: e2fsck/scantest.c:98
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002591#, c-format
2592msgid "size of inode=%d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002593msgstr "Größe des Inodes=%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002594
Eric Sandeen032eafe2012-07-28 17:48:36 -04002595#: e2fsck/scantest.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002596msgid "while starting inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -04002597msgstr "beim Starten der Inode-Prüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002598
Eric Sandeen032eafe2012-07-28 17:48:36 -04002599#: e2fsck/scantest.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002600msgid "while doing inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -04002601msgstr "während der Inode-Prüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002602
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002603#: e2fsck/super.c:190
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002604#, c-format
2605msgid "while calling ext2fs_block_iterate for inode %d"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002606msgstr "während des Aufrufs von ext2fs_block_iterate für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002607
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002608#: e2fsck/super.c:213
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002609#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002610msgid "while calling ext2fs_adjust_ea_refcount2 for inode %d"
2611msgstr "während des Aufrufs von ext2fs_adjust_ea_refcount2 für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002612
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002613#: e2fsck/super.c:274
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002614msgid "Truncating"
Philipp Thomasab02a742014-07-09 23:13:30 -04002615msgstr "Wird gekürzt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002616
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002617#: e2fsck/super.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002618msgid "Clearing"
Philipp Thomasab02a742014-07-09 23:13:30 -04002619msgstr "Wird bereinigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002620
Eric Sandeen032eafe2012-07-28 17:48:36 -04002621#: e2fsck/unix.c:74
Philipp Thomas68801282008-07-17 11:47:00 -04002622#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002623msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04002624"Usage: %s [-panyrcdfvtDFV] [-b superblock] [-B blocksize]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002625"\t\t[-I inode_buffer_blocks] [-P process_inode_size]\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002626"\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002627"\t\t[-E extended-options] device\n"
2628msgstr ""
Philipp Thomas68801282008-07-17 11:47:00 -04002629"Aufruf: %s [-panyrcdfvtDFV] [-b Superblock] [-B Blockgröße]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002630"\t\t[-I Inode_Puffer_Blöcke] [-P Prozess_Inodegröße]\n"
2631"\t\t[-l|-L Bad_Blocks_Datei] [-C Dateideskriptor] [-j externes_Journal]\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002632"\t\t[-E erweiterte_Optionen] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002633
Eric Sandeen032eafe2012-07-28 17:48:36 -04002634#: e2fsck/unix.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002635msgid ""
2636"\n"
2637"Emergency help:\n"
2638" -p Automatic repair (no questions)\n"
2639" -n Make no changes to the filesystem\n"
2640" -y Assume \"yes\" to all questions\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002641" -c Check for bad blocks and add them to the badblock list\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002642" -f Force checking even if filesystem is marked clean\n"
2643msgstr ""
2644"\n"
Philipp Thomas18eaec22011-10-02 22:50:38 -04002645"Notfallhilfe:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002646" -p automatische Reparatur (keine Fragen)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002647" -n keine Veränderungen am Dateisystem vornehmen\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002648" -y Alle Fragen mit „Ja” benatworten\n"
2649" -c Nach defekten Blöcken suchen und diese zur\n"
2650" Liste der defekten Blöcke hinzufügen\n"
2651" -f Die Überprüfung erzwingen, auch wenn alles i.O. erscheint\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002652
Eric Sandeen032eafe2012-07-28 17:48:36 -04002653#: e2fsck/unix.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002654msgid ""
2655" -v Be verbose\n"
2656" -b superblock Use alternative superblock\n"
2657" -B blocksize Force blocksize when looking for superblock\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002658" -j external_journal Set location of the external journal\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002659" -l bad_blocks_file Add to badblocks list\n"
2660" -L bad_blocks_file Set badblocks list\n"
2661msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002662" -v Ausführliche Ausgaben\n"
2663" -b Superblock Superblockkopie verwenden\n"
2664" -B Blockgröße Blockgröße beim Suchen des Superblocks erzwingen\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002665" -j externes-Journal Angabe des Speicherortes des externen Jounals\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002666" -l bad_blocks_file Zur Liste der defekten Blöcke hinzufügen\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002667" -L bad_blocks_file Liste der defekten Blöcke definieren\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002668
Philipp Thomasd0275172013-01-15 23:30:35 -05002669#: e2fsck/unix.c:131
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002670#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002671msgid "%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks\n"
2672msgstr "%s: %u/%u Dateien (%0d.%d%% nicht zusammenhängend), %llu/%llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002673
Philipp Thomasd0275172013-01-15 23:30:35 -05002674#: e2fsck/unix.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002675#, c-format
2676msgid ""
2677"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002678"%12u inode used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002679msgid_plural ""
2680"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002681"%12u inodes used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002682msgstr[0] ""
2683"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002684"%12u Inode ist in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002685msgstr[1] ""
2686"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002687"%12u Inodes sind in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002688
Philipp Thomasd0275172013-01-15 23:30:35 -05002689#: e2fsck/unix.c:161
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002690#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002691msgid "%12u non-contiguous file (%0d.%d%%)\n"
2692msgid_plural "%12u non-contiguous files (%0d.%d%%)\n"
2693msgstr[0] "%12u nicht zusammenhängende Datei (%0d.%d%%)\n"
2694msgstr[1] "%12u nicht zusammenhängende Dateien (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002695
Philipp Thomasd0275172013-01-15 23:30:35 -05002696#: e2fsck/unix.c:166
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002697#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002698msgid "%12u non-contiguous directory (%0d.%d%%)\n"
2699msgid_plural "%12u non-contiguous directories (%0d.%d%%)\n"
2700msgstr[0] "%12u nicht zusammenhängendes Verzeichnis (%0d.%d%%)\n"
2701msgstr[1] "%12u nicht zusammenhängende Verzeichnisse (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002702
Eric Sandeen032eafe2012-07-28 17:48:36 -04002703#: e2fsck/unix.c:171
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002704#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002705msgid " # of inodes with ind/dind/tind blocks: %u/%u/%u\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002706msgstr " # von Inodes mit ind/dind/tind Blöcken: %u/%u/%u\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002707
Philipp Thomasd0275172013-01-15 23:30:35 -05002708#: e2fsck/unix.c:179
2709msgid " Extent depth histogram: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002710msgstr " Histogramm der Tiefe von Erweiterungen: "
Philipp Thomasd0275172013-01-15 23:30:35 -05002711
2712#: e2fsck/unix.c:188
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002713#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002714msgid "%12llu block used (%2.2f%%, out of %llu)\n"
2715msgid_plural "%12llu blocks used (%2.2f%%, out of %llu)\n"
2716msgstr[0] "%12llu Block wird benutzt (%2.2f%% von %llu)\n"
2717msgstr[1] "%12llu Blöcke werden benutzt (%2.2f%% von %llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002718
Philipp Thomasd0275172013-01-15 23:30:35 -05002719#: e2fsck/unix.c:192
2720#, c-format
2721msgid "%12u bad block\n"
2722msgid_plural "%12u bad blocks\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002723msgstr[0] "%12u defekter Block\n"
2724msgstr[1] "%12u defekte Blöcke\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002725
2726#: e2fsck/unix.c:194
2727#, c-format
2728msgid "%12u large file\n"
2729msgid_plural "%12u large files\n"
2730msgstr[0] "%12u große Datei\n"
2731msgstr[1] "%12u große Dateien\n"
2732
2733#: e2fsck/unix.c:196
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002734#, c-format
2735msgid ""
2736"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002737"%12u regular file\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002738msgid_plural ""
2739"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002740"%12u regular files\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002741msgstr[0] ""
2742"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002743"%12u reguläre Datei\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002744msgstr[1] ""
2745"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002746"%12u reguläre Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002747
Philipp Thomasd0275172013-01-15 23:30:35 -05002748#: e2fsck/unix.c:198
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002749#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002750msgid "%12u directory\n"
2751msgid_plural "%12u directories\n"
2752msgstr[0] "%12u Verzeichnis\n"
2753msgstr[1] "%12u Verzeichnisse\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002754
Philipp Thomasd0275172013-01-15 23:30:35 -05002755#: e2fsck/unix.c:200
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002756#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002757msgid "%12u character device file\n"
2758msgid_plural "%12u character device files\n"
2759msgstr[0] "%12u zeichenorientierte Gerätedatei\n"
2760msgstr[1] "%12u zeichenorientierte Gerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002761
Philipp Thomasd0275172013-01-15 23:30:35 -05002762#: e2fsck/unix.c:203
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002763#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002764msgid "%12u block device file\n"
2765msgid_plural "%12u block device files\n"
2766msgstr[0] "%12u Blockgerätedatei\n"
2767msgstr[1] "%12u Blockgerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002768
Philipp Thomasd0275172013-01-15 23:30:35 -05002769#: e2fsck/unix.c:205
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002770#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002771msgid "%12u fifo\n"
2772msgid_plural "%12u fifos\n"
2773msgstr[0] "%12u Fifo\n"
2774msgstr[1] "%12u Fifos\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002775
Philipp Thomasd0275172013-01-15 23:30:35 -05002776#: e2fsck/unix.c:207
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002777#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002778msgid "%12u link\n"
2779msgid_plural "%12u links\n"
2780msgstr[0] "%12u Verknüpfung\n"
2781msgstr[1] "%12u Verknüpfungen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002782
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002783#: e2fsck/unix.c:209
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002784#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002785msgid "%12u symbolic link"
2786msgid_plural "%12u symbolic links"
2787msgstr[0] "%12u symbolische Verknüpfung"
2788msgstr[1] "%12u symbolische Verknüpfungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002789
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002790#: e2fsck/unix.c:211
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002791#, c-format
2792msgid " (%u fast symbolic link)\n"
2793msgid_plural " (%u fast symbolic links)\n"
2794msgstr[0] " (%u schnelle symbolische Verknüpfung)\n"
2795msgstr[1] " (%u schnelle symbolische Verknüpfungen)\n"
2796
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002797#: e2fsck/unix.c:215
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002798#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002799msgid "%12u socket\n"
2800msgid_plural "%12u sockets\n"
2801msgstr[0] "%12u Socket\n"
2802msgstr[1] "%12u Sockets\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002803
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002804#: e2fsck/unix.c:219
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002805#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002806msgid "%12u file\n"
2807msgid_plural "%12u files\n"
2808msgstr[0] "%12u Datei\n"
2809msgstr[1] "%12u Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002810
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002811#: e2fsck/unix.c:232 misc/badblocks.c:988 misc/tune2fs.c:2023 misc/util.c:311
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002812#: resize/main.c:260
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002813#, c-format
2814msgid "while determining whether %s is mounted."
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002815msgstr "bei der Prüfung, ob %s eingehängt ist."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002816
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002817#: e2fsck/unix.c:253
Philipp Thomasab02a742014-07-09 23:13:30 -04002818#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002819msgid "Warning! %s is mounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002820msgstr "Warnung! %s ist eingehängt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002821
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002822#: e2fsck/unix.c:256
Philipp Thomasab02a742014-07-09 23:13:30 -04002823#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002824msgid "Warning! %s is in use.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002825msgstr "Warnung! %s wird verwendet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002826
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002827#: e2fsck/unix.c:262
Philipp Thomasab02a742014-07-09 23:13:30 -04002828#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002829msgid "%s is mounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002830msgstr "%s ist eingehängt.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002831
2832#: e2fsck/unix.c:264
Philipp Thomasab02a742014-07-09 23:13:30 -04002833#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002834msgid "%s is in use.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002835msgstr "%s wird verwendet.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002836
2837#: e2fsck/unix.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002838msgid ""
2839"Cannot continue, aborting.\n"
2840"\n"
2841msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002842"Fortsetzung nicht möglich, wird abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002843"\n"
2844
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002845#: e2fsck/unix.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002846msgid ""
2847"\n"
2848"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002849"WARNING!!! The filesystem is mounted. If you continue you ***WILL***\n"
2850"cause ***SEVERE*** filesystem damage.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002851"\n"
2852msgstr ""
2853"\n"
2854"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002855"WARNUNG!!! Das Dateisystem ist eingehängt. Wenn Sie fortfahren, ***WERDEN***\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002856"Sie ***SCHWERWIEGENDE*** Schäden am Dateisystem verursachen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002857"\n"
2858
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002859#: e2fsck/unix.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002860msgid "Do you really want to continue"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002861msgstr "Wirklich fortfahren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002862
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002863#: e2fsck/unix.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002864msgid "check aborted.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002865msgstr "Prüfung abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002866
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002867#: e2fsck/unix.c:368
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002868msgid " contains a file system with errors"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002869msgstr " enthält ein fehlerhaftes Dateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002870
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002871#: e2fsck/unix.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002872msgid " was not cleanly unmounted"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002873msgstr " wurde nicht ordnungsgemäß ausgehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002874
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002875#: e2fsck/unix.c:372
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002876msgid " primary superblock features different from backup"
Philipp Thomasab02a742014-07-09 23:13:30 -04002877msgstr "Eigenschaften des primären Superblocks unterscheiden sich von der Datensicherung"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002878
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002879#: e2fsck/unix.c:376
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002880#, c-format
2881msgid " has been mounted %u times without being checked"
Philipp Thomasab02a742014-07-09 23:13:30 -04002882msgstr " wurde %u-mal ohne Überprüfung eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002883
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002884#: e2fsck/unix.c:383
Theodore Ts'o057a1592010-06-07 12:24:21 -04002885msgid " has filesystem last checked time in the future"
Philipp Thomasab02a742014-07-09 23:13:30 -04002886msgstr " hat einen in der Zukunft liegenden Zeitpunkt der letzten Püfung des Dateisystems"
Theodore Ts'o057a1592010-06-07 12:24:21 -04002887
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002888#: e2fsck/unix.c:389
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002889#, c-format
2890msgid " has gone %u days without being checked"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002891msgstr " wurde %u Tage ohne Überprüfung genutzt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002892
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002893#: e2fsck/unix.c:398
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002894msgid ", check forced.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002895msgstr ", Prüfung erzwungen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002896
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002897#: e2fsck/unix.c:431
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002898#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002899msgid "%s: clean, %u/%u files, %llu/%llu blocks"
2900msgstr "%s: sauber, %u/%u Dateien, %llu/%llu Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002901
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002902#: e2fsck/unix.c:451
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002903msgid " (check deferred; on battery)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002904msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002905
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002906#: e2fsck/unix.c:454
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002907msgid " (check after next mount)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002908msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002909
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002910#: e2fsck/unix.c:456
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002911#, c-format
2912msgid " (check in %ld mounts)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002913msgstr " (Prüfung nach %ld Einhängevorgängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002914
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002915#: e2fsck/unix.c:606
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002916#, c-format
2917msgid "ERROR: Couldn't open /dev/null (%s)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002918msgstr "Fehler: /dev/null (%s) kann nicht geöffnet werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002919
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002920#: e2fsck/unix.c:675
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002921msgid "Invalid EA version.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002922msgstr "Ungültige EA-Version.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002923
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002924#: e2fsck/unix.c:702
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05002925#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04002926msgid "Unknown extended option: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002927msgstr "Unbekannte erweiterte Option: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002928
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002929#: e2fsck/unix.c:727
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002930#, c-format
2931msgid ""
2932"Syntax error in e2fsck config file (%s, line #%d)\n"
2933"\t%s\n"
2934msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002935"Syntaxfehler in der Konfigurationsdatei von e2fsck (%s, Zeile %d)\n"
2936"\t%s\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002937
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002938#: e2fsck/unix.c:797
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002939#, c-format
2940msgid "Error validating file descriptor %d: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002941msgstr "Fehler bei Überprüfung des Datei-Deskriptors %d: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002942
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002943#: e2fsck/unix.c:801
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002944msgid "Invalid completion information file descriptor"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002945msgstr "Ungültiger „completion information“-Datei-Deskriptor"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002946
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002947#: e2fsck/unix.c:816
Theodore Ts'o6956f612005-12-31 16:46:15 -05002948msgid "Only one of the options -p/-a, -n or -y may be specified."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002949msgstr "Nur eine der Optionen -p/-a, -n oder -y darf angegeben werden."
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002950
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002951#: e2fsck/unix.c:837
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05002952#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002953msgid "The -t option is not supported on this version of e2fsck.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002954msgstr "Die Option -t wird von dieser e2fsck-Version nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002955
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002956#: e2fsck/unix.c:868 e2fsck/unix.c:942 misc/tune2fs.c:846 misc/tune2fs.c:1141
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002957#: misc/tune2fs.c:1159
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002958#, c-format
2959msgid "Unable to resolve '%s'"
Philipp Thomasab02a742014-07-09 23:13:30 -04002960msgstr "Nicht möglich, „%s“ aufzulösen"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002961
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002962#: e2fsck/unix.c:921
Philipp Thomas3e914b52011-01-24 15:03:41 -05002963msgid "The -n and -D options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04002964msgstr "Die Optionen -n und -D schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05002965
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002966#: e2fsck/unix.c:926
Philipp Thomas3e914b52011-01-24 15:03:41 -05002967msgid "The -n and -c options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04002968msgstr "Die Optionen -n und -c schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05002969
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002970#: e2fsck/unix.c:931
Philipp Thomas3e914b52011-01-24 15:03:41 -05002971msgid "The -n and -l/-L options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04002972msgstr "Die Optionen -n und -l/-L schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05002973
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002974#: e2fsck/unix.c:985
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002975msgid "The -c and the -l/-L options may not be both used at the same time.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002976msgstr "Die Optionen -c und -l/-L dürfen nicht gleichzeitig verwendet werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002977
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002978#: e2fsck/unix.c:1032
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002979#, c-format
2980msgid ""
2981"E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
2982"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002983msgstr "2FSCK_JBD_DEBUG „%s“ ist keine Ganzzahl\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002984
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002985#: e2fsck/unix.c:1041
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002986#, c-format
2987msgid ""
2988"\n"
2989"Invalid non-numeric argument to -%c (\"%s\")\n"
2990"\n"
2991msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002992"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002993"Ungültiges nicht-numerisches Argument für -%c („%s“)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002994"\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002995
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002996#: e2fsck/unix.c:1132
Philipp Thomasedc733d2012-04-22 15:38:42 -04002997#, c-format
Philipp Thomasab02a742014-07-09 23:13:30 -04002998msgid "MMP interval is %u seconds and total wait time is %u seconds. Please wait...\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04002999msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003000"MMP-Intervall ist %u Sekunden und die gesamte Wartezeit ist %u Sekunden.\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003001"Bitte warten...\n"
3002
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003003#: e2fsck/unix.c:1149 e2fsck/unix.c:1154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003004msgid "while checking MMP block"
3005msgstr "beim Prüfen des MMP-Blocks"
3006
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003007#: e2fsck/unix.c:1156 misc/tune2fs.c:1950
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003008msgid ""
3009"If you are sure the filesystem is not in use on any node, run:\n"
3010"'tune2fs -f -E clear_mmp {device}'\n"
3011msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003012"Wenn Sie sicher sind, dass das Dateisystem auf keinem Knoten benutzt wird,\n"
3013"führen Sie bitte Folgendes aus:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003014"„tune2fs -f -E clear_mmp {device}“\n"
3015
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003016#: e2fsck/unix.c:1207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003017msgid "Error: ext2fs library version out of date!\n"
3018msgstr "Fehler: ext2fs-Bibliotheks-Version ist zu alt!\n"
3019
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003020#: e2fsck/unix.c:1214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003021msgid "while trying to initialize program"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003022msgstr "bei der Programminitialisierung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003023
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003024#: e2fsck/unix.c:1237
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003025#, c-format
3026msgid "\tUsing %s, %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003027msgstr "\t%s wird verwendet, %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003028
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003029#: e2fsck/unix.c:1249
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003030msgid "need terminal for interactive repairs"
Philipp Thomasab02a742014-07-09 23:13:30 -04003031msgstr "Ein Terminal wird für interaktive Reparaturen benötigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003032
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003033#: e2fsck/unix.c:1303
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003034#, c-format
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003035msgid "%s: %s trying backup blocks...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003036msgstr "%s: %s Datensicherungs-Blöcke werden versucht ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003037
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003038#: e2fsck/unix.c:1305
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003039msgid "Superblock invalid,"
Philipp Thomasab02a742014-07-09 23:13:30 -04003040msgstr "Superblock ungültig,"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003041
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003042#: e2fsck/unix.c:1306
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003043msgid "Group descriptors look bad..."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003044msgstr "Gruppen-Deskriptoren scheinen defekt zu sein..."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003045
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003046#: e2fsck/unix.c:1316
Philipp Thomasedc733d2012-04-22 15:38:42 -04003047#, c-format
3048msgid "%s: %s while using the backup blocks"
Philipp Thomasab02a742014-07-09 23:13:30 -04003049msgstr "%s: %s beim Benutzen der Datensicherungs-Blöcke"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003050
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003051#: e2fsck/unix.c:1320
Philipp Thomas77c871a2010-04-19 16:59:02 -04003052#, c-format
3053msgid "%s: going back to original superblock\n"
3054msgstr "%s: es wird zum originalen Superblock zurück gekehrt\n"
3055
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003056#: e2fsck/unix.c:1349
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003057msgid ""
3058"The filesystem revision is apparently too high for this version of e2fsck.\n"
3059"(Or the filesystem superblock is corrupt)\n"
3060"\n"
3061msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003062"Diese Dateisystem-Revision ist offensichtlich zu neu für diese Version \n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003063"von e2fsck (oder der Dateisystem-Superblock ist defekt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003064"\n"
3065
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003066#: e2fsck/unix.c:1356
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003067msgid "Could this be a zero-length partition?\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003068msgstr "Könnte es eine Partion der Länge Null sein?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003069
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003070#: e2fsck/unix.c:1358
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003071#, c-format
3072msgid "You must have %s access to the filesystem or be root\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003073msgstr "Sie benötigen %s- oder root-Rechte für das Dateisystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003074
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003075#: e2fsck/unix.c:1364
Eric Sandeen032eafe2012-07-28 17:48:36 -04003076msgid "Possibly non-existent or swap device?\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003077msgstr "Möglicherweise ist die Partition nicht vorhanden oder eine Swap-Partition?\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003078
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003079#: e2fsck/unix.c:1366
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003080msgid "Filesystem mounted or opened exclusively by another program?\n"
3081msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003082"Ist das Dateisystem eingehängt oder exklusiv von einem anderen Programm\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003083"geöffnet worden?\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003084
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003085#: e2fsck/unix.c:1370
Philipp Thomas3e914b52011-01-24 15:03:41 -05003086msgid "Possibly non-existent device?\n"
3087msgstr "Ist das Gerät möglicherweise nicht vorhanden?\n"
3088
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003089#: e2fsck/unix.c:1373
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003090msgid ""
3091"Disk write-protected; use the -n option to do a read-only\n"
3092"check of the device.\n"
3093msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003094"Laufwerk ist schreibgeschützt, nutzen Sie die Option -n,\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003095"um es im Nur-Lesen-Modus zu prüfen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003096
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003097#: e2fsck/unix.c:1437
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003098msgid "Get a newer version of e2fsck!"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003099msgstr "Neuere Version von e2fsck benötigt!"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003100
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003101#: e2fsck/unix.c:1480
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003102#, c-format
3103msgid "while checking ext3 journal for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003104msgstr "während der Prüfung des ext3-Journals für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003105
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003106#: e2fsck/unix.c:1492
Philipp Thomasab02a742014-07-09 23:13:30 -04003107msgid "Warning: skipping journal recovery because doing a read-only filesystem check.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003108msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003109"Warnung: Journal-Wiederherstellung wird übersprungen, da sich das Dateisystem\n"
3110"im Nur-Lesen-Modus befindet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003111
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003112#: e2fsck/unix.c:1504
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003113#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003114msgid "unable to set superblock flags on %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003115msgstr "Superblock-Flags konnten auf %s nicht gesetzt werden\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003116
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003117#: e2fsck/unix.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003118#, c-format
3119msgid "while recovering ext3 journal of %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003120msgstr "bei der Wiederherstellung des ext3-Journals von %s"
3121
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003122#: e2fsck/unix.c:1534
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003123#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003124msgid "%s has unsupported feature(s):"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003125msgstr "%s besitzt nicht unterstützte Eigenschaft(en):"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003126
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003127#: e2fsck/unix.c:1549
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003128#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003129msgid "%s: warning: compression support is experimental.\n"
3130msgstr "%s: Warnung: Die Kompressionsunterstützung ist experimentell.\n"
3131
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003132#: e2fsck/unix.c:1555
Philipp Thomasedc733d2012-04-22 15:38:42 -04003133#, c-format
3134msgid ""
3135"%s: e2fsck not compiled with HTREE support,\n"
3136"\tbut filesystem %s has HTREE directories.\n"
3137msgstr ""
3138"%s: e2fsck wurde ohne Unterstützung für HTREE kompiliert,\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003139"\taber das Dateisystem %s besitzt HTREE-Verzeichnisse.\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003140
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003141#: e2fsck/unix.c:1607
Philipp Thomasedc733d2012-04-22 15:38:42 -04003142#, c-format
3143msgid "%s: %s while reading bad blocks inode\n"
3144msgstr "%s: %s beim Lesen des Bad-Block-Inodes\n"
3145
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003146#: e2fsck/unix.c:1610
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003147msgid "This doesn't bode well, but we'll try to go on...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003148msgstr "Das verheißt nichts Gutes, aber es wird trotzdem versucht ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003149
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003150#: e2fsck/unix.c:1651
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003151#, c-format
3152msgid "Creating journal (%d blocks): "
Philipp Thomasab02a742014-07-09 23:13:30 -04003153msgstr "Journal wird erstellt (%d Blöcke): "
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003154
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003155#: e2fsck/unix.c:1661
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003156msgid " Done.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003157msgstr " Erledigt.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003158
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003159#: e2fsck/unix.c:1663
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003160msgid ""
3161"\n"
3162"*** journal has been re-created - filesystem is now ext3 again ***\n"
3163msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003164"\n"
3165"*** Journal wurde wiederhergestellt - Dateisystem ist nun wieder ext3 ***\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003166
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003167#: e2fsck/unix.c:1687
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003168msgid "Restarting e2fsck from the beginning...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003169msgstr "e2fsck wird neu gestartet ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003170
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003171#: e2fsck/unix.c:1691
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003172msgid "while resetting context"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003173msgstr "beim Rücksetzen des Kontexts"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003174
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003175#: e2fsck/unix.c:1698
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003176#, c-format
3177msgid "%s: e2fsck canceled.\n"
Philipp Thomascfbdca12011-10-05 02:04:08 -04003178msgstr "%s: e2fsck abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003179
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003180#: e2fsck/unix.c:1703
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003181msgid "aborted"
3182msgstr "abgebrochen"
3183
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003184#: e2fsck/unix.c:1715 e2fsck/util.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003185#, c-format
3186msgid ""
3187"\n"
3188"%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
3189msgstr ""
3190"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003191"%s: ***** DATEISYSTEM WURDE VERÄNDERT *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003192
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003193#: e2fsck/unix.c:1719
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003194#, c-format
3195msgid "%s: ***** REBOOT LINUX *****\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003196msgstr "%s: ***** LINUX MUSS NEU GESTARTET WERDEN *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003197
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003198#: e2fsck/unix.c:1727 e2fsck/util.c:73
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003199#, c-format
3200msgid ""
3201"\n"
3202"%s: ********** WARNING: Filesystem still has errors **********\n"
3203"\n"
3204msgstr ""
3205"\n"
3206"%s: ********** WARNUNG: Noch Fehler im Dateisystem **********\n"
3207"\n"
3208
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003209#: e2fsck/unix.c:1767
Philipp Thomas720e6362008-06-21 14:06:00 -04003210msgid "while setting block group checksum info"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003211msgstr "beim Setzen der Blockgruppen-Prüfsummeninfo"
Philipp Thomas720e6362008-06-21 14:06:00 -04003212
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003213#: e2fsck/util.c:190 misc/util.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003214msgid "yY"
Makoto Dei748cc432008-04-21 16:49:48 +09003215msgstr "jJ"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003216
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003217#: e2fsck/util.c:191
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003218msgid "nN"
3219msgstr "nN"
3220
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003221#: e2fsck/util.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003222msgid "<y>"
3223msgstr "<j>"
3224
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003225#: e2fsck/util.c:207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003226msgid "<n>"
3227msgstr "<n>"
3228
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003229#: e2fsck/util.c:209
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003230msgid " (y/n)"
3231msgstr " (j/n)"
3232
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003233#: e2fsck/util.c:223
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003234msgid "cancelled!\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003235msgstr "abgebrochen!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003236
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003237#: e2fsck/util.c:238
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003238msgid "yes\n"
3239msgstr "ja\n"
3240
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003241#: e2fsck/util.c:240
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003242msgid "no\n"
3243msgstr "nein\n"
3244
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003245#: e2fsck/util.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003246#, c-format
3247msgid ""
3248"%s? no\n"
3249"\n"
3250msgstr ""
3251"%s? nein\n"
3252"\n"
3253
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003254#: e2fsck/util.c:254
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003255#, c-format
3256msgid ""
3257"%s? yes\n"
3258"\n"
3259msgstr ""
3260"%s? ja\n"
3261"\n"
3262
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003263#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003264msgid "yes"
3265msgstr "ja"
3266
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003267#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003268msgid "no"
3269msgstr "nein"
3270
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003271#: e2fsck/util.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003272#, c-format
3273msgid "e2fsck_read_bitmaps: illegal bitmap block(s) for %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003274msgstr "e2fsck_read_bitmaps: ungültiger Bitmpa-Block(-Blöcke) für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003275
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003276#: e2fsck/util.c:278
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003277msgid "reading inode and block bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04003278msgstr "Inode und Block-Bitmaps werden gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003279
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003280#: e2fsck/util.c:286
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003281#, c-format
3282msgid "while retrying to read bitmaps for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003283msgstr "während des wiederholten Versuches, Bitmaps für %s einzulesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003284
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003285#: e2fsck/util.c:298
Philipp Thomas40771272008-09-07 22:55:25 -04003286msgid "writing block and inode bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04003287msgstr "Block- und Inode-Bitmaps werden geschrieben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003288
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003289#: e2fsck/util.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003290#, c-format
Philipp Thomas40771272008-09-07 22:55:25 -04003291msgid "while rewriting block and inode bitmaps for %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003292msgstr "während des wiederholten Versuches, Block- und Inode-Bitmaps für %s zu schreiben."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003293
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003294#: e2fsck/util.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003295#, c-format
3296msgid ""
3297"\n"
3298"\n"
3299"%s: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.\n"
3300"\t(i.e., without -a or -p options)\n"
3301msgstr ""
3302"\n"
3303"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003304"%s: UNERWARTETE INKONSISTENZ; fsck MANUELL AUSFÜHREN\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003305"\t(d.h. ohne die Optionen -a oder -p)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003306
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003307#: e2fsck/util.c:396
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003308#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003309msgid "Memory used: %luk/%luk (%luk/%luk), "
3310msgstr "Benutzter Speicher: %luk/%luk (%luk/%luk), "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003311
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003312#: e2fsck/util.c:400
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003313#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003314msgid "Memory used: %lu, "
3315msgstr "Benutzter Speicher: %lu, "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003316
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003317#: e2fsck/util.c:407
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003318#, c-format
3319msgid "time: %5.2f/%5.2f/%5.2f\n"
3320msgstr "Zeit: %5.2f/%5.2f/%5.2f\n"
3321
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003322#: e2fsck/util.c:412
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003323#, c-format
3324msgid "elapsed time: %6.3f\n"
3325msgstr "abgelaufende Zeit: %6.3f\n"
3326
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003327#: e2fsck/util.c:447 e2fsck/util.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003328#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003329msgid "while reading inode %lu in %s"
3330msgstr "beim Lesen von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003331
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003332#: e2fsck/util.c:475 e2fsck/util.c:488
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003333#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003334msgid "while writing inode %lu in %s"
3335msgstr "beim Schreiben von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003336
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003337#: e2fsck/util.c:637
Philipp Thomas720e6362008-06-21 14:06:00 -04003338msgid "while allocating zeroizing buffer"
Philipp Thomasab02a742014-07-09 23:13:30 -04003339msgstr "beim Reservieren eines Puffers zum Nullen"
Philipp Thomas720e6362008-06-21 14:06:00 -04003340
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003341#: e2fsck/util.c:785
Philipp Thomasab02a742014-07-09 23:13:30 -04003342msgid "UNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is running.\n"
3343msgstr "UNERWARTETE INKONSISTENZ: das Dateisystem wird verändert, während fsck läuft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003344
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003345#: misc/badblocks.c:69
3346msgid "done \n"
3347msgstr "erledigt \n"
3348
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003349#: misc/badblocks.c:92
Philipp Thomas68801282008-07-17 11:47:00 -04003350#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003351msgid ""
3352"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003353" [-c blocks_at_once] [-d delay_factor_between_reads] [-e max_bad_blocks]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003354" [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
3355" device [last_block [first_block]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003356msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003357"Aufruf: %s [-b Blockgröße] [-i Eingabedatei] [-o Ausgabedatei] [-svwnf]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003358" [-c Blöcke_auf_einmal] [-d Verzögerungsfaktor_zwischen_Lesedurchgängen]\n"
3359" [-e maximale_defekte_Blöcke] [-p Anzahl_Durchgänge]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003360" [-t Testmuster [-t Testmuster [...]]]\n"
3361" Gerät [letzter_Block [Startblock]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003362
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003363#: misc/badblocks.c:103
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003364#, c-format
3365msgid ""
3366"%s: The -n and -w options are mutually exclusive.\n"
3367"\n"
3368msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003369"%s: Die Optionen -n und -w schließen sich gegenseitig aus.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003370"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003371
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003372#: misc/badblocks.c:218
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003373#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003374msgid "%6.2f%% done, %s elapsed. (%d/%d/%d errors)"
3375msgstr "%6.2f%% erledigt, %s verstrichen. (%d/%d/%d Fehler)"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003376
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003377#: misc/badblocks.c:323
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003378msgid "Testing with random pattern: "
Philipp Thomasab02a742014-07-09 23:13:30 -04003379msgstr "Mit zufälligen Mustern wird getestet: "
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003380
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003381#: misc/badblocks.c:341
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003382msgid "Testing with pattern 0x"
Philipp Thomasab02a742014-07-09 23:13:30 -04003383msgstr "Mit Muster 0x wird getestet"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003384
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003385#: misc/badblocks.c:373 misc/badblocks.c:446
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003386msgid "during seek"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003387msgstr "beim Suchen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003388
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003389#: misc/badblocks.c:384
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003390#, c-format
3391msgid "Weird value (%ld) in do_read\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003392msgstr "Merkwürdiger Wert (%ld) in do_read\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003393
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003394#: misc/badblocks.c:471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003395msgid "during ext2fs_sync_device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003396msgstr "während ext2fs_sync_device"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003397
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003398#: misc/badblocks.c:491 misc/badblocks.c:753
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003399msgid "while beginning bad block list iteration"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003400msgstr "beim Beginn des „Bad Block“-Listendurchlaufs"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003401
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003402#: misc/badblocks.c:506 misc/badblocks.c:606 misc/badblocks.c:764
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003403msgid "while allocating buffers"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003404msgstr "beim Zuweisen von Puffern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003405
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003406#: misc/badblocks.c:510
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003407#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003408msgid "Checking blocks %lu to %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003409msgstr "Von Block %lu bis %lu wird geprüft\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003410
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003411#: misc/badblocks.c:515
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003412msgid "Checking for bad blocks in read-only mode\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003413msgstr "Nach defekten Blöcken wird im Nur-Lesen-Modus gesucht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003414
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003415#: misc/badblocks.c:524
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003416msgid "Checking for bad blocks (read-only test): "
Philipp Thomasab02a742014-07-09 23:13:30 -04003417msgstr "Nach defekten Blöcken suchen (Nur-Lesen-Modus):"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003418
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003419#: misc/badblocks.c:531 misc/badblocks.c:638 misc/badblocks.c:680
3420#: misc/badblocks.c:827
Philipp Thomas720e6362008-06-21 14:06:00 -04003421msgid "Too many bad blocks, aborting test\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003422msgstr "Zu viele defekte Blöcke, Test wird abgebrochen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003423
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003424#: misc/badblocks.c:613
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003425msgid "Checking for bad blocks in read-write mode\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003426msgstr "Nach defekten Blöcken wird gesucht (Lesen+Schreiben-Modus)\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003427
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003428#: misc/badblocks.c:615 misc/badblocks.c:777
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003429#, c-format
3430msgid "From block %lu to %lu\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003431msgstr "Von Block %lu bis %lu\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003432
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003433#: misc/badblocks.c:670
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003434msgid "Reading and comparing: "
3435msgstr "Lesen und Vergleichen:"
3436
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003437#: misc/badblocks.c:776
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003438msgid "Checking for bad blocks in non-destructive read-write mode\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003439msgstr "Nach defekten Blöcken wird im zerstörungsfreien Lesen+Schreiben-Modus gesucht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003441#: misc/badblocks.c:782
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003442msgid "Checking for bad blocks (non-destructive read-write test)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003443msgstr "Nach defekten Blöcken suchen (zerstörungsfreier Lesen+Schreiben-Modus)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003444
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003445#: misc/badblocks.c:789
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003446msgid ""
3447"\n"
3448"Interrupt caught, cleaning up\n"
3449msgstr ""
3450"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003451"Unterbrochen, wird aufgeräumet\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003452
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003453#: misc/badblocks.c:872
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003454#, c-format
3455msgid "during test data write, block %lu"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003456msgstr "beim Schreiben der Test-Daten; Block %lu"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003457
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003458#: misc/badblocks.c:993 misc/util.c:316
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003459#, c-format
3460msgid "%s is mounted; "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003461msgstr "%s ist eingehängt; "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003462
Philipp Thomasedc733d2012-04-22 15:38:42 -04003463#: misc/badblocks.c:995
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003464msgid "badblocks forced anyway. Hope /etc/mtab is incorrect.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003465msgstr "Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003466
3467#: misc/badblocks.c:1000
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003468msgid "it's not safe to run badblocks!\n"
3469msgstr "es ist zu unsicher, Badblocks zu starten!\n"
3470
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003471#: misc/badblocks.c:1005 misc/util.c:327
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003472#, c-format
3473msgid "%s is apparently in use by the system; "
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003474msgstr "%s wird offensichtlich vom System genutzt; "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003475
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003476#: misc/badblocks.c:1008
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003477msgid "badblocks forced anyway.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003478msgstr "Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003479
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003480#: misc/badblocks.c:1028
Philipp Thomas68801282008-07-17 11:47:00 -04003481#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04003482msgid "invalid %s - %s"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003483msgstr "ungültige %s - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04003484
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003485#: misc/badblocks.c:1139
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003486#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003487msgid "can't allocate memory for test_pattern - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003488msgstr "Speicher für Testmuster kann nicht reserviert werden - %s"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003489
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003490#: misc/badblocks.c:1169
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003491msgid "Maximum of one test_pattern may be specified in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003492msgstr "Es darf im Nur-Lesen-Modus nur ein Testmuster angegeben werden"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003493
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003494#: misc/badblocks.c:1175
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003495msgid "Random test_pattern is not allowed in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003496msgstr "Zufälliges Testmuster ist im Nur-Lesen-Modus nicht erlaubt"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003497
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003498#: misc/badblocks.c:1189
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003499msgid ""
3500"Couldn't determine device size; you must specify\n"
3501"the size manually\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003502msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003503"Größe des Gerätes ist nicht feststellbar.\n"
3504"Sie müssen sie manuell angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003505
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003506#: misc/badblocks.c:1195
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003507msgid "while trying to determine device size"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003508msgstr "beim Versuch, die Gerätegröße festzustellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003509
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003510#: misc/badblocks.c:1200
Philipp Thomas68801282008-07-17 11:47:00 -04003511msgid "last block"
3512msgstr "letzter Block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003513
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003514#: misc/badblocks.c:1206
Philipp Thomas68801282008-07-17 11:47:00 -04003515msgid "first block"
3516msgstr "erster Block"
3517
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003518#: misc/badblocks.c:1209
Philipp Thomasb93349a2014-05-31 13:32:39 -04003519#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003520msgid "invalid starting block (%llu): must be less than %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003521msgstr "Ungültiger Startblock (%llu): er muss kleiner als %llu sein"
Philipp Thomas68801282008-07-17 11:47:00 -04003522
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003523#: misc/badblocks.c:1216
Philipp Thomasb93349a2014-05-31 13:32:39 -04003524#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003525msgid "invalid end block (%llu): must be 32-bit value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003526msgstr "Ungültiger Endblock (%llu): er muss ein 32-Bit Wert sein"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003527
3528#: misc/badblocks.c:1272
Theodore Ts'o197abba2005-06-20 18:00:23 -04003529msgid "while creating in-memory bad blocks list"
Philipp Thomasab02a742014-07-09 23:13:30 -04003530msgstr "beim Erstellen der Bad-Block-Liste im Speicher"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003531
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003532#: misc/badblocks.c:1281
3533msgid "input file - bad format"
Philipp Thomasab02a742014-07-09 23:13:30 -04003534msgstr "die Eingabedatei hat ein ungültiges Format"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003535
3536#: misc/badblocks.c:1289 misc/badblocks.c:1298
Theodore Ts'o197abba2005-06-20 18:00:23 -04003537msgid "while adding to in-memory bad block list"
Philipp Thomasab02a742014-07-09 23:13:30 -04003538msgstr "beim Hinzufügen zur Bad-Block-Liste im Speicher"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003539
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003540#: misc/badblocks.c:1323
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003541#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003542msgid "Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"
3543msgstr "Durchgang beendet, %u defekte Blöcke gefunden. (%d/%d/%d Fehler)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003544
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003545#: misc/chattr.c:86
Philipp Thomasab02a742014-07-09 23:13:30 -04003546#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003547msgid "Usage: %s [-RVf] [-+=aAcCdDeijsStTu] [-v version] files...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003548msgstr "Aufruf: %s [-RVf] [-+=AaCcDdeijsStTu] [-v Version] Dateien...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003549
Philipp Thomasd0275172013-01-15 23:30:35 -05003550#: misc/chattr.c:155
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003551#, c-format
3552msgid "bad version - %s\n"
3553msgstr "falsche Version - %s\n"
3554
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003555#: misc/chattr.c:201 misc/lsattr.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003556#, c-format
3557msgid "while trying to stat %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003558msgstr "beim Auslesen des Status von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003559
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003560#: misc/chattr.c:208
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003561#, c-format
3562msgid "while reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003563msgstr "beim Lesens der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003564
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003565#: misc/chattr.c:213 misc/chattr.c:225
Philipp Thomas77c871a2010-04-19 16:59:02 -04003566#, c-format
3567msgid "Flags of %s set as "
3568msgstr "Flags von %s wie folgt gesetzt: "
3569
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003570#: misc/chattr.c:234
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003571#, c-format
3572msgid "while setting flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003573msgstr "beim Setzen der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003574
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003575#: misc/chattr.c:242
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003576#, c-format
3577msgid "Version of %s set as %lu\n"
3578msgstr "Version von %s gesetzt auf %lu\n"
3579
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003580#: misc/chattr.c:246
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003581#, c-format
3582msgid "while setting version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003583msgstr "beim Setzen der Version in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003584
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003585#: misc/chattr.c:267
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003586msgid "Couldn't allocate path variable in chattr_dir_proc"
Philipp Thomasab02a742014-07-09 23:13:30 -04003587msgstr "Pfad-Variable in chattr_dir_proc konnte nicht reserviert werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003588
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003589#: misc/chattr.c:307
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003590msgid "= is incompatible with - and +\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003591msgstr "= ist inkompatibel zu - und +\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003592
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003593#: misc/chattr.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003594msgid "Must use '-v', =, - or +\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003595msgstr "„-v“, =, - oder + verwenden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003596
Eric Sandeen032eafe2012-07-28 17:48:36 -04003597#: misc/dumpe2fs.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003598#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003599msgid "Usage: %s [-bfhixV] [-o superblock=<num>] [-o blocksize=<num>] device\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003600msgstr "Aufruf: %s [-bfhixV] [-o superblock=<Nummer>] [-o blocksize=<Nummer>] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003601
Eric Sandeen032eafe2012-07-28 17:48:36 -04003602#: misc/dumpe2fs.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003603msgid "blocks"
3604msgstr "Blöcke"
3605
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003606#: misc/dumpe2fs.c:169
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003607msgid "clusters"
3608msgstr "Cluster"
3609
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003610#: misc/dumpe2fs.c:197
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003611#, c-format
3612msgid "Group %lu: (Blocks "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003613msgstr "Gruppe %lu: (Blöcke "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003614
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003615#: misc/dumpe2fs.c:205
Philipp Thomas720e6362008-06-21 14:06:00 -04003616#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003617msgid " Checksum 0x%04x"
Philipp Thomasab02a742014-07-09 23:13:30 -04003618msgstr " Prüfsumme 0x%04x"
Philipp Thomas720e6362008-06-21 14:06:00 -04003619
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003620#: misc/dumpe2fs.c:207
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003621#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003622msgid " (EXPECTED 0x%04x)"
3623msgstr " (0x%04x ERWARTET)"
3624
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003625#: misc/dumpe2fs.c:208
Philipp Thomasedc733d2012-04-22 15:38:42 -04003626#, c-format
3627msgid ", unused inodes %u\n"
3628msgstr ", ungenutzte Inodes %u\n"
3629
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003630#: misc/dumpe2fs.c:213
Philipp Thomasedc733d2012-04-22 15:38:42 -04003631#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003632msgid " %s superblock at "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003633msgstr " %s Superblock in "
3634
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003635#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003636msgid "Primary"
Philipp Thomasab02a742014-07-09 23:13:30 -04003637msgstr "Primär"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003638
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003639#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003640msgid "Backup"
Philipp Thomasab02a742014-07-09 23:13:30 -04003641msgstr "Datensicherung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003642
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003643#: misc/dumpe2fs.c:218
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003644msgid ", Group descriptors at "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003645msgstr ", Gruppendeskriptoren in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003646
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003647#: misc/dumpe2fs.c:222
Theodore Ts'obc759702005-05-09 20:40:55 -04003648msgid ""
3649"\n"
3650" Reserved GDT blocks at "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003651msgstr ""
3652"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003653" reservierte GDT-Blöcke bei "
Theodore Ts'obc759702005-05-09 20:40:55 -04003654
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003655#: misc/dumpe2fs.c:229
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003656msgid " Group descriptor at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003657msgstr " Gruppendeskriptor in "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003658
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003659#: misc/dumpe2fs.c:235
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003660msgid " Block bitmap at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003661msgstr " Block-Bitmap in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003662
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003663#: misc/dumpe2fs.c:239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003664msgid ", Inode bitmap at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003665msgstr ", Inode-Bitmap in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003666
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003667#: misc/dumpe2fs.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003668msgid ""
3669"\n"
3670" Inode table at "
3671msgstr ""
3672"\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003673" Inode-Tabelle in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003674
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003675#: misc/dumpe2fs.c:249
Philipp Thomas68801282008-07-17 11:47:00 -04003676#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003677msgid ""
3678"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003679" %u free %s, %u free inodes, %u directories%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003680msgstr ""
3681"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003682" %u freie %s, %u freie Inodes, %u Verzeichnisse%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003683
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003684#: misc/dumpe2fs.c:256
Philipp Thomas720e6362008-06-21 14:06:00 -04003685#, c-format
3686msgid ", %u unused inodes\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003687msgstr ", %u ungenutzte Inodes\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003688
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003689#: misc/dumpe2fs.c:259
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003690msgid " Free blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003691msgstr " Freie Blöcke: "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003692
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003693#: misc/dumpe2fs.c:274
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003694msgid " Free inodes: "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003695msgstr " Freie Inodes: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003696
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003697#: misc/dumpe2fs.c:310
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003698msgid "while printing bad block list"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003699msgstr "beim Ausgeben der „Bad Block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003700
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003701#: misc/dumpe2fs.c:316
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003702#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003703msgid "Bad blocks: %u"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003704msgstr "Bad Blocks: %u"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003705
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003706#: misc/dumpe2fs.c:345 misc/tune2fs.c:314
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003707msgid "while reading journal inode"
3708msgstr "beim Lesen des Journal-Inodes"
3709
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003710#: misc/dumpe2fs.c:351
Philipp Thomas77c871a2010-04-19 16:59:02 -04003711msgid "while opening journal inode"
3712msgstr "beim Lesen des Journal-Inodes"
3713
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003714#: misc/dumpe2fs.c:357
Philipp Thomas77c871a2010-04-19 16:59:02 -04003715msgid "while reading journal super block"
3716msgstr "beim Lesen des Journal-Superblocks"
3717
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003718#: misc/dumpe2fs.c:364
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003719msgid "Journal superblock magic number invalid!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003720msgstr "Die magische Zahl im Journal-Superblock ist ungültig!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003721
3722#: misc/dumpe2fs.c:367
Philipp Thomas77c871a2010-04-19 16:59:02 -04003723msgid "Journal features: "
3724msgstr "Jounaleigenschaften: "
3725
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003726#: misc/dumpe2fs.c:380
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003727msgid "Journal size: "
Philipp Thomasab02a742014-07-09 23:13:30 -04003728msgstr "Journalgröße: "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003729
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003730#: misc/dumpe2fs.c:391
Philipp Thomas77c871a2010-04-19 16:59:02 -04003731#, c-format
3732msgid ""
3733"Journal length: %u\n"
3734"Journal sequence: 0x%08x\n"
3735"Journal start: %u\n"
3736msgstr ""
3737"Journal-Länge: %u\n"
3738"Journal-Sequenz: 0x%08x\n"
3739"Journal-Start: %u\n"
3740
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003741#: misc/dumpe2fs.c:398
Philipp Thomasd0275172013-01-15 23:30:35 -05003742#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003743msgid "Journal errno: %d\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05003744msgstr "Jounal-Fehlernummer: %d\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003745
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003746#: misc/dumpe2fs.c:415 misc/tune2fs.c:230
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003747msgid "while reading journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003748msgstr "beim Lesen des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003749
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003750#: misc/dumpe2fs.c:423
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003751msgid "Couldn't find journal superblock magic numbers"
Philipp Thomasab02a742014-07-09 23:13:30 -04003752msgstr "Die magische Nummer des Journal-Superblocks konnte nicht gefunden werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003753
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003754#: misc/dumpe2fs.c:427
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003755#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003756msgid ""
3757"\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003758"Journal block size: %u\n"
3759"Journal length: %u\n"
3760"Journal first block: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003761"Journal sequence: 0x%08x\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003762"Journal start: %u\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003763"Journal number of users: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003764msgstr ""
3765"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003766"Journal-Blockgröße: %u\n"
3767"Journal-Länge: %u\n"
3768"Journal-Startblock: %u\n"
3769"Journal-Sequenz: 0x%08x\n"
3770"Journal-Start: %u\n"
3771"Journal-Benutzeranzahl: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003772
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003773#: misc/dumpe2fs.c:440
Theodore Ts'o197abba2005-06-20 18:00:23 -04003774#, c-format
3775msgid "Journal users: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003776msgstr "Jounalbenutzer: %s\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04003777
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003778#: misc/dumpe2fs.c:456 misc/mke2fs.c:743 misc/tune2fs.c:1178
Theodore Ts'o8f741372008-02-28 21:47:05 -05003779msgid "Couldn't allocate memory to parse options!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003780msgstr "Speicher zum Verarbeiten der Optionen konnte nicht reserviert werden!\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003781
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003782#: misc/dumpe2fs.c:482
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003783#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003784msgid "Invalid superblock parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003785msgstr "Ungültiger Superblock-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003786
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003787#: misc/dumpe2fs.c:497
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003788#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003789msgid "Invalid blocksize parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003790msgstr "Ungültiger Blockgrößen-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003791
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003792#: misc/dumpe2fs.c:508
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003793#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003794msgid ""
3795"\n"
3796"Bad extended option(s) specified: %s\n"
3797"\n"
3798"Extended options are separated by commas, and may take an argument which\n"
3799"\tis set off by an equals ('=') sign.\n"
3800"\n"
3801"Valid extended options are:\n"
3802"\tsuperblock=<superblock number>\n"
3803"\tblocksize=<blocksize>\n"
3804msgstr ""
3805"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003806"Falsche erweiterte Optionen angegeben: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003807"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003808"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003809"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003810"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003811"Gültige erweiterte Optionen sind:\n"
3812"\tsuperblock=<Nummer des Spuperblocks>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003813"\tblocksize=<Blockgröße>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003814"\n"
3815
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003816#: misc/dumpe2fs.c:568 misc/mke2fs.c:1734
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003817#, c-format
3818msgid "\tUsing %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003819msgstr "\t%s wird benutzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003820
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003821#: misc/dumpe2fs.c:604 misc/e2image.c:1582 misc/tune2fs.c:1961
3822#: resize/main.c:318
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003823msgid "Couldn't find valid filesystem superblock.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003824msgstr "Es kann kein gültiger Dateisystem-Superblock gefunden werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003825
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003826#: misc/dumpe2fs.c:632
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003827#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003828msgid ""
3829"\n"
3830"%s: %s: error reading bitmaps: %s\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003831msgstr ""
3832"\n"
3833"%s: %s: Fehler beim Lesen von Bitmaps: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003834
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003835#: misc/e2image.c:101
Philipp Thomasb93349a2014-05-31 13:32:39 -04003836#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003837msgid "Usage: %s [ -r|Q ] [ -fr ] device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003838msgstr "Aufruf: %s [-r|Q ] [ -fr ] Gerätedatei Abbild-Datei\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003839
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003840#: misc/e2image.c:103
Philipp Thomasb93349a2014-05-31 13:32:39 -04003841#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003842msgid " %s -I device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003843msgstr " %s [-I] Gerätedatei Abbild-Datei\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003844
3845#: misc/e2image.c:104
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003846#, c-format
Philipp Thomasab02a742014-07-09 23:13:30 -04003847msgid " %s -ra [ -cfnp ] [ -o src_offset ] [ -O dest_offset ] src_fs [ dest_fs ]\n"
3848msgstr " %s -ra [ -cfnp ] [ -o Quelloffset ] [ -O Zieloffset ] Quell_Fs [ Ziel_fs ]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003849
3850#: misc/e2image.c:169 misc/e2image.c:576 misc/e2image.c:582
3851#: misc/e2image.c:1178
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003852msgid "while allocating buffer"
3853msgstr "beim Zuweisen von Puffern"
3854
3855#: misc/e2image.c:174
Philipp Thomasb93349a2014-05-31 13:32:39 -04003856#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003857msgid "Writing block %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003858msgstr "Block %llu wird geschrieben\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003859
3860#: misc/e2image.c:188
Philipp Thomasb93349a2014-05-31 13:32:39 -04003861#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003862msgid "error writing block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003863msgstr "Schreibfehler - Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003864
3865#: misc/e2image.c:191
3866msgid "error in generic_write()"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003867msgstr "Fehler in generic_write()"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003868
3869#: misc/e2image.c:208
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003870msgid "Error: header size is bigger than wrt_size\n"
3871msgstr "Fehler: Größe des Headers übersteigt wrt_size\n"
3872
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003873#: misc/e2image.c:213
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003874msgid "Couldn't allocate header buffer\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003875msgstr "Header-Puffer konnte nicht zugewiesen werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003876
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003877#: misc/e2image.c:241
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003878msgid "while writing superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003879msgstr "beim Schreiben des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003880
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003881#: misc/e2image.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003882msgid "while writing inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003883msgstr "beim Schreiben der Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003884
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003885#: misc/e2image.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003886msgid "while writing block bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003887msgstr "beim Schreiben der Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003888
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003889#: misc/e2image.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003890msgid "while writing inode bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003891msgstr "beim Schreiben der Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003892
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003893#: misc/e2image.c:502
Philipp Thomasb93349a2014-05-31 13:32:39 -04003894#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003895msgid "Corrupt directory block %llu: bad rec_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003896msgstr "Defekter Verzeichnisblock %llu: ungültige rec_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003897
3898#: misc/e2image.c:514
Philipp Thomasb93349a2014-05-31 13:32:39 -04003899#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003900msgid "Corrupt directory block %llu: bad name_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003901msgstr "Defekter Verzeichnisblock %llu: ungültige name_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003902
3903#: misc/e2image.c:555
Philipp Thomasb93349a2014-05-31 13:32:39 -04003904#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003905msgid "%llu / %llu blocks (%d%%)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003906msgstr "%llu / %llu Blöcke (%d%%)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003907
3908#: misc/e2image.c:586 misc/e2image.c:626
3909msgid "Copying "
Philipp Thomasb93349a2014-05-31 13:32:39 -04003910msgstr "Kopieren "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003911
3912#: misc/e2image.c:623
Philipp Thomasab02a742014-07-09 23:13:30 -04003913msgid "Stopping now will destroy the filesystem, interrupt again if you are sure\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003914msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003915"Jetzt anzuhalten würde das Dateisystem zerstören. Wenn Sie sicher sind,\n"
3916"unterbrechen Sie noch einmal.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003917
3918#: misc/e2image.c:649
3919#, c-format
3920msgid " %s remaining at %.2f MB/s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003921msgstr " %s bleibt bei %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003922
3923#: misc/e2image.c:661 misc/e2image.c:1188
Philipp Thomasb93349a2014-05-31 13:32:39 -04003924#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003925msgid "error reading block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003926msgstr "Fehler beim Lesen von Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003927
3928#: misc/e2image.c:715
3929#, c-format
3930msgid "Copied %llu / %llu blocks (%d%%) in %s "
Philipp Thomasb93349a2014-05-31 13:32:39 -04003931msgstr "%llu / %llu Blöcke (%d%%) wurden in %s kopiert "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003932
3933#: misc/e2image.c:719
3934#, c-format
3935msgid "at %.2f MB/s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003936msgstr "bei %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003937
3938#: misc/e2image.c:755
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003939msgid "while allocating l1 table"
Philipp Thomasab02a742014-07-09 23:13:30 -04003940msgstr "beim Anfordern von Speicher für die l1-Tabelle"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003941
3942#: misc/e2image.c:800
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003943msgid "while allocating l2 cache"
Philipp Thomasab02a742014-07-09 23:13:30 -04003944msgstr "beim Anfordern von Speicher für den l2-Zwischenspeicher"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003945
3946#: misc/e2image.c:823
Philipp Thomasab02a742014-07-09 23:13:30 -04003947msgid "Warning: There are still tables in the cache while putting the cache, data will be lost so the image may not be valid.\n"
3948msgstr "Warnung: Beim Schreiben des Zwischenspeichers befinden sich immer noch Tabellen in ihm. Damit gehen Daten verloren und das Abbild ist eventuell ungültig.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003949
3950#: misc/e2image.c:1145
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003951msgid "while allocating ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003952msgstr "beim Reservieren von Speicher für ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003953
3954#: misc/e2image.c:1152
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003955msgid "while initializing ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003956msgstr "beim Initialisieren des ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003957
3958#: misc/e2image.c:1211 misc/e2image.c:1229
3959msgid "Programming error: multiple sequential refcount blocks created!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003960msgstr "Programmierfehler: mehrere sequenzielle Refcount-Blöcke wurden erzeugt!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003961
3962#: misc/e2image.c:1269
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003963msgid "while allocating block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003964msgstr "beim Reservieren von Speicher für die Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003965
3966#: misc/e2image.c:1278
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003967msgid "while allocating scramble block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003968msgstr "beim Reservieren von Speicher für die verwürfelte Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003969
3970#: misc/e2image.c:1285
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003971msgid "Scanning inodes...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003972msgstr "Inodes werden eingelesen …\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003973
3974#: misc/e2image.c:1297
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003975msgid "Can't allocate block buffer"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003976msgstr "Es konnte kein Blockpuffer reserviert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003977
3978#: misc/e2image.c:1336 misc/e2image.c:1350
Philipp Thomasb93349a2014-05-31 13:32:39 -04003979#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003980msgid "while iterating over inode %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003981msgstr "beim Iterieren über Inode %u"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003982
3983#: misc/e2image.c:1381
3984msgid "Raw and qcow2 images cannot be installed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003985msgstr "Rohe und Qcow2-Abbilder können nicht installiert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003986
3987#: misc/e2image.c:1403
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003988msgid "error reading bitmaps"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003989msgstr "Fehler beim Lesen der Bitmaps"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003990
3991#: misc/e2image.c:1415
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003992msgid "while opening device file"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003993msgstr "beim Öffnen der Gerätedatei"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003994
3995#: misc/e2image.c:1426
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003996msgid "while restoring the image table"
3997msgstr "beim Schreiben der Inode-Tabelle"
3998
3999#: misc/e2image.c:1523
4000msgid "-a option can only be used with raw or QCOW2 images."
Philipp Thomasab02a742014-07-09 23:13:30 -04004001msgstr "Die Option „-a“ kann nur bei Roh- oder QCOW2-Abbildern benutzt werden."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004002
4003#: misc/e2image.c:1529
4004msgid "Offsets are only allowed with raw images."
Philipp Thomasb93349a2014-05-31 13:32:39 -04004005msgstr "Offsets sind nur bei Roh-Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004006
4007#: misc/e2image.c:1534
4008msgid "Move mode is only allowed with raw images."
Philipp Thomasab02a742014-07-09 23:13:30 -04004009msgstr "Verschieben ist nur bei Roh- Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004010
4011#: misc/e2image.c:1539
4012msgid "Move mode requires all data mode."
Philipp Thomasab02a742014-07-09 23:13:30 -04004013msgstr "Der Verschiebemodus erfordert den „Alle Daten“-Modus."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004014
4015#: misc/e2image.c:1549
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004016msgid "checking if mounted"
Philipp Thomasab02a742014-07-09 23:13:30 -04004017msgstr "Prüfung, ob eingehängt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004018
4019#: misc/e2image.c:1556
4020msgid ""
4021"\n"
4022"Running e2image on a R/W mounted filesystem can result in an\n"
4023"inconsistent image which will not be useful for debugging purposes.\n"
4024"Use -f option if you really want to do that.\n"
4025msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004026"\n"
4027"Das Starten von E2image auf einem schreib- und lesbar eingehängten\n"
4028"Dateisystem kann zu einem unvollständigen Abbild führen, welches\n"
4029"unbrauchbar für die Fehlersuche wäre. Verwenden Sie die Option -f, wenn\n"
4030"Sie das wirklich machen wollen.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004031
4032#: misc/e2image.c:1608
4033msgid "QCOW2 image can not be written to the stdout!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004034msgstr "Das QCOW2-Abbild kann nicht auf die Standardausgabe geschrieben werden!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004035
4036#: misc/e2image.c:1614
4037msgid "Can not stat output\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004038msgstr "Der Status der Ausgabe lässt sich nicht feststellen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004039
4040#: misc/e2image.c:1624
4041#, c-format
4042msgid "Image (%s) is compressed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004043msgstr "Das Abbild (%s) ist komprimiert\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004044
4045#: misc/e2image.c:1627
4046#, c-format
4047msgid "Image (%s) is encrypted\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004048msgstr "Das Abbild (%s) ist verschlüsselt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004049
4050#: misc/e2image.c:1630
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004051#, c-format
4052msgid "while trying to convert qcow2 image (%s) into raw image (%s)"
Philipp Thomasab02a742014-07-09 23:13:30 -04004053msgstr "beim Versuch, das Qcow2-Abbild (%s) in ein Roh-Abbild (%s) zu konvertieren"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004054
4055#: misc/e2image.c:1639
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004056msgid "The -c option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004057msgstr "Die Option „-c“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004058
4059#: misc/e2image.c:1644
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004060msgid "The -c option not supported when writing to stdout\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004061msgstr "Die Option „-c“ wird beim Schreiben auf die Standardausgabe nicht unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004062
4063#: misc/e2image.c:1651
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004064msgid "while allocating check_buf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004065msgstr "beim Anfordern des Prüfpuffers"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004066
4067#: misc/e2image.c:1657
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004068msgid "The -p option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004069msgstr "Die Option „-p“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004070
4071#: misc/e2image.c:1667
4072#, c-format
4073msgid "%d blocks already contained the data to be copied\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004074msgstr "%d Blöcke enthielten bereits die zu kopierenden Daten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004075
4076#: misc/e2label.c:58
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004077#, c-format
4078msgid "e2label: cannot open %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004079msgstr "e2label: %s kann nicht geöffnet werden.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004080
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004081#: misc/e2label.c:63
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004082#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004083msgid "e2label: cannot seek to superblock\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004084msgstr "e2label: Springen zum Superblock nicht möglich\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004085
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004086#: misc/e2label.c:68
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004087#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004088msgid "e2label: error reading superblock\n"
4089msgstr "e2label: Lesefehler im Superblock\n"
4090
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004091#: misc/e2label.c:72
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004092#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004093msgid "e2label: not an ext2 filesystem\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004094msgstr "e2label: Kein ext2-Dateisystem\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004095
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004096#: misc/e2label.c:97 misc/tune2fs.c:2126
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004097#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004098msgid "Warning: label too long, truncating.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004099msgstr "Warnung: Name zu lang, wird gekürzt.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004100
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004101#: misc/e2label.c:100
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004102#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004103msgid "e2label: cannot seek to superblock again\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004104msgstr "e2label: Erneutes Springen zum Superblock nicht möglich\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004105
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004106#: misc/e2label.c:105
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004107#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004108msgid "e2label: error writing superblock\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004109msgstr "e2label: Fehler beim Schreiben des Superblocks\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004110
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004111#: misc/e2label.c:117 misc/tune2fs.c:838
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004112#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004113msgid "Usage: e2label device [newlabel]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004114msgstr "Aufruf: e2label Gerät [neuer_Name]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004115
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004116#: misc/e2undo.c:36
Philipp Thomas720e6362008-06-21 14:06:00 -04004117#, c-format
4118msgid "Usage: %s <transaction file> <filesystem>\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004119msgstr "Aufruf: %s <Transaktionsdatei> <Dateisystem>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004120
Philipp Thomas40771272008-09-07 22:55:25 -04004121#: misc/e2undo.c:52
Philipp Thomas720e6362008-06-21 14:06:00 -04004122msgid "Failed to read the file system data \n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004123msgstr "Die Dateisystemdaten konnten nicht gelesen werden \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004124
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004125#: misc/e2undo.c:62 misc/e2undo.c:83 misc/e2undo.c:108 misc/e2undo.c:206
Philipp Thomas720e6362008-06-21 14:06:00 -04004126#, c-format
4127msgid "Failed tdb_fetch %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004128msgstr "tdb_fetch von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004129
Philipp Thomas40771272008-09-07 22:55:25 -04004130#: misc/e2undo.c:70
Philipp Thomas720e6362008-06-21 14:06:00 -04004131#, c-format
4132msgid "The file system Mount time didn't match %u\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004133msgstr "Die Zeit des letzten Einhängens des Dateisystems war nicht %u\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004134
Philipp Thomas40771272008-09-07 22:55:25 -04004135#: misc/e2undo.c:89
Philipp Thomas720e6362008-06-21 14:06:00 -04004136msgid "The file system UUID didn't match \n"
Philipp Thomas68801282008-07-17 11:47:00 -04004137msgstr "Die UUID des Dateisystems stimmte nicht überein \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004138
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004139#: misc/e2undo.c:163
Philipp Thomas68801282008-07-17 11:47:00 -04004140#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004141msgid "Failed tdb_open %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004142msgstr "tdb_open von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004143
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004144#: misc/e2undo.c:169
Philipp Thomas68801282008-07-17 11:47:00 -04004145#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004146msgid "Error while determining whether %s is mounted.\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004147msgstr "Fehler beim Überprüfen, ob %s eingehängt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004148
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004149#: misc/e2undo.c:175
Philipp Thomas40771272008-09-07 22:55:25 -04004150msgid "e2undo should only be run on unmounted file system\n"
4151msgstr "e2undo sollte nur auf nicht-eingehängten Dateisystemen laufen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004152
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004153#: misc/e2undo.c:184
Philipp Thomas68801282008-07-17 11:47:00 -04004154#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004155msgid "Failed to open %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004156msgstr "%s konnte nicht geöffnet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004157
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004158#: misc/e2undo.c:210
Philipp Thomas720e6362008-06-21 14:06:00 -04004159#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004160msgid "Replayed transaction of size %zd at location %llu\n"
4161msgstr "Zurückgespielte Transaktion der Größe %zd an Position %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004162
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004163#: misc/e2undo.c:216
Philipp Thomas720e6362008-06-21 14:06:00 -04004164#, c-format
4165msgid "Failed write %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004166msgstr "Schreiben von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004167
Eric Sandeen032eafe2012-07-28 17:48:36 -04004168#: misc/fsck.c:343
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004169#, c-format
4170msgid "WARNING: couldn't open %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004171msgstr "WARNUNG: %s konnte nicht geöffnet werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004172
Eric Sandeen032eafe2012-07-28 17:48:36 -04004173#: misc/fsck.c:353
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004174#, c-format
4175msgid "WARNING: bad format on line %d of %s\n"
4176msgstr "WARNUNG: falsches Format in Zeile %d von %s\n"
4177
Eric Sandeen032eafe2012-07-28 17:48:36 -04004178#: misc/fsck.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004179msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004180"WARNING: Your /etc/fstab does not contain the fsck passno\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004181"\tfield. I will kludge around things for you, but you\n"
4182"\tshould fix your /etc/fstab file as soon as you can.\n"
4183"\n"
4184msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004185"WARNUNG: Ihre /etc/fstab enthält keine Angabe darüber, wann\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004186"\tdas Dateisystem geprüft werden soll. Dies wird\n"
4187"\tignoriert, aber Sie sollten Ihre /etc/fstab so schnell\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004188"\twie möglich korrigieren.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004189"\n"
4190
Eric Sandeen032eafe2012-07-28 17:48:36 -04004191#: misc/fsck.c:478
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004192#, c-format
4193msgid "fsck: %s: not found\n"
4194msgstr "fsck: %s: nicht gefunden\n"
4195
Eric Sandeen032eafe2012-07-28 17:48:36 -04004196#: misc/fsck.c:594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004197#, c-format
4198msgid "%s: wait: No more child process?!?\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004199msgstr "%s: wait: kein Kindprozess mehr?!?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004200
Eric Sandeen032eafe2012-07-28 17:48:36 -04004201#: misc/fsck.c:616
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004202#, c-format
4203msgid "Warning... %s for device %s exited with signal %d.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004204msgstr "Warnung... %s für Gerät %s wurde mit Signal %d beendet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004205
Eric Sandeen032eafe2012-07-28 17:48:36 -04004206#: misc/fsck.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004207#, c-format
4208msgid "%s %s: status is %x, should never happen.\n"
4209msgstr "%s %s: Status ist %x, sollte nie vorkommen.\n"
4210
Eric Sandeen032eafe2012-07-28 17:48:36 -04004211#: misc/fsck.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004212#, c-format
4213msgid "Finished with %s (exit status %d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004214msgstr "Beendet mit %s (Exit-Status %d)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004215
Eric Sandeen032eafe2012-07-28 17:48:36 -04004216#: misc/fsck.c:721
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004217#, c-format
4218msgid "%s: Error %d while executing fsck.%s for %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004219msgstr "%s: Fehler %d bei Ausführung von fsck.%s für %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004220
Eric Sandeen032eafe2012-07-28 17:48:36 -04004221#: misc/fsck.c:742
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004222msgid ""
4223"Either all or none of the filesystem types passed to -t must be prefixed\n"
4224"with 'no' or '!'.\n"
4225msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004226"Bei -t müssen entweder allen oder keinem Dateisystem ein „no“ bzw. „!“\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004227"vorangestellt werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004228
Eric Sandeen032eafe2012-07-28 17:48:36 -04004229#: misc/fsck.c:761
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004230msgid "Couldn't allocate memory for filesystem types\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004231msgstr "Speicher für Dateisystemtypen kann nicht reserviert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004232
Eric Sandeen032eafe2012-07-28 17:48:36 -04004233#: misc/fsck.c:884
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004234#, c-format
Philipp Thomasab02a742014-07-09 23:13:30 -04004235msgid "%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004236msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004237"%s: Ungültige Zeile in /etc/fstab wird übersprungen: bind mount mit\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004238" Durchgangsnummer für fsck, die nicht Null ist\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004239
Eric Sandeen032eafe2012-07-28 17:48:36 -04004240#: misc/fsck.c:911
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004241#, c-format
4242msgid "fsck: cannot check %s: fsck.%s not found\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004243msgstr "fsck: %s kann nicht überprüft werden: fsck.%s nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004244
Eric Sandeen032eafe2012-07-28 17:48:36 -04004245#: misc/fsck.c:967
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004246msgid "Checking all file systems.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004247msgstr "Alle Dateisysteme werden überprüft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004248
Eric Sandeen032eafe2012-07-28 17:48:36 -04004249#: misc/fsck.c:1058
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004250#, c-format
4251msgid "--waiting-- (pass %d)\n"
4252msgstr "--warten-- (Durchgang %d)\n"
4253
Eric Sandeen032eafe2012-07-28 17:48:36 -04004254#: misc/fsck.c:1078
Philipp Thomasab02a742014-07-09 23:13:30 -04004255msgid "Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
4256msgstr "Aufruf: fsck [-AMNPRTV] [ -C [ fd ] ] [-t Datesystemtyp] [FS-Optionen] [Dateisystem...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004257
Eric Sandeen032eafe2012-07-28 17:48:36 -04004258#: misc/fsck.c:1120
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004259#, c-format
4260msgid "%s: too many devices\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004261msgstr "%s: zu viele Geräte\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004262
Eric Sandeen032eafe2012-07-28 17:48:36 -04004263#: misc/fsck.c:1153 misc/fsck.c:1239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004264#, c-format
4265msgid "%s: too many arguments\n"
4266msgstr "%s: zu viele Argumente\n"
4267
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004268#: misc/lsattr.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004269#, c-format
4270msgid "Usage: %s [-RVadlv] [files...]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004271msgstr "Aufruf: %s [-RVadlv] [Dateien...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004272
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004273#: misc/lsattr.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004274#, c-format
4275msgid "While reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004276msgstr "Beim Lesen der Flags von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004277
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004278#: misc/lsattr.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004279#, c-format
4280msgid "While reading version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004281msgstr "Beim Lesen der Version von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004282
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004283#: misc/mke2fs.c:123
Philipp Thomas77c871a2010-04-19 16:59:02 -04004284#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004285msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004286"Usage: %s [-c|-l filename] [-b block-size] [-C cluster-size]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004287"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004288"\t[-G flex-group-size] [-N number-of-inodes]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004289"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004290"\t[-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004291"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004292"\t[-t fs-type] [-T usage-type ] [-U UUID] [-jnqvDFKSV] device [blocks-count]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004293msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004294"Aufruf: %s [-c|-l Dateiname] [-b Blockgröße] [-C Clustergröße]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004295"\t[-i Bytes-pro-Inode] [-I Inode-Größe] [-J Journal-Optionen]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004296"\t[-G Größe_der_Metagruppe] [-N Anzahl_der_Inodes]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004297"\t[-m Reservierte-Blöcke-Prozentsatz] [-o Erzeuger-OS]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004298"\t[-g Blöcke-pro-Gruppe] [-L Volume-Label]\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04004299"\t[-M letztes-eingehängtes-Verzeichnis] [-O Eigenschaft[,...]]\n"
4300"\t[-r fs-Revision] [-E erweiterte-Option[,...]]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004301"\t[-t Dateisystemtyp] [-T Verwendungs-Typ ] [-U UUID] [-jnqvDFKSV]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004302"\tGerät [Block-Anzahl]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004303
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004304#: misc/mke2fs.c:252
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004305#, c-format
4306msgid "Running command: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004307msgstr "Befehl wird ausgeführt: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004308
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004309#: misc/mke2fs.c:256
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004310#, c-format
4311msgid "while trying to run '%s'"
4312msgstr "während des Versuchs, „%s“ auszuführen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004313
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004314#: misc/mke2fs.c:263
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004315msgid "while processing list of bad blocks from program"
4316msgstr "beim Auswerten der „Bad Block“-Liste vom Programm"
4317
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004318#: misc/mke2fs.c:290
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004319#, c-format
4320msgid "Block %d in primary superblock/group descriptor area bad.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004321msgstr "Block %d im primären Superblock/Gruppendeskriptorbereich defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004322
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004323#: misc/mke2fs.c:292
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004324#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004325msgid "Blocks %u through %u must be good in order to build a filesystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004326msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004327"Die Blöcke %u bis einschließlich %u müssen in Ordnung sein, um ein\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004328"\tDateisystem zu erstellen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004329
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004330#: misc/mke2fs.c:295
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004331msgid "Aborting....\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004332msgstr "Abbruch...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004333
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004334#: misc/mke2fs.c:315
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004335#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004336msgid ""
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004337"Warning: the backup superblock/group descriptors at block %u contain\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004338"\tbad blocks.\n"
4339"\n"
4340msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004341"Warnung: Die Sicherung des Superblocks bzw. Gruppendeskriptors in Block %u\n"
4342"\tenthält defekte Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004343"\n"
4344
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004345#: misc/mke2fs.c:334
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004346msgid "while marking bad blocks as used"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004347msgstr "beim Markieren von defekten Blöcken als „belegt“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004348
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004349#: misc/mke2fs.c:386
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004350msgid "Writing inode tables: "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004351msgstr "Inode-Tabellen werden geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004352
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004353#: misc/mke2fs.c:407
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004354#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004355msgid ""
4356"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004357"Could not write %d blocks in inode table starting at %llu: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004358msgstr ""
4359"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004360"%d Blöcke konnten nicht in die Inoden-Tabellen beginnend bei %llu geschrieben werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004361
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004362#: misc/mke2fs.c:421 misc/mke2fs.c:2477 misc/mke2fs.c:2762
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004363msgid "done \n"
4364msgstr "erledigt \n"
4365
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004366#: misc/mke2fs.c:432
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004367msgid "while creating root dir"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004368msgstr "beim Erstellen des Wurzelverzeichnisses"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004369
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004370#: misc/mke2fs.c:439
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004371msgid "while reading root inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04004372msgstr "beim Lesen des Root-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004373
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004374#: misc/mke2fs.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004375msgid "while setting root inode ownership"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004376msgstr "beim Setzen des Root-Inode-Eigentümers"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004377
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004378#: misc/mke2fs.c:469
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004379msgid "while creating /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004380msgstr "beim Erstellen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004381
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004382#: misc/mke2fs.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004383msgid "while looking up /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004384msgstr "beim Suchen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004385
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004386#: misc/mke2fs.c:489
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004387msgid "while expanding /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004388msgstr "beim Expandieren von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004389
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004390#: misc/mke2fs.c:504
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004391msgid "while setting bad block inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004392msgstr "beim Setzen des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004393
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004394#: misc/mke2fs.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004395#, c-format
4396msgid "Out of memory erasing sectors %d-%d\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004397msgstr "Speicher voll beim Löschen der Sektoren %d-%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004398
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004399#: misc/mke2fs.c:541
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004400#, c-format
4401msgid "Warning: could not read block 0: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004402msgstr "Warnung: Block %s konnte nicht gelesen werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004403
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004404#: misc/mke2fs.c:557
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004405#, c-format
4406msgid "Warning: could not erase sector %d: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004407msgstr "Warnung: Sektor %d konnte nicht gelöscht werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004408
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004409#: misc/mke2fs.c:573
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004410msgid "while initializing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004411msgstr "beim Initialisieren des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004412
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004413#: misc/mke2fs.c:581
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004414msgid "Zeroing journal device: "
Philipp Thomasab02a742014-07-09 23:13:30 -04004415msgstr "Journal-Gerät wird mit Nullen überschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004416
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004417#: misc/mke2fs.c:593
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004418#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004419msgid "while zeroing journal device (block %llu, count %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04004420msgstr "beim Überschreiben des Journal-Gerätes mit Nullen (Block %llu, Nr. %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004421
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004422#: misc/mke2fs.c:611
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004423msgid "while writing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004424msgstr "beim Schreiben des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004425
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004426#: misc/mke2fs.c:626
Philipp Thomasb93349a2014-05-31 13:32:39 -04004427#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004428msgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004429msgstr "Ein Dateisystems mit %llu (%dk) Blöcken und %u Inodes wird erzeugt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004430
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004431#: misc/mke2fs.c:634
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004432#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004433msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004434"warning: %llu blocks unused.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004435"\n"
4436msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004437"Warnung: %llu Blöcke unbenutzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004438"\n"
4439
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004440#: misc/mke2fs.c:639
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004441#, c-format
4442msgid "Filesystem label=%s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004443msgstr "Dateisystembezeichnung=%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004444
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004445#: misc/mke2fs.c:642
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004446#, c-format
4447msgid "OS type: %s\n"
4448msgstr "OS-Typ: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004449
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004450#: misc/mke2fs.c:644
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004451#, c-format
4452msgid "Block size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004453msgstr "Blockgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004454
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004455#: misc/mke2fs.c:648
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004456#, c-format
4457msgid "Cluster size=%u (log=%u)\n"
4458msgstr "Clustergröße=%u (log=%u)\n"
4459
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004460#: misc/mke2fs.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004461#, c-format
4462msgid "Fragment size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004463msgstr "Fragmentgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004464
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004465#: misc/mke2fs.c:654
Philipp Thomas77c871a2010-04-19 16:59:02 -04004466#, c-format
4467msgid "Stride=%u blocks, Stripe width=%u blocks\n"
4468msgstr "Stride=%u Blöcke, Stripebreite=%u Blöcke\n"
4469
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004470#: misc/mke2fs.c:656
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004471#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004472msgid "%u inodes, %llu blocks\n"
4473msgstr "%u Inodes, %llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004474
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004475#: misc/mke2fs.c:658
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004476#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004477msgid "%llu blocks (%2.2f%%) reserved for the super user\n"
4478msgstr "%llu Blöcke (%2.2f%%) reserviert für den Superuser\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004479
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004480#: misc/mke2fs.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004481#, c-format
4482msgid "First data block=%u\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004483msgstr "Erster Datenblock=%u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004484
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004485#: misc/mke2fs.c:663
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004486#, c-format
4487msgid "Root directory owner=%u:%u\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004488msgstr "Eigentümer des Wurzelverzeichnisses=%u:%u\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004489
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004490#: misc/mke2fs.c:665
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004491#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004492msgid "Maximum filesystem blocks=%lu\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004493msgstr "Maximale Dateisystem-Blöcke=%lu\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004494
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004495#: misc/mke2fs.c:669
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004496#, c-format
4497msgid "%u block groups\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004498msgstr "%u Blockgruppen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004499
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004500#: misc/mke2fs.c:671
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004501#, c-format
4502msgid "%u block group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004503msgstr "%u Blockgruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004504
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004505#: misc/mke2fs.c:674
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004506#, c-format
4507msgid "%u blocks per group, %u clusters per group\n"
4508msgstr "%u Blöcke pro Gruppe, %u Cluster pro Gruppe\n"
4509
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004510#: misc/mke2fs.c:677
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004511#, c-format
4512msgid "%u blocks per group, %u fragments per group\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004513msgstr "%u Blöcke pro Gruppe, %u Fragmente pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004514
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004515#: misc/mke2fs.c:679
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004516#, c-format
4517msgid "%u inodes per group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004518msgstr "%u Inodes pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004519
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004520#: misc/mke2fs.c:688
Philipp Thomasb93349a2014-05-31 13:32:39 -04004521#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004522msgid "Filesystem UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004523msgstr "UUID des Dateisystems: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004524
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004525#: misc/mke2fs.c:689
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004526msgid "Superblock backups stored on blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004527msgstr "Superblock-Sicherungskopien gespeichert in den Blöcken: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004528
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004529#: misc/mke2fs.c:766
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004530#, c-format
4531msgid "%s requires '-O 64bit'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004532msgstr "%s erfordert „-O 64Bit“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004533
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004534#: misc/mke2fs.c:772
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004535#, c-format
4536msgid "'%s' must be before 'resize=%u'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004537msgstr "„%s“ muss vor „resize=%u“ kommen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004538
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004539#: misc/mke2fs.c:785
Philipp Thomasb93349a2014-05-31 13:32:39 -04004540#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004541msgid "Invalid desc_size: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004542msgstr "Unzulässige desc_size: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004543
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004544#: misc/mke2fs.c:798
Philipp Thomasb93349a2014-05-31 13:32:39 -04004545#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004546msgid "Invalid offset: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004547msgstr "Unzulässiger Offset: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004548
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004549#: misc/mke2fs.c:812 misc/tune2fs.c:1206
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004550#, c-format
4551msgid "Invalid mmp_update_interval: %s\n"
4552msgstr "Ungültiges mmp_update_interval: %s\n"
4553
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004554#: misc/mke2fs.c:826
Philipp Thomasab02a742014-07-09 23:13:30 -04004555#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004556msgid "Invalid # of backup superblocks: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004557msgstr "Ungültige Anzahl von Ersatz-Superblöcken: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004558
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004559#: misc/mke2fs.c:848
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004560#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004561msgid "Invalid stride parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004562msgstr "Ungültiger „stride“-Parameter: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004563
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004564#: misc/mke2fs.c:863
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004565#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05004566msgid "Invalid stripe-width parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004567msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004568
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004569#: misc/mke2fs.c:886
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004570#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004571msgid "Invalid resize parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004572msgstr "Ungültiger „resize“-Parameter: %s\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004573
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004574#: misc/mke2fs.c:893
Theodore Ts'obc759702005-05-09 20:40:55 -04004575msgid "The resize maximum must be greater than the filesystem size.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004576msgstr "Das Maximum der Vergrößerung muss oberhalb als der Dateisystem-Größe liegen.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004577
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004578#: misc/mke2fs.c:917
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004579msgid "On-line resizing not supported with revision 0 filesystems\n"
4580msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004581"Online-Größenänderungen werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004582"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004583
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004584#: misc/mke2fs.c:944 misc/mke2fs.c:953
Philipp Thomasb93349a2014-05-31 13:32:39 -04004585#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004586msgid "Invalid root_owner: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004587msgstr "Ungültiger Eigentümer der Wurzel: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004588
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004589#: misc/mke2fs.c:978
Philipp Thomasedc733d2012-04-22 15:38:42 -04004590#, c-format
4591msgid "Invalid quotatype parameter: %s\n"
4592msgstr "Ungültiger Quotatyp-Parameter: %s\n"
4593
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004594#: misc/mke2fs.c:989
Philipp Thomasb93349a2014-05-31 13:32:39 -04004595#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004596msgid ""
4597"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004598"Bad option(s) specified: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004599"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004600"Extended options are separated by commas, and may take an argument which\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004601"\tis set off by an equals ('=') sign.\n"
4602"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004603"Valid extended options are:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004604"\tmmp_update_interval=<interval>\n"
4605"\tnum_backup_sb=<0|1|2>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004606"\tstride=<RAID per-disk data chunk in blocks>\n"
4607"\tstripe-width=<RAID stride * data disks in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004608"\toffset=<offset to create the file system>\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004609"\tresize=<resize maximum size in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004610"\tpacked_meta_blocks=<0 to disable, 1 to enable>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004611"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004612"\tlazy_journal_init=<0 to disable, 1 to enable>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004613"\troot_uid=<uid of root directory>\n"
4614"\troot_gid=<gid of root directory>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05004615"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004616"\tdiscard\n"
4617"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004618"\tquotatype=<usr OR grp>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004619"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004620msgstr ""
4621"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004622"Ungültige Option(en) angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004623"\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004624"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004625"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004626"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004627"Gültige erweiterte Optionen sind:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004628"\tmmp_update_interval=<Intervall>\n"
4629"\tnum_backup_sb=<0|1|2>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004630"\tstride=<RAID-Segmentgröße in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004631"\tstripe-width=<RAID Stride * Datenplatten in Blöcken>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004632"\toffset=<Offset für das Dateisystem>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004633"\tresize=<Obergrenze für Größenänderung in Blöcken>\n"
4634"\tpacked_meta_blocks=<0 deaktiviert, 1 aktiviert>\n"
4635"\tlazy_itable_init=<0 für deaktiviert, 1 für aktiviert>\n"
4636"\tlazy_journal_init=<0 für deaktiviert, 1 für aktiviert>\n"
4637"\troot_uid=<UID des Wurzelverzeichnisses>\n"
4638"\troot_gid=<GID des Wurzelverzeichnisses>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004639"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004640"\tdiscard\n"
4641"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004642"\tquotatype=<usr ODER grp>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004643"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004644
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004645#: misc/mke2fs.c:1015
Theodore Ts'o8f741372008-02-28 21:47:05 -05004646#, c-format
4647msgid ""
4648"\n"
4649"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
4650"\n"
4651msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004652"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004653"Warnung: Die Stripebreite %u des RAIDs ist kein Vielfaches des Strides %u.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004654"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004655
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004656#: misc/mke2fs.c:1055
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004657#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004658msgid ""
4659"Syntax error in mke2fs config file (%s, line #%d)\n"
4660"\t%s\n"
4661msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004662"Syntaxfehler in der Konfigurationsdatei von mke2fs (%s, Zeile #%d)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004663"\t%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004664
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004665#: misc/mke2fs.c:1068 misc/tune2fs.c:416
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004666#, c-format
4667msgid "Invalid filesystem option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004668msgstr "Ungültige Dateisystem-Option angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004669
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004670#: misc/mke2fs.c:1080 misc/tune2fs.c:357
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004671#, c-format
4672msgid "Invalid mount option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004673msgstr "Ungültige Option für das Einhängen angegeben: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004674
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004675#: misc/mke2fs.c:1220
Philipp Thomas40771272008-09-07 22:55:25 -04004676#, c-format
4677msgid ""
4678"\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004679"Your mke2fs.conf file does not define the %s filesystem type.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004680msgstr ""
4681"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004682"Ihre Datei mke2fs.conf definiert den Typ des Dateisystems %s nicht.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004683
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004684#: misc/mke2fs.c:1224
Philipp Thomas40771272008-09-07 22:55:25 -04004685msgid ""
4686"You probably need to install an updated mke2fs.conf file.\n"
4687"\n"
4688msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004689"Sie müssen wahrscheinlich eine aktualisierte Version der Datei installieren.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004690"\n"
4691
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004692#: misc/mke2fs.c:1228
Philipp Thomas3e914b52011-01-24 15:03:41 -05004693msgid "Aborting...\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004694msgstr "Abbruch…\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004695
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004696#: misc/mke2fs.c:1269
Philipp Thomas3e914b52011-01-24 15:03:41 -05004697#, c-format
4698msgid ""
4699"\n"
4700"Warning: the fs_type %s is not defined in mke2fs.conf\n"
4701"\n"
4702msgstr ""
4703"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004704"Warnung: der Dateisystemtyp %s ist in mke2fs.conf nicht definiert\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004705"\n"
4706
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004707#: misc/mke2fs.c:1449
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004708msgid "Couldn't allocate memory for new PATH.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004709msgstr "Es konnte kein Speicher für den neuen PFAD reserviert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004710
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004711#: misc/mke2fs.c:1490
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004712#, c-format
4713msgid "Couldn't init profile successfully (error: %ld).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004714msgstr "Das Profil konnte nicht erfolgreich initialisiert werden: %ld).\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004715
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004716#: misc/mke2fs.c:1523
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004717#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004718msgid "invalid block size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004719msgstr "ungültige Blockgröße - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004720
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004721#: misc/mke2fs.c:1527
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004722#, c-format
4723msgid "Warning: blocksize %d not usable on most systems.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004724msgstr "Warnung: Eine Blockgröße von %d ist auf den meisten System unbrauchbar.\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004725
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004726#: misc/mke2fs.c:1543
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004727#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004728msgid "invalid cluster size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004729msgstr "ungültige Clustergröße - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004730
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004731#: misc/mke2fs.c:1553
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004732msgid "'-R' is deprecated, use '-E' instead"
Philipp Thomasab02a742014-07-09 23:13:30 -04004733msgstr "„-R“ ist veraltet, bitte verwenden Sie stattdessen „-E“"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004734
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004735#: misc/mke2fs.c:1565
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004736msgid "Illegal number for blocks per group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004737msgstr "Die Zahl der Blöcke pro Gruppe ist unzulässig"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004738
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004739#: misc/mke2fs.c:1570
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004740msgid "blocks per group must be multiple of 8"
Philipp Thomasab02a742014-07-09 23:13:30 -04004741msgstr "Die Anzahl der Blöcke pro Gruppe muss ein Vielfaches von 8 sein"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004742
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004743#: misc/mke2fs.c:1578
Philipp Thomas720e6362008-06-21 14:06:00 -04004744msgid "Illegal number for flex_bg size"
Philipp Thomasab02a742014-07-09 23:13:30 -04004745msgstr "Der Wert für die Größe von flex_bg ist unzulässig"
Philipp Thomas720e6362008-06-21 14:06:00 -04004746
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004747#: misc/mke2fs.c:1584
Philipp Thomas720e6362008-06-21 14:06:00 -04004748msgid "flex_bg size must be a power of 2"
Philipp Thomasab02a742014-07-09 23:13:30 -04004749msgstr "Die Größe von flex_bg muss eine Potenz von 2 sein"
Philipp Thomas720e6362008-06-21 14:06:00 -04004750
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004751#: misc/mke2fs.c:1589
Philipp Thomasab02a742014-07-09 23:13:30 -04004752#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004753msgid "flex_bg size (%lu) must be less than or equal to 2^31"
Philipp Thomasab02a742014-07-09 23:13:30 -04004754msgstr "Die Größe von flex_bg (%lu) muss gleich oder weniger als 2^31 sein"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004755
4756#: misc/mke2fs.c:1600
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004757#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004758msgid "invalid inode ratio %s (min %d/max %d)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004759msgstr "Unzulässige Inode-Rate %s (min %d/max %d)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004760
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004761#: misc/mke2fs.c:1610
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004762#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004763msgid "invalid inode size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004764msgstr "ungültige Inode-Größe - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004765
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004766#: misc/mke2fs.c:1623
Philipp Thomasab02a742014-07-09 23:13:30 -04004767msgid "Warning: -K option is deprecated and should not be used anymore. Use '-E nodiscard' extended option instead!\n"
4768msgstr "Warnung: Die Option -K wird bald nicht mehr unterstüzt. Verwenden Sie stattdessen die Erweiterungsoption „-E nodiscard“!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004769
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004770#: misc/mke2fs.c:1634
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004771msgid "in malloc for bad_blocks_filename"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004772msgstr "in malloc für bad_blocks_filename"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004773
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004774#: misc/mke2fs.c:1647
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004775#, c-format
4776msgid "invalid reserved blocks percent - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004777msgstr "Ungültiger Wert für die prozentuale Anzahl reservierter Blöcke - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004778
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004779#: misc/mke2fs.c:1662
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004780#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004781msgid "bad num inodes - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004782msgstr "ungültige Anzahl von Inodes - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004783
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004784#: misc/mke2fs.c:1679
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004785#, c-format
4786msgid "bad revision level - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004787msgstr "ungültige Version - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004788
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004789#: misc/mke2fs.c:1684
Philipp Thomasab02a742014-07-09 23:13:30 -04004790#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004791msgid "while trying to create revision %d"
Philipp Thomasab02a742014-07-09 23:13:30 -04004792msgstr "beim Versuch, Revision %d zu erzeugen"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004793
4794#: misc/mke2fs.c:1698
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004795msgid "The -t option may only be used once"
Philipp Thomasab02a742014-07-09 23:13:30 -04004796msgstr "Die Option „-t“ darf nur einmal angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004797
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004798#: misc/mke2fs.c:1706
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004799msgid "The -T option may only be used once"
Philipp Thomasab02a742014-07-09 23:13:30 -04004800msgstr "Die Option „-T“ darf nur einmal angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004801
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004802#: misc/mke2fs.c:1759 misc/mke2fs.c:2843
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004803#, c-format
4804msgid "while trying to open journal device %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004805msgstr "beim Versuch, das Journalgerät %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004806
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004807#: misc/mke2fs.c:1765
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004808#, c-format
Theodore Ts'oddc32a02003-05-03 18:45:55 -04004809msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004810msgstr "Die Blockgröße des Journalgeräts (%d) ist kleiner als die minimale Blockgröße %d\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004811
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004812#: misc/mke2fs.c:1771
Philipp Thomas68801282008-07-17 11:47:00 -04004813#, c-format
4814msgid "Using journal device's blocksize: %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004815msgstr "Die Blockgröße des Journalgerätes wird verwendet: %d\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004816
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004817#: misc/mke2fs.c:1782
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004818#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004819msgid "invalid blocks '%s' on device '%s'"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004820msgstr "ungültiger Block „%s“ auf Gerät „%s“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004821
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004822#: misc/mke2fs.c:1802
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004823msgid "filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04004824msgstr "Dateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004825
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004826#: misc/mke2fs.c:1815 resize/main.c:372
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004827msgid "while trying to determine filesystem size"
Philipp Thomasab02a742014-07-09 23:13:30 -04004828msgstr "beim Versuch, die Größe des Dateisystems zu bestimmen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004829
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004830#: misc/mke2fs.c:1821
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004831msgid ""
4832"Couldn't determine device size; you must specify\n"
4833"the size of the filesystem\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004834msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004835"Die Größe des Gerätes ist nicht feststellbar. Sie müssen die Größe\n"
4836"des Dateisystems manuell angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004837
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004838#: misc/mke2fs.c:1828
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004839msgid ""
4840"Device size reported to be zero. Invalid partition specified, or\n"
4841"\tpartition table wasn't reread after running fdisk, due to\n"
4842"\ta modified partition being busy and in use. You may need to reboot\n"
4843"\tto re-read your partition table.\n"
4844msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004845"Als Größe des Geräts wird Null zurück geliefert. Entweder wurde eine\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004846"\tungültige Partition angegeben oder die Partitionstabelle wurde nach\n"
4847"\teinem Lauf von fdisk nicht neu eingelesen, weil die modifizierte\n"
4848"\tPartition vewendet wurde. Sie müssen unter Umständen den Rechner neu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004849"\tstarten, damit die Partitionstabelle neu eingelesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004850
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004851#: misc/mke2fs.c:1845
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004852msgid "Filesystem larger than apparent device size."
Philipp Thomasab02a742014-07-09 23:13:30 -04004853msgstr "Das Dateisystem ist größer als als die Partition."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004854
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004855#: misc/mke2fs.c:1865
Philipp Thomas720e6362008-06-21 14:06:00 -04004856msgid "Failed to parse fs types list\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004857msgstr "Die Liste der Dateisystemtypen konnte nicht verarbeitet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004858
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004859#: misc/mke2fs.c:1906
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004860msgid "while trying to determine hardware sector size"
Philipp Thomasab02a742014-07-09 23:13:30 -04004861msgstr "beim Versuch, die Hardware-Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004862
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004863#: misc/mke2fs.c:1912
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004864msgid "while trying to determine physical sector size"
Philipp Thomasab02a742014-07-09 23:13:30 -04004865msgstr "beim Versuch, die physische Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004866
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004867#: misc/mke2fs.c:1944
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004868msgid "while setting blocksize; too small for device\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004869msgstr "beim Setzen der Blockgröße: zu klein für das Gerät\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004870
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004871#: misc/mke2fs.c:1949
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004872#, c-format
Philipp Thomasab02a742014-07-09 23:13:30 -04004873msgid "Warning: specified blocksize %d is less than device physical sectorsize %d\n"
4874msgstr "Warnung: die angegebene Blockgröße %d ist kleiner als die physische Sektorgröße %d\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004875
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004876#: misc/mke2fs.c:1973
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004877#, c-format
4878msgid ""
4879"%s: Size of device (0x%llx blocks) %s too big to be expressed\n"
4880"\tin 32 bits using a blocksize of %d.\n"
4881msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004882"%1$s: Die Größe des Gerätes %3$s (0x%2$llx Blöcke) kann bei einer Blockgröße\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004883"\tvon %4$d kann mit 32 Bits nicht dargestellt werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004884
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004885#: misc/mke2fs.c:1989
Philipp Thomas68801282008-07-17 11:47:00 -04004886msgid "fs_types for mke2fs.conf resolution: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04004887msgstr "Dateisystemtypen für das Aufschlüsseln von mke2fs.conf: "
Philipp Thomas68801282008-07-17 11:47:00 -04004888
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004889#: misc/mke2fs.c:1996
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004890msgid "Filesystem features not supported with revision 0 filesystems\n"
4891msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004892"Eigenschaften von Dateisystemen werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004893"\tunterstützt\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004894
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004895#: misc/mke2fs.c:2004
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004896msgid "Sparse superblocks not supported with revision 0 filesystems\n"
4897msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004898"Sparse-Superblöcke werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004899"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004900
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004901#: misc/mke2fs.c:2016
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004902msgid "Journals not supported with revision 0 filesystems\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004903msgstr ""
4904"Journale werden bei Revison-0-Dateisystemen nicht\n"
4905"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004906
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004907#: misc/mke2fs.c:2030
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004908#, c-format
4909msgid "invalid reserved blocks percent - %lf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004910msgstr "Ungültiger Werte für Prozent reservierter Blöcke - %lf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004911
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004912#: misc/mke2fs.c:2047
Philipp Thomasab02a742014-07-09 23:13:30 -04004913msgid "Extents MUST be enabled for a 64-bit filesystem. Pass -O extents to rectify.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004914msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004915"Erweiterungen MÜSSEN für 64-Bit-Dateisysteme aktiviert werden.\n"
4916"\tGeben Sie „-O extents“ an, um dies zu tun.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004917
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004918#: misc/mke2fs.c:2067
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004919msgid "The cluster size may not be smaller than the block size.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004920msgstr "Die Clustergröße darf nicht kleiner als die Blockgröße sein.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004921
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004922#: misc/mke2fs.c:2073
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004923msgid "specifying a cluster size requires the bigalloc feature"
Philipp Thomasab02a742014-07-09 23:13:30 -04004924msgstr "Die Angabe einer Clustergröße erfordert die Eigenschaft „bigalloc“."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004925
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004926#: misc/mke2fs.c:2092
Philipp Thomas720e6362008-06-21 14:06:00 -04004927#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004928msgid "warning: Unable to get device geometry for %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004929msgstr "Warnung: Die Geometrie des Gerätes „%s“ kann nicht bestimmt werden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004930
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004931#: misc/mke2fs.c:2095
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004932#, c-format
4933msgid "%s alignment is offset by %lu bytes.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004934msgstr "Die Ausrichtung von %s ist um %lu Bytes versetzt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004935
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004936#: misc/mke2fs.c:2097
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004937#, c-format
Philipp Thomasab02a742014-07-09 23:13:30 -04004938msgid "This may result in very poor performance, (re)-partitioning suggested.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004939msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004940"Dies könnte in sehr schlechter Leistung resultieren. Eine Neupartitionierung\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004941"ist angeraten.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004942
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004943#: misc/mke2fs.c:2118
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004944#, c-format
4945msgid "%d-byte blocks too big for system (max %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04004946msgstr "Blöcke mit %d Bytes sind zu groß für das Gerät (max %d)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004947
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004948#: misc/mke2fs.c:2122
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004949#, c-format
Philipp Thomasab02a742014-07-09 23:13:30 -04004950msgid "Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004951msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004952"Warnung: Blöcke mit %d Bytes sind zu groß für das Gerät (max %d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004953"\t Weiterverarbeitung wurde erzwungen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004954
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004955#: misc/mke2fs.c:2178
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004956msgid "Can't support bigalloc feature without extents feature"
Philipp Thomasab02a742014-07-09 23:13:30 -04004957msgstr "„Bigalloc“ ist nur mit „Extents“ möglich"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004958
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004959#: misc/mke2fs.c:2185
Philipp Thomas720e6362008-06-21 14:06:00 -04004960msgid ""
4961"The resize_inode and meta_bg features are not compatible.\n"
4962"They can not be both enabled simultaneously.\n"
4963msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004964"resize_inode und meta_bg sind nicht kompatibel und können\n"
4965"daher nicht gleichzeitig aktiviert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004966
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004967#: misc/mke2fs.c:2194
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004968msgid ""
4969"\n"
4970"Warning: the bigalloc feature is still under development\n"
4971"See https://ext4.wiki.kernel.org/index.php/Bigalloc for more information\n"
4972"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04004973msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004974"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004975"Warnung: „bigalloc“ befindet sich noch in Entwicklung.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004976"Lesen Sie https://ext4.wiki.kernel.org/index.php/Bigalloc für weitere\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004977"Informationen.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004978"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04004979
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004980#: misc/mke2fs.c:2205
Theodore Ts'obc759702005-05-09 20:40:55 -04004981msgid "reserved online resize blocks not supported on non-sparse filesystem"
4982msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004983"Reservierte Blöcke für die Online-Größenänderung werden auf Nicht-Sparse-\n"
4984"Dateisystemen nicht unterstützt."
Theodore Ts'obc759702005-05-09 20:40:55 -04004985
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004986#: misc/mke2fs.c:2214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004987msgid "blocks per group count out of range"
Philipp Thomasab02a742014-07-09 23:13:30 -04004988msgstr "Die Anzahl der Blöcke pro Gruppe ist außerhalb des gültigen Bereichs."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004989
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004990#: misc/mke2fs.c:2238
Philipp Thomas720e6362008-06-21 14:06:00 -04004991msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
Philipp Thomasab02a742014-07-09 23:13:30 -04004992msgstr "Flex_bg ist nicht aktiviert, daher darf dafür auch keine Größe angegeben werden."
Theodore Ts'o6956f612005-12-31 16:46:15 -05004993
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004994#: misc/mke2fs.c:2250
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004995#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04004996msgid "invalid inode size %d (min %d/max %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04004997msgstr "unzulässige Inode-Größe %d (min %d/max %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004998
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004999#: misc/mke2fs.c:2268
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005000#, c-format
5001msgid "too many inodes (%llu), raise inode ratio?"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005002msgstr "zu wenige Inodes (%llu), Anzahl erhöhen?"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005003
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005004#: misc/mke2fs.c:2275
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005005#, c-format
5006msgid "too many inodes (%llu), specify < 2^32 inodes"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005007msgstr "zu viele Inodes (%llu), geben Sie weniger als 2^32 Inodes an"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005008
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005009#: misc/mke2fs.c:2289
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005010#, c-format
5011msgid ""
5012"inode_size (%u) * inodes_count (%u) too big for a\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005013"\tfilesystem with %llu blocks, specify higher inode_ratio (-i)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005014"\tor lower inode count (-N).\n"
5015msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005016"inode_size (%u) * inodes_count (%u) ist zu groß für ein\n"
5017"\tDateisystem mit %llu Blöcken, geben Sie ein höheres inode_ratio (-i)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005018"\tan oder eine niedrigere Anzahl Inodes (-N) an.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005019
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005020#: misc/mke2fs.c:2416
Philipp Thomas720e6362008-06-21 14:06:00 -04005021#, c-format
5022msgid ""
5023"Overwriting existing filesystem; this can be undone using the command:\n"
5024" e2undo %s %s\n"
5025"\n"
5026msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005027"Das bestehende Dateisystem wird überschrieben, dies kann mittels des Befehls\n"
5028"„e2undo %s %s“ rückgängig gemacht werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005029
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005030#: misc/mke2fs.c:2430
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005031msgid "while trying to setup undo file\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005032msgstr "beim Versuch, die Datei mit den Daten zur Rückgängigmachung anzulegen\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005033
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005034#: misc/mke2fs.c:2456
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005035msgid "Discarding device blocks: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005036msgstr "Geräteblöcke werden verworfen: "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005037
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005038#: misc/mke2fs.c:2472
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005039msgid "failed - "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005040msgstr "gescheitert - "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005041
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005042#: misc/mke2fs.c:2594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005043msgid "while setting up superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005044msgstr "beim Erstellen des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005045
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005046#: misc/mke2fs.c:2610
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005047msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
5048msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005049"Verwerfen war erfolgreich und wird Nullen zurück liefern - daher wird\n"
5050"das Löschen der Inode-Tabelle übersprungen\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005051
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005052#: misc/mke2fs.c:2698
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005053#, c-format
5054msgid "unknown os - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005055msgstr "unbekanntes Betriebssystem - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005056
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005057#: misc/mke2fs.c:2750
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005058msgid "Allocating group tables: "
Philipp Thomasab02a742014-07-09 23:13:30 -04005059msgstr "beim Anfordern von Speicher für die Gruppentabellen: "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005060
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005061#: misc/mke2fs.c:2758
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005062msgid "while trying to allocate filesystem tables"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005063msgstr "beim Anfordern von Speicher für die Dateisystemtabellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005064
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005065#: misc/mke2fs.c:2767
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005066msgid ""
5067"\n"
5068"\twhile converting subcluster bitmap"
5069msgstr ""
5070"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005071"\tbeim Konvertieren der Subclusterbitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005072
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005073#: misc/mke2fs.c:2810
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005074#, c-format
5075msgid "while zeroing block %llu at end of filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04005076msgstr "beim Nullen von Block %llu am Ende des Dateisystems"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005077
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005078#: misc/mke2fs.c:2824
Theodore Ts'obc759702005-05-09 20:40:55 -04005079msgid "while reserving blocks for online resize"
Philipp Thomasab02a742014-07-09 23:13:30 -04005080msgstr "beim Reservieren von Blöcken für die Online-Größenänderung"
Theodore Ts'obc759702005-05-09 20:40:55 -04005081
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005082#: misc/mke2fs.c:2836 misc/tune2fs.c:679
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005083msgid "journal"
5084msgstr "Journal"
5085
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005086#: misc/mke2fs.c:2848
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005087#, c-format
5088msgid "Adding journal to device %s: "
Philipp Thomasab02a742014-07-09 23:13:30 -04005089msgstr "Ein Journal wird auf Gerät %s hinzugefügt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005090
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005091#: misc/mke2fs.c:2855
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005092#, c-format
5093msgid ""
5094"\n"
5095"\twhile trying to add journal to device %s"
5096msgstr ""
5097"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005098"\tbeim Versuch, ein Journal auf Gerät %s hinzuzufügen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005099
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005100#: misc/mke2fs.c:2860 misc/mke2fs.c:2891 misc/tune2fs.c:708 misc/tune2fs.c:727
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005101msgid "done\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005102msgstr "erledgt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005103
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005104#: misc/mke2fs.c:2867
Philipp Thomas77c871a2010-04-19 16:59:02 -04005105msgid "Skipping journal creation in super-only mode\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005106msgstr "Die Erzeugung eines Journals wird im Nur-Super-Modus übersprungen\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005107
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005108#: misc/mke2fs.c:2878
Philipp Thomas68801282008-07-17 11:47:00 -04005109#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005110msgid "Creating journal (%u blocks): "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005111msgstr "Das Journal (%u Blöcke) wird angelegt: "
Philipp Thomas720e6362008-06-21 14:06:00 -04005112
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005113#: misc/mke2fs.c:2887
Philipp Thomasedc733d2012-04-22 15:38:42 -04005114msgid ""
5115"\n"
5116"\twhile trying to create journal"
5117msgstr ""
5118"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005119"\tbeim Anlegen des Journals"
Philipp Thomasedc733d2012-04-22 15:38:42 -04005120
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005121#: misc/mke2fs.c:2899 misc/tune2fs.c:483
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005122msgid ""
5123"\n"
5124"Error while enabling multiple mount protection feature."
5125msgstr ""
5126"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005127"Fehler beim Aktivieren des Schutzes gegen mehrfaches Einhängen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005128
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005129#: misc/mke2fs.c:2904
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005130#, c-format
5131msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005132msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005133"Der Schutz gegen mehrfaches Einhängen wurde aktiviert mit einem\n"
5134"Aktualisierungsintervall von %d Sekunden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005135
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005136#: misc/mke2fs.c:2921
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005137msgid "Writing superblocks and filesystem accounting information: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005138msgstr ""
5139"Die Superblöcke und die Informationen über die Dateisystemnutzung werden\n"
5140"geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005141
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005142#: misc/mke2fs.c:2928
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005143msgid ""
5144"\n"
5145"Warning, had trouble writing out superblocks."
5146msgstr ""
5147"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005148"Es gab Schwierigkeiten beim Schreiben der Superblöcke."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005149
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005150#: misc/mke2fs.c:2930
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005151msgid ""
5152"done\n"
5153"\n"
5154msgstr ""
5155"erledigt\n"
5156"\n"
5157
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005158#: misc/mklost+found.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005159msgid "Usage: mklost+found\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005160msgstr "Aufruf: mklost+found\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005161
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005162#: misc/partinfo.c:41
Philipp Thomasa700f512008-08-29 08:49:57 -04005163#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005164msgid ""
5165"Usage: %s device...\n"
5166"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005167"Prints out the partition information for each given device.\n"
5168"For example: %s /dev/hda\n"
5169"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005170msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005171"Aufruf: %s Gerät…\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005172"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005173"Gibt Informationen über die Partitionierung jedes angegebenen Geräts aus.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005174"Zum Beispiel: %s /dev/hda\n"
5175"\n"
5176
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005177#: misc/partinfo.c:51
Philipp Thomas40771272008-09-07 22:55:25 -04005178#, c-format
5179msgid "Cannot open %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005180msgstr "%s kann nicht geöffnet werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005181
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005182#: misc/partinfo.c:57
Philipp Thomas40771272008-09-07 22:55:25 -04005183#, c-format
5184msgid "Cannot get geometry of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005185msgstr "Die Geometrie von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005186
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005187#: misc/partinfo.c:65
Philipp Thomas40771272008-09-07 22:55:25 -04005188#, c-format
5189msgid "Cannot get size of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005190msgstr "Die Größe von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005191
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005192#: misc/partinfo.c:71
Philipp Thomas40771272008-09-07 22:55:25 -04005193#, c-format
5194msgid "%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005195msgstr "%s: h=%3d s=%3d c=%4d Start=%8d Größe=%8lu Ende=%8d\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005196
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005197#: misc/tune2fs.c:112
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005198msgid "Please run e2fsck on the filesystem.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005199msgstr "Bitte lassen Sie e2fsck dieses Dateisystem überprüfen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005200
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005201#: misc/tune2fs.c:121
Philipp Thomasb93349a2014-05-31 13:32:39 -04005202#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005203msgid ""
Theodore Ts'o197abba2005-06-20 18:00:23 -04005204"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005205"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005206"\t[-m reserved_blocks_percent] [-o [^]mount_options[,...]] [-p mmp_update_interval]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005207"\t[-r reserved_blocks_count] [-u user] [-C mount_count] [-L volume_label]\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005208"\t[-M last_mounted_dir] [-O [^]feature[,...]]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005209"\t[-Q quota_options]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005210"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID]\n"
5211"\t[ -I new_inode_size ] device\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005212msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005213"Aufruf: %s [-c max_Anzahl_Einhängungen] [-e Fehlerverhalten] [-g Gruppe]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005214"\t[-i Intervall[d|m|w]] [-j] [-J Journal_Optionen] [-l]\n"
5215"\t[-m reservierte_Blöcke_Prozent] [-o [^]Einhängeoptionen[,...]] [-p mmp_Aktualisierungsintervall]\n"
5216"\t[-r Anzahl_reservierter_Blöcke] [-u Benutzer] [-C Anzahl_Einhängungen] [-L Volume_Kennung]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005217"\t[-M letztes_eingehängtes_Verzeichnis] [-O [^]Eigenschaft[,...]]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005218"\t[-Q Quota-Optionen]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005219"\t[-E erweiterte_Optionen[,...]] [-T Zeitpunkt_letzter_Prüfung] [-U UUID]\n"
5220"\t[ -I neue_Inodegröße ] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005221
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005222#: misc/tune2fs.c:217
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005223msgid "while trying to open external journal"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005224msgstr "beim Versuch, das externe Journal zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005225
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005226#: misc/tune2fs.c:222
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005227#, c-format
5228msgid "%s is not a journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005229msgstr "%s ist kein Journalgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005230
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005231#: misc/tune2fs.c:237
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005232msgid "Journal superblock not found!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005233msgstr "Der Journal-Superblock wurde nicht gefunden!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005234
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005235#: misc/tune2fs.c:248
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005236msgid "Filesystem's UUID not found on journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005237msgstr "Die UUID des Dateisystems wurde auf dem Journalgerät nicht gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005238
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005239#: misc/tune2fs.c:269
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005240msgid ""
5241"Cannot locate journal device. It was NOT removed\n"
5242"Use -f option to remove missing journal device.\n"
5243msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005244"Das Journalgerät wurde nicht gefunden. Es wurde NICHT entfernt\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005245"Bitte benutzen Sie die Option „-f“, um das fehlende Gerät zu entfernen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005246
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005247#: misc/tune2fs.c:277
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005248msgid "Journal removed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005249msgstr "Das Journal wurde entfernt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005250
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005251#: misc/tune2fs.c:321
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005252msgid "while reading bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04005253msgstr "beim Lesen der Bitmaps"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005254
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005255#: misc/tune2fs.c:329
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005256msgid "while clearing journal inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04005257msgstr "beim Zurücksetzen der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005258
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005259#: misc/tune2fs.c:340
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005260msgid "while writing journal inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04005261msgstr "beim Schreiben der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005262
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005263#: misc/tune2fs.c:372 misc/tune2fs.c:385
Philipp Thomas3e914b52011-01-24 15:03:41 -05005264msgid "(and reboot afterwards!)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005265msgstr "(und starten Sie danach das System neu)\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005266
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005267#: misc/tune2fs.c:419
Theodore Ts'o8f741372008-02-28 21:47:05 -05005268#, c-format
5269msgid "Clearing filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005270msgstr "Das Deaktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005271
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005272#: misc/tune2fs.c:425
Philipp Thomas67671422008-05-14 18:42:45 -04005273#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005274msgid "Setting filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005275msgstr "Das Aktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005276
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005277#: misc/tune2fs.c:434
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005278msgid ""
Philipp Thomas68801282008-07-17 11:47:00 -04005279"The has_journal feature may only be cleared when the filesystem is\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005280"unmounted or mounted read-only.\n"
5281msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005282"Has_journal kann nur zurückgesetzt werden, wenn das Dateisystem nicht\n"
5283"oder nur-lesbar eingehängt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005284
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005285#: misc/tune2fs.c:443
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005286msgid ""
5287"The needs_recovery flag is set. Please run e2fsck before clearing\n"
5288"the has_journal flag.\n"
5289msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005290"needs_recovery ist gesetzt. Bitte führen Sie e2fsck aus, bevor Sie\n"
5291"has_journal zurück setzen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005292
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005293#: misc/tune2fs.c:462
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005294msgid ""
5295"Setting filesystem feature 'sparse_super' not supported\n"
5296"for filesystems with the meta_bg feature enabled.\n"
5297msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005298"Das Setzen von „sparse_super“ wird auf Dateisystemen mit aktiviertem\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005299"„meta_bg“ nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005300
5301#: misc/tune2fs.c:475
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005302msgid ""
5303"The multiple mount protection feature can't\n"
5304"be set if the filesystem is mounted or\n"
5305"read-only.\n"
5306msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005307"Der Schutz vor mehrfachem Einhängen kann nur aktiviert werden, wenn das\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005308"Dateisystem nicht oder nur-lesbar eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005309
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005310#: misc/tune2fs.c:493
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005311#, c-format
5312msgid "Multiple mount protection has been enabled with update interval %ds.\n"
5313msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005314"Der Schutz vor mehrfachem Einhängen wurde mit einem Aktualisierungsintervall\n"
5315"von %d Sekunden aktiviert.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005316
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005317#: misc/tune2fs.c:502
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005318msgid ""
5319"The multiple mount protection feature cannot\n"
5320"be disabled if the filesystem is readonly.\n"
5321msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005322"Der Schutz vor mehrfachem Einhängen kann nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005323"deaktiviert werden, wenn das Dateisystem nur-lesbar\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005324"eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005325
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005326#: misc/tune2fs.c:510
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005327msgid "Error while reading bitmaps\n"
5328msgstr "Fehler beim Lesen der Bitmaps\n"
5329
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005330#: misc/tune2fs.c:519
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005331#, c-format
5332msgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005333msgstr "Die magische Zahl im MMP-Block passt nicht. Erwartet: %x, gefunden: %x\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005334
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005335#: misc/tune2fs.c:524
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005336msgid "while reading MMP block."
Philipp Thomasb93349a2014-05-31 13:32:39 -04005337msgstr "beim Lesen des MMP-Blocks."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005338
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005339#: misc/tune2fs.c:556
Philipp Thomas720e6362008-06-21 14:06:00 -04005340msgid ""
5341"Clearing the flex_bg flag would cause the the filesystem to be\n"
5342"inconsistent.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005343msgstr "Das Deaktivieren von flex_bg würde das Dateisystem inkonsistent machen.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005344
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005345#: misc/tune2fs.c:567
Philipp Thomas68801282008-07-17 11:47:00 -04005346msgid ""
5347"The huge_file feature may only be cleared when the filesystem is\n"
5348"unmounted or mounted read-only.\n"
5349msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005350"huge_file kann nur aktiviert werden, wenn das Dateisystem nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005351"oder nur-lesbar eingehängt ist.\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005352
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005353#: misc/tune2fs.c:627
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005354msgid ""
5355"\n"
5356"Warning: '^quota' option overrides '-Q'arguments.\n"
5357msgstr ""
5358"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005359"Warnung: die Option „^quota“ hat Vorrang vor „-Q“-Argumenten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005360
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005361#: misc/tune2fs.c:672
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005362msgid "The filesystem already has a journal.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005363msgstr "Das Dateisystem hat bereits ein Journal.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005364
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005365#: misc/tune2fs.c:692
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005366#, c-format
5367msgid ""
5368"\n"
5369"\twhile trying to open journal on %s\n"
5370msgstr ""
5371"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005372"\tbeim Versuch, das Journal auf %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005373
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005374#: misc/tune2fs.c:696
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005375#, c-format
5376msgid "Creating journal on device %s: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005377msgstr "Journal wird erzeugt auf Gerät %s: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005378
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005379#: misc/tune2fs.c:704
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005380#, c-format
5381msgid "while adding filesystem to journal on %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005382msgstr "beim Hinzufügen des Dateisystems zum Journal auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005383
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005384#: misc/tune2fs.c:710
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005385msgid "Creating journal inode: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005386msgstr "Journal-Inodes werden erzeugt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005387
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005388#: misc/tune2fs.c:724
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005389msgid ""
5390"\n"
5391"\twhile trying to create journal file"
5392msgstr ""
5393"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005394"\tbeim Versuch, die Journaldatei zu erzeugen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005395
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005396#: misc/tune2fs.c:799
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005397msgid "Couldn't allocate memory to parse quota options!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005398msgstr "Speicher zum Einlesen der Quota-Optionen konnte nicht reserviert werden!\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005399
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005400#: misc/tune2fs.c:821
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005401msgid ""
5402"\n"
5403"Bad quota options specified.\n"
5404"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005405"Following valid quota options are available (pass by separating with comma):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005406"\t[^]usrquota\n"
5407"\t[^]grpquota\n"
5408"\n"
5409"\n"
5410msgstr ""
5411"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005412"Es wurden ungültige Quotaoptionen angegeben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005413"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005414"Die folgenden gültigen Quotaoptionen sind verfügbar (durch Kommata getrennt\n"
5415"angeben):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005416"\t[^]usrquota\n"
5417"\t[^]grpquota\n"
5418"\n"
5419"\n"
5420
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005421#: misc/tune2fs.c:881
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005422#, c-format
5423msgid "Couldn't parse date/time specifier: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005424msgstr "Die Angabe von Zeit/Datum war unverständlich: %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005425
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005426#: misc/tune2fs.c:909 misc/tune2fs.c:922
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005427#, c-format
5428msgid "bad mounts count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005429msgstr "ungültge Anzahl Einhängungen - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005430
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005431#: misc/tune2fs.c:938
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005432#, c-format
5433msgid "bad error behavior - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005434msgstr "ungültiges Verhalten im Fehlerfall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005435
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005436#: misc/tune2fs.c:965
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005437#, c-format
5438msgid "bad gid/group name - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005439msgstr "ungültige Gruppen-ID/Gruppe - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005441#: misc/tune2fs.c:998
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005442#, c-format
5443msgid "bad interval - %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005444msgstr "ungültiges Intervall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005445
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005446#: misc/tune2fs.c:1027
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005447#, c-format
5448msgid "bad reserved block ratio - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005449msgstr "ungültiges Verhältnis reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005450
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005451#: misc/tune2fs.c:1042
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005452msgid "-o may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005453msgstr "-o darf nur einmal angegeben werden"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005454
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005455#: misc/tune2fs.c:1051
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005456msgid "-O may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005457msgstr "-O darf nur einmal angegeben werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005458
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005459#: misc/tune2fs.c:1068
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005460#, c-format
5461msgid "bad reserved blocks count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005462msgstr "ungültige Anzahl reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005463
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005464#: misc/tune2fs.c:1097
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005465#, c-format
5466msgid "bad uid/user name - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005467msgstr "falsche Benutzer-ID/Benutzername - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005468
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005469#: misc/tune2fs.c:1114
Philipp Thomas68801282008-07-17 11:47:00 -04005470#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005471msgid "bad inode size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005472msgstr "ungültige Inode-Größe - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005473
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005474#: misc/tune2fs.c:1121
Philipp Thomas720e6362008-06-21 14:06:00 -04005475#, c-format
5476msgid "Inode size must be a power of two- %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005477msgstr "Die Inode-Größe muss eine Zweierpotenz sein - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005478
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005479#: misc/tune2fs.c:1215
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005480#, c-format
5481msgid "mmp_update_interval too big: %lu\n"
5482msgstr "mmp_update_interval ist zu groß: %lu\n"
5483
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005484#: misc/tune2fs.c:1220
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005485#, c-format
5486msgid "Setting multiple mount protection update interval to %lu second\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005487msgid_plural "Setting multiple mount protection update interval to %lu seconds\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005488msgstr[0] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005489"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5490"wird auf %lu Sekunde gesetzt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005491msgstr[1] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005492"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5493"wird auf %lu Sekunden gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005494
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005495#: misc/tune2fs.c:1243
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005496#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005497msgid "Invalid RAID stride: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005498msgstr "Ungültiger RAID-Stride: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005499
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005500#: misc/tune2fs.c:1258
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005501#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005502msgid "Invalid RAID stripe-width: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005503msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005504
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005505#: misc/tune2fs.c:1273
Philipp Thomas40771272008-09-07 22:55:25 -04005506#, c-format
5507msgid "Invalid hash algorithm: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005508msgstr "Ungültiger Hash-Algorithmus: %s\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005509
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005510#: misc/tune2fs.c:1279
Philipp Thomas40771272008-09-07 22:55:25 -04005511#, c-format
5512msgid "Setting default hash algorithm to %s (%d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005513msgstr "Der Standard-Hash-Algorithmus wird auf %s (%d) gesetzt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005514
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005515#: misc/tune2fs.c:1298
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005516msgid ""
5517"\n"
5518"Bad options specified.\n"
5519"\n"
5520"Extended options are separated by commas, and may take an argument which\n"
5521"\tis set off by an equals ('=') sign.\n"
5522"\n"
5523"Valid extended options are:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005524"\tclear_mmp\n"
5525"\thash_alg=<hash algorithm>\n"
5526"\tmount_opts=<extended default mount options>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005527"\tstride=<RAID per-disk chunk size in blocks>\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005528"\tstripe_width=<RAID stride*data disks in blocks>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005529"\ttest_fs\n"
5530"\t^test_fs\n"
5531msgstr ""
5532"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005533"Falsche erweiterte Optionen angegeben.\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005534"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005535"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005536"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005537"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005538"Gültige erweiterte Optionen sind:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005539"\tclear_mmp\n"
5540"\thash_alg=<Hashalgorithmus>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005541"\tmount_opts=<erweiterte Standardeinhängoptionen>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005542"\tstride=<RAID-Blockgröße pro PLatte in Blöcken\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005543"\tstripe_width=<RAID Stride*Datenplatten in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005544"\ttest_fs\n"
5545"\t^test_fs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005546"\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005547
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005548#: misc/tune2fs.c:1764
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005549msgid "Failed to read inode bitmap\n"
5550msgstr "Die Inode-Bitmap konnte nicht gelesen werden\n"
5551
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005552#: misc/tune2fs.c:1769
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005553msgid "Failed to read block bitmap\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005554msgstr "Die Block-Bitmap konnte nicht gelesen werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005555
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005556#: misc/tune2fs.c:1786 resize/resize2fs.c:925
Philipp Thomas720e6362008-06-21 14:06:00 -04005557msgid "blocks to be moved"
5558msgstr "zu verschiebende Blöcke"
5559
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005560#: misc/tune2fs.c:1789
Philipp Thomas77c871a2010-04-19 16:59:02 -04005561msgid "Failed to allocate block bitmap when increasing inode size\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005562msgstr "Beim Erhöhen der Inode-Größe konnte keine Blockbitmap reserviert werden\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005563
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005564#: misc/tune2fs.c:1795
Philipp Thomas77c871a2010-04-19 16:59:02 -04005565msgid "Not enough space to increase inode size \n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005566msgstr "Der Platz reicht nicht aus für eine Erhöhung der Inode-Größe \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005567
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005568#: misc/tune2fs.c:1800
Philipp Thomas77c871a2010-04-19 16:59:02 -04005569msgid "Failed to relocate blocks during inode resize \n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005570msgstr "Das Verschieben von Blöcken während der Größenänderung der Inodes scheiterte \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005571
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005572#: misc/tune2fs.c:1832
Philipp Thomas77c871a2010-04-19 16:59:02 -04005573msgid ""
5574"Error in resizing the inode size.\n"
5575"Run e2undo to undo the file system changes. \n"
5576msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005577"Fehler beim Ändern der Inode-Größe.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005578"Starten Sie e2undo, um die Änderungen am Dateisystem rückgängig zu machen. \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005579
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005580#: misc/tune2fs.c:1859
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005581msgid "Couldn't allocate memory for tdb filename\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005582msgstr "Es kann kein Speicher für den Tdb-Dateinamen reserviert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005583
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005584#: misc/tune2fs.c:1880
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005585#, c-format
5586msgid "while trying to delete %s"
5587msgstr "beim Versuch, %s zu löschen"
5588
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005589#: misc/tune2fs.c:1888
Philipp Thomas77c871a2010-04-19 16:59:02 -04005590#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005591msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005592"To undo the tune2fs operation please run the command\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005593" e2undo %s %s\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005594"\n"
5595msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005596"Um die durch Tune2fs gemachten Änderungen rückgängig zu machen, starten Sie\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005597"bitte\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005598" e2undo %s %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005599"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005600
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005601#: misc/tune2fs.c:1957
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005602#, c-format
5603msgid ""
5604"MMP block magic is bad. Try to fix it by running:\n"
5605"'e2fsck -f %s'\n"
5606msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005607"Die magische Zahl des MMP-Blocks ist ungültig. Versuchen Sie, dies durch\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005608"„e2fsck -f %s“\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005609"zu beheben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005610
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005611#: misc/tune2fs.c:1975
Philipp Thomas40771272008-09-07 22:55:25 -04005612#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04005613msgid "The inode size is already %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005614msgstr "Die Inode-Größe ist bereits %lu\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005615
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005616#: misc/tune2fs.c:1982
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005617msgid "Shrinking inode size is not supported\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005618msgstr "Das Verringern der Inode-Größe wird nicht unterstützt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005619
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005620#: misc/tune2fs.c:1987
Philipp Thomasb93349a2014-05-31 13:32:39 -04005621#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005622msgid "Invalid inode size %lu (max %d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005623msgstr "Unzulässige Inode-Größe: %lu (max %d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005624
5625#: misc/tune2fs.c:2034
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005626#, c-format
5627msgid "Setting maximal mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005628msgstr "Die maximale Anzahl von Einhängungen wird auf %d gesezt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005629
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005630#: misc/tune2fs.c:2040
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005631#, c-format
5632msgid "Setting current mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005633msgstr "Die Anzahl der Einhängungen wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005634
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005635#: misc/tune2fs.c:2045
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005636#, c-format
5637msgid "Setting error behavior to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005638msgstr "Das Fehlerverhalten wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005639
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005640#: misc/tune2fs.c:2050
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005641#, c-format
5642msgid "Setting reserved blocks gid to %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005643msgstr "Die Gruppen-ID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005644
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005645#: misc/tune2fs.c:2055
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005646#, c-format
5647msgid "interval between checks is too big (%lu)"
Philipp Thomasab02a742014-07-09 23:13:30 -04005648msgstr "Der Abstand zwischen zwei Prüfläufen ist zu groß (%lu)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005649
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005650#: misc/tune2fs.c:2062
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005651#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04005652msgid "Setting interval between checks to %lu seconds\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005653msgstr "Der Abstand zwischen den Prüfläufen wird auf %lu Sekunden gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005654
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005655#: misc/tune2fs.c:2069
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005656#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005657msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005658msgstr "Der prozentuelle Anteil reservierter Blöcke wird auf %g%% (%llu Blöcke) gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005659
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005660#: misc/tune2fs.c:2075
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005661#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005662msgid "reserved blocks count is too big (%llu)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005663msgstr "Die Anzahl reservierter Blöcke ist zu groß (%llu)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005664
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005665#: misc/tune2fs.c:2082
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005666#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005667msgid "Setting reserved blocks count to %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005668msgstr "Die Anzahl reservierter Blöcke wird auf %llu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005669
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005670#: misc/tune2fs.c:2088
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005671msgid ""
5672"\n"
5673"The filesystem already has sparse superblocks.\n"
5674msgstr ""
5675"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005676"Das Dateisystem hat bereits Sparse-Superblöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005677
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005678#: misc/tune2fs.c:2092
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005679msgid ""
5680"\n"
5681"Setting the sparse superblock flag not supported\n"
5682"for filesystems with the meta_bg feature enabled.\n"
5683msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005684"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005685"Das Aktivieren von Sparse-Superblöcken wird auf Dateisystemen mit aktivierter\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005686"Eigenschaft meta_bg nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005687
5688#: misc/tune2fs.c:2103
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005689#, c-format
5690msgid ""
5691"\n"
5692"Sparse superblock flag set. %s"
5693msgstr ""
5694"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005695"Kennung „Sparse-Superblöcke“ ist gesetzt. %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005696
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005697#: misc/tune2fs.c:2108
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005698msgid ""
5699"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005700"Clearing the sparse superblock flag not supported.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005701msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005702"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005703"Das Zurücksetzen der Kennung „Sparse-Superblöcke“ wird nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005704
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005705#: misc/tune2fs.c:2116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005706#, c-format
5707msgid "Setting time filesystem last checked to %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005708msgstr "Der Zeitpunkt der letzten Prüfung des Dateisystems wird auf %s gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005709
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005710#: misc/tune2fs.c:2122
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005711#, c-format
5712msgid "Setting reserved blocks uid to %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005713msgstr "Die Benutzer-ID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005714
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005715#: misc/tune2fs.c:2154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005716msgid "Error in using clear_mmp. It must be used with -f\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005717msgstr "Fehler bei der Verwendung von clear_mmp. Es muss zusammen mit -f benutzt werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005718
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005719#: misc/tune2fs.c:2172
Philipp Thomasab02a742014-07-09 23:13:30 -04005720msgid "The quota feature may only be changed when the filesystem is unmounted.\n"
5721msgstr "Quotas können nur bei nicht eingehängten Dateisystemen geändert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005722
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005723#: misc/tune2fs.c:2191
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005724msgid "The UUID may only be changed when the filesystem is unmounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005725msgstr "Die UUID kann nur bei nicht eingehängtem Dateisystem geändert werden.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005726
5727#: misc/tune2fs.c:2219
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005728msgid "Invalid UUID format\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005729msgstr "Ungültiges UUID-Format\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005730
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005731#: misc/tune2fs.c:2232
Philipp Thomas720e6362008-06-21 14:06:00 -04005732msgid "The inode size may only be changed when the filesystem is unmounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005733msgstr "Die Inode-Größe kann nur bei ausgehängtem Dateisystem geändert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005734
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005735#: misc/tune2fs.c:2240
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005736msgid ""
5737"Changing the inode size not supported for filesystems with the flex_bg\n"
5738"feature enabled.\n"
5739msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005740"Das Ändern der Inode-Größe auf Dateisystemen mit aktiviertem flex_bg\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005741"wird nicht unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005742
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005743#: misc/tune2fs.c:2253
Philipp Thomas68801282008-07-17 11:47:00 -04005744#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005745msgid "Setting inode size %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005746msgstr "Die Inode-Größe wird auf %lu gesetzt\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005747
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005748#: misc/tune2fs.c:2256
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005749msgid "Failed to change inode size\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005750msgstr "Die Inode-Größe konnte nicht geändert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005751
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005752#: misc/tune2fs.c:2267
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005753#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005754msgid "Setting stride size to %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005755msgstr "Die Stride-Größe wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005756
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005757#: misc/tune2fs.c:2272
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005758#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005759msgid "Setting stripe width to %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005760msgstr "Die Stripebreite wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005761
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005762#: misc/tune2fs.c:2279
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005763#, c-format
5764msgid "Setting extended default mount options to '%s'\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005765msgstr "Die erweiterten Standard-Einhängeoptionen werden auf „%s“ gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005766
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005767#: misc/util.c:93
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005768msgid "<proceeding>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005769msgstr "<Verarbeitung läuft\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005770
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005771#: misc/util.c:97
Philipp Thomasb93349a2014-05-31 13:32:39 -04005772#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005773msgid "Proceed anyway (or wait %d seconds) ? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005774msgstr "Trotzdem fortfahren (oder %d Sekunden warten) ? (j,n) "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005775
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005776#: misc/util.c:101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005777msgid "Proceed anyway? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005778msgstr "Trotzdem fortfahren? (j,n) "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005779
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005780#: misc/util.c:132
Philipp Thomasb93349a2014-05-31 13:32:39 -04005781#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005782msgid "\tlast mounted on %s on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005783msgstr "\tzuletzt auf %s auf %s eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005784
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005785#: misc/util.c:135
Philipp Thomasb93349a2014-05-31 13:32:39 -04005786#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005787msgid "\tlast mounted on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005788msgstr "\tzuletzt auf %s eingehängt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005789
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005790#: misc/util.c:138
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005791#, c-format
5792msgid "\tcreated on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005793msgstr "\tauf %s erzeugt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005794
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005795#: misc/util.c:141
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005796#, c-format
5797msgid "\tlast modified on %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005798msgstr "\tzuletzt geändert %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005799
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005800#: misc/util.c:175
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005801#, c-format
5802msgid "Found a %s partition table in %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005803msgstr "In %2$s wurde eine %1$s-Partitionstabelle gefunden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005804
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005805#: misc/util.c:205
Philipp Thomasb93349a2014-05-31 13:32:39 -04005806#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005807msgid "Creating regular file %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005808msgstr "Die reguläre Datei %s wird angelegt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005809
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005810#: misc/util.c:208
Philipp Thomasb93349a2014-05-31 13:32:39 -04005811#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005812msgid "Could not open %s: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005813msgstr "%s kann nicht geöffnet werden: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005814
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005815#: misc/util.c:211
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005816msgid ""
5817"\n"
5818"The device apparently does not exist; did you specify it correctly?\n"
5819msgstr ""
5820"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005821"Das Gerät existiert offensichtlich nicht; haben Sie es korrekt angegeben?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005822
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005823#: misc/util.c:233
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005824#, c-format
5825msgid "%s is not a block special device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005826msgstr "%s ist kein spezielles Blockgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005827
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005828#: misc/util.c:255
Philipp Thomasb93349a2014-05-31 13:32:39 -04005829#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005830msgid "%s contains a %s file system labelled '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005831msgstr "%s hat ein %s-Dateisystem mit Namen „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005832
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005833#: misc/util.c:258
Philipp Thomasb93349a2014-05-31 13:32:39 -04005834#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005835msgid "%s contains a %s file system\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005836msgstr "%s hat ein %s-Dateisystem\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005837
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005838#: misc/util.c:295
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005839#, c-format
5840msgid "%s is entire device, not just one partition!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005841msgstr "%s ist das ganze Gerät und nicht nur eine einzelne Partition!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005842
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005843#: misc/util.c:318
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005844msgid "mke2fs forced anyway. Hope /etc/mtab is incorrect.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005845msgstr "mke2fs wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005846
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005847#: misc/util.c:323
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005848#, c-format
5849msgid "will not make a %s here!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005850msgstr "%s wird hier nicht angelegt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005851
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005852#: misc/util.c:330
Theodore Ts'o7ae19832005-06-19 09:45:36 -04005853msgid "mke2fs forced anyway.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005854msgstr "mke2fs wird trotzdem erzwungen.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04005855
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005856#: misc/util.c:346
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005857msgid "Couldn't allocate memory to parse journal options!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005858msgstr "Es konnte kein Speicher zum Einlesen der Journaloptionen reserviert werden!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005859
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005860#: misc/util.c:371
Philipp Thomas3e914b52011-01-24 15:03:41 -05005861#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04005862msgid ""
5863"\n"
5864"Could not find journal device matching %s\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005865msgstr ""
5866"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005867"Ein zu %s passendes Journalgerät konnte nicht gefunden werden\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04005868
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005869#: misc/util.c:398
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005870msgid ""
5871"\n"
5872"Bad journal options specified.\n"
5873"\n"
5874"Journal options are separated by commas, and may take an argument which\n"
5875"\tis set off by an equals ('=') sign.\n"
5876"\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04005877"Valid journal options are:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005878"\tsize=<journal size in megabytes>\n"
5879"\tdevice=<journal device>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005880"\tlocation=<journal location>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005881"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005882"The journal size must be between 1024 and 10240000 filesystem blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005883"\n"
5884msgstr ""
5885"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005886"Falsche Journaloptionen angegeben:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005887"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005888"Journaloptionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005889"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005890"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005891"Gültige Journaloptionen sind:\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005892"\tsize=<Journalgröße in Megabytes>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005893"\tdevice=<Journalgerät>\n"
5894"\tlocation=<Position des Journals>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005895"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005896"Die Größe des Journals muss zwischen 1024 und 10240000 Dateisystemblöcken\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005897"\tliegen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005898"\n"
5899
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005900#: misc/util.c:429
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005901msgid ""
5902"\n"
5903"Filesystem too small for a journal\n"
5904msgstr ""
5905"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005906"Das Dateisystem ist für ein Journal zu klein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005907
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005908#: misc/util.c:436
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005909#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005910msgid ""
5911"\n"
5912"The requested journal size is %d blocks; it must be\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005913"between 1024 and 10240000 blocks. Aborting.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005914msgstr ""
5915"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005916"Die gewünschte Journalgröße ist %d Blöcke; sie muss\n"
5917"zwischen 1024 und 10240000 Blöcken liegen. Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005918
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005919#: misc/util.c:444
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005920msgid ""
5921"\n"
5922"Journal size too big for filesystem.\n"
5923msgstr ""
5924"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005925"Das Journal ist für dieses Dateisystem zu groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005926
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005927#: misc/util.c:458
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005928#, c-format
5929msgid ""
5930"This filesystem will be automatically checked every %d mounts or\n"
5931"%g days, whichever comes first. Use tune2fs -c or -i to override.\n"
5932msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005933"Dieses Dateisystem wird automatisch alle %d Einhängungen oder\n"
5934"%g Tage überprüft, was immer zuerst kommt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005935
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005936#: misc/uuidd.c:48
5937#, c-format
5938msgid "Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005939msgstr "Aufruf: %s [-d] [-p Prozess-ID-Datei] [-s Socketpfad] [-T Timeout]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005940
5941#: misc/uuidd.c:50
5942#, c-format
5943msgid " %s [-r|t] [-n num] [-s socketpath]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005944msgstr " %s [-r|t] [-n Anzahl] [-s Socketpfad]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005945
5946#: misc/uuidd.c:52
5947#, c-format
5948msgid " %s -k\n"
5949msgstr " %s -k\n"
5950
5951#: misc/uuidd.c:154
5952msgid "bad arguments"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005953msgstr "ungültige Argumente"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005954
5955#: misc/uuidd.c:172
5956msgid "connect"
5957msgstr "verbinden"
5958
5959#: misc/uuidd.c:191
5960msgid "write"
5961msgstr "schreiben"
5962
5963#: misc/uuidd.c:199
5964msgid "read count"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005965msgstr "Lesezähler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005966
5967#: misc/uuidd.c:205
5968msgid "bad response length"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005969msgstr "ungültige Länge der Antwort"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005970
5971#: misc/uuidd.c:270
5972#, c-format
5973msgid "uuidd daemon already running at pid %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005974msgstr "der uuidd-Dämon läft bereits mit Prozess-ID %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005975
5976#: misc/uuidd.c:278
5977#, c-format
5978msgid "Couldn't create unix stream socket: %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005979msgstr "Es konnte kein Unix-Stream-Socket erzeugt werden: %s"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005980
5981#: misc/uuidd.c:307
5982#, c-format
5983msgid "Couldn't bind unix socket %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005984msgstr "Es konnte nicht mit Unix-Socket %s verbunden werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005985
5986#: misc/uuidd.c:315
5987#, c-format
5988msgid "Couldn't listen on unix socket %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005989msgstr "Lauschen auf Unix-Socket %s war nicht möglich: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005990
5991#: misc/uuidd.c:353
5992#, c-format
5993msgid "Error reading from client, len = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005994msgstr "Fehler beim Lesen vom Client, Länge = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005995
5996#: misc/uuidd.c:361
5997#, c-format
5998msgid "operation %d, incoming num = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005999msgstr "Operation %d, eingehende Nummer = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006000
6001#: misc/uuidd.c:380
6002#, c-format
6003msgid "Generated time UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006004msgstr "Zeit-UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006005
6006#: misc/uuidd.c:390
6007#, c-format
6008msgid "Generated random UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006009msgstr "Zufällige UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006010
6011#: misc/uuidd.c:399
6012#, c-format
6013msgid "Generated time UUID %s and subsequent UUID\n"
6014msgid_plural "Generated time UUID %s and %d subsequent UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006015msgstr[0] "Zeit-UUID %s und die folgende UUID erzeugt\n"
6016msgstr[1] "Zeit-UUID %s und die folgenden %d UUIDs erzeugt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006017
6018#: misc/uuidd.c:420
6019#, c-format
6020msgid "Generated %d UUID's:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006021msgstr "%d UUIDs erzeugt:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006022
6023#: misc/uuidd.c:432
6024#, c-format
6025msgid "Invalid operation %d\n"
6026msgstr "Ungültige Operation %d\n"
6027
6028#: misc/uuidd.c:476 misc/uuidd.c:498
6029#, c-format
6030msgid "Bad number: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006031msgstr "Ungültige Nummer: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006032
6033#: misc/uuidd.c:533 misc/uuidd.c:562
6034#, c-format
6035msgid "Error calling uuidd daemon (%s): %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006036msgstr "Fehler beim Aufruf des Uuid-Dämons (%s): %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006037
6038#: misc/uuidd.c:543
6039#, c-format
6040msgid "%s and subsequent UUID\n"
6041msgid_plural "%s and subsequent %d UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006042msgstr[0] "%s und die folgende UUID\n"
6043msgstr[1] "%s und die folgenden %d UUIDs\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006044
6045#: misc/uuidd.c:547
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006046msgid "List of UUID's:\n"
6047msgstr "Liste der UUIDs:\n"
6048
6049#: misc/uuidd.c:568
6050#, c-format
6051msgid "Unexpected reply length from server %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006052msgstr "Unerwartete Antwortlänge von Server %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006053
6054#: misc/uuidd.c:585
6055#, c-format
6056msgid "Couldn't kill uuidd running at pid %d: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006057msgstr "Der mit Prozess-ID %d laufende uuidd konnte nicht abgeschossen werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006058
6059#: misc/uuidd.c:591
6060#, c-format
6061msgid "Killed uuidd running at pid %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006062msgstr "Der mit PID %d laufende uuidd wurde abgeschossen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006063
6064#: misc/uuidgen.c:32
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006065#, c-format
6066msgid "Usage: %s [-r] [-t]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006067msgstr "Aufruf: %s [-r] [-t]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006068
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006069#: resize/extent.c:202
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006070msgid "# Extent dump:\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006071msgstr "# Dump der Erweiterung:\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006072
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006073#: resize/extent.c:203
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006074#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006075msgid "#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006076msgstr "#\tAnz=%llu, Größe=%llu, Cursor=%llu, Sortiert=%llu\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006077
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006078#: resize/main.c:44
Philipp Thomas68801282008-07-17 11:47:00 -04006079#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006080msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04006081"Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] device [new_size]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006082"\n"
6083msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006084"Aufruf: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] Gerät [neue_Größe]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006085"\n"
6086
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006087#: resize/main.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006088msgid "Extending the inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006089msgstr "Die Inode-Tabelle wird erweitert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006090
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006091#: resize/main.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006092msgid "Relocating blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006093msgstr "Blöcke werden verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006094
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006095#: resize/main.c:72
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006096msgid "Scanning inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006097msgstr "Die Inode-Tabelle wird gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006098
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006099#: resize/main.c:75
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006100msgid "Updating inode references"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006101msgstr "Die Inode-Referenzen werden aktualisiert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006102
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006103#: resize/main.c:78
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006104msgid "Moving inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006105msgstr "Die Inode-Tabelle wird verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006106
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006107#: resize/main.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006108msgid "Unknown pass?!?"
6109msgstr "Unbekannter Durchgang?!?"
6110
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006111#: resize/main.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006112#, c-format
6113msgid "Begin pass %d (max = %lu)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006114msgstr "Start von Durchgang %d (max = %lu)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006115
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006116#: resize/main.c:155
6117msgid ""
6118"\n"
6119"Resizing bigalloc file systems has not been fully tested. Proceed at\n"
6120"your own risk! Use the force option if you want to go ahead anyway.\n"
6121"\n"
6122msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006123"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006124"Die Größenveränderung von Bigalloc-Dateisystemen wurde noch nicht vollständig\n"
6125"geprüft. Deswegen handeln Sie auf eigene Gefahr!. Verwenden Sie die Option\n"
6126"„force“, wenn Sie trotzdem fortfahren wollen.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006127
6128#: resize/main.c:272
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006129#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006130msgid "while opening %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006131msgstr "beim Öffnen von %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006132
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006133#: resize/main.c:280
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006134#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006135msgid "while getting stat information for %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006136msgstr "beim Abfragen der Statusinformation für %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006137
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006138#: resize/main.c:327
Theodore Ts'o057a1592010-06-07 12:24:21 -04006139#, c-format
6140msgid ""
6141"Please run 'e2fsck -f %s' first.\n"
6142"\n"
6143msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006144"Bitte lassen Sie zuerst „e2fsck -f %s“ laufen.\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04006145"\n"
6146
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006147#: resize/main.c:346
Philipp Thomas720e6362008-06-21 14:06:00 -04006148#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006149msgid "Estimated minimum size of the filesystem: %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006150msgstr "Geschätzte minimale Größe des Dateisystems: %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006151
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006152#: resize/main.c:382
Philipp Thomas77c871a2010-04-19 16:59:02 -04006153#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006154msgid "Invalid new size: %s\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006155msgstr "Unzulässige neue Größe: %s\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006156
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006157#: resize/main.c:398
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006158msgid "New size too large to be expressed in 32 bits\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006159msgstr "Die neue Größe lässt sich nicht mehr mit 32 Bits ausdrücken\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006160
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006161#: resize/main.c:406
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006162#, c-format
6163msgid "New size smaller than minimum (%llu)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006164msgstr "Die neue Größe ist kleiner als das Minimum (%llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006165
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006166#: resize/main.c:412
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006167msgid "Invalid stride length"
Philipp Thomasab02a742014-07-09 23:13:30 -04006168msgstr "Ungültige „Stride“-Länge"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006169
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006170#: resize/main.c:436
Philipp Thomasa4edef12011-01-26 18:54:24 -05006171#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006172msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006173"The containing partition (or device) is only %llu (%dk) blocks.\n"
6174"You requested a new size of %llu blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006175"\n"
6176msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006177"Die sie enthaltende Partition (oder Gerät) ist nur %llu (%dk) Blöcke groß.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006178"Sie wollen %llu Blöcke haben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006179
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006180#: resize/main.c:443
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006181#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006182msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006183"The filesystem is already %llu blocks long. Nothing to do!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006184"\n"
6185msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006186"Das Dateisystem ist bereits %llu Blöcke lang. Nichts zu tun!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006187"\n"
6188
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006189#: resize/main.c:452
Philipp Thomas77c871a2010-04-19 16:59:02 -04006190#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006191msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006192msgstr "Die Größe des Dateisystems auf %s wird auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006193
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006194#: resize/main.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006195#, c-format
6196msgid "while trying to resize %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006197msgstr "beim Versuch, die Größe von %s zu ändern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006198
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006199#: resize/main.c:464
Philipp Thomas77c871a2010-04-19 16:59:02 -04006200#, c-format
6201msgid ""
6202"Please run 'e2fsck -fy %s' to fix the filesystem\n"
6203"after the aborted resize operation.\n"
6204msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006205"Bitte lassen Sie „e2fsck -fy %s“ laufen, um das\n"
6206"Dateisystem nach der abgebrochenen Größenänderung\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006207"zu reparieren.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006208
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006209#: resize/main.c:470
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006210#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006211msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006212"The filesystem on %s is now %llu blocks long.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006213"\n"
6214msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006215"Das Dateisystem auf %s is nun %llu Blöcke lang.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006216"\n"
6217
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006218#: resize/main.c:485
Philipp Thomas77c871a2010-04-19 16:59:02 -04006219#, c-format
6220msgid "while trying to truncate %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006221msgstr "beim Versuch, %s abzuschneiden"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006222
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006223#: resize/online.c:82
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006224msgid "kernel does not support online resize with sparse_super2"
Philipp Thomasab02a742014-07-09 23:13:30 -04006225msgstr "Der Kernel unterstützt die Online-Größenänderung mit sparse_super2 nicht"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006226
6227#: resize/online.c:87
Philipp Thomas720e6362008-06-21 14:06:00 -04006228#, c-format
6229msgid "Filesystem at %s is mounted on %s; on-line resizing required\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006230msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006231"Dateisystem bei %s ist auf %s eingehängt; Online-Größenänderung ist\n"
6232"erforderlich\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006233
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006234#: resize/online.c:91
Philipp Thomas3e914b52011-01-24 15:03:41 -05006235msgid "On-line shrinking not supported"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006236msgstr "Online-Schrumpfen wird nicht unterstützt"
Philipp Thomas720e6362008-06-21 14:06:00 -04006237
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006238#: resize/online.c:116
Philipp Thomas720e6362008-06-21 14:06:00 -04006239msgid "Filesystem does not support online resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006240msgstr "Das Dateisystem unterstützt die Online-Größenänderung nicht"
Philipp Thomas720e6362008-06-21 14:06:00 -04006241
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006242#: resize/online.c:125
Philipp Thomasd0275172013-01-15 23:30:35 -05006243msgid "Not enough reserved gdt blocks for resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006244msgstr "Nicht genug reservierte GDT-Blöcke für die Größenänderung"
Philipp Thomasd0275172013-01-15 23:30:35 -05006245
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006246#: resize/online.c:132
Philipp Thomasd0275172013-01-15 23:30:35 -05006247msgid "Kernel does not support resizing a file system this large"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006248msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006249"Der Kernel unterstützt die Online-Größenänderungen eines so großen\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006250"Dateisystems nicht"
Philipp Thomasd0275172013-01-15 23:30:35 -05006251
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006252#: resize/online.c:140
Philipp Thomas68801282008-07-17 11:47:00 -04006253#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006254msgid "while trying to open mountpoint %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04006255msgstr "beim Versuch, den Einhängepunkt %s zu öffnen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006256
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006257#: resize/online.c:145
Philipp Thomasb93349a2014-05-31 13:32:39 -04006258#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006259msgid "Old resize interface requested.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006260msgstr "Die alte Schnittstelle für Größenänderung wurde angefordert.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006261
6262#: resize/online.c:164 resize/online.c:181
Philipp Thomas720e6362008-06-21 14:06:00 -04006263msgid "Permission denied to resize filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006264msgstr "Die Erlaubnis zum Ändern der Dateisystemgröße wurde verweigert."
Philipp Thomas720e6362008-06-21 14:06:00 -04006265
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006266#: resize/online.c:167 resize/online.c:187
Philipp Thomas720e6362008-06-21 14:06:00 -04006267msgid "While checking for on-line resizing support"
Philipp Thomasab02a742014-07-09 23:13:30 -04006268msgstr "Beim Überprüfen der Unterstützung für Online-Größenänderung"
Philipp Thomas720e6362008-06-21 14:06:00 -04006269
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006270#: resize/online.c:184
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006271msgid "Kernel does not support online resizing"
Philipp Thomasab02a742014-07-09 23:13:30 -04006272msgstr "Der Kernel bietet keine Unterstützung für eine Online-Größenänderung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006273
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006274#: resize/online.c:223
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006275#, c-format
6276msgid "Performing an on-line resize of %s to %llu (%dk) blocks.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006277msgstr "Die Größe von %s wird gerade online auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006278
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006279#: resize/online.c:233
Philipp Thomas720e6362008-06-21 14:06:00 -04006280msgid "While trying to extend the last group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006281msgstr "beim Versuch, die letzte Gruppe zu erweitern"
Philipp Thomas720e6362008-06-21 14:06:00 -04006282
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006283#: resize/online.c:287
Philipp Thomas68801282008-07-17 11:47:00 -04006284#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006285msgid "While trying to add group #%d"
Philipp Thomasab02a742014-07-09 23:13:30 -04006286msgstr "beim Versuch, die Gruppe #%d hinzuzufügen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006287
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006288#: resize/online.c:298
Philipp Thomasa700f512008-08-29 08:49:57 -04006289#, c-format
Philipp Thomasab02a742014-07-09 23:13:30 -04006290msgid "Filesystem at %s is mounted on %s, and on-line resizing is not supported on this system.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006291msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006292"Das Dateisystem bei %s ist auf %s eingehängt und die Änderung der Größe im\n"
6293"laufenden System wird auf diesem System nicht unterstützt.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006294
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006295#: resize/resize2fs.c:402
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006296#, c-format
6297msgid "inodes (%llu) must be less than %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006298msgstr "Die Inodes (%llu) müssen unter %u liegen"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006299
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006300#: resize/resize2fs.c:685
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006301msgid "reserved blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006302msgstr "reservierte Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006303
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006304#: resize/resize2fs.c:930
Theodore Ts'obc759702005-05-09 20:40:55 -04006305msgid "meta-data blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006306msgstr "Metadaten-Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006307
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006308#: resize/resize2fs.c:1031 resize/resize2fs.c:1828
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006309msgid "new meta blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006310msgstr "neue Metadaten-Blöcke"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006311
6312#: resize/resize2fs.c:2046
6313msgid "Should never happen! No sb in last super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006314msgstr "Dies sollte nie geschehen! Kein sb im letzten super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006315
6316#: resize/resize2fs.c:2051
6317msgid "Should never happen! Unexpected old_desc in super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006318msgstr "Dies sollte nie geschehen! Unerwartete old_desc in super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006319
6320#: resize/resize2fs.c:2129
Theodore Ts'obc759702005-05-09 20:40:55 -04006321msgid "Should never happen: resize inode corrupt!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006322msgstr "Dies sollte nie geschehen: Der Größenänderungs-Inode ist defekt!\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05006323
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006324#: lib/ext2fs/ext2_err.c:11
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006325msgid "EXT2FS Library version 1.42.10"
Philipp Thomasab02a742014-07-09 23:13:30 -04006326msgstr "EXT2FS-Bibliothek, Version 1.42.10"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006327
6328#: lib/ext2fs/ext2_err.c:12
6329msgid "Wrong magic number for ext2_filsys structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006330msgstr "Falsche magische Zahl für eine ext2_filesys-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006331
6332#: lib/ext2fs/ext2_err.c:13
6333msgid "Wrong magic number for badblocks_list structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006334msgstr "Falsche magische Zahl für eine badblocks_list-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006335
6336#: lib/ext2fs/ext2_err.c:14
6337msgid "Wrong magic number for badblocks_iterate structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006338msgstr "Falsche magische Zahl für eine badblocks_iterate-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006339
6340#: lib/ext2fs/ext2_err.c:15
6341msgid "Wrong magic number for inode_scan structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006342msgstr "Falsche magische Zahl für eine inode_scan-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006343
6344#: lib/ext2fs/ext2_err.c:16
6345msgid "Wrong magic number for io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006346msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006347
6348#: lib/ext2fs/ext2_err.c:17
6349msgid "Wrong magic number for unix io_channel structure"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006350msgstr "Falsche magische Zahl für eine Unix io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006351
6352#: lib/ext2fs/ext2_err.c:18
6353msgid "Wrong magic number for io_manager structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006354msgstr "Falsche magische Zahl für eine io_manager-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006355
6356#: lib/ext2fs/ext2_err.c:19
6357msgid "Wrong magic number for block_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006358msgstr "Falsche magische Zahl für eine block_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006359
6360#: lib/ext2fs/ext2_err.c:20
6361msgid "Wrong magic number for inode_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006362msgstr "Falsche magische Zahl für eine inode_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006363
6364#: lib/ext2fs/ext2_err.c:21
6365msgid "Wrong magic number for generic_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006366msgstr "Falsche magische Zahl für eine generic_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006367
6368#: lib/ext2fs/ext2_err.c:22
6369msgid "Wrong magic number for test io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006370msgstr "Falsche magische Zahl für eine test-io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006371
6372#: lib/ext2fs/ext2_err.c:23
6373msgid "Wrong magic number for directory block list structure"
Philipp Thomasab02a742014-07-09 23:13:30 -04006374msgstr "Falsche magische Zahl für eine Struktur für die Liste der Verzeichnisblöcke"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006375
6376#: lib/ext2fs/ext2_err.c:24
6377msgid "Wrong magic number for icount structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006378msgstr "Falsche magische Zahl für eine icount-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006379
6380#: lib/ext2fs/ext2_err.c:25
6381msgid "Wrong magic number for Powerquest io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006382msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006383
6384#: lib/ext2fs/ext2_err.c:26
6385msgid "Wrong magic number for ext2 file structure"
Philipp Thomasab02a742014-07-09 23:13:30 -04006386msgstr "Falsche magische Zahl für eine Ext2-Datei-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006387
6388#: lib/ext2fs/ext2_err.c:27
6389msgid "Wrong magic number for Ext2 Image Header"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006390msgstr "Falsche magische Zahl für einen Ext2-Abbild-Kopf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006391
6392#: lib/ext2fs/ext2_err.c:28
6393msgid "Wrong magic number for inode io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006394msgstr "Falsche magische Zahl für eine Struktur des Inode-io_channels"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006395
6396#: lib/ext2fs/ext2_err.c:29
6397msgid "Wrong magic number for ext4 extent handle"
Philipp Thomasab02a742014-07-09 23:13:30 -04006398msgstr "Falsche magische Zahl für eine Ext4-Erweiterungshandle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006399
6400#: lib/ext2fs/ext2_err.c:30
6401msgid "Bad magic number in super-block"
6402msgstr "Ungültige magische Zahl im Superblock"
6403
6404#: lib/ext2fs/ext2_err.c:31
6405msgid "Filesystem revision too high"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006406msgstr "Die Dateisystemversion ist zu hoch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006407
6408#: lib/ext2fs/ext2_err.c:32
6409msgid "Attempt to write to filesystem opened read-only"
Philipp Thomasab02a742014-07-09 23:13:30 -04006410msgstr "Dies ist ein Versuch, auf ein nur-lesbar geöffnetes Dateisystem zu schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006411
6412#: lib/ext2fs/ext2_err.c:33
6413msgid "Can't read group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006414msgstr "Die Gruppendeskriptoren konnten nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006415
6416#: lib/ext2fs/ext2_err.c:34
6417msgid "Can't write group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006418msgstr "Die Gruppendeskriptoren konnten nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006419
6420#: lib/ext2fs/ext2_err.c:35
6421msgid "Corrupt group descriptor: bad block for block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006422msgstr "Defekter Gruppendeskriptor: defekter Block für die Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006423
6424#: lib/ext2fs/ext2_err.c:36
6425msgid "Corrupt group descriptor: bad block for inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006426msgstr "Defekter Gruppendeskriptor: defekter Block für die Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006427
6428#: lib/ext2fs/ext2_err.c:37
6429msgid "Corrupt group descriptor: bad block for inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006430msgstr "Defekter Gruppendeskriptor: defekter Block für die Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006431
6432#: lib/ext2fs/ext2_err.c:38
6433msgid "Can't write an inode bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006434msgstr "Eine Inode-Bitmap konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006435
6436#: lib/ext2fs/ext2_err.c:39
6437msgid "Can't read an inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006438msgstr "Eine Inode-Bitmap konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006439
6440#: lib/ext2fs/ext2_err.c:40
Darrick J. Wong580d8a02013-10-07 09:20:28 -04006441msgid "Can't write a block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006442msgstr "Eine Block-Bitmap konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006443
6444#: lib/ext2fs/ext2_err.c:41
Darrick J. Wongba0230f2013-12-12 12:41:58 -05006445msgid "Can't read a block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006446msgstr "Eine Block-Bitmap konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006447
6448#: lib/ext2fs/ext2_err.c:42
6449msgid "Can't write an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006450msgstr "Eine Inode-Tabelle konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006451
6452#: lib/ext2fs/ext2_err.c:43
6453msgid "Can't read an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006454msgstr "Eine Inode-Tabelle konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006455
6456#: lib/ext2fs/ext2_err.c:44
6457msgid "Can't read next inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04006458msgstr "Der nächste Inode kann nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006459
6460#: lib/ext2fs/ext2_err.c:45
6461msgid "Filesystem has unexpected block size"
6462msgstr "Das Dateisystem hat eine unerwartete Blockgröße"
6463
6464#: lib/ext2fs/ext2_err.c:46
6465msgid "EXT2 directory corrupted"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006466msgstr "Das Ext2-Verzeichnis ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006467
6468#: lib/ext2fs/ext2_err.c:47
6469msgid "Attempt to read block from filesystem resulted in short read"
Philipp Thomasab02a742014-07-09 23:13:30 -04006470msgstr "Der Versuch, einen Block vom Dateisystem zu lesen, endete in kurzem Lesen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006471
6472#: lib/ext2fs/ext2_err.c:48
6473msgid "Attempt to write block to filesystem resulted in short write"
Philipp Thomasab02a742014-07-09 23:13:30 -04006474msgstr "Der Versuch, einen Block auf das Dateisystem zu schreiben, endete in kurzem Schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006475
6476#: lib/ext2fs/ext2_err.c:49
6477msgid "No free space in the directory"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006478msgstr "Kein freier Platz im Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006479
6480#: lib/ext2fs/ext2_err.c:50
6481msgid "Inode bitmap not loaded"
Philipp Thomasab02a742014-07-09 23:13:30 -04006482msgstr "die Inode-Bitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006483
6484#: lib/ext2fs/ext2_err.c:51
6485msgid "Block bitmap not loaded"
Philipp Thomasab02a742014-07-09 23:13:30 -04006486msgstr "die Block-Bitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006487
6488#: lib/ext2fs/ext2_err.c:52
6489msgid "Illegal inode number"
Philipp Thomasab02a742014-07-09 23:13:30 -04006490msgstr "Ungültige Inode-Nummer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006491
6492#: lib/ext2fs/ext2_err.c:53
6493msgid "Illegal block number"
Philipp Thomasab02a742014-07-09 23:13:30 -04006494msgstr "Ungültige Blockzahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006495
6496#: lib/ext2fs/ext2_err.c:54
6497msgid "Internal error in ext2fs_expand_dir"
6498msgstr "Interner Fehler in ext2fs_expand_dir"
6499
6500#: lib/ext2fs/ext2_err.c:55
6501msgid "Not enough space to build proposed filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006502msgstr "Nicht genug Platz, um das vorgeschlagene Dateisystem zu bauen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006503
6504#: lib/ext2fs/ext2_err.c:56
6505msgid "Illegal block number passed to ext2fs_mark_block_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006506msgstr "Es wurde eine ungültige Blocknummer an ext2fs_mark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006507
6508#: lib/ext2fs/ext2_err.c:57
6509msgid "Illegal block number passed to ext2fs_unmark_block_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006510msgstr "Es wurde eine ungültige Blocknummer an ext2fs_unmark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006511
6512#: lib/ext2fs/ext2_err.c:58
6513msgid "Illegal block number passed to ext2fs_test_block_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006514msgstr "Es wurde eine ungültige Blocknummer an ext2fs_test_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006515
6516#: lib/ext2fs/ext2_err.c:59
6517msgid "Illegal inode number passed to ext2fs_mark_inode_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006518msgstr "Es wurde eine ungültige Inode-Nummer an ext2fs_mark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006519
6520#: lib/ext2fs/ext2_err.c:60
6521msgid "Illegal inode number passed to ext2fs_unmark_inode_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006522msgstr "Es wurde eine ungültige Inode-Nummer an ext2fs_unmark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006523
6524#: lib/ext2fs/ext2_err.c:61
6525msgid "Illegal inode number passed to ext2fs_test_inode_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006526msgstr "Es wurde eine ungültige Inode-Nummer an ext2fs_test_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006527
6528#: lib/ext2fs/ext2_err.c:62
6529msgid "Attempt to fudge end of block bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006530msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006531"Es wird versucht, das Ende der Block-Bitmap jenseits des wirklichen Endes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006532"zu platzieren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006533
6534#: lib/ext2fs/ext2_err.c:63
6535msgid "Attempt to fudge end of inode bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006536msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006537"Es wird versucht, das Ende der Inode-Bitmap jenseits des wirklichen Endes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006538"zu platzieren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006539
6540#: lib/ext2fs/ext2_err.c:64
6541msgid "Illegal indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006542msgstr "Es wurde ein ungültiger indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006543
6544#: lib/ext2fs/ext2_err.c:65
6545msgid "Illegal doubly indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006546msgstr "Es wurde ein ungültiger doppelt indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006547
6548#: lib/ext2fs/ext2_err.c:66
6549msgid "Illegal triply indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006550msgstr "Es wurde ein ungültiger dreifach indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006551
6552#: lib/ext2fs/ext2_err.c:67
6553msgid "Block bitmaps are not the same"
Philipp Thomasab02a742014-07-09 23:13:30 -04006554msgstr "Die Block-Bitmaps sind nicht identisch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006555
6556#: lib/ext2fs/ext2_err.c:68
6557msgid "Inode bitmaps are not the same"
Philipp Thomasab02a742014-07-09 23:13:30 -04006558msgstr "Die Inode-Bitmaps sind nicht identisch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006559
6560#: lib/ext2fs/ext2_err.c:69
6561msgid "Illegal or malformed device name"
Philipp Thomasab02a742014-07-09 23:13:30 -04006562msgstr "Ungültiger oder fehlerhafter Gerätename"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006563
6564#: lib/ext2fs/ext2_err.c:70
6565msgid "A block group is missing an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006566msgstr "Einer Blockgruppe fehlt eine Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006567
6568#: lib/ext2fs/ext2_err.c:71
6569msgid "The ext2 superblock is corrupt"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006570msgstr "Der Ext2-Superblock ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006571
6572#: lib/ext2fs/ext2_err.c:72
6573msgid "Illegal generic bit number passed to ext2fs_mark_generic_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006574msgstr "Eine unzulässige generische Bitnummer wurde an ext2fs_mark_generic_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006575
6576#: lib/ext2fs/ext2_err.c:73
6577msgid "Illegal generic bit number passed to ext2fs_unmark_generic_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006578msgstr "Eine unzulässige generische Bitnummer wurde an ext2fs_unmark_generic_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006579
6580#: lib/ext2fs/ext2_err.c:74
6581msgid "Illegal generic bit number passed to ext2fs_test_generic_bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006582msgstr "Eine unzulässige generische Bitnummer wurde an ext2fs_test_generic_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006583
6584#: lib/ext2fs/ext2_err.c:75
6585msgid "Too many symbolic links encountered."
Philipp Thomasab02a742014-07-09 23:13:30 -04006586msgstr "Es wurden zu viele symbolische Verknüpfungen gefunden."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006587
6588#: lib/ext2fs/ext2_err.c:76
6589msgid "The callback function will not handle this case"
Philipp Thomasab02a742014-07-09 23:13:30 -04006590msgstr "Die Callback-Funktion kann diesen Fall nicht handhaben."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006591
6592#: lib/ext2fs/ext2_err.c:77
6593msgid "The inode is from a bad block in the inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006594msgstr "Der Inode kommt von einem beschädigten Block in der Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006595
6596#: lib/ext2fs/ext2_err.c:78
6597msgid "Filesystem has unsupported feature(s)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006598msgstr "Das Dateisystem besitzt nicht unterstützte Eigenschaft(en)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006599
6600#: lib/ext2fs/ext2_err.c:79
6601msgid "Filesystem has unsupported read-only feature(s)"
Philipp Thomasab02a742014-07-09 23:13:30 -04006602msgstr "Das Dateisystem besitzt nicht unterstützte Nur-Lesen-Eigenschaft(en):"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006603
6604#: lib/ext2fs/ext2_err.c:80
6605msgid "IO Channel failed to seek on read or write"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006606msgstr "Der EA-Kanal hat nicht positioniert beim Lesen oder Schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006607
6608#: lib/ext2fs/ext2_err.c:81
6609msgid "Memory allocation failed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006610msgstr "Die Reservierung von Speicher schlug fehl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006611
6612#: lib/ext2fs/ext2_err.c:82
6613msgid "Invalid argument passed to ext2 library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006614msgstr "Ein ungültiges Argument wurde an die Ext2-Bibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006615
6616#: lib/ext2fs/ext2_err.c:83
6617msgid "Could not allocate block in ext2 filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006618msgstr "Im Ext2-Dateisystem konnte kein Block angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006619
6620#: lib/ext2fs/ext2_err.c:84
6621msgid "Could not allocate inode in ext2 filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006622msgstr "Im Ext2-Dateisystem konnte kein Inode angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006623
6624#: lib/ext2fs/ext2_err.c:85
6625msgid "Ext2 inode is not a directory"
Philipp Thomasab02a742014-07-09 23:13:30 -04006626msgstr "Der Ext2-Inode weist nicht auf ein Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006627
6628#: lib/ext2fs/ext2_err.c:86
6629msgid "Too many references in table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006630msgstr "Zu viele Referenzen in der Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006631
6632#: lib/ext2fs/ext2_err.c:87
6633msgid "File not found by ext2_lookup"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006634msgstr "Die Datei wurde von ext2_lookup nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006635
6636#: lib/ext2fs/ext2_err.c:88
6637msgid "File open read-only"
Philipp Thomasab02a742014-07-09 23:13:30 -04006638msgstr "Die Datei wurde nur-lesbar geöffnet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006639
6640#: lib/ext2fs/ext2_err.c:89
6641msgid "Ext2 directory block not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006642msgstr "Der Verzeichnisblock des ext2-Dateisystems wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006643
6644#: lib/ext2fs/ext2_err.c:90
6645msgid "Ext2 directory already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006646msgstr "Das Ext2-Verzeichnis existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006647
6648#: lib/ext2fs/ext2_err.c:91
6649msgid "Unimplemented ext2 library function"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006650msgstr "Nicht implementierte Ext2-Bibliotheksfunktion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006651
6652#: lib/ext2fs/ext2_err.c:92
6653msgid "User cancel requested"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006654msgstr "Der Benutzer hat abgebrochen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006655
6656#: lib/ext2fs/ext2_err.c:93
6657msgid "Ext2 file too big"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006658msgstr "Die Ext2-Datei ist zu groß"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006659
6660#: lib/ext2fs/ext2_err.c:94
6661msgid "Supplied journal device not a block device"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006662msgstr "Das angegebene Journalgerät ist kein blockorientiertes Gerät"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006663
6664#: lib/ext2fs/ext2_err.c:95
6665msgid "Journal superblock not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006666msgstr "Der Journal-Superblock wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006667
6668#: lib/ext2fs/ext2_err.c:96
6669msgid "Journal must be at least 1024 blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006670msgstr "Das Journal muß mindestens 1024 Blöcke groß sein"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006671
6672#: lib/ext2fs/ext2_err.c:97
6673msgid "Unsupported journal version"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006674msgstr "Nicht unterstützte Journalversion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006675
6676#: lib/ext2fs/ext2_err.c:98
6677msgid "Error loading external journal"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006678msgstr "Fehler beim Laden des externen Journals"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006679
6680#: lib/ext2fs/ext2_err.c:99
6681msgid "Journal not found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006682msgstr "Das Journal wurde nicht gefunden."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006683
6684#: lib/ext2fs/ext2_err.c:100
6685msgid "Directory hash unsupported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006686msgstr "Verzeichnishashes werden nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006687
6688#: lib/ext2fs/ext2_err.c:101
6689msgid "Illegal extended attribute block number"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006690msgstr "Die Nummer des Blocks für erweiterte Attribute ist unzulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006691
6692#: lib/ext2fs/ext2_err.c:102
6693msgid "Cannot create filesystem with requested number of inodes"
Philipp Thomasab02a742014-07-09 23:13:30 -04006694msgstr "Ein Dateisystem mit der gewünschten Anzahl Inodes kann nicht erzeugt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006695
6696#: lib/ext2fs/ext2_err.c:103
6697msgid "E2image snapshot not in use"
Philipp Thomasab02a742014-07-09 23:13:30 -04006698msgstr "Der E2image-Schnappschuss wird nicht verwendet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006699
6700#: lib/ext2fs/ext2_err.c:104
6701msgid "Too many reserved group descriptor blocks"
Philipp Thomasab02a742014-07-09 23:13:30 -04006702msgstr "Zu viele reservierte Blöcke für Gruppen-Deskriptoren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006703
6704#: lib/ext2fs/ext2_err.c:105
6705msgid "Resize inode is corrupt"
Philipp Thomasab02a742014-07-09 23:13:30 -04006706msgstr "Der Größenänderungs-Inode ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006707
6708#: lib/ext2fs/ext2_err.c:106
6709msgid "Tried to set block bmap with missing indirect block"
Philipp Thomasab02a742014-07-09 23:13:30 -04006710msgstr "Es wurde versucht, eine Block-Bitmap mit fehlendem indirektem Block zu schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006711
6712#: lib/ext2fs/ext2_err.c:107
6713msgid "TDB: Success"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006714msgstr "TDB: Erfolg"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006715
6716#: lib/ext2fs/ext2_err.c:108
6717msgid "TDB: Corrupt database"
Philipp Thomasab02a742014-07-09 23:13:30 -04006718msgstr "TDB: Datenbank ist beschädigt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006719
6720#: lib/ext2fs/ext2_err.c:109
6721msgid "TDB: IO Error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006722msgstr "TDB: EA-Fehler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006723
6724#: lib/ext2fs/ext2_err.c:110
6725msgid "TDB: Locking error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006726msgstr "TDB: Fehler beim Sperren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006727
6728#: lib/ext2fs/ext2_err.c:111
6729msgid "TDB: Out of memory"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006730msgstr "TDB: Hauptspeicher erschöpft"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006731
6732#: lib/ext2fs/ext2_err.c:112
6733msgid "TDB: Record exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006734msgstr "TDB: Datensatz existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006735
6736#: lib/ext2fs/ext2_err.c:113
6737msgid "TDB: Lock exists on other keys"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006738msgstr "TDB: Die Sperre existiert schon auf anderen Schlüsseln"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006739
6740#: lib/ext2fs/ext2_err.c:114
6741msgid "TDB: Invalid parameter"
6742msgstr "TDB: Ungültiger Parameter"
6743
6744#: lib/ext2fs/ext2_err.c:115
6745msgid "TDB: Record does not exist"
Philipp Thomasab02a742014-07-09 23:13:30 -04006746msgstr "TDB: Der Datensatz existiert nicht"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006747
6748#: lib/ext2fs/ext2_err.c:116
6749msgid "TDB: Write not permitted"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006750msgstr "TDB: Schreiben ist nicht zulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006751
6752#: lib/ext2fs/ext2_err.c:117
6753msgid "Ext2fs directory block list is empty"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006754msgstr "Die Liste der Ext2fs-Verzeichnisblöcke ist leer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006755
6756#: lib/ext2fs/ext2_err.c:118
6757msgid "Attempt to modify a block mapping via a read-only block iterator"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006758msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006759"Es wird versucht, eine Blockzuweisung über einen nur-lesbaren Blockiterator zu\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006760"ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006761
6762#: lib/ext2fs/ext2_err.c:119
6763msgid "Wrong magic number for ext4 extent saved path"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006764msgstr "Falsche magische Zahl für einen gespeicherten Pfad zu ext4-Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006765
6766#: lib/ext2fs/ext2_err.c:120
6767msgid "Wrong magic number for 64-bit generic bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006768msgstr "Falsche magische Zahl für eine generische 64-Bit-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006769
6770#: lib/ext2fs/ext2_err.c:121
6771msgid "Wrong magic number for 64-bit block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006772msgstr "Falsche magische Zahl für eine 64-Bit-Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006773
6774#: lib/ext2fs/ext2_err.c:122
6775msgid "Wrong magic number for 64-bit inode bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006776msgstr "Falsche magische Zahl für eine 64-Bit-Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006777
6778#: lib/ext2fs/ext2_err.c:123
6779msgid "Wrong magic number --- RESERVED_13"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006780msgstr "Falsche magische Zahl --- RESERVED_13"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006781
6782#: lib/ext2fs/ext2_err.c:124
6783msgid "Wrong magic number --- RESERVED_14"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006784msgstr "Falsche magische Zahl --- RESERVED_14"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006785
6786#: lib/ext2fs/ext2_err.c:125
6787msgid "Wrong magic number --- RESERVED_15"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006788msgstr "Falsche magische Zahl --- RESERVED_15"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006789
6790#: lib/ext2fs/ext2_err.c:126
6791msgid "Wrong magic number --- RESERVED_16"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006792msgstr "Falsche magische Zahl --- RESERVED_16"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006793
6794#: lib/ext2fs/ext2_err.c:127
6795msgid "Wrong magic number --- RESERVED_17"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006796msgstr "Falsche magische Zahl --- RESERVED_17"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006797
6798#: lib/ext2fs/ext2_err.c:128
6799msgid "Wrong magic number --- RESERVED_18"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006800msgstr "Falsche magische Zahl --- RESERVED_18"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006801
6802#: lib/ext2fs/ext2_err.c:129
6803msgid "Wrong magic number --- RESERVED_19"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006804msgstr "Falsche magische Zahl --- RESERVED_19"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006805
6806#: lib/ext2fs/ext2_err.c:130
6807msgid "Corrupt extent header"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006808msgstr "Defekter Kopf einer Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006809
6810#: lib/ext2fs/ext2_err.c:131
6811msgid "Corrupt extent index"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006812msgstr "Beschädigter Erweiterungsindex"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006813
6814#: lib/ext2fs/ext2_err.c:132
6815msgid "Corrupt extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006816msgstr "Beschädigte Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006817
6818#: lib/ext2fs/ext2_err.c:133
6819msgid "No free space in extent map"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006820msgstr "Es ist kein freier Platz in der Karte der Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006821
6822#: lib/ext2fs/ext2_err.c:134
6823msgid "Inode does not use extents"
Philipp Thomasab02a742014-07-09 23:13:30 -04006824msgstr "Der Inode verwendet keine Erweiterungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006825
6826#: lib/ext2fs/ext2_err.c:135
6827msgid "No 'next' extent"
6828msgstr "Keine „nächste“ Erweiterung"
6829
6830#: lib/ext2fs/ext2_err.c:136
6831msgid "No 'previous' extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006832msgstr "Keine „vorherige“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006833
6834#: lib/ext2fs/ext2_err.c:137
6835msgid "No 'up' extent"
Philipp Thomasab02a742014-07-09 23:13:30 -04006836msgstr "Keine „obere“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006837
6838#: lib/ext2fs/ext2_err.c:138
6839msgid "No 'down' extent"
Philipp Thomasab02a742014-07-09 23:13:30 -04006840msgstr "Keine „untere“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006841
6842#: lib/ext2fs/ext2_err.c:139
6843msgid "No current node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006844msgstr "Kein aktueller Knoten"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006845
6846#: lib/ext2fs/ext2_err.c:140
6847msgid "Ext2fs operation not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006848msgstr "Diese Ext2fs-Operation wird nicht unterstẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006849
6850#: lib/ext2fs/ext2_err.c:141
6851msgid "No room to insert extent in node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006852msgstr "Es gibt keinen Platz, um die Erweiterung in den Knoten einzufügen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006853
6854#: lib/ext2fs/ext2_err.c:142
6855msgid "Splitting would result in empty node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006856msgstr "Die Aufteilung würde zu einem leeren Knoten führen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006857
6858#: lib/ext2fs/ext2_err.c:143
6859msgid "Extent not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006860msgstr "Die Erweiterung wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006861
6862#: lib/ext2fs/ext2_err.c:144
6863msgid "Operation not supported for inodes containing extents"
Philipp Thomasab02a742014-07-09 23:13:30 -04006864msgstr "Die Operation wird für Inodes mit Erweiterungen nicht unterstüẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006865
6866#: lib/ext2fs/ext2_err.c:145
6867msgid "Extent length is invalid"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006868msgstr "Die Länge der Erweiterung in ungültig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006869
6870#: lib/ext2fs/ext2_err.c:146
6871msgid "I/O Channel does not support 64-bit block numbers"
Philipp Thomasab02a742014-07-09 23:13:30 -04006872msgstr "Der EA-Kanal unterstützt keine 64-Bit-Blocknummern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006873
6874#: lib/ext2fs/ext2_err.c:147
6875msgid "Can't check if filesystem is mounted due to missing mtab file"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006876msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006877"Wegen des Fehlens von /etc/mtab kann nicht geprüft werden, ob das Dateisystem\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006878"eingehängt ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006879
6880#: lib/ext2fs/ext2_err.c:148
6881msgid "Filesystem too large to use legacy bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04006882msgstr "Das Dateisystem ist zu groß, um die veralteten Bitmaps zu verwenden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006883
6884#: lib/ext2fs/ext2_err.c:149
6885msgid "MMP: invalid magic number"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006886msgstr "MMP: fehlende magische Zahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006887
6888#: lib/ext2fs/ext2_err.c:150
6889msgid "MMP: device currently active"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006890msgstr "MMP: das Gerät ist derzeit aktiv"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006891
6892#: lib/ext2fs/ext2_err.c:151
6893msgid "MMP: fsck being run"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006894msgstr "MMP: fsck läuft derzeit"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006895
6896#: lib/ext2fs/ext2_err.c:152
6897msgid "MMP: block number beyond filesystem range"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006898msgstr "MMP: die Blocknummer ist jenseits der Dateisystemgrenzen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006899
6900#: lib/ext2fs/ext2_err.c:153
6901msgid "MMP: undergoing an unknown operation"
Philipp Thomasab02a742014-07-09 23:13:30 -04006902msgstr "MMP: eine unbekannte Operation wird durchgeführt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006903
6904#: lib/ext2fs/ext2_err.c:154
6905msgid "MMP: filesystem still in use"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006906msgstr "MMP: das Dateisystem wird immer noch verwendet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006907
6908#: lib/ext2fs/ext2_err.c:155
6909msgid "MMP: open with O_DIRECT failed"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006910msgstr "MMP: öffnen mit O_DIRECT ist gescheitert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006911
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006912#: lib/ext2fs/ext2_err.c:156
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006913msgid "Block group descriptor size incorrect"
Philipp Thomasab02a742014-07-09 23:13:30 -04006914msgstr "Die Größe des „Blockgruppen-Deskriptors“ ist unzulässig"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006915
6916#: lib/ext2fs/ext2_err.c:157
6917msgid "Inode checksum does not match inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04006918msgstr "Die Prüfsumme des Inodes passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006919
6920#: lib/ext2fs/ext2_err.c:158
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006921msgid "Inode bitmap checksum does not match bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006922msgstr "Die Prüfsumme der Inode-Bitmap passt nicht zur Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006923
6924#: lib/ext2fs/ext2_err.c:159
6925msgid "Extent block checksum does not match extent block"
Philipp Thomasab02a742014-07-09 23:13:30 -04006926msgstr "Die Prüfsumme des Erweiterungsblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006927
6928#: lib/ext2fs/ext2_err.c:160
6929msgid "Directory block does not have space for checksum"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006930msgstr "Der Verzeichnisblock hat keinen Platz für eine Prüfsumme"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006931
6932#: lib/ext2fs/ext2_err.c:161
6933msgid "Directory block checksum does not match directory block"
Philipp Thomasab02a742014-07-09 23:13:30 -04006934msgstr "Die Prüfsumme des Verzeichnisblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006935
6936#: lib/ext2fs/ext2_err.c:162
6937msgid "Extended attribute block checksum does not match block"
Philipp Thomasab02a742014-07-09 23:13:30 -04006938msgstr "Die Prüfsumme des Blocks für erweiterte Attribute passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006939
6940#: lib/ext2fs/ext2_err.c:163
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006941msgid "Superblock checksum does not match superblock"
Philipp Thomasab02a742014-07-09 23:13:30 -04006942msgstr "Die Prüfsumme des Superblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006943
6944#: lib/ext2fs/ext2_err.c:164
6945msgid "Unknown checksum algorithm"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006946msgstr "Unbekannter Prüfsummenalgorithmus"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006947
6948#: lib/ext2fs/ext2_err.c:165
6949msgid "MMP block checksum does not match MMP block"
Philipp Thomasab02a742014-07-09 23:13:30 -04006950msgstr "Die Prüfsumme des MMP-Blocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006951
6952#: lib/ext2fs/ext2_err.c:166
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006953msgid "Ext2 file already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006954msgstr "Die Ext2-Datei existiert bereits"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006955
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006956#: e2fsck/prof_err.c:11
6957msgid "Profile version 0.0"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006958msgstr "Profilversion 0.0"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006959
6960#: e2fsck/prof_err.c:12
6961msgid "Bad magic value in profile_node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006962msgstr "Ungültige magische Zahl im profile_node"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006963
6964#: e2fsck/prof_err.c:13
6965msgid "Profile section not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006966msgstr "die Profilsektion wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006967
6968#: e2fsck/prof_err.c:14
6969msgid "Profile relation not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006970msgstr "Zusammenhang des Profils wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006971
6972#: e2fsck/prof_err.c:15
6973msgid "Attempt to add a relation to node which is not a section"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006974msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006975"Dies ist ein Versuch, einen Bezug zu einem Knoten hinzuzufügen, der keine\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006976"Sektion ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006977
6978#: e2fsck/prof_err.c:16
6979msgid "A profile section header has a non-zero value"
Philipp Thomasab02a742014-07-09 23:13:30 -04006980msgstr "Der Header der Profilsektion hat einen von Null verschiedenen Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006981
6982#: e2fsck/prof_err.c:17
6983msgid "Bad linked list in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006984msgstr "Ungültige verkettete Liste in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006985
6986#: e2fsck/prof_err.c:18
6987msgid "Bad group level in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006988msgstr "Ungültige Gruppenebene in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006989
6990#: e2fsck/prof_err.c:19
6991msgid "Bad parent pointer in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006992msgstr "Ungültiger Zeiger auf die Eltern in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006993
6994#: e2fsck/prof_err.c:20
6995msgid "Bad magic value in profile iterator"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006996msgstr "Ungültige magische Zahl im Profiliterator"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006997
6998#: e2fsck/prof_err.c:21
6999msgid "Can't set value on section node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007000msgstr "In dem Sektionsknoten kann der Wert nicht gesetzt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007001
7002#: e2fsck/prof_err.c:22
7003msgid "Invalid argument passed to profile library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007004msgstr "Es wurde ein unzulässiges Argument an die Profilbibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007005
7006#: e2fsck/prof_err.c:23
7007msgid "Attempt to modify read-only profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007008msgstr "Es wird versucht, ein nur lesbares Profil zu ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007009
7010#: e2fsck/prof_err.c:24
7011msgid "Profile section header not at top level"
Philipp Thomasab02a742014-07-09 23:13:30 -04007012msgstr "Der Header der Profilsektion ist nicht auf der obersten Ebene"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007013
7014#: e2fsck/prof_err.c:25
7015msgid "Syntax error in profile section header"
Philipp Thomasab02a742014-07-09 23:13:30 -04007016msgstr "Syntaxfehler im Header der Profilsektion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007017
7018#: e2fsck/prof_err.c:26
7019msgid "Syntax error in profile relation"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007020msgstr "Syntaxfehler in den Profilbeziehungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007021
7022#: e2fsck/prof_err.c:27
7023msgid "Extra closing brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007024msgstr "Überzählige schließende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007025
7026#: e2fsck/prof_err.c:28
7027msgid "Missing open brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007028msgstr "Fehlende öffnende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007029
7030#: e2fsck/prof_err.c:29
7031msgid "Bad magic value in profile_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007032msgstr "Ungültige magische Zahl im profile_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007033
7034#: e2fsck/prof_err.c:30
7035msgid "Bad magic value in profile_section_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007036msgstr "Unbekannte magische Zahl im section_t des Profils"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007037
7038#: e2fsck/prof_err.c:31
7039msgid "Iteration through all top level section not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007040msgstr "Iteration durch alle Toplevel-Sektionen wird nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007041
7042#: e2fsck/prof_err.c:32
7043msgid "Invalid profile_section object"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007044msgstr "Ungültiges profile_section-Objekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007045
7046#: e2fsck/prof_err.c:33
7047msgid "No more sections"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007048msgstr "Keine weiteren Sektionen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007049
7050#: e2fsck/prof_err.c:34
7051msgid "Bad nameset passed to query routine"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007052msgstr "Ungültige Namen an die Abfrageroutine übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007053
7054#: e2fsck/prof_err.c:35
7055msgid "No profile file open"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007056msgstr "Es ist keine Profildatei offen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007057
7058#: e2fsck/prof_err.c:36
7059msgid "Bad magic value in profile_file_t"
Philipp Thomasab02a742014-07-09 23:13:30 -04007060msgstr "Ungültige magische Zahl im profile_file_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007061
7062#: e2fsck/prof_err.c:37
7063msgid "Couldn't open profile file"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05007064msgstr "Die Profildatei konnte nicht geöffnet werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007065
7066#: e2fsck/prof_err.c:38
7067msgid "Section already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007068msgstr "Die Sektion existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007069
7070#: e2fsck/prof_err.c:39
7071msgid "Invalid boolean value"
Philipp Thomasab02a742014-07-09 23:13:30 -04007072msgstr "Ungültiger boolescher Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007073
7074#: e2fsck/prof_err.c:40
7075msgid "Invalid integer value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007076msgstr "Ungültiger ganzzahliger Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007077
7078#: e2fsck/prof_err.c:41
7079msgid "Bad magic value in profile_file_data_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007080msgstr "Ungültige magische Zahl im profile_file_data_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007081
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007082#~ msgid "Clearing extent flag not supported on %s"
7083#~ msgstr ""
7084#~ "Das Zurücksetzen des Kennzeichens für „Erweiterung“ wird auf %s\n"
7085#~ "\tnicht unterstützt"
7086
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007087#~ msgid ""
7088#~ "%s: The combination of flex_bg and\n"
7089#~ "\t!resize_inode features is not supported by resize2fs.\n"
7090#~ msgstr ""
7091#~ "%s: Die Kombination der Eigenschaften flex_bg und\n"
7092#~ "t!resize_inode wird von resize2fs nicht unterestützt.\n"
7093
Philipp Thomasedc733d2012-04-22 15:38:42 -04007094#~ msgid "@i %i should not have EOFBLOCKS_FL set (size %Is, lblk %r)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04007095#~ msgstr " in @i %i sollte EOFBLOCKS_FL nicht gesetzt sein (Größe %Is, lblk %r)\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04007096
7097#~ msgid "Couldn't determine journal size"
7098#~ msgstr "Konnte die Größe des Dateisystems nicht ermitteln"
7099
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007100#~ msgid "#\t\t %llu -> %llu (%llu)\n"
7101#~ msgstr "#\t\t %llu -> %llu (%llu)\n"
7102
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007103#~ msgid "short write (only %d bytes) for writing image header"
7104#~ msgstr "short write (only %d bytes) for writing image header"
7105
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007106#~ msgid "Warning: fragments not supported. Ignoring -f option\n"
7107#~ msgstr "Warnung: Fragmente werden nicht unterstützt. Ignoriere -f Option\n"
7108
7109#~ msgid "Calling BLKDISCARD from %llu to %llu "
7110#~ msgstr "Der Aufruf von BLKDISCARD für den Bereich von %llu bis %llu war "
7111
7112#~ msgid "succeeded.\n"
7113#~ msgstr "erfolgreich.\n"