blob: 9afcc5218b9f2514cb9e22d927f28fcc82a295f9 [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 Thomasb93349a2014-05-31 13:32:39 -040073"Project-Id-Version: e2fsprogs-1.42.10\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 Thomas9bf41072014-07-05 23:18:04 -040076"PO-Revision-Date: 2014-06-03 16:28+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"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400123msgstr ""
124"Warnung: Nicht zulässiger Block %u im „Bad Blocks“-Inode gefunden! "
125"Bereinigt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500126
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400127#: e2fsck/ehandler.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500128#, c-format
129msgid "Error reading block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400130msgstr "Lesefehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500131
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400132#: e2fsck/ehandler.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500133#, c-format
134msgid "Error reading block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400135msgstr "Lesefehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500136
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400137#: e2fsck/ehandler.c:61 e2fsck/ehandler.c:110
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500138msgid "Ignore error"
139msgstr "Ignoriere Fehler"
140
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400141#: e2fsck/ehandler.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500142msgid "Force rewrite"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400143msgstr "Rückschreiben erzwingen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500144
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400145#: e2fsck/ehandler.c:104
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500146#, c-format
147msgid "Error writing block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400148msgstr "Schreibfehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500149
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400150#: e2fsck/ehandler.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500151#, c-format
152msgid "Error writing block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400153msgstr "Schreibfehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500154
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400155#: e2fsck/emptydir.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500156msgid "empty dirblocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400157msgstr "leere Verzeichnisblöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500158
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400159#: e2fsck/emptydir.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500160msgid "empty dir map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500161msgstr "leere Verzeichnisliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500162
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400163#: e2fsck/emptydir.c:98
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500164#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400165msgid "Empty directory block %u (#%d) in inode %u\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500166msgstr "leerer Verzeichnisblock %u (#%d) im Inode %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500167
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400168#: e2fsck/extend.c:22
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500169#, c-format
170msgid "%s: %s filename nblocks blocksize\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400171msgstr "%s: %s Dateiname nblocks Blockgröße\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500172
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400173#: e2fsck/extend.c:44
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500174#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500175msgid "Illegal number of blocks!\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400176msgstr "Blockanzahl nicht zulässig!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500177
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400178#: e2fsck/extend.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500179#, c-format
180msgid "Couldn't allocate block buffer (size=%d)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500181msgstr "Es konnte kein Blockpuffer (Größe=%d) reserviert werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500182
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400183#: e2fsck/flushb.c:35
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500184#, c-format
185msgid "Usage: %s disk\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400186msgstr "Aufruf: %s Laufwerk\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500187
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400188#: e2fsck/flushb.c:64
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500189#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500190msgid "BLKFLSBUF ioctl not supported! Can't flush buffers.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400191msgstr "BLKFLSBUF ioctl nicht unterstützt! Kann Puffer nicht leeren.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500192
Eric Sandeen032eafe2012-07-28 17:48:36 -0400193#: e2fsck/iscan.c:44
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500194#, c-format
195msgid "Usage: %s [-F] [-I inode_buffer_blocks] device\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400196msgstr "Aufruf: %s [-F] [-I inode_buffer_blocks] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500197
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400198#: e2fsck/iscan.c:81 e2fsck/unix.c:972
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500199#, c-format
200msgid "while opening %s for flushing"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500201msgstr "beim Öffnen von %s für die Puffer-Leerung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500202
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400203#: e2fsck/iscan.c:86 e2fsck/unix.c:978 resize/main.c:289
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500204#, c-format
205msgid "while trying to flush %s"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400206msgstr "während des Rückschreibeversuches auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500207
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400208#: e2fsck/iscan.c:110
Philipp Thomasb93349a2014-05-31 13:32:39 -0400209#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400210msgid "while trying to open '%s'"
211msgstr "beim Versuch, %s zu öffnen"
212
213#: e2fsck/iscan.c:119 e2fsck/scantest.c:114 misc/e2image.c:1290
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500214msgid "while opening inode scan"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500215msgstr "beim Start des Inode-Scans"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500216
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400217#: e2fsck/iscan.c:127 misc/e2image.c:1309
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500218msgid "while getting next inode"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400219msgstr "beim Laden des nächsten Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500220
Eric Sandeen032eafe2012-07-28 17:48:36 -0400221#: e2fsck/iscan.c:136
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500222#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400223msgid "%u inodes scanned.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400224msgstr "%u Inodes untersucht.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500225
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400226#: e2fsck/journal.c:525
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500227msgid "reading journal superblock\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500228msgstr "Lese Journal-Superblock\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500229
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400230#: e2fsck/journal.c:582
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500231#, c-format
232msgid "%s: no valid journal superblock found\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400233msgstr "%s: keinen gültigen Journal-Superblock gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500234
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400235#: e2fsck/journal.c:591
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500236#, c-format
237msgid "%s: journal too short\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400238msgstr "%s: Das Journal ist zu kurz\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500239
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400240#: e2fsck/journal.c:882
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500241#, c-format
242msgid "%s: recovering journal\n"
243msgstr "%s: stelle das Journal wieder her\n"
244
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400245#: e2fsck/journal.c:884
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500246#, c-format
247msgid "%s: won't do journal recovery while read-only\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500248msgstr "%s: Das Journal ist nur lesbar - Keine Wiederherstellung\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500249
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400250#: e2fsck/journal.c:911
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500251#, c-format
252msgid "while trying to re-open %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400253msgstr "beim Versuch, %s erneut zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500254
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400255#: e2fsck/message.c:113
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500256msgid "aextended attribute"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500257msgstr "aerweiterte Attribute"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500258
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400259#: e2fsck/message.c:114
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500260msgid "Aerror allocating"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500261msgstr "AFehler beim Reservieren von Platz für"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500262
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400263#: e2fsck/message.c:115
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500264msgid "bblock"
265msgstr "bBlock"
266
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400267#: e2fsck/message.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500268msgid "Bbitmap"
269msgstr "BBitmap"
270
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400271#: e2fsck/message.c:117
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500272msgid "ccompress"
273msgstr "ckomprimieren"
274
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400275#: e2fsck/message.c:118
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500276msgid "Cconflicts with some other fs @b"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500277msgstr "CKonflikte mit einem anderen Dateisystemenblock"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500278
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400279#: e2fsck/message.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500280msgid "ddirectory"
281msgstr "dVerzeichnis"
282
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400283#: e2fsck/message.c:120
284msgid "Ddeleted"
285msgstr "Dgelöscht"
286
287#: e2fsck/message.c:121
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500288msgid "eentry"
289msgstr "eEintrag"
290
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400291#: e2fsck/message.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500292msgid "E@e '%Dn' in %p (%i)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400293msgstr "E@e „%Dn“ in %p (%i)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500294
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400295#: e2fsck/message.c:123
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500296msgid "ffilesystem"
297msgstr "fDateisystem"
298
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400299#: e2fsck/message.c:124
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500300msgid "Ffor @i %i (%Q) is"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400301msgstr "Ffür @i %i (%Q) ist"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500302
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400303#: e2fsck/message.c:125
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500304msgid "ggroup"
305msgstr "gGruppe"
306
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400307#: e2fsck/message.c:126
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500308msgid "hHTREE @d @i"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500309msgstr "hHTREE @dinode"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500310
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400311#: e2fsck/message.c:127
312msgid "iinode"
313msgstr "iInode"
314
315#: e2fsck/message.c:128
316msgid "Iillegal"
317msgstr "Iillegal(er)"
318
319#: e2fsck/message.c:129
320msgid "jjournal"
321msgstr "jJournal"
322
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400323#: e2fsck/message.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500324msgid "llost+found"
325msgstr "llost+found"
326
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400327#: e2fsck/message.c:131
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500328msgid "Lis a link"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500329msgstr "List eine Verknüpfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500330
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400331#: e2fsck/message.c:132
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400332msgid "mmultiply-claimed"
Philipp Thomas9564ee52008-08-22 03:22:50 -0400333msgstr "mmehrfach beansprucht"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400334
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400335#: e2fsck/message.c:133
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400336msgid "ninvalid"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400337msgstr "nungültig"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400338
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400339#: e2fsck/message.c:134
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500340msgid "oorphaned"
341msgstr "overwaist"
342
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400343#: e2fsck/message.c:135
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500344msgid "pproblem in"
345msgstr "pProblem in"
346
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400347#: e2fsck/message.c:136
348msgid "qquota"
349msgstr "qQuota"
350
351#: e2fsck/message.c:137
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500352msgid "rroot @i"
353msgstr "rRoot @i"
354
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400355#: e2fsck/message.c:138
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500356msgid "sshould be"
357msgstr "ssollte sein"
358
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400359#: e2fsck/message.c:139
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500360msgid "Ssuper@b"
361msgstr "SSuper@b"
362
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400363#: e2fsck/message.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500364msgid "uunattached"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500365msgstr "unicht verbunden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500366
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400367#: e2fsck/message.c:141
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500368msgid "vdevice"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400369msgstr "vGerät"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500370
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400371#: e2fsck/message.c:142
Philipp Thomas720e6362008-06-21 14:06:00 -0400372msgid "xextent"
Philipp Thomas68801282008-07-17 11:47:00 -0400373msgstr "xErweiterung"
Philipp Thomas720e6362008-06-21 14:06:00 -0400374
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400375#: e2fsck/message.c:143
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500376msgid "zzero-length"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500377msgstr "zmit Länge Null"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500378
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400379#: e2fsck/message.c:154
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500380msgid "<The NULL inode>"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500381msgstr "<Der NULL Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500382
Philipp Thomas77c871a2010-04-19 16:59:02 -0400383#: e2fsck/message.c:155
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400384msgid "<The bad blocks inode>"
385msgstr "<Der „Bad Blocks“-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500386
Philipp Thomas77c871a2010-04-19 16:59:02 -0400387#: e2fsck/message.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400388msgid "<The user quota inode>"
389msgstr "<Die Benutzerquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500390
Philipp Thomas77c871a2010-04-19 16:59:02 -0400391#: e2fsck/message.c:158
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400392msgid "<The group quota inode>"
393msgstr "<Die Gruppenquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500394
Philipp Thomas77c871a2010-04-19 16:59:02 -0400395#: e2fsck/message.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400396msgid "<The boot loader inode>"
397msgstr "<Der „Boot Loader“-Inode>"
398
399#: e2fsck/message.c:160
400msgid "<The undelete directory inode>"
401msgstr "<Der „undelete directory“-Inode>"
402
403#: e2fsck/message.c:161
404msgid "<The group descriptor inode>"
405msgstr "<Des „group descriptor“-Inode>"
406
407#: e2fsck/message.c:162
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500408msgid "<The journal inode>"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500409msgstr "<Der Journal-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500410
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400411#: e2fsck/message.c:163
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500412msgid "<Reserved inode 9>"
413msgstr "<Der reservierte Inode 9>"
414
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400415#: e2fsck/message.c:164
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500416msgid "<Reserved inode 10>"
417msgstr "<Der reservierte Inode 10>"
418
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400419#: e2fsck/message.c:334
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400420msgid "regular file"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400421msgstr "'reguläre Datei"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400422
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400423#: e2fsck/message.c:336
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400424msgid "directory"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500425msgstr "Verzeichnis"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400426
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400427#: e2fsck/message.c:338
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400428msgid "character device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400429msgstr "zeichenorientiertes Gerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400430
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400431#: e2fsck/message.c:340
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400432msgid "block device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400433msgstr "Blockgerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400434
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400435#: e2fsck/message.c:342
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400436msgid "named pipe"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400437msgstr "named pipe"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400438
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400439#: e2fsck/message.c:344
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400440msgid "symbolic link"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400441msgstr "symbolische Verknüpfung"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400442
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400443#: e2fsck/message.c:346 misc/uuidd.c:161
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400444msgid "socket"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500445msgstr " Socket"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400446
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400447#: e2fsck/message.c:348
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400448#, c-format
449msgid "unknown file type with mode 0%o"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400450msgstr "unbekannter Dateityp mit Modus 0%o"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400451
Philipp Thomasedc733d2012-04-22 15:38:42 -0400452#: e2fsck/message.c:423
Philipp Thomas77c871a2010-04-19 16:59:02 -0400453msgid "indirect block"
454msgstr "indirekte Blöcke"
455
Philipp Thomasedc733d2012-04-22 15:38:42 -0400456#: e2fsck/message.c:425
Philipp Thomas77c871a2010-04-19 16:59:02 -0400457msgid "double indirect block"
458msgstr "doppelt indirekte Blöcke"
459
Philipp Thomasedc733d2012-04-22 15:38:42 -0400460#: e2fsck/message.c:427
Philipp Thomas77c871a2010-04-19 16:59:02 -0400461msgid "triple indirect block"
462msgstr "dreifach indirekte Blöcke"
463
Philipp Thomasedc733d2012-04-22 15:38:42 -0400464#: e2fsck/message.c:429
Philipp Thomas77c871a2010-04-19 16:59:02 -0400465msgid "translator block"
466msgstr "Übersetzerblock"
467
Philipp Thomasedc733d2012-04-22 15:38:42 -0400468#: e2fsck/message.c:431
Philipp Thomas77c871a2010-04-19 16:59:02 -0400469msgid "block #"
470msgstr "Block Nr."
471
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400472#: e2fsck/pass1b.c:222
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500473msgid "multiply claimed inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500474msgstr "mehrfach beanspruchte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500475
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400476#: e2fsck/pass1b.c:610 e2fsck/pass1b.c:730
Philipp Thomas68801282008-07-17 11:47:00 -0400477#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400478msgid "internal error: can't find dup_blk for %llu\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500479msgstr "interner Fehler: dup_blk für %llu wurde nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500480
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400481#: e2fsck/pass1b.c:821
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500482msgid "returned from clone_file_block"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400483msgstr "zurückgegeben von clone_file_block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500484
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400485#: e2fsck/pass1b.c:843
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400486#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400487msgid "internal error: couldn't lookup EA block record for %llu"
488msgstr "interner Fehler: EA Blockliste für %llu wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400489
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400490#: e2fsck/pass1b.c:855
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400491#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400492msgid "internal error: couldn't lookup EA inode record for %u"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400493msgstr "Interner Fehler: EA Inodeliste für %u wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400494
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400495#: e2fsck/pass1.c:475 e2fsck/pass2.c:782
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400496msgid "reading directory block"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400497msgstr "lese Verzeichnisblock"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400498
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400499#: e2fsck/pass1.c:598
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500500msgid "in-use inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400501msgstr "„in-use inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500502
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400503#: e2fsck/pass1.c:609
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500504msgid "directory inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400505msgstr "„directory inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500506
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400507#: e2fsck/pass1.c:619
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500508msgid "regular file inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400509msgstr "„regular file inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500510
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400511#: e2fsck/pass1.c:628 misc/e2image.c:1265
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500512msgid "in-use block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400513msgstr "„in-use block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500514
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400515#: e2fsck/pass1.c:693
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400516msgid "opening inode scan"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400517msgstr "Starte Inode-Scan"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500518
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400519#: e2fsck/pass1.c:727
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400520msgid "getting next inode from scan"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400521msgstr "beim Lesen des nächsten Inodes"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400522
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400523#: e2fsck/pass1.c:1243
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500524msgid "Pass 1"
525msgstr "Durchgang 1"
526
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400527#: e2fsck/pass1.c:1300
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500528#, c-format
529msgid "reading indirect blocks of inode %u"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400530msgstr "lese indirekte Blöcke von Inode %u"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500531
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400532#: e2fsck/pass1.c:1350
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500533msgid "bad inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500534msgstr "fehlerhafte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500535
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400536#: e2fsck/pass1.c:1373
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500537msgid "inode in bad block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400538msgstr "Inode in „Bad Blocks“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500539
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400540#: e2fsck/pass1.c:1393
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500541msgid "imagic inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400542msgstr "i„magic inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500543
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400544#: e2fsck/pass1.c:1420
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500545msgid "multiply claimed block map"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500546msgstr "mehrfach referenzierte Blockliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500547
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400548#: e2fsck/pass1.c:1531
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500549msgid "ext attr block map"
550msgstr "ext attr block map"
551
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400552#: e2fsck/pass1.c:2315
Philipp Thomas77c871a2010-04-19 16:59:02 -0400553#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500554msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -0400555msgstr "%6lu(%c): erwartete %6lu erhielt phys %6lu (Blockanzahl %lld)\n"
Philipp Thomas40771272008-09-07 22:55:25 -0400556
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400557#: e2fsck/pass1.c:2678
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500558msgid "block bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500559msgstr "Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500560
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400561#: e2fsck/pass1.c:2684
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500562msgid "inode bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500563msgstr "Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500564
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400565#: e2fsck/pass1.c:2690
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500566msgid "inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500567msgstr "Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500568
Philipp Thomasedc733d2012-04-22 15:38:42 -0400569#: e2fsck/pass2.c:283
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500570msgid "Pass 2"
Theodore Ts'oddc32a02003-05-03 18:45:55 -0400571msgstr "Durchgang 2"
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500572
Philipp Thomasedc733d2012-04-22 15:38:42 -0400573#: e2fsck/pass2.c:805
Philipp Thomas720e6362008-06-21 14:06:00 -0400574msgid "Can not continue."
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500575msgstr "das Programm kann nicht fortfahren."
Philipp Thomas720e6362008-06-21 14:06:00 -0400576
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400577#: e2fsck/pass3.c:77
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500578msgid "inode done bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400579msgstr "„inode done“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500580
Philipp Thomasedc733d2012-04-22 15:38:42 -0400581#: e2fsck/pass3.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500582msgid "Peak memory"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500583msgstr "Peak-Memory"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500584
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400585#: e2fsck/pass3.c:137
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500586msgid "Pass 3"
587msgstr "Durchgang 3"
588
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400589#: e2fsck/pass3.c:323
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500590msgid "inode loop detection bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400591msgstr "„inode loop detection“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500592
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400593#: e2fsck/pass4.c:196
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500594msgid "Pass 4"
595msgstr "Durchgang 4"
596
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400597#: e2fsck/pass5.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500598msgid "Pass 5"
599msgstr "Durchgang 5"
600
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400601#: e2fsck/problem.c:51
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500602msgid "(no prompt)"
603msgstr "(nicht interaktiv)"
604
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400605#: e2fsck/problem.c:52
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500606msgid "Fix"
607msgstr "Repariere"
608
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400609#: e2fsck/problem.c:53
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500610msgid "Clear"
611msgstr "Bereinige"
612
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400613#: e2fsck/problem.c:54
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500614msgid "Relocate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400615msgstr "Zurücksetzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500616
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400617#: e2fsck/problem.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500618msgid "Allocate"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500619msgstr "Gebe frei"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500620
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400621#: e2fsck/problem.c:56
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500622msgid "Expand"
623msgstr "Erweitere"
624
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400625#: e2fsck/problem.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500626msgid "Connect to /lost+found"
627msgstr "Verbinde nach /lost+found"
628
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400629#: e2fsck/problem.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500630msgid "Create"
631msgstr "Erstelle"
632
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400633#: e2fsck/problem.c:59
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500634msgid "Salvage"
635msgstr "Rette"
636
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400637#: e2fsck/problem.c:60
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500638msgid "Truncate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400639msgstr "Verkürze"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500640
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400641#: e2fsck/problem.c:61
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500642msgid "Clear inode"
643msgstr "Bereinige Inode"
644
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400645#: e2fsck/problem.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500646msgid "Abort"
647msgstr "Abbrechen"
648
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400649#: e2fsck/problem.c:63
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500650msgid "Split"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500651msgstr "Aufteilen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500652
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400653#: e2fsck/problem.c:64
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500654msgid "Continue"
655msgstr "Fortsetzen"
656
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400657#: e2fsck/problem.c:65
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400658msgid "Clone multiply-claimed blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400659msgstr "Mehrfach referenzierte Blöcke werden geklont"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500660
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400661#: e2fsck/problem.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500662msgid "Delete file"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400663msgstr "Datei wird gelöscht"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500664
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400665#: e2fsck/problem.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500666msgid "Suppress messages"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400667msgstr "Ausgaben unterdrücken"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500668
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400669#: e2fsck/problem.c:68
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500670msgid "Unlink"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500671msgstr "Trennen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500672
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400673#: e2fsck/problem.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500674msgid "Clear HTree index"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400675msgstr "Der HTree-Index wird bereinigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500676
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400677#: e2fsck/problem.c:70
Theodore Ts'obc759702005-05-09 20:40:55 -0400678msgid "Recreate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400679msgstr "Zurücksetzen"
Theodore Ts'obc759702005-05-09 20:40:55 -0400680
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400681#: e2fsck/problem.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500682msgid "(NONE)"
683msgstr "(NICHTS)"
684
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400685#: e2fsck/problem.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500686msgid "FIXED"
687msgstr "REPARIERT"
688
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400689#: e2fsck/problem.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500690msgid "CLEARED"
691msgstr "BEREINIGT"
692
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400693#: e2fsck/problem.c:82
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500694msgid "RELOCATED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400695msgstr "ZURÜCKGESETZT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500696
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400697#: e2fsck/problem.c:83
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500698msgid "ALLOCATED"
699msgstr "FREIGEGEBEN"
700
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400701#: e2fsck/problem.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500702msgid "EXPANDED"
703msgstr "ERWEITERT"
704
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400705#: e2fsck/problem.c:85
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500706msgid "RECONNECTED"
707msgstr "WIEDER VERBUNDEN"
708
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400709#: e2fsck/problem.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500710msgid "CREATED"
711msgstr "ANGELEGT"
712
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400713#: e2fsck/problem.c:87
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500714msgid "SALVAGED"
715msgstr "GERETTET"
716
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400717#: e2fsck/problem.c:88
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500718msgid "TRUNCATED"
719msgstr "BEENDET"
720
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400721#: e2fsck/problem.c:89
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500722msgid "INODE CLEARED"
723msgstr "INODE BEREINIGT"
724
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400725#: e2fsck/problem.c:90
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500726msgid "ABORTED"
727msgstr "ABGEBROCHEN"
728
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400729#: e2fsck/problem.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500730msgid "SPLIT"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500731msgstr "ABGESPALTEn"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500732
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400733#: e2fsck/problem.c:92
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500734msgid "CONTINUING"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400735msgstr "ES WIRD FORTGEFAHREN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500736
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400737#: e2fsck/problem.c:93
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400738msgid "MULTIPLY-CLAIMED BLOCKS CLONED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400739msgstr "MEHRFACH REFERENZIERTE BLÖCKE WURDEN GEKLONT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500740
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400741#: e2fsck/problem.c:94
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500742msgid "FILE DELETED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400743msgstr "DATEI WURDE GELÖSCHT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500744
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400745#: e2fsck/problem.c:95
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500746msgid "SUPPRESSED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400747msgstr "UNTERDRÜCKT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500748
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400749#: e2fsck/problem.c:96
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500750msgid "UNLINKED"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500751msgstr "GETRENNT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500752
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400753#: e2fsck/problem.c:97
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500754msgid "HTREE INDEX CLEARED"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500755msgstr "HTREE-INDEX BEREINIGT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500756
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400757#: e2fsck/problem.c:98
Theodore Ts'obc759702005-05-09 20:40:55 -0400758msgid "WILL RECREATE"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500759msgstr "WIRD WIEDER AUFGEBAUT"
Theodore Ts'obc759702005-05-09 20:40:55 -0400760
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400761#. @-expanded: block bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400762#: e2fsck/problem.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500763msgid "@b @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500764msgstr "@b @B für @g %g ist nicht in @g. (@b %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500765
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400766#. @-expanded: inode bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400767#: e2fsck/problem.c:111
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500768msgid "@i @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500769msgstr "@i @B für @g %g ist nicht in @g. (@b %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500770
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400771#. @-expanded: inode table for group %g is not in group. (block %b)\n
772#. @-expanded: WARNING: SEVERE DATA LOSS POSSIBLE.\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400773#: e2fsck/problem.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500774msgid ""
775"@i table for @g %g is not in @g. (@b %b)\n"
776"WARNING: SEVERE DATA LOSS POSSIBLE.\n"
777msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500778"@i Tabelle für @g %g ist nicht in @g. (@b %b)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400779"WARNUNG: GROSSER DATENVERLUST IST MÖGLICH.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500780
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400781#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400782#. @-expanded: The superblock could not be read or does not describe a valid ext2/ext3/ext4\n
783#. @-expanded: filesystem. If the device is valid and it really contains an ext2/ext3/ext4\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400784#. @-expanded: filesystem (and not swap or ufs or something else), then the superblock\n
785#. @-expanded: is corrupt, and you might try running e2fsck with an alternate superblock:\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400786#. @-expanded: e2fsck -b 8193 <device>\n
787#. @-expanded: or\n
788#. @-expanded: e2fsck -b 32768 <device>\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400789#. @-expanded: \n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400790#: e2fsck/problem.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500791msgid ""
792"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400793"The @S could not be read or does not describe a valid ext2/ext3/ext4\n"
794"@f. If the @v is valid and it really contains an ext2/ext3/ext4\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500795"@f (and not swap or ufs or something else), then the @S\n"
796"is corrupt, and you might try running e2fsck with an alternate @S:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400797" e2fsck -b 8193 <@v>\n"
798" or\n"
799" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500800"\n"
801msgstr ""
802"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -0400803"Der @S ist unlesbar bzw. beschreibt kein gültiges ext2/ext3/ext4\n"
804"@f. Wenn @v gültig ist und ein ext2/ext3/ext4\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500805"@f (kein swap oder ufs usw.) enthält, dann ist der @S\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -0400806"beschädigt, und sie könnten versuchen, e2fsck mit einem anderen @S\n"
807"zu starten:\n"
808" e2fsck -b 8193 <@v>\n"
809" oder\n"
810" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500811"\n"
812
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400813#. @-expanded: The filesystem size (according to the superblock) is %b blocks\n
814#. @-expanded: The physical size of the device is %c blocks\n
815#. @-expanded: Either the superblock or the partition table is likely to be corrupt!\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400816#: e2fsck/problem.c:133
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500817msgid ""
818"The @f size (according to the @S) is %b @bs\n"
819"The physical size of the @v is %c @bs\n"
820"Either the @S or the partition table is likely to be corrupt!\n"
821msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500822"Die @f-Größe ( laut @S) ist %b @bs\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400823"Die physikalische Größe von @v ist %c @bs\n"
824"Entweder der @S oder die Partionstabelle ist beschädigt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500825
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400826#. @-expanded: superblock block_size = %b, fragsize = %c.\n
827#. @-expanded: This version of e2fsck does not support fragment sizes different\n
828#. @-expanded: from the block size.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400829#: e2fsck/problem.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500830msgid ""
831"@S @b_size = %b, fragsize = %c.\n"
832"This version of e2fsck does not support fragment sizes different\n"
833"from the @b size.\n"
834msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500835"@S-@b_size = %b, fragsize = %c.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400836"Diese Version von e2fsck unterstützt keine von @b-Größen verschiedene "
837"Fragmentgrößen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500838
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400839#. @-expanded: superblock blocks_per_group = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400840#: e2fsck/problem.c:147
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500841msgid "@S @bs_per_group = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500842msgstr "@bs_per_group im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500843
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400844#. @-expanded: superblock first_data_block = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400845#: e2fsck/problem.c:152
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500846msgid "@S first_data_@b = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500847msgstr "first_data_@b im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500848
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400849#. @-expanded: filesystem did not have a UUID; generating one.\n
850#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400851#: e2fsck/problem.c:157
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500852msgid ""
853"@f did not have a UUID; generating one.\n"
854"\n"
855msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500856"@f hat keinen UUID; es wird eine generiert.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500857"\n"
858
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400859#: e2fsck/problem.c:162
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400860#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500861msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400862"Note: if several inode or block bitmap blocks or part\n"
863"of the inode table require relocation, you may wish to try\n"
864"running e2fsck with the '-b %S' option first. The problem\n"
865"may lie only with the primary block group descriptors, and\n"
866"the backup block group descriptors may be OK.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500867"\n"
868msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400869"Hinweis: Wenn mehrere Inodes oder Bitmap-Blöcke\n"
870"neu geordnet werden müssen, oder ein Teil der Inode-Tabelle\n"
871"verschoben werden muss, könnte es helfen, e2fsck erst einmal\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400872"mit der Option „-b %S“ zu starten. Das Problem könnte\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500873"im primären Blockgruppenbezeichner liegen und seine\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500874"Sicherungskopie in Ordnung sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500875"\n"
876
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400877#. @-expanded: Corruption found in superblock. (%s = %N).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400878#: e2fsck/problem.c:171
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500879msgid "Corruption found in @S. (%s = %N).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500880msgstr "Beschädigung gefunden in @S. (%s = %N).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500881
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400882#. @-expanded: Error determining size of the physical device: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400883#: e2fsck/problem.c:176
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500884#, c-format
885msgid "Error determining size of the physical @v: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500886msgstr "Fehler bei der Feststellung der Größe des physischen @v: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500887
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400888#. @-expanded: inode count in superblock is %i, should be %j.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400889#: e2fsck/problem.c:181
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400890msgid "@i count in @S is %i, @s %j.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400891msgstr "@i-Anzahl in @S ist %i, sollte %j sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500892
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400893#: e2fsck/problem.c:185
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500894msgid "The Hurd does not support the filetype feature.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500895msgstr "Hurd unterstützt keine Dateitypen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500896
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500897#. @-expanded: superblock has an invalid journal (inode %i).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400898#: e2fsck/problem.c:190
Philipp Thomas77c871a2010-04-19 16:59:02 -0400899#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500900msgid "@S has an @n @j (@i %i).\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -0400901msgstr "@S hat ein defektes @j (@i %i).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500902
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400903#. @-expanded: External journal has multiple filesystem users (unsupported).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400904#: e2fsck/problem.c:195
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500905msgid "External @j has multiple @f users (unsupported).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500906msgstr "Externes @j hat mehrere @f-Nutzer (nicht unterstützt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500907
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400908#. @-expanded: Can't find external journal\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400909#: e2fsck/problem.c:200
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500910msgid "Can't find external @j\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500911msgstr "Kann kein externes @j finden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500912
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400913#. @-expanded: External journal has bad superblock\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400914#: e2fsck/problem.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500915msgid "External @j has bad @S\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400916msgstr "Externes @j hat ungültigen @S\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500917
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400918#. @-expanded: External journal does not support this filesystem\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400919#: e2fsck/problem.c:210
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500920msgid "External @j does not support this @f\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400921msgstr "Externes @j unterstützt nicht @f\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500922
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500923#. @-expanded: filesystem journal superblock is unknown type %N (unsupported).\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400924#. @-expanded: It is likely that your copy of e2fsck is old and/or doesn't support this journal
925#. @-expanded: format.\n
926#. @-expanded: It is also possible the journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400927#: e2fsck/problem.c:215
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500928msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500929"@f @j @S is unknown type %N (unsupported).\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400930"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
931"format.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500932"It is also possible the @j @S is corrupt.\n"
933msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400934"Der Superblock des Dateisystem-Journals hat den unbekannten Type %N (nicht "
935"unterstützt).\n"
936"Es ist möglich, dass ihr e2fsck älter ist und/oder dieses @j-Format nicht "
937"unterstützt.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500938"Es ist ebenso möglich, dass der @j-@S defekt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500939
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500940#. @-expanded: journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400941#: e2fsck/problem.c:223
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500942msgid "@j @S is corrupt.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500943msgstr "der @j-@S ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500944
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400945#. @-expanded: superblock has_journal flag is clear, but a journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400946#: e2fsck/problem.c:228
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400947#, fuzzy
948msgid "@S has_@j flag is clear, but a @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500949msgstr ""
950"Der Bitschalter has_journal im Superblock ist nicht gesetzt, aber ein \n"
951"@j %s ist vorhanden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500952
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500953#. @-expanded: superblock needs_recovery flag is set, but no journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400954#: e2fsck/problem.c:233
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500955msgid "@S needs_recovery flag is set, but no @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500956msgstr ""
957"Im @S ist der Bitschalter „needs_recovery“ gesetzt, aber ein @j ist\n"
958"nicht vorhanden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500959
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500960#. @-expanded: superblock needs_recovery flag is clear, but journal has data.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400961#: e2fsck/problem.c:238
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500962msgid "@S needs_recovery flag is clear, but @j has data.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500963msgstr ""
964"Der Bitschalter „Wiederherstellung nötig“ im @S ist nicht gesetzt, aber das\n"
965"@j enthält Daten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500966
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400967#. @-expanded: Clear journal
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400968#: e2fsck/problem.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500969msgid "Clear @j"
970msgstr "Bereinige @j"
971
Philipp Thomas77c871a2010-04-19 16:59:02 -0400972#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400973#: e2fsck/problem.c:248 e2fsck/problem.c:702
Philipp Thomas77c871a2010-04-19 16:59:02 -0400974msgid "@f has feature flag(s) set, but is a revision 0 @f. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500975msgstr "@f hat Eigenschfts-Bitschalter gesetzt, ist aber ein Revision-0-@f. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500976
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400977#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400978#: e2fsck/problem.c:253
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500979msgid "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
980msgstr "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
981
Philipp Thomas77c871a2010-04-19 16:59:02 -0400982#. @-expanded: illegal %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400983#: e2fsck/problem.c:258
Philipp Thomas77c871a2010-04-19 16:59:02 -0400984msgid "@I %B (%b) found in @o @i %i.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500985msgstr "@I @b #%B (%b) in @o @i %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500986
Philipp Thomas77c871a2010-04-19 16:59:02 -0400987#. @-expanded: Already cleared %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400988#: e2fsck/problem.c:263
Philipp Thomas77c871a2010-04-19 16:59:02 -0400989msgid "Already cleared %B (%b) found in @o @i %i.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500990msgstr "Bereits bereinigter %B (%b) in @o @i %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500991
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400992#. @-expanded: illegal orphaned inode %i in superblock.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400993#: e2fsck/problem.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500994#, c-format
995msgid "@I @o @i %i in @S.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500996msgstr "@I @o @i %i im @S.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500997
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400998#. @-expanded: illegal inode %i in orphaned inode list.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400999#: e2fsck/problem.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001000#, c-format
1001msgid "@I @i %i in @o @i list.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001002msgstr "Illegaler Inode %i in der Liste der verwaisten Inodes.\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 read-only feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001005#: e2fsck/problem.c:278
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001006msgid "@j @S has an unknown read-only feature flag set.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001007msgstr "der @j-@S hat einen unbekannten Nur-Lesen-Bitschalter gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001008
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001009#. @-expanded: journal superblock has an unknown incompatible feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001010#: e2fsck/problem.c:283
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001011msgid "@j @S has an unknown incompatible feature flag set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001012msgstr ""
1013"im @j-@S ist ein unbekannter Bitschalter für inkompatible Eigenschaft "
1014"gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001015
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001016#. @-expanded: journal version not supported by this e2fsck.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001017#: e2fsck/problem.c:288
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001018msgid "@j version not supported by this e2fsck.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001019msgstr "diese @j-Version wird von diesem e2fsck nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001020
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001021#. @-expanded: Moving journal from /%s to hidden inode.\n
1022#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001023#: e2fsck/problem.c:293
Theodore Ts'o7527ef12007-12-05 19:35:20 -05001024#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001025msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001026"Moving @j from /%s to hidden @i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001027"\n"
1028msgstr ""
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001029"Verschiebe @j von /%s zum versteckten Inode.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001030"\n"
1031
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001032#. @-expanded: Error moving journal: %m\n
1033#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001034#: e2fsck/problem.c:298
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001035#, c-format
1036msgid ""
1037"Error moving @j: %m\n"
1038"\n"
1039msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001040"Fehler beim Verschieben von @j: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001041"\n"
1042
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001043#. @-expanded: Found invalid V2 journal superblock fields (from V1 journal).\n
1044#. @-expanded: Clearing fields beyond the V1 journal superblock...\n
1045#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001046#: e2fsck/problem.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001047msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001048"Found @n V2 @j @S fields (from V1 @j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001049"Clearing fields beyond the V1 @j @S...\n"
1050"\n"
1051msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001052"Unvollständige V2-@j-@S-Felder (vom V1-Journal) gefunden.\n"
1053"Die Felder nach dem V1-@j-@S werden bereinigt...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001054"\n"
1055
Philipp Thomas77c871a2010-04-19 16:59:02 -04001056#. @-expanded: Run journal anyway
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001057#: e2fsck/problem.c:309
Philipp Thomas77c871a2010-04-19 16:59:02 -04001058msgid "Run @j anyway"
1059msgstr "Starte @j trotzdem"
1060
1061#. @-expanded: Recovery flag not set in backup superblock, so running journal anyway.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001062#: e2fsck/problem.c:314
Philipp Thomas77c871a2010-04-19 16:59:02 -04001063msgid "Recovery flag not set in backup @S, so running @j anyway.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001064msgstr ""
1065"Der Bitschalter fÜr Wiederherstellung ist im Sicherungs-Superblock nicht\n"
1066"gesetzt, das @j wird daher trotzdem gestartet.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001067
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001068#. @-expanded: Backing up journal inode block information.\n
1069#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001070#: e2fsck/problem.c:319
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001071msgid ""
1072"Backing up @j @i @b information.\n"
1073"\n"
1074msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001075"Die Informationen des Journal-Inodeblocks werden gesichert.\n"
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001076"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001077
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001078#. @-expanded: filesystem does not have resize_inode enabled, but s_reserved_gdt_blocks\n
1079#. @-expanded: is %N; should be zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001080#: e2fsck/problem.c:324
Theodore Ts'obc759702005-05-09 20:40:55 -04001081msgid ""
1082"@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
1083"is %N; @s zero. "
1084msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001085"Für @f ist resize_@i nicht eingeschaltet, aber s_reserved_gdt_@bs\n"
1086"ist %N; @s Null. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001087
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001088#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001089#: e2fsck/problem.c:330
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001090msgid "Resize_@i not enabled, but the resize @i is non-zero. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001091msgstr ""
1092"Resize_@i ist nicht aktiviert, aber die zu modifgizierende @i ist nicht-Null."
Theodore Ts'obc759702005-05-09 20:40:55 -04001093
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001094#. @-expanded: Resize inode not valid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001095#: e2fsck/problem.c:335
Theodore Ts'obc759702005-05-09 20:40:55 -04001096msgid "Resize @i not valid. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001097msgstr "Resize-@i ist ungültig. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001098
Philipp Thomas77c871a2010-04-19 16:59:02 -04001099#. @-expanded: superblock last mount time (%t,\n
1100#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001101#: e2fsck/problem.c:340
Philipp Thomas77c871a2010-04-19 16:59:02 -04001102msgid ""
1103"@S last mount time (%t,\n"
1104"\tnow = %T) is in the future.\n"
1105msgstr ""
1106"Der Zeitpunkt des letzten Einhängens von @S (%t,\n"
1107"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001108
Philipp Thomas77c871a2010-04-19 16:59:02 -04001109#. @-expanded: superblock last write time (%t,\n
1110#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001111#: e2fsck/problem.c:345
Philipp Thomas77c871a2010-04-19 16:59:02 -04001112msgid ""
1113"@S last write time (%t,\n"
1114"\tnow = %T) is in the future.\n"
1115msgstr ""
1116"Der Zeitpunkt des letzten Schreibens von @S (%t,\n"
1117"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001118
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001119#. @-expanded: superblock hint for external superblock should be %X.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001120#: e2fsck/problem.c:349
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001121#, c-format
1122msgid "@S hint for external superblock @s %X. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001123msgstr "@S-Hinweis für externen Superblock @s %X. "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001124
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001125#. @-expanded: Adding dirhash hint to filesystem.\n
1126#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001127#: e2fsck/problem.c:354
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001128msgid ""
1129"Adding dirhash hint to @f.\n"
1130"\n"
1131msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001132"Füge Verzeinishash-Hilfe zu @f hinzu.\n"
1133"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001134
Philipp Thomasedc733d2012-04-22 15:38:42 -04001135#. @-expanded: group descriptor %g checksum is %04x, should be %04y.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001136#: e2fsck/problem.c:359
Philipp Thomasedc733d2012-04-22 15:38:42 -04001137msgid "@g descriptor %g checksum is %04x, should be %04y. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001138msgstr "Die Prüfsumme des @g-Deskriptors %g ist %04x, sie sollte %04y sein. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001139
1140#. @-expanded: group descriptor %g marked uninitialized without feature set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001141#: e2fsck/problem.c:364
Philipp Thomas720e6362008-06-21 14:06:00 -04001142#, c-format
1143msgid "@g descriptor %g marked uninitialized without feature set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001144msgstr ""
1145"@g-Deskriptor %g ist als nicht initialisiert gekennzeichnet ohne eine "
1146"gesetzte Eigenschaft.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001147
Philipp Thomas720e6362008-06-21 14:06:00 -04001148#. @-expanded: group descriptor %g has invalid unused inodes count %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001149#: e2fsck/problem.c:369
Philipp Thomas720e6362008-06-21 14:06:00 -04001150msgid "@g descriptor %g has invalid unused inodes count %b. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001151msgstr ""
1152"@g-Deskriptor %g hat eine ungültige Anzahl ungenutzter Inodes von %b. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001153
1154#. @-expanded: Last group block bitmap uninitialized.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001155#: e2fsck/problem.c:374
Philipp Thomas720e6362008-06-21 14:06:00 -04001156msgid "Last @g @b @B uninitialized. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001157msgstr "Die letzte Gruppen-Blockbitmap ist nicht initialisiert. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001158
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001159#: e2fsck/problem.c:379
Philipp Thomas720e6362008-06-21 14:06:00 -04001160#, c-format
1161msgid "Journal transaction %i was corrupt, replay was aborted.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001162msgstr ""
1163"Journaltransaktion %i war beschädigt, die Wiederholung wurde abgegrochen.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001164
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001165#: e2fsck/problem.c:383
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001166msgid "The test_fs flag is set (and ext4 is available). "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001167msgstr "Die Kennung test_fs wurde gesetzt (und ext4 ist verfügbar). "
1168
1169#. @-expanded: superblock last mount time is in the future.\n
1170#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1171#. @-expanded: set)
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001172#: e2fsck/problem.c:388
Philipp Thomas77c871a2010-04-19 16:59:02 -04001173msgid ""
1174"@S last mount time is in the future.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001175"\t(by less than a day, probably due to the hardware clock being incorrectly "
1176"set) "
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001177msgstr ""
Philipp Thomas77c871a2010-04-19 16:59:02 -04001178"Der Zeitpunkt des letzten Einhängens von @S liegt in der Zukunft.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001179"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-"
1180"Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001181
1182#. @-expanded: superblock last write time is in the future.\n
1183#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1184#. @-expanded: set).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001185#: e2fsck/problem.c:394
Philipp Thomas77c871a2010-04-19 16:59:02 -04001186msgid ""
1187"@S last write time is in the future.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001188"\t(by less than a day, probably due to the hardware clock being incorrectly "
1189"set). "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001190msgstr ""
1191"Der Zeitpunkt des letzten Schreibens von @S liegt in der Zukunft.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001192"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-"
1193"Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001194
1195#. @-expanded: One or more block group descriptor checksums are invalid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001196#: e2fsck/problem.c:400
Philipp Thomas77c871a2010-04-19 16:59:02 -04001197msgid "One or more @b @g descriptor checksums are invalid. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001198msgstr "Die Prüfsumme eines oder mehrerer @g-Deskriptoren ist ungültig. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001199
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001200#. @-expanded: Setting free inodes count to %j (was %i)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001201#: e2fsck/problem.c:405
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001202msgid "Setting free @is count to %j (was %i)\n"
1203msgstr "Setze die Anzahl der freien Inodes auf %j (war %i)\n"
1204
1205#. @-expanded: Setting free blocks count to %c (was %b)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001206#: e2fsck/problem.c:410
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001207msgid "Setting free @bs count to %c (was %b)\n"
1208msgstr "Setze die Anzahl der freien Blöcke auf %c (war %b)\n"
1209
Eric Sandeen032eafe2012-07-28 17:48:36 -04001210#. @-expanded: Making quota inode %i (%Q) hidden.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001211#: e2fsck/problem.c:415
Eric Sandeen032eafe2012-07-28 17:48:36 -04001212msgid "Making @q @i %i (%Q) hidden.\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05001213msgstr "Quota-Inode %i (%Q) wird versteckt.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001214
1215#. @-expanded: superblock has invalid MMP block.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001216#: e2fsck/problem.c:420
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001217msgid "@S has invalid MMP block. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001218msgstr "der @S hat einen ungültigen MMP-Block. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001219
1220#. @-expanded: superblock has invalid MMP magic.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001221#: e2fsck/problem.c:425
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001222msgid "@S has invalid MMP magic. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001223msgstr "der @S besitzt eine falsche MMP-Kennung. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001224
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001225#: e2fsck/problem.c:430
Philipp Thomasedc733d2012-04-22 15:38:42 -04001226#, c-format
1227msgid "ext2fs_open2: %m\n"
1228msgstr "ext2fs_open2: %m\n"
1229
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001230#: e2fsck/problem.c:435
Philipp Thomasedc733d2012-04-22 15:38:42 -04001231#, c-format
1232msgid "ext2fs_check_desc: %m\n"
1233msgstr "ext2fs_check_desc: %m\n"
1234
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001235#. @-expanded: superblock 64bit filesystems needs extents to access the whole disk.
Philipp Thomasedc733d2012-04-22 15:38:42 -04001236#: e2fsck/problem.c:440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001237msgid "@S 64bit filesystems needs extents to access the whole disk. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001238msgstr ""
1239"@S 64Bit-Dateisysteme brauchen Erweiterungern, um auf die gesammte Platte "
1240"zugreifen zu können. "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001241
1242#. @-expanded: Pass 1: Checking inodes, blocks, and sizes\n
1243#: e2fsck/problem.c:447
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001244msgid "Pass 1: Checking @is, @bs, and sizes\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001245msgstr "Durchgang 1: Prüfe @is, @bs und Größen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001246
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001247#. @-expanded: root inode is not a directory.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001248#: e2fsck/problem.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001249msgid "@r is not a @d. "
1250msgstr "@r ist kein @d. "
1251
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001252#. @-expanded: root inode has dtime set (probably due to old mke2fs).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001253#: e2fsck/problem.c:456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001254msgid "@r has dtime set (probably due to old mke2fs). "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001255msgstr "@r hat dtime gesetzt (vielleicht durch ein zu altes mke2fs). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001256
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001257#. @-expanded: Reserved inode %i (%Q) has invalid mode.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001258#: e2fsck/problem.c:461
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001259msgid "Reserved @i %i (%Q) has @n mode. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001260msgstr "Reservierte @i %i (%Q) hat einen ungültigen Modus. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001261
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001262#. @-expanded: deleted inode %i has zero dtime.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001263#: e2fsck/problem.c:466
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001264#, c-format
1265msgid "@D @i %i has zero dtime. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001266msgstr "dtime in @D @i %i ist Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001267
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001268#. @-expanded: inode %i is in use, but has dtime set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001269#: e2fsck/problem.c:471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001270#, c-format
1271msgid "@i %i is in use, but has dtime set. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001272msgstr "@i %i ist in Benutzung, aber hat dtime gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001273
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001274#. @-expanded: inode %i is a zero-length directory.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001275#: e2fsck/problem.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001276#, c-format
1277msgid "@i %i is a @z @d. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001278msgstr "@i %i ist ein Verzeichnis mit Länge Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001279
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001280#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001281#: e2fsck/problem.c:481
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001282msgid "@g %g's @b @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001283msgstr ""
1284"die Blockbitmap von @g %g auf %b überschneided sich mit einem anderen FS-"
1285"Block.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001286
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001287#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001288#: e2fsck/problem.c:486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001289msgid "@g %g's @i @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001290msgstr ""
1291"die @i-@B von @g %g bei %b überschneided sich mit einem anderen FS-Block.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001292
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001293#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001294#: e2fsck/problem.c:491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001295msgid "@g %g's @i table at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001296msgstr ""
1297"die @i-Tablle von Gruppe %g bei %b steht in Konflikt mit einem anderen "
1298"Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001299
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001300#. @-expanded: group %g's block bitmap (%b) is bad.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001301#: e2fsck/problem.c:496
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001302msgid "@g %g's @b @B (%b) is bad. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001303msgstr "die @b-@B (%b) von @g %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001304
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001305#. @-expanded: group %g's inode bitmap (%b) is bad.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001306#: e2fsck/problem.c:501
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001307msgid "@g %g's @i @B (%b) is bad. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001308msgstr "die @i-@B (%b) von @g %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001309
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001310#. @-expanded: inode %i, i_size is %Is, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001311#: e2fsck/problem.c:506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001312msgid "@i %i, i_size is %Is, @s %N. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001313msgstr "@i %i, i_size ist %Is, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001314
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001315#. @-expanded: inode %i, i_blocks is %Ib, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001316#: e2fsck/problem.c:511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001317msgid "@i %i, i_@bs is %Ib, @s %N. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001318msgstr "@i %i, i_@bs ist %Ib, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001319
Philipp Thomas77c871a2010-04-19 16:59:02 -04001320#. @-expanded: illegal %B (%b) in inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001321#: e2fsck/problem.c:516
Philipp Thomas77c871a2010-04-19 16:59:02 -04001322msgid "@I %B (%b) in @i %i. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001323msgstr "illegaler %B (%b) in @i %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001324
Philipp Thomas77c871a2010-04-19 16:59:02 -04001325#. @-expanded: %B (%b) overlaps filesystem metadata in inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001326#: e2fsck/problem.c:521
Philipp Thomas77c871a2010-04-19 16:59:02 -04001327msgid "%B (%b) overlaps @f metadata in @i %i. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001328msgstr "%B (%b) überlappt @f-Metadaten in @i %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001329
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001330#. @-expanded: inode %i has illegal block(s).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001331#: e2fsck/problem.c:526
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001332#, c-format
1333msgid "@i %i has illegal @b(s). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001334msgstr "@i %i hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001335
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001336#. @-expanded: Too many illegal blocks in inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001337#: e2fsck/problem.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001338#, c-format
1339msgid "Too many illegal @bs in @i %i.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001340msgstr "Zu viele unzulässige @bs in @i %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001341
Philipp Thomas77c871a2010-04-19 16:59:02 -04001342#. @-expanded: illegal %B (%b) in bad block inode.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001343#: e2fsck/problem.c:536
Philipp Thomas77c871a2010-04-19 16:59:02 -04001344msgid "@I %B (%b) in bad @b @i. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001345msgstr "@I %B (%b) in ungültiger @b-@i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001346
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001347#. @-expanded: Bad block inode has illegal block(s).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001348#: e2fsck/problem.c:541
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001349msgid "Bad @b @i has illegal @b(s). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001350msgstr "Bad-@b @i hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001351
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001352#. @-expanded: Duplicate or bad block in use!\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001353#: e2fsck/problem.c:546
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001354msgid "Duplicate or bad @b in use!\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001355msgstr "Doppelter oder unzulässiger @b in Gebrauch!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001356
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001357#. @-expanded: Bad block %b used as bad block inode indirect block.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001358#: e2fsck/problem.c:551
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001359msgid "Bad @b %b used as bad @b @i indirect @b. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001360msgstr ""
1361"Ungültiger @b %b wird benutzt als indirekter Block der Badblock-Inode. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001362
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001363#. @-expanded: \n
1364#. @-expanded: The bad block inode has probably been corrupted. You probably\n
1365#. @-expanded: should stop now and run e2fsck -c to scan for bad blocks\n
1366#. @-expanded: in the filesystem.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001367#: e2fsck/problem.c:556
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001368msgid ""
1369"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001370"The bad @b @i has probably been corrupted. You probably\n"
1371"should stop now and run e2fsck -c to scan for bad blocks\n"
1372"in the @f.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001373msgstr ""
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001374"\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001375"Die Badblock-Indode ist wahrscheinlich beschädigt worden. Sie sollten\n"
1376"nun innehalten und „e2fsck -c“ ausführen, um nach defekten Blöcken in\n"
1377"dem @f zu suchen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001378
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001379#. @-expanded: \n
1380#. @-expanded: If the block is really bad, the filesystem can not be fixed.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001381#: e2fsck/problem.c:563
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001382msgid ""
1383"\n"
1384"If the @b is really bad, the @f can not be fixed.\n"
1385msgstr ""
1386"\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001387"Wenn der @b wirklich defekt ist, kann das @f nicht repariert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001388
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001389#. @-expanded: You can remove this block from the bad block list and hope\n
1390#. @-expanded: that the block is really OK. But there are no guarantees.\n
1391#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001392#: e2fsck/problem.c:568
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001393msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001394"You can remove this @b from the bad @b list and hope\n"
1395"that the @b is really OK. But there are no guarantees.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001396"\n"
1397msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001398"Sie können diesen @b von der Liste der defekten Blöcke löschen\n"
1399"und hoffen, das dieser wirklich in Ordnung ist, es gibt aber\n"
1400"KEINE GARANTIEN.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001401"\n"
1402
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001403#. @-expanded: The primary superblock (%b) is on the bad block list.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001404#: e2fsck/problem.c:574
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001405msgid "The primary @S (%b) is on the bad @b list.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001406msgstr "Der primäre @S (%b) ist auf der Liste der defekten Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001407
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001408#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001409#: e2fsck/problem.c:579
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001410msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001411msgstr ""
1412"Block %b im primären Deskriptor @g ist auf der Liste der defekten Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001413
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001414#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001415#: e2fsck/problem.c:585
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001416msgid "Warning: Group %g's @S (%b) is bad.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001417msgstr "Warnung: der @S von Gruppe %g (%b) ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001418
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001419#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001420#: e2fsck/problem.c:590
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001421msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001422msgstr ""
1423"Warnung: die Kopie des Gruppen-Deskriptors von Gruppe %g hat einen defekten "
1424"Block (%b).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001425
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001426#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001427#: e2fsck/problem.c:596
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001428msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001429msgstr "Programmfehler? @b #%b wird ohne Grund in process_bad_@b verlangt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001430
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001431#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001432#: e2fsck/problem.c:602
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001433msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001434msgstr ""
1435"@A %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 -05001436
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001437#. @-expanded: error allocating block buffer for relocating %s\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001438#: e2fsck/problem.c:607
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001439#, c-format
1440msgid "@A @b buffer for relocating %s\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001441msgstr "@A einen @b-Puffer zum Verschieben von %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001442
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001443#. @-expanded: Relocating group %g's %s from %b to %c...\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001444#: e2fsck/problem.c:612
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001445msgid "Relocating @g %g's %s from %b to %c...\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001446msgstr "Verschiebe Gruppe %g's %s von %b nach %c...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001447
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001448#. @-expanded: Relocating group %g's %s to %c...\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001449#: e2fsck/problem.c:617
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001450#, c-format
1451msgid "Relocating @g %g's %s to %c...\n"
1452msgstr "Verschiebe @g %g's %s nach %c...\n"
1453
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001454#. @-expanded: Warning: could not read block %b of %s: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001455#: e2fsck/problem.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001456msgid "Warning: could not read @b %b of %s: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001457msgstr "Warnung: @b %b von %s konnte nicht gelesen werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001458
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001459#. @-expanded: Warning: could not write block %b for %s: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001460#: e2fsck/problem.c:627
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001461msgid "Warning: could not write @b %b for %s: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001462msgstr "Warnung: @b %b von %s konnte nicht geschrieben werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001463
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001464#. @-expanded: error allocating inode bitmap (%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001465#: e2fsck/problem.c:632 e2fsck/problem.c:1481
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001466msgid "@A @i @B (%N): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001467msgstr "@A die @i-@B (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001468
1469#. @-expanded: error allocating block bitmap (%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001470#: e2fsck/problem.c:637
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001471msgid "@A @b @B (%N): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001472msgstr "@A die @i-@B (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001473
1474#. @-expanded: error allocating icount link information: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001475#: e2fsck/problem.c:642
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001476#, c-format
1477msgid "@A icount link information: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001478msgstr "@A die „icount link information“: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001479
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001480#. @-expanded: error allocating directory block array: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001481#: e2fsck/problem.c:647
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001482#, c-format
1483msgid "@A @d @b array: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001484msgstr "@A das @d-@b-Feld: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001485
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001486#. @-expanded: Error while scanning inodes (%i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001487#: e2fsck/problem.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001488#, c-format
1489msgid "Error while scanning @is (%i): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001490msgstr "Fehler während des Durchsuchens der @is (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001491
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001492#. @-expanded: Error while iterating over blocks in inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001493#: e2fsck/problem.c:657
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001494#, c-format
1495msgid "Error while iterating over @bs in @i %i: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001496msgstr "Fehler beim Iterieren über die Blöcke in @i %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001497
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001498#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001499#: e2fsck/problem.c:662
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001500msgid "Error storing @i count information (@i=%i, count=%N): %m\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001501msgstr ""
1502"Fehler beim Speichern der @i Anzahl-Informationen (@i=%i, count=%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001503
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001504#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001505#: e2fsck/problem.c:667
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001506msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001507msgstr ""
1508"Fehler beim Speichern der @d-@b-Informationen (@i=%i, @b=%b, num=%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001509
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001510#. @-expanded: Error reading inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001511#: e2fsck/problem.c:673
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001512#, c-format
1513msgid "Error reading @i %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001514msgstr "Fehler beim Lesen von @i %i: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001515
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001516#. @-expanded: inode %i has imagic flag set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001517#: e2fsck/problem.c:681
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001518#, c-format
1519msgid "@i %i has imagic flag set. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001520msgstr "@i %i hat den Imagic-Bitschalter gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001521
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001522#. @-expanded: Special (device/socket/fifo/symlink) file (inode %i) has immutable\n
1523#. @-expanded: or append-only flag set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001524#: e2fsck/problem.c:686
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001525#, c-format
1526msgid ""
1527"Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
1528"or append-only flag set. "
1529msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001530"Spezielle (@v/socket/fifo/symlink) Datei (@i %i) hat den Bitschalter für\n"
1531"unveränderbar oder nur-anängen gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001532
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001533#. @-expanded: inode %i has compression flag set on filesystem without compression support.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001534#: e2fsck/problem.c:692
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001535#, c-format
1536msgid "@i %i has @cion flag set on @f without @cion support. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001537msgstr ""
1538"@i %i hat den Bitschalter für @c gesetzt auf einem @f ohne Unterstützung "
1539"dafür. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001540
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001541#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001542#: e2fsck/problem.c:697
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001543#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001544msgid "Special (@v/socket/fifo) @i %i has non-zero size. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001545msgstr "Spezielle (@v/socket/fifo) @i %i hat die Größe Null. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001546
1547#. @-expanded: journal inode is not in use, but contains data.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001548#: e2fsck/problem.c:707
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001549msgid "@j @i is not in use, but contains data. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001550msgstr "@j %i wird nicht verwendet, aber enthält Daten. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001551
1552#. @-expanded: journal is not regular file.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001553#: e2fsck/problem.c:712
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001554msgid "@j is not regular file. "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001555msgstr "@j ist keine reguläre Datei. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001556
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001557#. @-expanded: inode %i was part of the orphaned inode list.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001558#: e2fsck/problem.c:717
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001559#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001560msgid "@i %i was part of the @o @i list. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001561msgstr "@i %i war Teil der Liste verwaister Inodes. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001562
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001563#. @-expanded: inodes that were part of a corrupted orphan linked list found.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001564#: e2fsck/problem.c:723
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001565msgid "@is that were part of a corrupted orphan linked list found. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001566msgstr ""
1567"@is gefunden, die Teil einer defekten verketteten Liste von verwaisten @is "
1568"waren. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001569
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001570#. @-expanded: error allocating refcount structure (%N): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001571#: e2fsck/problem.c:728
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001572msgid "@A refcount structure (%N): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001573msgstr "@A die refcount-Structure (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001574
1575#. @-expanded: Error reading extended attribute block %b for inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001576#: e2fsck/problem.c:733
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001577msgid "Error reading @a @b %b for @i %i. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001578msgstr "Fehler beim Lesen des Blocks für erweiterte Attribute %b f @i %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001579
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001580#. @-expanded: inode %i has a bad extended attribute block %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001581#: e2fsck/problem.c:738
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001582msgid "@i %i has a bad @a @b %b. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001583msgstr "@i %i hat einen defekten erweiterte-Attribute-Block %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001584
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001585#. @-expanded: Error reading extended attribute block %b (%m).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001586#: e2fsck/problem.c:743
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001587msgid "Error reading @a @b %b (%m). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001588msgstr "Fehler beim Lesen des Blocks für erweiterte Attribute (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001589
Philipp Thomas77c871a2010-04-19 16:59:02 -04001590#. @-expanded: extended attribute block %b has reference count %r, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001591#: e2fsck/problem.c:748
Philipp Thomas77c871a2010-04-19 16:59:02 -04001592msgid "@a @b %b has reference count %r, @s %N. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001593msgstr "Der Referenzzähler des Blocks für @a %b ist %r, richtig wäre %N. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001594
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001595#. @-expanded: Error writing extended attribute block %b (%m).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001596#: e2fsck/problem.c:753
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001597msgid "Error writing @a @b %b (%m). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001598msgstr "Fehler beim Schreiben des Blocks für @a %b (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001599
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001600#. @-expanded: extended attribute block %b has h_blocks > 1.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001601#: e2fsck/problem.c:758
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001602msgid "@a @b %b has h_@bs > 1. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001603msgstr "der Block für @a %b hat h_blocks > 1. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001604
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001605#. @-expanded: error allocating extended attribute block %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001606#: e2fsck/problem.c:763
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001607msgid "@A @a @b %b. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001608msgstr "@A den Block für erweiterte Attribute %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001609
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001610#. @-expanded: extended attribute block %b is corrupt (allocation collision).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001611#: e2fsck/problem.c:768
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001612msgid "@a @b %b is corrupt (allocation collision). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001613msgstr "der @b für @a %b ist defekt (Kollision der Platzanforderungen). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001614
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001615#. @-expanded: extended attribute block %b is corrupt (invalid name).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001616#: e2fsck/problem.c:773
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001617msgid "@a @b %b is corrupt (@n name). "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001618msgstr "@a @b %b ist defekt (ungültiger Name). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001619
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001620#. @-expanded: extended attribute block %b is corrupt (invalid value).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001621#: e2fsck/problem.c:778
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001622msgid "@a @b %b is corrupt (@n value). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001623msgstr "der @b für @a %b ist defekt (ungültiger Wert). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001624
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001625#. @-expanded: inode %i is too big.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001626#: e2fsck/problem.c:783
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001627#, c-format
1628msgid "@i %i is too big. "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001629msgstr "@i %i ist zu groß. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001630
Philipp Thomas77c871a2010-04-19 16:59:02 -04001631#. @-expanded: %B (%b) causes directory to be too big.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001632#: e2fsck/problem.c:787
Philipp Thomas77c871a2010-04-19 16:59:02 -04001633msgid "%B (%b) causes @d to be too big. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001634msgstr "%B (%b) macht @d zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001635
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001636#: e2fsck/problem.c:792
Philipp Thomas77c871a2010-04-19 16:59:02 -04001637msgid "%B (%b) causes file to be too big. "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001638msgstr "@b #%B (%b) macht die Datei zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001639
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001640#: e2fsck/problem.c:797
Philipp Thomas77c871a2010-04-19 16:59:02 -04001641msgid "%B (%b) causes symlink to be too big. "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001642msgstr "@b #%B (%b) macht den Symlink zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001643
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001644#. @-expanded: inode %i has INDEX_FL flag set on filesystem without htree support.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001645#: e2fsck/problem.c:802
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001646#, c-format
1647msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001648msgstr "@i %i hat INDEX_FL Flag auf @f gesetzt ohne HTREE-Unterstützung.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001649
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001650#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001651#: e2fsck/problem.c:807
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001652#, c-format
1653msgid "@i %i has INDEX_FL flag set but is not a @d.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001654msgstr "@i %i hat den INDEX_FL-Bitschalter gesetzt, ist aber kein @d.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001655
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001656#. @-expanded: HTREE directory inode %i has an invalid root node.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001657#: e2fsck/problem.c:812
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001658#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001659msgid "@h %i has an @n root node.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001660msgstr "@h %i hat einen unvollständigen Wurzelknoten („root node“).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001661
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001662#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001663#: e2fsck/problem.c:817
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001664msgid "@h %i has an unsupported hash version (%N)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001665msgstr "@h %i hat eine nicht unterstützte Hash-Version (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001666
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001667#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001668#: e2fsck/problem.c:822
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001669#, c-format
1670msgid "@h %i uses an incompatible htree root node flag.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001671msgstr ""
1672"@h %i benutzt einen nicht unterstützten Bitschalter für einen Htree-"
1673"Wurzelknoten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001674
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001675#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001676#: e2fsck/problem.c:827
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001677msgid "@h %i has a tree depth (%N) which is too big\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001678msgstr "@h %i hat eine zu große Verzeichnistiefe von (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001679
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001680#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
1681#. @-expanded: filesystem metadata.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001682#: e2fsck/problem.c:832
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001683msgid ""
1684"Bad @b @i has an indirect @b (%b) that conflicts with\n"
1685"@f metadata. "
1686msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001687"der @i für defekte Blöcke hat einen indirekten @b (%b), der mit\n"
1688"den @f-Metadaten in Konflikt steht. "
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001689
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001690#. @-expanded: Resize inode (re)creation failed: %m.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001691#: e2fsck/problem.c:838
Theodore Ts'obc759702005-05-09 20:40:55 -04001692#, c-format
1693msgid "Resize @i (re)creation failed: %m."
Philipp Thomas9564ee52008-08-22 03:22:50 -04001694msgstr "Erzeugung von Vergrösserungs-@i scheiterte: %m."
Theodore Ts'obc759702005-05-09 20:40:55 -04001695
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001696#. @-expanded: inode %i has a extra size (%IS) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001697#: e2fsck/problem.c:843
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001698msgid "@i %i has a extra size (%IS) which is @n\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001699msgstr "@h %i hat eine ungültige Extragröße (%IS)\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001700
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001701#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001702#: e2fsck/problem.c:848
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001703msgid "@a in @i %i has a namelen (%N) which is @n\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001704msgstr "ein erweitertes Attribut in @i %i hat eine ungültige namelen von %N\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001705
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001706#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001707#: e2fsck/problem.c:853
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001708msgid "@a in @i %i has a value offset (%N) which is @n\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001709msgstr ""
1710"ein erweitertes Attribut in @i %i hat einen ungültigen Werteversatz von %N\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001711
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001712#. @-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 -04001713#: e2fsck/problem.c:858
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001714msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001715msgstr ""
1716"ein erweitertes Attribut in @i %i hat einen ungültigen Werteblock von %N "
1717"(muß 0 sein)\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001718
Philipp Thomas77c871a2010-04-19 16:59:02 -04001719#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001720#: e2fsck/problem.c:863
Philipp Thomas77c871a2010-04-19 16:59:02 -04001721msgid "@a in @i %i has a value size (%N) which is @n\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001722msgstr ""
1723"ein erweitertes Attribut in @i %i hat eine ungültige Wertegröße von %N\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001724
Philipp Thomas720e6362008-06-21 14:06:00 -04001725#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001726#: e2fsck/problem.c:868
Philipp Thomas720e6362008-06-21 14:06:00 -04001727msgid "@a in @i %i has a hash (%N) which is @n\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001728msgstr "ein erweitertes Attribut in @i %i hat den ungültigen Hash %N\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001729
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001730#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001731#: e2fsck/problem.c:873
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001732msgid "@i %i is a %It but it looks like it is really a directory.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001733msgstr ""
1734"@i %i ist ein %It, aber es sieht so aus, als ob es tatsächlich ein "
1735"Verzeichnis ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001736
Philipp Thomas40771272008-09-07 22:55:25 -04001737#. @-expanded: Error while reading over extent tree in inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001738#: e2fsck/problem.c:878
Philipp Thomas68801282008-07-17 11:47:00 -04001739#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001740msgid "Error while reading over @x tree in @i %i: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001741msgstr "Fehler beim Iterieren über den @xs-Baum @x in @i %i: %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001742
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001743#. @-expanded: Failed to iterate extents in inode %i\n
1744#. @-expanded: \t(op %s, blk %b, lblk %c): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001745#: e2fsck/problem.c:883
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001746msgid ""
1747"Failed to iterate extents in @i %i\n"
1748"\t(op %s, blk %b, lblk %c): %m\n"
1749msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001750"Das Iterieren der Erweiterungen (extents) in @i %i scheiterte\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001751"\t(op %s, blk %b, lblk %c): %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001752
1753#. @-expanded: inode %i has an invalid extent\n
1754#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001755#: e2fsck/problem.c:889
Philipp Thomas720e6362008-06-21 14:06:00 -04001756msgid ""
1757"@i %i has an @n extent\n"
1758"\t(logical @b %c, @n physical @b %b, len %N)\n"
1759msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001760"@i %i hat eine @ne Erweiterung\n"
Philipp Thomas68801282008-07-17 11:47:00 -04001761"\t(logischer @b %c, @n physischer @b %b, Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001762
1763#. @-expanded: inode %i has an invalid extent\n
1764#. @-expanded: \t(logical block %c, physical block %b, invalid len %N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001765#: e2fsck/problem.c:894
Philipp Thomas720e6362008-06-21 14:06:00 -04001766msgid ""
1767"@i %i has an @n extent\n"
1768"\t(logical @b %c, physical @b %b, @n len %N)\n"
1769msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001770"@i %i hat eine ungültige Erweiterung\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04001771"\t(logischer @b %c, physischer @b %b, @n Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001772
1773#. @-expanded: inode %i has EXTENTS_FL flag set on filesystem without extents support.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001774#: e2fsck/problem.c:899
Philipp Thomas720e6362008-06-21 14:06:00 -04001775#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001776msgid "@i %i has EXTENTS_FL flag set on @f without extents support.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001777msgstr ""
1778"@i %i hat EXTENTS_FL-Bitschalter gesetzt, obwohl das @f Erweiterungen nicht "
1779"unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001780
1781#. @-expanded: inode %i is in extent format, but superblock is missing EXTENTS feature\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001782#: e2fsck/problem.c:904
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001783#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001784msgid "@i %i is in extent format, but @S is missing EXTENTS feature\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001785msgstr ""
1786"@i %i besitzt das Erweiterungsformat, aber dem @S fehlt die Eigenschaft "
1787"EXTENTS\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001788
1789#. @-expanded: inode %i missing EXTENT_FL, but is in extents format\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001790#: e2fsck/problem.c:909
Philipp Thomas720e6362008-06-21 14:06:00 -04001791#, c-format
1792msgid "@i %i missing EXTENT_FL, but is in extents format\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001793msgstr "der @i %i fehlt EXTENT_FL, sie hat aber das Format einer Erweiterung\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001794
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001795#: e2fsck/problem.c:914
Philipp Thomas720e6362008-06-21 14:06:00 -04001796#, c-format
1797msgid "Fast symlink %i has EXTENT_FL set. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001798msgstr "In schnellem Symlink %i ist EXTENT_FL gesetzt. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001799
1800#. @-expanded: inode %i has out of order extents\n
1801#. @-expanded: \t(invalid logical block %c, physical block %b, len %N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001802#: e2fsck/problem.c:919
Philipp Thomas720e6362008-06-21 14:06:00 -04001803msgid ""
1804"@i %i has out of order extents\n"
1805"\t(@n logical @b %c, physical @b %b, len %N)\n"
1806msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001807"@i %i hat unregelmässige Erweiterungen\n"
Philipp Thomas68801282008-07-17 11:47:00 -04001808"\t(@n logischer @b %c, physischer @b %b, Länge %N)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001809
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001810#. @-expanded: inode %i has an invalid extent node (blk %b, lblk %c)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001811#: e2fsck/problem.c:923
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001812msgid "@i %i has an invalid extent node (blk %b, lblk %c)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001813msgstr "@i %i hat einen ungültigen Erweiterungs-Knoten (blk %b, lblk %c)\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001814
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001815#. @-expanded: Error converting subcluster block bitmap: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001816#: e2fsck/problem.c:928
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001817#, c-format
1818msgid "Error converting subcluster @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001819msgstr "Fehler beim Umwandeln der Subcluster-Blockbitmap: %m\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001820
1821#. @-expanded: quota inode is not regular file.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001822#: e2fsck/problem.c:933
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001823msgid "@q @i is not regular file. "
1824msgstr "die @q-@i ist keine reguläre Datei. "
1825
1826#. @-expanded: quota inode is not in use, but contains data.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001827#: e2fsck/problem.c:938
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001828msgid "@q @i is not in use, but contains data. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001829msgstr "@q-@i wird nicht benutzt, enthält aber Daten. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001830
1831#. @-expanded: quota inode is visible to the user.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001832#: e2fsck/problem.c:943
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001833msgid "@q @i is visible to the user. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001834msgstr "die @q-@i ist sichtbar für den Benutzer. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001835
1836#. @-expanded: The bad block inode looks invalid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001837#: e2fsck/problem.c:948
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001838msgid "The bad @b @i looks @n. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001839msgstr "Die Inode für defekte Blöcke sieht ungültig aus. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001840
Philipp Thomasedc733d2012-04-22 15:38:42 -04001841#. @-expanded: inode %i has zero length extent\n
1842#. @-expanded: \t(invalid logical block %c, physical block %b)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001843#: e2fsck/problem.c:953
Philipp Thomasedc733d2012-04-22 15:38:42 -04001844msgid ""
1845"@i %i has zero length extent\n"
1846"\t(@n logical @b %c, physical @b %b)\n"
1847msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001848"@i %i hat eine Erweitertung der Länge Null\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04001849"\t(@n logischer @b %c, physischer @b %b)\n"
1850
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001851#. @-expanded: Interior extent node level %N of inode %i:\n
1852#. @-expanded: Logical start %b does not match logical start %c at next level.
1853#: e2fsck/problem.c:960
1854msgid ""
1855"Interior @x node level %N of @i %i:\n"
1856"Logical start %b does not match logical start %c at next level. "
1857msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04001858"Ebene %Ndes internen Erweiterungsknoten von @i %i:\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001859"Der logische Start %b passt nicht zum logischen Start %c auf der nächsten "
1860"Ebene."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001861
1862#. @-expanded: inode %i, end of extent exceeds allowed value\n
1863#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
1864#: e2fsck/problem.c:966
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001865msgid ""
1866"@i %i, end of extent exceeds allowed value\n"
1867"\t(logical @b %c, physical @b %b, len %N)\n"
1868msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04001869"@i %i das Ende der Erweiterung ist ausserhalb des gültigen Bereichs\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001870"\t(logischer @b %c, @n physischer @b %b, Länge %N)\n"
1871
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001872#. @-expanded: \n
1873#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
1874#. @-expanded: Pass 1B: Rescanning for multiply-claimed blocks\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001875#: e2fsck/problem.c:974
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001876msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001877"\n"
1878"Running additional passes to resolve @bs claimed by more than one @i...\n"
1879"Pass 1B: Rescanning for @m @bs\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001880msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001881"\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001882"Führe zusätzliche Läufe durch, um die von mehr als einer @i beanspruchten "
1883"Blöcke zu klären...\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001884"Durchgang 1B: Suche nach mehrfach beanspruchten Blöcken\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001885
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001886#. @-expanded: multiply-claimed block(s) in inode %i:
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001887#: e2fsck/problem.c:980
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001888#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001889msgid "@m @b(s) in @i %i:"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001890msgstr "@me(r) Block/Blöcke in @i %i:"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001891
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001892#: e2fsck/problem.c:995
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001893#, c-format
1894msgid "Error while scanning inodes (%i): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001895msgstr "Fehlen beim Prüfen der Inodes (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001896
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001897#. @-expanded: error allocating inode bitmap (inode_dup_map): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001898#: e2fsck/problem.c:1000
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001899#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001900msgid "@A @i @B (@i_dup_map): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001901msgstr "@A die @i-@B (inode_dup_map): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001902
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001903#. @-expanded: Error while iterating over blocks in inode %i (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001904#: e2fsck/problem.c:1005
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001905#, c-format
1906msgid "Error while iterating over @bs in @i %i (%s): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001907msgstr "Fehler beim Iterieren über die Blöcke in @i %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001908
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001909#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001910#: e2fsck/problem.c:1010 e2fsck/problem.c:1325
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001911msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001912msgstr ""
1913"Fehler bei der Anpassung des Referenzzählers des Blocks für @a %b (@i %i): "
1914"%m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001915
Theodore Ts'o6956f612005-12-31 16:46:15 -05001916#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001917#: e2fsck/problem.c:1015
Theodore Ts'o6956f612005-12-31 16:46:15 -05001918msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001919msgstr ""
1920"Durchgang 1C: Durchsuche Verzeichnisse nach @is mit mehrfach belegten "
1921"Blöcken.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001922
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001923#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001924#: e2fsck/problem.c:1021
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001925msgid "Pass 1D: Reconciling @m @bs\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001926msgstr "Durchgang 1D: Gleiche mehrfach belegte Blöcke ab\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001927
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001928#. @-expanded: File %Q (inode #%i, mod time %IM) \n
Philipp Thomas77c871a2010-04-19 16:59:02 -04001929#. @-expanded: has %r multiply-claimed block(s), shared with %N file(s):\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001930#: e2fsck/problem.c:1026
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001931msgid ""
1932"File %Q (@i #%i, mod time %IM) \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001933" has %r @m @b(s), shared with %N file(s):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001934msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001935"Datei %Q (@i #%i, Änderungszeit %IM) \n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001936" hat %r mehrfach belegte(n) Block/Blöcke, gemeinsam genutzt mit %N "
1937"Datei(en):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001938
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001939#. @-expanded: \t%Q (inode #%i, mod time %IM)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001940#: e2fsck/problem.c:1032
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001941msgid "\t%Q (@i #%i, mod time %IM)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001942msgstr "\t%Q (@i #%i, Änderungszeit %IM)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001943
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001944#. @-expanded: \t<filesystem metadata>\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001945#: e2fsck/problem.c:1037
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001946msgid "\t<@f metadata>\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001947msgstr "\t<@f-Metadaten>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001948
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001949#. @-expanded: (There are %N inodes containing multiply-claimed blocks.)\n
1950#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001951#: e2fsck/problem.c:1042
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001952msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001953"(There are %N @is containing @m @bs.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001954"\n"
1955msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001956"(es gibt %N @is, die mehrfach belegte Blöcke enthalten.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001957"\n"
1958
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001959#. @-expanded: multiply-claimed blocks already reassigned or cloned.\n
1960#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001961#: e2fsck/problem.c:1047
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001962msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001963"@m @bs already reassigned or cloned.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001964"\n"
1965msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001966"mehrfach belegte Blöcke wurden bereits neu zugeordnet bzw. geklont.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001967"\n"
1968
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001969#: e2fsck/problem.c:1060
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001970#, c-format
1971msgid "Couldn't clone file: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001972msgstr "Kann eine Datei nicht klonen: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001973
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001974#. @-expanded: Pass 2: Checking directory structure\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001975#: e2fsck/problem.c:1066
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001976msgid "Pass 2: Checking @d structure\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001977msgstr "Durchgang 2: Prüfe die @dstruktur\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001978
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001979#. @-expanded: invalid inode number for '.' in directory inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001980#: e2fsck/problem.c:1071
Theodore Ts'o7527ef12007-12-05 19:35:20 -05001981#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001982msgid "@n @i number for '.' in @d @i %i.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001983msgstr "Falsche @inummer für „.“ in Verzeichnisinode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001984
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001985#. @-expanded: entry '%Dn' in %p (%i) has invalid inode #: %Di.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001986#: e2fsck/problem.c:1076
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001987msgid "@E has @n @i #: %Di.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001988msgstr "@E hat falsche @i-Nr.: %Di.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001989
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001990#. @-expanded: entry '%Dn' in %p (%i) has deleted/unused inode %Di.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001991#: e2fsck/problem.c:1081
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001992msgid "@E has @D/unused @i %Di. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001993msgstr "@E hat gelöschte/unbenutzt @i %Di. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001994
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001995#. @-expanded: entry '%Dn' in %p (%i) is a link to '.'
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001996#: e2fsck/problem.c:1086
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001997msgid "@E @L to '.' "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001998msgstr "@E @L nach „.“ "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001999
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002000#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002001#: e2fsck/problem.c:1091
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002002msgid "@E points to @i (%Di) located in a bad @b.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002003msgstr "@E zeigt auf eine @i (%Di) in einem defekten @b.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002004
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002005#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002006#: e2fsck/problem.c:1096
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002007msgid "@E @L to @d %P (%Di).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002008msgstr "@E @L mit @d %P (%Di).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002009
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002010#. @-expanded: entry '%Dn' in %p (%i) is a link to the root inode.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002011#: e2fsck/problem.c:1101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002012msgid "@E @L to the @r.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002013msgstr "@E @L mit der @r.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002014
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002015#. @-expanded: entry '%Dn' in %p (%i) has illegal characters in its name.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002016#: e2fsck/problem.c:1106
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002017msgid "@E has illegal characters in its name.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002018msgstr "@E hat ein unzulässiges Zeichen im Namen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002019
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002020#. @-expanded: Missing '.' in directory inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002021#: e2fsck/problem.c:1111
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002022#, c-format
2023msgid "Missing '.' in @d @i %i.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002024msgstr "Fehlende „.“ in @d @i %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002025
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002026#. @-expanded: Missing '..' in directory inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002027#: e2fsck/problem.c:1116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002028#, c-format
2029msgid "Missing '..' in @d @i %i.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002030msgstr "Fehlender Eintrag „..“ in @dinode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002031
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002032#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002033#: e2fsck/problem.c:1121
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002034msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002035msgstr "Der erste @e „%Dn“ (@i=%Di) in @d-@i %i (%p) sollte „.“ sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002036
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002037#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002038#: e2fsck/problem.c:1126
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002039msgid "Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002040msgstr "Der zweite @e „%Dn“ (inode=%Di) in @d-@i %i sollte „..“ sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002041
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002042#. @-expanded: i_faddr for inode %i (%Q) is %IF, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002043#: e2fsck/problem.c:1131
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002044msgid "i_faddr @F %IF, @s zero.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002045msgstr "i_faddr @F %IF, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002046
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002047#. @-expanded: i_file_acl for inode %i (%Q) is %If, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002048#: e2fsck/problem.c:1136
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002049msgid "i_file_acl @F %If, @s zero.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002050msgstr "i_file_acl @F %If, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002051
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002052#. @-expanded: i_dir_acl for inode %i (%Q) is %Id, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002053#: e2fsck/problem.c:1141
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002054msgid "i_dir_acl @F %Id, @s zero.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002055msgstr "i_dir_acl @F %Id, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002056
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002057#. @-expanded: i_frag for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002058#: e2fsck/problem.c:1146
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002059msgid "i_frag @F %N, @s zero.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002060msgstr "i_frag @F %N, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002061
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002062#. @-expanded: i_fsize for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002063#: e2fsck/problem.c:1151
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002064msgid "i_fsize @F %N, @s zero.\n"
2065msgstr "i_fsize @F %N, @s null.\n"
2066
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002067#. @-expanded: inode %i (%Q) has invalid mode (%Im).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002068#: e2fsck/problem.c:1156
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002069msgid "@i %i (%Q) has @n mode (%Im).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002070msgstr "@i %i (%Q) hat einen ungültigen Modus (%Im).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002071
Philipp Thomas77c871a2010-04-19 16:59:02 -04002072#. @-expanded: directory inode %i, %B, offset %N: directory corrupted\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002073#: e2fsck/problem.c:1161
Philipp Thomas77c871a2010-04-19 16:59:02 -04002074msgid "@d @i %i, %B, offset %N: @d corrupted\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002075msgstr "@d-@i %i, @b %B, Offset %N: @d defekt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002076
Philipp Thomas77c871a2010-04-19 16:59:02 -04002077#. @-expanded: directory inode %i, %B, offset %N: filename too long\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002078#: e2fsck/problem.c:1166
Philipp Thomas77c871a2010-04-19 16:59:02 -04002079msgid "@d @i %i, %B, offset %N: filename too long\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002080msgstr "@d-@i %i, @b %B, offset %N: Dateiname zu lang\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002081
Philipp Thomas77c871a2010-04-19 16:59:02 -04002082#. @-expanded: directory inode %i has an unallocated %B.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002083#: e2fsck/problem.c:1171
Philipp Thomas77c871a2010-04-19 16:59:02 -04002084msgid "@d @i %i has an unallocated %B. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002085msgstr "@d-@i %i hat einen nicht zugewiesenen %B. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002086
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002087#. @-expanded: '.' directory entry in directory inode %i is not NULL terminated\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002088#: e2fsck/problem.c:1176
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002089#, c-format
2090msgid "'.' @d @e in @d @i %i is not NULL terminated\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002091msgstr "@d-@e „.“ in @d-@i %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002092
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002093#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002094#: e2fsck/problem.c:1181
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002095#, c-format
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002096msgid "'..' @d @e in @d @i %i is not NULL terminated\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002097msgstr "@d-@e „..“ in @d-@i %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002098
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002099#. @-expanded: inode %i (%Q) is an illegal character device.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002100#: e2fsck/problem.c:1186
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002101msgid "@i %i (%Q) is an @I character @v.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002102msgstr "@i %i (%Q) ist ein @I zeichenorientiertes Gerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002103
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002104#. @-expanded: inode %i (%Q) is an illegal block device.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002105#: e2fsck/problem.c:1191
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002106msgid "@i %i (%Q) is an @I @b @v.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002107msgstr "@i %i (%Q) ist ein @I blockorientiertes Gerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002108
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002109#. @-expanded: entry '%Dn' in %p (%i) is duplicate '.' entry.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002110#: e2fsck/problem.c:1196
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002111msgid "@E is duplicate '.' @e.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002112msgstr "@E ist ein doppelter @e für „.“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002113
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002114#. @-expanded: entry '%Dn' in %p (%i) is duplicate '..' entry.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002115#: e2fsck/problem.c:1201
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002116msgid "@E is duplicate '..' @e.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002117msgstr "@E ist ein doppelter @e für „..“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002118
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002119#: e2fsck/problem.c:1206 e2fsck/problem.c:1506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002120#, c-format
2121msgid "Internal error: couldn't find dir_info for %i.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002122msgstr "Interner Fehler: kann dir_info für %i nicht finden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002123
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002124#. @-expanded: entry '%Dn' in %p (%i) has rec_len of %Dr, should be %N.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002125#: e2fsck/problem.c:1211
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002126msgid "@E has rec_len of %Dr, @s %N.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002127msgstr "@E hat eine rec_len von %Dr, sollte %N sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002128
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002129#. @-expanded: error allocating icount structure: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002130#: e2fsck/problem.c:1216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002131#, c-format
2132msgid "@A icount structure: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002133msgstr "@A die icount-Structur: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002134
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002135#. @-expanded: Error iterating over directory blocks: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002136#: e2fsck/problem.c:1221
Theodore Ts'of9e6df42004-05-04 16:19:13 -04002137#, c-format
Theodore Ts'of592bed2003-07-26 00:51:54 -04002138msgid "Error iterating over @d @bs: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002139msgstr "Fehler beim Durchlaufen der @dblöcke: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002140
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002141#. @-expanded: Error reading directory block %b (inode %i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002142#: e2fsck/problem.c:1226
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002143msgid "Error reading @d @b %b (@i %i): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002144msgstr "Fehler beim Lesen des @dblocks %b (@i %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002145
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002146#. @-expanded: Error writing directory block %b (inode %i): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002147#: e2fsck/problem.c:1231
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002148msgid "Error writing @d @b %b (@i %i): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002149msgstr "Fehler beim Schreiben von @dblock %b (@i %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002150
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002151#. @-expanded: error allocating new directory block for inode %i (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002152#: e2fsck/problem.c:1236
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002153#, c-format
2154msgid "@A new @d @b for @i %i (%s): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002155msgstr "@A einen neuen @dblock für @i %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002156
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002157#. @-expanded: Error deallocating inode %i: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002158#: e2fsck/problem.c:1241
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002159#, c-format
2160msgid "Error deallocating @i %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002161msgstr "Fehler bei der Freigabe von @i %i: %m\n"
2162
Philipp Thomas40771272008-09-07 22:55:25 -04002163#. @-expanded: directory entry for '.' in %p (%i) is big.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002164#: e2fsck/problem.c:1246
Philipp Thomas40771272008-09-07 22:55:25 -04002165#, c-format
2166msgid "@d @e for '.' in %p (%i) is big.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002167msgstr "Verzeichniseintrag für „.“ in %p (%i) ist groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002168
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002169#. @-expanded: inode %i (%Q) is an illegal FIFO.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002170#: e2fsck/problem.c:1251
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002171msgid "@i %i (%Q) is an @I FIFO.\n"
2172msgstr "@i %i (%Q) ist ein @I FIFO.\n"
2173
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002174#. @-expanded: inode %i (%Q) is an illegal socket.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002175#: e2fsck/problem.c:1256
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002176msgid "@i %i (%Q) is an @I socket.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002177msgstr "@i %i (%Q) ist ein illegaler Socket.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002178
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002179#. @-expanded: Setting filetype for entry '%Dn' in %p (%i) to %N.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002180#: e2fsck/problem.c:1261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002181msgid "Setting filetype for @E to %N.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002182msgstr "Setze den Dateitype für @E auf %N.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002183
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002184#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002185#: e2fsck/problem.c:1266
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002186msgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002187msgstr "@E hat einen falschen Dateityp (war %Dt, sollte %N sein).\n"
2188
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002189#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002190#: e2fsck/problem.c:1271
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002191msgid "@E has filetype set.\n"
2192msgstr "@E hat Dateityp gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002193
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002194#. @-expanded: entry '%Dn' in %p (%i) has a zero-length name.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002195#: e2fsck/problem.c:1276
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002196msgid "@E has a @z name.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002197msgstr "@E hat einen Namen der Länge Null.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002198
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002199#. @-expanded: Symlink %Q (inode #%i) is invalid.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002200#: e2fsck/problem.c:1281
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002201msgid "Symlink %Q (@i #%i) is @n.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002202msgstr "Symlink %Q (@i #%i) is invalid.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002203
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002204#. @-expanded: extended attribute block for inode %i (%Q) is invalid (%If).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002205#: e2fsck/problem.c:1286
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002206msgid "@a @b @F @n (%If).\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002207msgstr "@a @b @F ist falsch (%If).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002208
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002209#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002210#: e2fsck/problem.c:1291
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002211msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002212msgstr ""
2213"@f enthält große Dateien, aber im @S den Bitschalter LARGE_FILE nicht "
2214"gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002215
Philipp Thomas77c871a2010-04-19 16:59:02 -04002216#. @-expanded: problem in HTREE directory inode %d: %B not referenced\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002217#: e2fsck/problem.c:1296
Philipp Thomas77c871a2010-04-19 16:59:02 -04002218msgid "@p @h %d: %B not referenced\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002219msgstr "@p @h %d: %B ist nicht referenziert\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002220
Philipp Thomas77c871a2010-04-19 16:59:02 -04002221#. @-expanded: problem in HTREE directory inode %d: %B referenced twice\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002222#: e2fsck/problem.c:1301
Philipp Thomas77c871a2010-04-19 16:59:02 -04002223msgid "@p @h %d: %B referenced twice\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002224msgstr "@p @h %d: %B doppelt referenziert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002225
Philipp Thomas77c871a2010-04-19 16:59:02 -04002226#. @-expanded: problem in HTREE directory inode %d: %B has bad min hash\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002227#: e2fsck/problem.c:1306
Philipp Thomas77c871a2010-04-19 16:59:02 -04002228msgid "@p @h %d: %B has bad min hash\n"
2229msgstr "@p @h %d: %B hat ungültigen Minimumhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002230
Philipp Thomas77c871a2010-04-19 16:59:02 -04002231#. @-expanded: problem in HTREE directory inode %d: %B has bad max hash\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002232#: e2fsck/problem.c:1311
Philipp Thomas77c871a2010-04-19 16:59:02 -04002233msgid "@p @h %d: %B has bad max hash\n"
2234msgstr "@p @h %d: %B hat ungültigen Maximalhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002235
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002236#. @-expanded: invalid HTREE directory inode %d (%q).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002237#: e2fsck/problem.c:1316
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002238msgid "@n @h %d (%q). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002239msgstr "Ungültige @h %d (%q). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002240
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002241#. @-expanded: problem in HTREE directory inode %d (%q): bad block number %b.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002242#: e2fsck/problem.c:1320
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002243msgid "@p @h %d (%q): bad @b number %b.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002244msgstr "@p @h %d (%q): falsche Blocknummer %b.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002245
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002246#. @-expanded: problem in HTREE directory inode %d: root node is invalid\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002247#: e2fsck/problem.c:1330
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002248#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002249msgid "@p @h %d: root node is @n\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002250msgstr "@p @h %d: Wurzelknotenist ungültig\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002251
Philipp Thomas77c871a2010-04-19 16:59:02 -04002252#. @-expanded: problem in HTREE directory inode %d: %B has invalid limit (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002253#: e2fsck/problem.c:1335
Philipp Thomas77c871a2010-04-19 16:59:02 -04002254msgid "@p @h %d: %B has @n limit (%N)\n"
2255msgstr "@p @h %d: %B hat eine ungültige Begrenzung (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002256
Philipp Thomas77c871a2010-04-19 16:59:02 -04002257#. @-expanded: problem in HTREE directory inode %d: %B has invalid count (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002258#: e2fsck/problem.c:1340
Philipp Thomas77c871a2010-04-19 16:59:02 -04002259msgid "@p @h %d: %B has @n count (%N)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002260msgstr "@p @h %d: %B hat einen ungültigen Zählerstand (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002261
Philipp Thomas77c871a2010-04-19 16:59:02 -04002262#. @-expanded: problem in HTREE directory inode %d: %B has an unordered hash table\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002263#: e2fsck/problem.c:1345
Philipp Thomas77c871a2010-04-19 16:59:02 -04002264msgid "@p @h %d: %B has an unordered hash table\n"
2265msgstr "@p @h %d: %B hat eine unsortierte Hashtabelle\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002266
Philipp Thomas77c871a2010-04-19 16:59:02 -04002267#. @-expanded: problem in HTREE directory inode %d: %B has invalid depth (%N)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002268#: e2fsck/problem.c:1350
Philipp Thomas77c871a2010-04-19 16:59:02 -04002269msgid "@p @h %d: %B has @n depth (%N)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002270msgstr "@p @h %d: %B hat eine ungültige Tiefe (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002271
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002272#. @-expanded: Duplicate entry '%Dn' in %p (%i) found.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002273#: e2fsck/problem.c:1355
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002274msgid "Duplicate @E found. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002275msgstr "Doppelter @E gefunden. "
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002276
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002277#. @-expanded: entry '%Dn' in %p (%i) has a non-unique filename.\n
2278#. @-expanded: Rename to %s
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002279#: e2fsck/problem.c:1360
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002280#, no-c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002281msgid ""
2282"@E has a non-unique filename.\n"
2283"Rename to %s"
2284msgstr ""
Philipp Thomas9564ee52008-08-22 03:22:50 -04002285"@E hat keinen eindeutigen Dateinnamen.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002286"Benenne in %s um"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002287
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002288#. @-expanded: Duplicate entry '%Dn' found.\n
2289#. @-expanded: \tMarking %p (%i) to be rebuilt.\n
2290#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002291#: e2fsck/problem.c:1365
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002292msgid ""
2293"Duplicate @e '%Dn' found.\n"
2294"\tMarking %p (%i) to be rebuilt.\n"
2295"\n"
2296msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002297"Doppelter @e „%Dn“ gefunden.\n"
2298"\t%p (%i) wird für die Neuerstellung markiert.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002299"\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002300
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002301#. @-expanded: i_blocks_hi for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002302#: e2fsck/problem.c:1370
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002303msgid "i_blocks_hi @F %N, @s zero.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002304msgstr "i_blocks_hi @F %N, sollte Null sein.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002305
Philipp Thomas720e6362008-06-21 14:06:00 -04002306#. @-expanded: Unexpected block in HTREE directory inode %d (%q).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002307#: e2fsck/problem.c:1375
Philipp Thomas720e6362008-06-21 14:06:00 -04002308msgid "Unexpected @b in @h %d (%q).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002309msgstr "Unerwarteter @b in @h %d (%q).\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002310
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002311#. @-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 -04002312#: e2fsck/problem.c:1379
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002313msgid "@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002314msgstr "@E referenziert @i %Di in @g %g, für die _INODE_UNINIT gesetzt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002315
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002316#. @-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 -04002317#: e2fsck/problem.c:1384
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002318msgid "@E references @i %Di found in @g %g's unused inodes area.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002319msgstr ""
2320"@E verweist auf @i %Di, die im Bereich ungenutzter Inodes von @g %g zu "
2321"finden ist.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002322
2323#. @-expanded: i_file_acl_hi for inode %i (%Q) is %N, should be zero.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002324#: e2fsck/problem.c:1389
Philipp Thomas77c871a2010-04-19 16:59:02 -04002325msgid "i_file_acl_hi @F %N, @s zero.\n"
2326msgstr "i_file_acl_hi @F %N, sollte Null sein.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002327
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002328#. @-expanded: Pass 3: Checking directory connectivity\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002329#: e2fsck/problem.c:1396
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002330msgid "Pass 3: Checking @d connectivity\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002331msgstr "Durchgang 3: Prüfe @d-Verknüpfungen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002332
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002333#. @-expanded: root inode not allocated.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002334#: e2fsck/problem.c:1401
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002335msgid "@r not allocated. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002336msgstr "@r nicht zugeordnet. "
2337
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002338#. @-expanded: No room in lost+found directory.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002339#: e2fsck/problem.c:1406
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002340msgid "No room in @l @d. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002341msgstr "Kein Platz im Verzeichnis @l. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002342
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002343#. @-expanded: Unconnected directory inode %i (%p)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002344#: e2fsck/problem.c:1411
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002345#, c-format
2346msgid "Unconnected @d @i %i (%p)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002347msgstr "Nicht verbundene @d-@i %i (%p)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002348
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002349#. @-expanded: /lost+found not found.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002350#: e2fsck/problem.c:1416
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002351msgid "/@l not found. "
2352msgstr "/@l nicht gefunden. "
2353
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002354#. @-expanded: '..' in %Q (%i) is %P (%j), should be %q (%d).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002355#: e2fsck/problem.c:1421
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002356msgid "'..' in %Q (%i) is %P (%j), @s %q (%d).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002357msgstr "„..“ in %Q (%i) ist %P (%j), sollte %q (%d) sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002358
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002359#. @-expanded: Bad or non-existent /lost+found. Cannot reconnect.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002360#: e2fsck/problem.c:1426
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002361msgid "Bad or non-existent /@l. Cannot reconnect.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002362msgstr ""
2363"Falsches oder fehlendes Verzeichnis /@l. Wiederverbinden nicht möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002364
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002365#. @-expanded: Could not expand /lost+found: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002366#: e2fsck/problem.c:1431
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002367#, c-format
2368msgid "Could not expand /@l: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002369msgstr "Erweitern von /@l nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002370
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002371#: e2fsck/problem.c:1436
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002372#, c-format
2373msgid "Could not reconnect %i: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002374msgstr "Wiederverbinden von %i nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002375
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002376#. @-expanded: Error while trying to find /lost+found: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002377#: e2fsck/problem.c:1441
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002378#, c-format
2379msgid "Error while trying to find /@l: %m\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002380msgstr "Fehler während der Suche nach /@l: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002381
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002382#. @-expanded: ext2fs_new_block: %m while trying to create /lost+found directory\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002383#: e2fsck/problem.c:1446
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002384#, c-format
2385msgid "ext2fs_new_@b: %m while trying to create /@l @d\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002386msgstr "ext2fs_new_@b: %m während des Versuches, @d /@l zu erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002387
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002388#. @-expanded: ext2fs_new_inode: %m while trying to create /lost+found directory\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002389#: e2fsck/problem.c:1451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002390#, c-format
2391msgid "ext2fs_new_@i: %m while trying to create /@l @d\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002392msgstr "ext2fs_new_@i: %m während des Versuches, @d /@l zu erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002393
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002394#. @-expanded: ext2fs_new_dir_block: %m while creating new directory block\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002395#: e2fsck/problem.c:1456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002396#, c-format
2397msgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002398msgstr "ext2fs_new_dir_@b: %m während des Versuches, @d /@l zu erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002399
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002400#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002401#: e2fsck/problem.c:1461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002402#, c-format
2403msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002404msgstr "ext2fs_write_dir_@b: %m während des Schreibens des @d-@bs für /@l\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002405
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002406#. @-expanded: Error while adjusting inode count on inode %i\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002407#: e2fsck/problem.c:1466
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002408#, c-format
2409msgid "Error while adjusting @i count on @i %i\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002410msgstr "Fehler während des Anpassens der @i-Anzahl auf @i %i\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002411
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002412#. @-expanded: Couldn't fix parent of inode %i: %m\n
2413#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002414#: e2fsck/problem.c:1471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002415#, c-format
2416msgid ""
2417"Couldn't fix parent of @i %i: %m\n"
2418"\n"
2419msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002420"Konnte den Eigentümer von @i %i nicht reparieren: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002421"\n"
2422
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002423#. @-expanded: Couldn't fix parent of inode %i: Couldn't find parent directory entry\n
2424#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002425#: e2fsck/problem.c:1476
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002426#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002427msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002428"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002429"\n"
2430msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002431"Eigentümer von @i %i konnte nicht repariert werden: \n"
2432"@deintrag des Eigentümers wurde nicht gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002433
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002434#. @-expanded: Error creating root directory (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002435#: e2fsck/problem.c:1486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002436#, c-format
2437msgid "Error creating root @d (%s): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002438msgstr "Fehler beim Erzeugen des Wurzelverzeichnisses (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002439
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002440#. @-expanded: Error creating /lost+found directory (%s): %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002441#: e2fsck/problem.c:1491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002442#, c-format
2443msgid "Error creating /@l @d (%s): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002444msgstr "Fehler beim Erzeugen des Verzeichnisses /@l (%s): %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002445
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002446#. @-expanded: root inode is not a directory; aborting.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002447#: e2fsck/problem.c:1496
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002448msgid "@r is not a @d; aborting.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002449msgstr "die Wurzelinode ist kein @d; Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002450
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002451#. @-expanded: Cannot proceed without a root inode.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002452#: e2fsck/problem.c:1501
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002453msgid "Cannot proceed without a @r.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002454msgstr "Ohne Wurzelinode ist weiteres Arbeiten nicht möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002455
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002456#. @-expanded: /lost+found is not a directory (ino=%i)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002457#: e2fsck/problem.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002458#, c-format
2459msgid "/@l is not a @d (ino=%i)\n"
2460msgstr "/@l ist kein @d (ino=%i)\n"
2461
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002462#: e2fsck/problem.c:1518
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002463msgid "Pass 3A: Optimizing directories\n"
2464msgstr "Durchgang 3A: Optimiere Verzeichnisse\n"
2465
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002466#: e2fsck/problem.c:1523
Philipp Thomas77c871a2010-04-19 16:59:02 -04002467#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002468msgid "Failed to create dirs_to_hash iterator: %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002469msgstr "dirs_to_hash Iterator konnte nicht erzeugt werden: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002470
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002471#: e2fsck/problem.c:1528
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002472msgid "Failed to optimize directory %q (%d): %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002473msgstr "Verzeichnis %q (%d) konnte nicht optimiert werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002474
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002475#: e2fsck/problem.c:1533
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002476msgid "Optimizing directories: "
2477msgstr "Optimiere Verzeichnisse: "
2478
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002479#: e2fsck/problem.c:1550
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002480msgid "Pass 4: Checking reference counts\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002481msgstr "Durchgang 4: Überprüfe die Referenzzähler\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002482
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002483#. @-expanded: unattached zero-length inode %i.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002484#: e2fsck/problem.c:1555
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002485#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002486msgid "@u @z @i %i. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002487msgstr "@ue @I %i @z. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002488
2489#. @-expanded: unattached inode %i\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002490#: e2fsck/problem.c:1560
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002491#, c-format
2492msgid "@u @i %i\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002493msgstr "@ue @i %i\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002494
2495#. @-expanded: inode %i ref count is %Il, should be %N.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002496#: e2fsck/problem.c:1565
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002497msgid "@i %i ref count is %Il, @s %N. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002498msgstr "Der Referenzzähler von @i %i ist %Il, @s aber %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002499
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002500#. @-expanded: WARNING: PROGRAMMING BUG IN E2FSCK!\n
2501#. @-expanded: \tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n
2502#. @-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 -04002503#: e2fsck/problem.c:1569
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002504msgid ""
2505"WARNING: PROGRAMMING BUG IN E2FSCK!\n"
2506"\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002507"@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 -05002508msgstr ""
2509"WARNUNG: PROGRAMMIERFEHLER IN E2FSCK!\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002510"\tODER EIN TROTTEL (SIE) PRÜFT EIN EINGEHÄNGTES (AKTIVES) DATEISYSTEM.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002511"@i_link_info[%i] ist %N, @i.i_links_count ist %Il. Sie sollten identisch "
2512"sein!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002513
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002514#. @-expanded: Pass 5: Checking group summary information\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002515#: e2fsck/problem.c:1579
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002516msgid "Pass 5: Checking @g summary information\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002517msgstr "Durchgang 5: Überprüfe die zusammengefasste Gruppeninformation\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002518
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002519#. @-expanded: Padding at end of inode bitmap is not set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002520#: e2fsck/problem.c:1584
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002521msgid "Padding at end of @i @B is not set. "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002522msgstr "Auffüllbyte am Ende von @i @B ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002523
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002524#. @-expanded: Padding at end of block bitmap is not set.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002525#: e2fsck/problem.c:1589
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002526msgid "Padding at end of @b @B is not set. "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002527msgstr "Auffüllbyte am Ende von @b @B ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002528
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002529#. @-expanded: block bitmap differences:
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002530#: e2fsck/problem.c:1594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002531msgid "@b @B differences: "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002532msgstr "Unterschiede in der @b-@B: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002533
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002534#. @-expanded: inode bitmap differences:
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002535#: e2fsck/problem.c:1614
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002536msgid "@i @B differences: "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002537msgstr "Unterschiede in der @i-@B: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002538
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002539#. @-expanded: Free inodes count wrong for group #%g (%i, counted=%j).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002540#: e2fsck/problem.c:1634
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002541msgid "Free @is count wrong for @g #%g (%i, counted=%j).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002542msgstr "Die Anzahl freier @is ist falsch für @g #%g (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002543
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002544#. @-expanded: Directories count wrong for group #%g (%i, counted=%j).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002545#: e2fsck/problem.c:1639
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002546msgid "Directories count wrong for @g #%g (%i, counted=%j).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002547msgstr "Die Anzahl der Verzeichnisse ist falsch für @g #%g (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002548
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002549#. @-expanded: Free inodes count wrong (%i, counted=%j).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002550#: e2fsck/problem.c:1644
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002551msgid "Free @is count wrong (%i, counted=%j).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002552msgstr "Die Anzahl freier @is ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002553
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002554#. @-expanded: Free blocks count wrong for group #%g (%b, counted=%c).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002555#: e2fsck/problem.c:1649
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002556msgid "Free @bs count wrong for @g #%g (%b, counted=%c).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002557msgstr "Die Anzahl freier Blöcke in @g #%g ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002558
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002559#. @-expanded: Free blocks count wrong (%b, counted=%c).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002560#: e2fsck/problem.c:1654
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002561msgid "Free @bs count wrong (%b, counted=%c).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002562msgstr "Die Anzahl freier Blöcke ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002563
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002564#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
2565#. @-expanded: endpoints (%i, %j)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002566#: e2fsck/problem.c:1659
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002567msgid ""
2568"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
2569"endpoints (%i, %j)\n"
2570msgstr ""
2571"PROGRAMMIERFEHLER: Dateisystem (#%N) @B-Endpunkte (%b, %c) passen nicht mit "
2572"den berechneten @B-Endpunkten (%i, %j) überein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002573
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002574#: e2fsck/problem.c:1665
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002575msgid "Internal error: fudging end of bitmap (%N)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002576msgstr "Interner Fehler: das Ende der Bitmap (%N) wird erraten\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002577
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002578#. @-expanded: Error copying in replacement inode bitmap: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002579#: e2fsck/problem.c:1670
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002580#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002581msgid "Error copying in replacement @i @B: %m\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002582msgstr "Fehler beim hineinkopieren von @i @B: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002583
2584#. @-expanded: Error copying in replacement block bitmap: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002585#: e2fsck/problem.c:1675
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002586#, c-format
2587msgid "Error copying in replacement @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002588msgstr "Fehler beim Hineinkopieren der Ersatz-Blockbitmap: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002589
Philipp Thomas720e6362008-06-21 14:06:00 -04002590#. @-expanded: group %g block(s) in use but group is marked BLOCK_UNINIT\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002591#: e2fsck/problem.c:1700
Philipp Thomas720e6362008-06-21 14:06:00 -04002592#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04002593msgid "@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002594msgstr ""
2595"Blöcke von @g %g sind in Beutzung, obwohl @g als BLOCK_UNINIT markiert ist\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04002596
2597#. @-expanded: group %g inode(s) in use but group is marked INODE_UNINIT\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002598#: e2fsck/problem.c:1705
Theodore Ts'o057a1592010-06-07 12:24:21 -04002599#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04002600msgid "@g %g @i(s) in use but @g is marked INODE_UNINIT\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002601msgstr ""
2602"Die @isw der @g %g sind in Benutzung, obwohl @g als INODE_UNINIT markiert "
2603"ist\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002604
Philipp Thomas77c871a2010-04-19 16:59:02 -04002605#. @-expanded: Recreate journal
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002606#: e2fsck/problem.c:1712
Philipp Thomas77c871a2010-04-19 16:59:02 -04002607msgid "Recreate @j"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002608msgstr "@j wird wiederhergestellt"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002609
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002610#: e2fsck/problem.c:1717
Eric Sandeen032eafe2012-07-28 17:48:36 -04002611msgid "Update quota info for quota type %N"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002612msgstr "Quota-Info für Typ %N wird aktualisiert"
Eric Sandeen032eafe2012-07-28 17:48:36 -04002613
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002614#: e2fsck/problem.c:1836
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002615#, c-format
2616msgid "Unhandled error code (0x%x)!\n"
2617msgstr "Unbenutzter Fehlercode (0x%x)!\n"
2618
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002619#: e2fsck/problem.c:1961 e2fsck/problem.c:1965
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002620msgid "IGNORED"
2621msgstr "IGNORIERT"
2622
Eric Sandeen032eafe2012-07-28 17:48:36 -04002623#: e2fsck/scantest.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002624#, c-format
2625msgid "Memory used: %d, elapsed time: %6.3f/%6.3f/%6.3f\n"
2626msgstr "benutzter Speicher: %d, vergangende Zeit: %6.3f/%6.3f/%6.3f\n"
2627
Eric Sandeen032eafe2012-07-28 17:48:36 -04002628#: e2fsck/scantest.c:98
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002629#, c-format
2630msgid "size of inode=%d\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002631msgstr "Größe der Inode=%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002632
Eric Sandeen032eafe2012-07-28 17:48:36 -04002633#: e2fsck/scantest.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002634msgid "while starting inode scan"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002635msgstr "beim Starten der Inodeprüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002636
Eric Sandeen032eafe2012-07-28 17:48:36 -04002637#: e2fsck/scantest.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002638msgid "while doing inode scan"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002639msgstr "während der Inodeprüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002640
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002641#: e2fsck/super.c:190
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002642#, c-format
2643msgid "while calling ext2fs_block_iterate for inode %d"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002644msgstr "während des Aufrufs von ext2fs_block_iterate für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002645
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002646#: e2fsck/super.c:213
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002647#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002648msgid "while calling ext2fs_adjust_ea_refcount2 for inode %d"
2649msgstr "während des Aufrufs von ext2fs_adjust_ea_refcount2 für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002650
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002651#: e2fsck/super.c:274
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002652msgid "Truncating"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002653msgstr "Kürzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002654
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002655#: e2fsck/super.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002656msgid "Clearing"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002657msgstr "Bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002658
Eric Sandeen032eafe2012-07-28 17:48:36 -04002659#: e2fsck/unix.c:74
Philipp Thomas68801282008-07-17 11:47:00 -04002660#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002661msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04002662"Usage: %s [-panyrcdfvtDFV] [-b superblock] [-B blocksize]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002663"\t\t[-I inode_buffer_blocks] [-P process_inode_size]\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002664"\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002665"\t\t[-E extended-options] device\n"
2666msgstr ""
Philipp Thomas68801282008-07-17 11:47:00 -04002667"Aufruf: %s [-panyrcdfvtDFV] [-b Superblock] [-B Blockgröße]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002668"\t\t[-I Inode_Puffer_Blöcke] [-P Prozess_Inodegröße]\n"
2669"\t\t[-l|-L Bad_Blocks_Datei] [-C Dateideskriptor] [-j externes_Journal]\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002670"\t\t[-E erweiterte_Optionen] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002671
Eric Sandeen032eafe2012-07-28 17:48:36 -04002672#: e2fsck/unix.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002673msgid ""
2674"\n"
2675"Emergency help:\n"
2676" -p Automatic repair (no questions)\n"
2677" -n Make no changes to the filesystem\n"
2678" -y Assume \"yes\" to all questions\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002679" -c Check for bad blocks and add them to the badblock "
2680"list\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002681" -f Force checking even if filesystem is marked clean\n"
2682msgstr ""
2683"\n"
Philipp Thomas18eaec22011-10-02 22:50:38 -04002684"Notfallhilfe:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002685" -p automatische Reparatur (keine Fragen)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002686" -n keine Veränderungen am Dateisystem vornehmen\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002687" -y \" Ja \" auf alle Fragen annehmen\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002688" -c suche nach defekten Blöcken\n"
2689" -f erzwinge die Überprüfung auch wenn alles i.O. erscheint\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002690
Eric Sandeen032eafe2012-07-28 17:48:36 -04002691#: e2fsck/unix.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002692msgid ""
2693" -v Be verbose\n"
2694" -b superblock Use alternative superblock\n"
2695" -B blocksize Force blocksize when looking for superblock\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002696" -j external_journal Set location of the external journal\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002697" -l bad_blocks_file Add to badblocks list\n"
2698" -L bad_blocks_file Set badblocks list\n"
2699msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002700" -v sei gesprächig\n"
2701" -b Superbloc Nutze Superblockkopie\n"
2702" -B Blockgröße erzwinge Blockgröße beim Suchen vom Superblock\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002703" -j externes-Journal Angabe des Speicherortes des externen Jounals\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002704" -l bad_blocks_file zur Liste der defekten Blöcke hinzufügen\n"
2705" -L bad_blocks_file Liste der defekten Blöcke definieren\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002706
Philipp Thomasd0275172013-01-15 23:30:35 -05002707#: e2fsck/unix.c:131
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002708#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002709msgid "%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks\n"
2710msgstr "%s: %u/%u Dateien (%0d.%d%% nicht zusammenhängend), %llu/%llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002711
Philipp Thomasd0275172013-01-15 23:30:35 -05002712#: e2fsck/unix.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002713#, c-format
2714msgid ""
2715"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002716"%12u inode used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002717msgid_plural ""
2718"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002719"%12u inodes used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002720msgstr[0] ""
2721"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002722"%12u Inode ist in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002723msgstr[1] ""
2724"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002725"%12u Inodes sind in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002726
Philipp Thomasd0275172013-01-15 23:30:35 -05002727#: e2fsck/unix.c:161
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002728#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002729msgid "%12u non-contiguous file (%0d.%d%%)\n"
2730msgid_plural "%12u non-contiguous files (%0d.%d%%)\n"
2731msgstr[0] "%12u nicht zusammenhängende Datei (%0d.%d%%)\n"
2732msgstr[1] "%12u nicht zusammenhängende Dateien (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002733
Philipp Thomasd0275172013-01-15 23:30:35 -05002734#: e2fsck/unix.c:166
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002735#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002736msgid "%12u non-contiguous directory (%0d.%d%%)\n"
2737msgid_plural "%12u non-contiguous directories (%0d.%d%%)\n"
2738msgstr[0] "%12u nicht zusammenhängendes Verzeichnis (%0d.%d%%)\n"
2739msgstr[1] "%12u nicht zusammenhängende Verzeichnisse (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002740
Eric Sandeen032eafe2012-07-28 17:48:36 -04002741#: e2fsck/unix.c:171
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002742#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002743msgid " # of inodes with ind/dind/tind blocks: %u/%u/%u\n"
2744msgstr " # von Inodes mit ind/dind/tind Blöcken: %u/%u/%u\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002745
Philipp Thomasd0275172013-01-15 23:30:35 -05002746#: e2fsck/unix.c:179
2747msgid " Extent depth histogram: "
2748msgstr " Histogramm der Tiefe von Erweiterungen: "
2749
2750#: e2fsck/unix.c:188
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002751#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002752msgid "%12llu block used (%2.2f%%, out of %llu)\n"
2753msgid_plural "%12llu blocks used (%2.2f%%, out of %llu)\n"
2754msgstr[0] "%12llu Block wird benutzt (%2.2f%% von %llu)\n"
2755msgstr[1] "%12llu Blöcke werden benutzt (%2.2f%% von %llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002756
Philipp Thomasd0275172013-01-15 23:30:35 -05002757#: e2fsck/unix.c:192
2758#, c-format
2759msgid "%12u bad block\n"
2760msgid_plural "%12u bad blocks\n"
2761msgstr[0] "%12u ungültiger Block\n"
2762msgstr[1] "%12u ungültige Blöcke\n"
2763
2764#: e2fsck/unix.c:194
2765#, c-format
2766msgid "%12u large file\n"
2767msgid_plural "%12u large files\n"
2768msgstr[0] "%12u große Datei\n"
2769msgstr[1] "%12u große Dateien\n"
2770
2771#: e2fsck/unix.c:196
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002772#, c-format
2773msgid ""
2774"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002775"%12u regular file\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002776msgid_plural ""
2777"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002778"%12u regular files\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002779msgstr[0] ""
2780"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002781"%12u reguläre Datei\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002782msgstr[1] ""
2783"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002784"%12u reguläre Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002785
Philipp Thomasd0275172013-01-15 23:30:35 -05002786#: e2fsck/unix.c:198
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002787#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002788msgid "%12u directory\n"
2789msgid_plural "%12u directories\n"
2790msgstr[0] "%12u Verzeichnis\n"
2791msgstr[1] "%12u Verzeichnisse\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002792
Philipp Thomasd0275172013-01-15 23:30:35 -05002793#: e2fsck/unix.c:200
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002794#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002795msgid "%12u character device file\n"
2796msgid_plural "%12u character device files\n"
2797msgstr[0] "%12u zeichenorientierte Gerätedatei\n"
2798msgstr[1] "%12u zeichenorientierte Gerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002799
Philipp Thomasd0275172013-01-15 23:30:35 -05002800#: e2fsck/unix.c:203
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002801#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002802msgid "%12u block device file\n"
2803msgid_plural "%12u block device files\n"
2804msgstr[0] "%12u Blockgerätedatei\n"
2805msgstr[1] "%12u Blockgerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002806
Philipp Thomasd0275172013-01-15 23:30:35 -05002807#: e2fsck/unix.c:205
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002808#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002809msgid "%12u fifo\n"
2810msgid_plural "%12u fifos\n"
2811msgstr[0] "%12u Fifo\n"
2812msgstr[1] "%12u Fifos\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002813
Philipp Thomasd0275172013-01-15 23:30:35 -05002814#: e2fsck/unix.c:207
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002815#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002816msgid "%12u link\n"
2817msgid_plural "%12u links\n"
2818msgstr[0] "%12u Verknüpfung\n"
2819msgstr[1] "%12u Verknüpfungen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002820
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002821#: e2fsck/unix.c:209
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002822#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002823msgid "%12u symbolic link"
2824msgid_plural "%12u symbolic links"
2825msgstr[0] "%12u symbolische Verknüpfung"
2826msgstr[1] "%12u symbolische Verknüpfungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002827
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002828#: e2fsck/unix.c:211
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002829#, c-format
2830msgid " (%u fast symbolic link)\n"
2831msgid_plural " (%u fast symbolic links)\n"
2832msgstr[0] " (%u schnelle symbolische Verknüpfung)\n"
2833msgstr[1] " (%u schnelle symbolische Verknüpfungen)\n"
2834
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002835#: e2fsck/unix.c:215
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002836#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002837msgid "%12u socket\n"
2838msgid_plural "%12u sockets\n"
2839msgstr[0] "%12u Socket\n"
2840msgstr[1] "%12u Sockets\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002841
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002842#: e2fsck/unix.c:219
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002843#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002844msgid "%12u file\n"
2845msgid_plural "%12u files\n"
2846msgstr[0] "%12u Datei\n"
2847msgstr[1] "%12u Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002848
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002849#: e2fsck/unix.c:232 misc/badblocks.c:988 misc/tune2fs.c:2023 misc/util.c:311
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002850#: resize/main.c:260
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002851#, c-format
2852msgid "while determining whether %s is mounted."
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002853msgstr "bei der Prüfung, ob %s eingehängt ist."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002854
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002855#: e2fsck/unix.c:253
2856#, fuzzy, c-format
2857msgid "Warning! %s is mounted.\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002858msgstr "Warnung! %s ist %s.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002859
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002860#: e2fsck/unix.c:256
2861#, fuzzy, c-format
2862msgid "Warning! %s is in use.\n"
2863msgstr "Warnung! %s ist %s.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002864
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002865#: e2fsck/unix.c:262
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002866#, fuzzy, c-format
2867msgid "%s is mounted.\n"
2868msgstr "%s ist eingehängt; "
2869
2870#: e2fsck/unix.c:264
2871#, fuzzy, c-format
2872msgid "%s is in use.\n"
2873msgstr "%s ist %s.\n"
2874
2875#: e2fsck/unix.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002876msgid ""
2877"Cannot continue, aborting.\n"
2878"\n"
2879msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002880"Fortsetzung nicht möglich, breche ab.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002881"\n"
2882
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002883#: e2fsck/unix.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002884msgid ""
2885"\n"
2886"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002887"WARNING!!! The filesystem is mounted. If you continue you ***WILL***\n"
2888"cause ***SEVERE*** filesystem damage.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002889"\n"
2890msgstr ""
2891"\n"
2892"\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002893"WARNUNG!!! Das Dateisystem ist eingehängt, Wenn Sie fortfahren, "
2894"***WERDEN***\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002895"Sie ***SCHWERWIEGENDE*** Schäden am Dateisystem verursachen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002896"\n"
2897
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002898#: e2fsck/unix.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002899msgid "Do you really want to continue"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002900msgstr "Wirklich fortfahren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002901
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002902#: e2fsck/unix.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002903msgid "check aborted.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002904msgstr "Prüfung abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002905
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002906#: e2fsck/unix.c:368
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002907msgid " contains a file system with errors"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002908msgstr " enthält ein fehlerhaftes Dateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002909
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002910#: e2fsck/unix.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002911msgid " was not cleanly unmounted"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002912msgstr " wurde nicht ordnungsgemäß ausgehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002913
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002914#: e2fsck/unix.c:372
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002915msgid " primary superblock features different from backup"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002916msgstr "Eigenschaften des primären Superblocks unterscheiden sich vom Backup"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002917
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002918#: e2fsck/unix.c:376
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002919#, c-format
2920msgid " has been mounted %u times without being checked"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002921msgstr " wurde %u mal ohne Überprüfung eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002922
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002923#: e2fsck/unix.c:383
Theodore Ts'o057a1592010-06-07 12:24:21 -04002924msgid " has filesystem last checked time in the future"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002925msgstr ""
2926" hat einen in der Zukunft liegenden Zeitpunkt der letzten Püfung des "
2927"Dateisystems"
Theodore Ts'o057a1592010-06-07 12:24:21 -04002928
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002929#: e2fsck/unix.c:389
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002930#, c-format
2931msgid " has gone %u days without being checked"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002932msgstr " wurde %u Tage ohne Überprüfung genutzt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002933
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002934#: e2fsck/unix.c:398
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002935msgid ", check forced.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002936msgstr ", Prüfung erzwungen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002937
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002938#: e2fsck/unix.c:431
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002939#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002940msgid "%s: clean, %u/%u files, %llu/%llu blocks"
2941msgstr "%s: sauber, %u/%u Dateien, %llu/%llu Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002942
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002943#: e2fsck/unix.c:451
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002944msgid " (check deferred; on battery)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002945msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002946
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002947#: e2fsck/unix.c:454
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002948msgid " (check after next mount)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002949msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002950
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002951#: e2fsck/unix.c:456
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002952#, c-format
2953msgid " (check in %ld mounts)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002954msgstr " (Prüfung nach %ld Einhängevorgängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002955
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002956#: e2fsck/unix.c:606
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002957#, c-format
2958msgid "ERROR: Couldn't open /dev/null (%s)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002959msgstr "Fehler: Kann /dev/null (%s) nicht öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002960
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002961#: e2fsck/unix.c:675
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002962msgid "Invalid EA version.\n"
2963msgstr "Invalid EA version.\n"
2964
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002965#: e2fsck/unix.c:702
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05002966#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04002967msgid "Unknown extended option: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002968msgstr "Unbekannte erweiterte Option: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002969
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002970#: e2fsck/unix.c:727
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002971#, c-format
2972msgid ""
2973"Syntax error in e2fsck config file (%s, line #%d)\n"
2974"\t%s\n"
2975msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002976"Syntaxfehler in der Konfigurationsdatei von e2fsck (%s, Zeile %d)\n"
2977"\t%s\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05002978
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002979#: e2fsck/unix.c:797
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002980#, c-format
2981msgid "Error validating file descriptor %d: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002982msgstr "Fehler bei Überprüfung des Datei-Deskriptors %d: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002983
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002984#: e2fsck/unix.c:801
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002985msgid "Invalid completion information file descriptor"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002986msgstr "Ungültiger „completion information“-Datei-Deskriptor"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002987
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002988#: e2fsck/unix.c:816
Theodore Ts'o6956f612005-12-31 16:46:15 -05002989msgid "Only one of the options -p/-a, -n or -y may be specified."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002990msgstr "Nur eine der Optionen -p/-a, -n oder -y darf angegeben werden."
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002991
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002992#: e2fsck/unix.c:837
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05002993#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002994msgid "The -t option is not supported on this version of e2fsck.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002995msgstr "Die -t Option wird von dieser e2fsck-Version nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002996
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002997#: e2fsck/unix.c:868 e2fsck/unix.c:942 misc/tune2fs.c:846 misc/tune2fs.c:1141
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002998#: misc/tune2fs.c:1159
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05002999#, c-format
3000msgid "Unable to resolve '%s'"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003001msgstr "Nicht möglich „%s“ aufzulösen"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003002
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003003#: e2fsck/unix.c:921
Philipp Thomas3e914b52011-01-24 15:03:41 -05003004msgid "The -n and -D options are incompatible."
3005msgstr "Die Optionen -n und -D schliessen sich gegenseitig aus."
3006
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003007#: e2fsck/unix.c:926
Philipp Thomas3e914b52011-01-24 15:03:41 -05003008msgid "The -n and -c options are incompatible."
3009msgstr "Die Optionen -n und -c schliessen sich gegenseitig aus."
3010
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003011#: e2fsck/unix.c:931
Philipp Thomas3e914b52011-01-24 15:03:41 -05003012msgid "The -n and -l/-L options are incompatible."
3013msgstr "Die Optionen -n und -l/-L schliessen sich gegenseitig aus."
3014
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003015#: e2fsck/unix.c:985
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003016msgid "The -c and the -l/-L options may not be both used at the same time.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003017msgstr ""
3018"Die -c und -l/-L Optionen dürfen nicht gleichzeitig verwendet werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003019
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003020#: e2fsck/unix.c:1032
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003021#, c-format
3022msgid ""
3023"E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
3024"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003025msgstr "2FSCK_JBD_DEBUG \"%s\" ist keine Ganzzahl\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003026
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003027#: e2fsck/unix.c:1041
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003028#, c-format
3029msgid ""
3030"\n"
3031"Invalid non-numeric argument to -%c (\"%s\")\n"
3032"\n"
3033msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003034"\n"
3035"Ungültiges nicht-numerisches Argument für -%c (\"%s\")\n"
3036"\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003037
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003038#: e2fsck/unix.c:1132
Philipp Thomasedc733d2012-04-22 15:38:42 -04003039#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003040msgid ""
3041"MMP interval is %u seconds and total wait time is %u seconds. Please "
3042"wait...\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003043msgstr ""
3044"MMP Intervall ist %u Sekunden und die gesammte Wartezeit ist %u Sekunden.\n"
3045"Bitte warten...\n"
3046
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003047#: e2fsck/unix.c:1149 e2fsck/unix.c:1154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003048msgid "while checking MMP block"
3049msgstr "beim Prüfen des MMP-Blocks"
3050
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003051#: e2fsck/unix.c:1156 misc/tune2fs.c:1950
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003052msgid ""
3053"If you are sure the filesystem is not in use on any node, run:\n"
3054"'tune2fs -f -E clear_mmp {device}'\n"
3055msgstr ""
3056"Wenn Sie sicher sind, daß das Dateisystem auf keinem Knoten benutzt wird,\n"
3057"starten Sie bitte:\n"
3058"„tune2fs -f -E clear_mmp {device}“\n"
3059
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003060#: e2fsck/unix.c:1207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003061msgid "Error: ext2fs library version out of date!\n"
3062msgstr "Fehler: ext2fs-Bibliotheks-Version ist zu alt!\n"
3063
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003064#: e2fsck/unix.c:1214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003065msgid "while trying to initialize program"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003066msgstr "bei der Programminitialisierung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003067
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003068#: e2fsck/unix.c:1237
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003069#, c-format
3070msgid "\tUsing %s, %s\n"
3071msgstr "\tBenutze %s, %s\n"
3072
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003073#: e2fsck/unix.c:1249
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003074msgid "need terminal for interactive repairs"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003075msgstr "Benötige ein Terminal für interaktive Reparaturen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003076
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003077#: e2fsck/unix.c:1303
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003078#, c-format
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003079msgid "%s: %s trying backup blocks...\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003080msgstr "%s: %s versuche es mit Backup-Blöcken...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003081
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003082#: e2fsck/unix.c:1305
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003083msgid "Superblock invalid,"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003084msgstr "Superblock ungültig"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003085
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003086#: e2fsck/unix.c:1306
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003087msgid "Group descriptors look bad..."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003088msgstr "Gruppen-Deskriptoren scheinen defekt zu sein..."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003089
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003090#: e2fsck/unix.c:1316
Philipp Thomasedc733d2012-04-22 15:38:42 -04003091#, c-format
3092msgid "%s: %s while using the backup blocks"
3093msgstr "%s: %s beim Benutzen der Backup-Blöcke"
3094
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003095#: e2fsck/unix.c:1320
Philipp Thomas77c871a2010-04-19 16:59:02 -04003096#, c-format
3097msgid "%s: going back to original superblock\n"
3098msgstr "%s: es wird zum originalen Superblock zurück gekehrt\n"
3099
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003100#: e2fsck/unix.c:1349
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003101msgid ""
3102"The filesystem revision is apparently too high for this version of e2fsck.\n"
3103"(Or the filesystem superblock is corrupt)\n"
3104"\n"
3105msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003106"Diese Dateisystem-Revision ist offensichtlich zu neu für diese Version \n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003107"von e2fsck (oder der Dateisystem-Superblock ist defekt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003108"\n"
3109
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003110#: e2fsck/unix.c:1356
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003111msgid "Could this be a zero-length partition?\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003112msgstr "Könnte es eine Partion der Länge Null sein?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003113
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003114#: e2fsck/unix.c:1358
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003115#, c-format
3116msgid "You must have %s access to the filesystem or be root\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003117msgstr "Sie benötigen %s- oder root-Rechte für das Dateisystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003118
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003119#: e2fsck/unix.c:1364
Eric Sandeen032eafe2012-07-28 17:48:36 -04003120msgid "Possibly non-existent or swap device?\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003121msgstr ""
3122"Möglicherweise ist die Partition nicht vorhanden oder eine Swap-Partition?\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003123
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003124#: e2fsck/unix.c:1366
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003125msgid "Filesystem mounted or opened exclusively by another program?\n"
3126msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003127"Ist das Dateisystem eingehängt or exklusiv von einem anderen Programm\n"
3128"\n"
3129"geöffnet worden?\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003130
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003131#: e2fsck/unix.c:1370
Philipp Thomas3e914b52011-01-24 15:03:41 -05003132msgid "Possibly non-existent device?\n"
3133msgstr "Ist das Gerät möglicherweise nicht vorhanden?\n"
3134
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003135#: e2fsck/unix.c:1373
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003136msgid ""
3137"Disk write-protected; use the -n option to do a read-only\n"
3138"check of the device.\n"
3139msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003140"Laufwerk ist schreibgeschützt, nutzen Sie die -n Option\n"
3141"um es im Nur-Lesen-Modus zu prüfen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003142
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003143#: e2fsck/unix.c:1437
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003144msgid "Get a newer version of e2fsck!"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003145msgstr "Neuere Version von e2fsck benötigt!"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003146
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003147#: e2fsck/unix.c:1480
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003148#, c-format
3149msgid "while checking ext3 journal for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003150msgstr "während der Prüfung des ext3-Journals für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003151
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003152#: e2fsck/unix.c:1492
3153msgid ""
3154"Warning: skipping journal recovery because doing a read-only filesystem "
3155"check.\n"
3156msgstr ""
3157"Warnung: Überspringe Journal-Wiederherstellung, da das Dateisystem im Nur-"
3158"Lesen-Modus ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003159
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003160#: e2fsck/unix.c:1504
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003161#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003162msgid "unable to set superblock flags on %s\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003163msgstr "Superblock-Flags konntan auf %s nicht gesetzt werden\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003164
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003165#: e2fsck/unix.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003166#, c-format
3167msgid "while recovering ext3 journal of %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003168msgstr "bei der Wiederherstellung des ext3-Journals von %s"
3169
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003170#: e2fsck/unix.c:1534
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003171#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003172msgid "%s has unsupported feature(s):"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003173msgstr "%s besitzt nicht unterstützte Eigenschaft(en):"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003174
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003175#: e2fsck/unix.c:1549
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003176#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003177msgid "%s: warning: compression support is experimental.\n"
3178msgstr "%s: Warnung: Die Kompressionsunterstützung ist experimentell.\n"
3179
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003180#: e2fsck/unix.c:1555
Philipp Thomasedc733d2012-04-22 15:38:42 -04003181#, c-format
3182msgid ""
3183"%s: e2fsck not compiled with HTREE support,\n"
3184"\tbut filesystem %s has HTREE directories.\n"
3185msgstr ""
3186"%s: e2fsck wurde ohne Unterstützung für HTREE kompiliert,\n"
3187"\taber das Dateisystem %s besitzt HTREE Verzeichnisse.\n"
3188
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003189#: e2fsck/unix.c:1607
Philipp Thomasedc733d2012-04-22 15:38:42 -04003190#, c-format
3191msgid "%s: %s while reading bad blocks inode\n"
3192msgstr "%s: %s beim Lesen des Bad-Block-Inodes\n"
3193
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003194#: e2fsck/unix.c:1610
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003195msgid "This doesn't bode well, but we'll try to go on...\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003196msgstr "Das verheißt nichts gutes, aber wir versuchen es trotzdem ..\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003197
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003198#: e2fsck/unix.c:1651
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003199#, c-format
3200msgid "Creating journal (%d blocks): "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003201msgstr "Erstelle Journal (%d Blöcke): "
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003202
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003203#: e2fsck/unix.c:1661
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003204msgid " Done.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003205msgstr " Erledigt.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003206
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003207#: e2fsck/unix.c:1663
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003208msgid ""
3209"\n"
3210"*** journal has been re-created - filesystem is now ext3 again ***\n"
3211msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003212"\n"
3213"*** Journal wurde wiederhergestellt - Dateisystem ist nun wieder ext3 ***\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003214
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003215#: e2fsck/unix.c:1687
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003216msgid "Restarting e2fsck from the beginning...\n"
3217msgstr "Beginne e2fsck neu ...\n"
3218
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003219#: e2fsck/unix.c:1691
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003220msgid "while resetting context"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003221msgstr "beim Rücksetzen des Kontexts"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003222
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003223#: e2fsck/unix.c:1698
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003224#, c-format
3225msgid "%s: e2fsck canceled.\n"
Philipp Thomascfbdca12011-10-05 02:04:08 -04003226msgstr "%s: e2fsck abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003227
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003228#: e2fsck/unix.c:1703
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003229msgid "aborted"
3230msgstr "abgebrochen"
3231
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003232#: e2fsck/unix.c:1715 e2fsck/util.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003233#, c-format
3234msgid ""
3235"\n"
3236"%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
3237msgstr ""
3238"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003239"%s: ***** DATEISYSTEM WURDE VERÄNDERT *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003240
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003241#: e2fsck/unix.c:1719
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003242#, c-format
3243msgid "%s: ***** REBOOT LINUX *****\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003244msgstr "%s: ***** LINUX MUSS NEU GESTARTET WERDEN *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003245
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003246#: e2fsck/unix.c:1727 e2fsck/util.c:73
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003247#, c-format
3248msgid ""
3249"\n"
3250"%s: ********** WARNING: Filesystem still has errors **********\n"
3251"\n"
3252msgstr ""
3253"\n"
3254"%s: ********** WARNUNG: Noch Fehler im Dateisystem **********\n"
3255"\n"
3256
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003257#: e2fsck/unix.c:1767
Philipp Thomas720e6362008-06-21 14:06:00 -04003258msgid "while setting block group checksum info"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003259msgstr "beim Setzen der Blockgruppen-Prüfsummeninfo"
Philipp Thomas720e6362008-06-21 14:06:00 -04003260
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003261#: e2fsck/util.c:190 misc/util.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003262msgid "yY"
Makoto Dei748cc432008-04-21 16:49:48 +09003263msgstr "jJ"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003264
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003265#: e2fsck/util.c:191
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003266msgid "nN"
3267msgstr "nN"
3268
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003269#: e2fsck/util.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003270msgid "<y>"
3271msgstr "<j>"
3272
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003273#: e2fsck/util.c:207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003274msgid "<n>"
3275msgstr "<n>"
3276
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003277#: e2fsck/util.c:209
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003278msgid " (y/n)"
3279msgstr " (j/n)"
3280
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003281#: e2fsck/util.c:223
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003282msgid "cancelled!\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003283msgstr "abgebrochen!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003284
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003285#: e2fsck/util.c:238
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003286msgid "yes\n"
3287msgstr "ja\n"
3288
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003289#: e2fsck/util.c:240
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003290msgid "no\n"
3291msgstr "nein\n"
3292
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003293#: e2fsck/util.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003294#, c-format
3295msgid ""
3296"%s? no\n"
3297"\n"
3298msgstr ""
3299"%s? nein\n"
3300"\n"
3301
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003302#: e2fsck/util.c:254
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003303#, c-format
3304msgid ""
3305"%s? yes\n"
3306"\n"
3307msgstr ""
3308"%s? ja\n"
3309"\n"
3310
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003311#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003312msgid "yes"
3313msgstr "ja"
3314
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003315#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003316msgid "no"
3317msgstr "nein"
3318
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003319#: e2fsck/util.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003320#, c-format
3321msgid "e2fsck_read_bitmaps: illegal bitmap block(s) for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003322msgstr "e2fsck_read_bitmaps: illegal bitmap block(s) für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003323
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003324#: e2fsck/util.c:278
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003325msgid "reading inode and block bitmaps"
3326msgstr "lese Inode und Block bitmaps"
3327
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003328#: e2fsck/util.c:286
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003329#, c-format
3330msgid "while retrying to read bitmaps for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003331msgstr "während des wiederholten Versuches, Bitmaps für %s einzulesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003332
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003333#: e2fsck/util.c:298
Philipp Thomas40771272008-09-07 22:55:25 -04003334msgid "writing block and inode bitmaps"
3335msgstr "Schreibe Block- und Inode-Bitmaps"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003336
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003337#: e2fsck/util.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003338#, c-format
Philipp Thomas40771272008-09-07 22:55:25 -04003339msgid "while rewriting block and inode bitmaps for %s"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003340msgstr ""
3341"während des wiederholten Versuches, Block- und Inode-Bitmaps für %s zu "
3342"schreiben."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003343
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003344#: e2fsck/util.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003345#, c-format
3346msgid ""
3347"\n"
3348"\n"
3349"%s: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.\n"
3350"\t(i.e., without -a or -p options)\n"
3351msgstr ""
3352"\n"
3353"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003354"%s: UNERWARTETE INKONSISTENZ; fsck MANUELL AUSFÜHREN\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003355"\t(d.h. ohne -a oder -p Option)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003356
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003357#: e2fsck/util.c:396
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003358#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003359msgid "Memory used: %luk/%luk (%luk/%luk), "
3360msgstr "Benutzter Speicher: %luk/%luk (%luk/%luk), "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003361
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003362#: e2fsck/util.c:400
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003363#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003364msgid "Memory used: %lu, "
3365msgstr "Benutzter Speicher: %lu, "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003366
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003367#: e2fsck/util.c:407
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003368#, c-format
3369msgid "time: %5.2f/%5.2f/%5.2f\n"
3370msgstr "Zeit: %5.2f/%5.2f/%5.2f\n"
3371
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003372#: e2fsck/util.c:412
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003373#, c-format
3374msgid "elapsed time: %6.3f\n"
3375msgstr "abgelaufende Zeit: %6.3f\n"
3376
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003377#: e2fsck/util.c:447 e2fsck/util.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003378#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003379msgid "while reading inode %lu in %s"
3380msgstr "beim Lesen von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003381
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003382#: e2fsck/util.c:475 e2fsck/util.c:488
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003383#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003384msgid "while writing inode %lu in %s"
3385msgstr "beim Schreiben von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003386
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003387#: e2fsck/util.c:637
Philipp Thomas720e6362008-06-21 14:06:00 -04003388msgid "while allocating zeroizing buffer"
3389msgstr "beim reservieren eines Puffers zum Nullen"
3390
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003391#: e2fsck/util.c:785
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003392msgid ""
3393"UNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is "
3394"running.\n"
3395msgstr ""
3396"UNERWARTETE INKONSISTENZ: das Dateisystem wird modifiziert während fsck "
3397"läuft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003398
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003399#: misc/badblocks.c:69
3400msgid "done \n"
3401msgstr "erledigt \n"
3402
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003403#: misc/badblocks.c:92
Philipp Thomas68801282008-07-17 11:47:00 -04003404#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003405msgid ""
3406"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003407" [-c blocks_at_once] [-d delay_factor_between_reads] [-e "
3408"max_bad_blocks]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003409" [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
3410" device [last_block [first_block]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003411msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003412"Aufruf: %s [-b Blockgröße] [-i Eingabedatei] [-o Ausgabedatei] [-svwnf]\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003413" [-c Blöcke_auf_einmal] [-d "
3414"Verzögerungsfaktor_zwischen_Lesedurchgängen]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003415" [-e maximale_Bad_Blocks] [-p Anzahl_Durchgänge]\n"
3416" [-t Testmuster [-t Testmuster [...]]]\n"
3417" Gerät [letzter_Block [Startblock]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003418
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003419#: misc/badblocks.c:103
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003420#, c-format
3421msgid ""
3422"%s: The -n and -w options are mutually exclusive.\n"
3423"\n"
3424msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003425"%s: Die Optionen -n und -w schliessen sich gegenseitig aus.\n"
3426"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003427
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003428#: misc/badblocks.c:218
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003429#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003430msgid "%6.2f%% done, %s elapsed. (%d/%d/%d errors)"
3431msgstr "%6.2f%% erledigt, %s verstrichen. (%d/%d/%d Fehler)"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003432
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003433#: misc/badblocks.c:323
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003434msgid "Testing with random pattern: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003435msgstr "Teste mit zufälligen Mustern: "
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003436
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003437#: misc/badblocks.c:341
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003438msgid "Testing with pattern 0x"
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003439msgstr "Teste mit Muster 0x"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003441#: misc/badblocks.c:373 misc/badblocks.c:446
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003442msgid "during seek"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003443msgstr "beim Suchen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003444
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003445#: misc/badblocks.c:384
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003446#, c-format
3447msgid "Weird value (%ld) in do_read\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003448msgstr "Merkwürdiger Wert (%ld) in do_read\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003449
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003450#: misc/badblocks.c:471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003451msgid "during ext2fs_sync_device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003452msgstr "während ext2fs_sync_device"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003453
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003454#: misc/badblocks.c:491 misc/badblocks.c:753
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003455msgid "while beginning bad block list iteration"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003456msgstr "beim Beginn des „Bad Block“-Listendurchlaufs"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003457
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003458#: misc/badblocks.c:506 misc/badblocks.c:606 misc/badblocks.c:764
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003459msgid "while allocating buffers"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003460msgstr "beim Zuweisen von Puffern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003461
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003462#: misc/badblocks.c:510
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003463#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003464msgid "Checking blocks %lu to %lu\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003465msgstr "Prüfe von Block %lu bis %lu\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003466
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003467#: misc/badblocks.c:515
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003468msgid "Checking for bad blocks in read-only mode\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003469msgstr "Suche nach defekten Blöcken im Nur-Lesen-Modus\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003470
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003471#: misc/badblocks.c:524
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003472msgid "Checking for bad blocks (read-only test): "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003473msgstr "Suche nach defekten Blöcken (Nur-Lesen-Modus):"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003474
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003475#: misc/badblocks.c:531 misc/badblocks.c:638 misc/badblocks.c:680
3476#: misc/badblocks.c:827
Philipp Thomas720e6362008-06-21 14:06:00 -04003477msgid "Too many bad blocks, aborting test\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003478msgstr "Zu viele defekte Blöcke - Test wird abgebrochen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003479
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003480#: misc/badblocks.c:613
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003481msgid "Checking for bad blocks in read-write mode\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003482msgstr "Suche nach defekten Blöcken (Lesen+Schreiben-Modus)\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003483
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003484#: misc/badblocks.c:615 misc/badblocks.c:777
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003485#, c-format
3486msgid "From block %lu to %lu\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003487msgstr "Von Block %lu bis %lu\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003488
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003489#: misc/badblocks.c:670
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003490msgid "Reading and comparing: "
3491msgstr "Lesen und Vergleichen:"
3492
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003493#: misc/badblocks.c:776
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003494msgid "Checking for bad blocks in non-destructive read-write mode\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003495msgstr ""
3496"Suche nach defekten Blöcken im zerstörungsfreien Lesen+Schreiben-Modus\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003497
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003498#: misc/badblocks.c:782
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003499msgid "Checking for bad blocks (non-destructive read-write test)\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003500msgstr ""
3501"Suche nach defekten Blöcken (zerstörungsfreier Lesen+Schreiben-Modus)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003502
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003503#: misc/badblocks.c:789
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003504msgid ""
3505"\n"
3506"Interrupt caught, cleaning up\n"
3507msgstr ""
3508"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003509"Unterbrochen, räume auf\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003510
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003511#: misc/badblocks.c:872
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003512#, c-format
3513msgid "during test data write, block %lu"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003514msgstr "beim Schreiben der Test-Daten; Block %lu"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003515
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003516#: misc/badblocks.c:993 misc/util.c:316
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003517#, c-format
3518msgid "%s is mounted; "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003519msgstr "%s ist eingehängt; "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003520
Philipp Thomasedc733d2012-04-22 15:38:42 -04003521#: misc/badblocks.c:995
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003522msgid "badblocks forced anyway. Hope /etc/mtab is incorrect.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003523msgstr ""
3524"Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003525
3526#: misc/badblocks.c:1000
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003527msgid "it's not safe to run badblocks!\n"
3528msgstr "es ist zu unsicher, Badblocks zu starten!\n"
3529
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003530#: misc/badblocks.c:1005 misc/util.c:327
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003531#, c-format
3532msgid "%s is apparently in use by the system; "
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003533msgstr "%s wird offensichtlich vom System genutzt; "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003534
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003535#: misc/badblocks.c:1008
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003536msgid "badblocks forced anyway.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003537msgstr ""
3538"Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003539
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003540#: misc/badblocks.c:1028
Philipp Thomas68801282008-07-17 11:47:00 -04003541#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04003542msgid "invalid %s - %s"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003543msgstr "ungültige %s - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04003544
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003545#: misc/badblocks.c:1139
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003546#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003547msgid "can't allocate memory for test_pattern - %s"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003548msgstr "Kann keinen Speicher für Testmuster reservieren - %s"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003549
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003550#: misc/badblocks.c:1169
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003551msgid "Maximum of one test_pattern may be specified in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003552msgstr "Es darf im Nur-Lesen-Modus nur ein Testmuster angegeben werden"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003553
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003554#: misc/badblocks.c:1175
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003555msgid "Random test_pattern is not allowed in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003556msgstr "Zufälliges Testmuster ist im Nur-Lesen-Modus nicht erlaubt"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003557
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003558#: misc/badblocks.c:1189
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003559msgid ""
3560"Couldn't determine device size; you must specify\n"
3561"the size manually\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003562msgstr ""
3563"Größe des Gerätes ist nicht feststellbar. Sie müssen sie manuell angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003564
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003565#: misc/badblocks.c:1195
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003566msgid "while trying to determine device size"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003567msgstr "beim Versuch, die Gerätegröße festzustellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003568
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003569#: misc/badblocks.c:1200
Philipp Thomas68801282008-07-17 11:47:00 -04003570msgid "last block"
3571msgstr "letzter Block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003572
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003573#: misc/badblocks.c:1206
Philipp Thomas68801282008-07-17 11:47:00 -04003574msgid "first block"
3575msgstr "erster Block"
3576
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003577#: misc/badblocks.c:1209
Philipp Thomasb93349a2014-05-31 13:32:39 -04003578#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003579msgid "invalid starting block (%llu): must be less than %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003580msgstr "Ungültiger Startblock (%llu): er muss kleiner als %llu sein"
Philipp Thomas68801282008-07-17 11:47:00 -04003581
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003582#: misc/badblocks.c:1216
Philipp Thomasb93349a2014-05-31 13:32:39 -04003583#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003584msgid "invalid end block (%llu): must be 32-bit value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003585msgstr "Ungültiger Endblock (%llu): er muss ein 32-Bit Wert sein"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003586
3587#: misc/badblocks.c:1272
Theodore Ts'o197abba2005-06-20 18:00:23 -04003588msgid "while creating in-memory bad blocks list"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003589msgstr "erstelle Bad-Block-Liste im Speicher"
3590
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003591#: misc/badblocks.c:1281
3592msgid "input file - bad format"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003593msgstr "die Eingabedatei hat eiun ungültiges Format"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003594
3595#: misc/badblocks.c:1289 misc/badblocks.c:1298
Theodore Ts'o197abba2005-06-20 18:00:23 -04003596msgid "while adding to in-memory bad block list"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003597msgstr "füge zur Bad-Block-Liste im Speicher hinzu"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003598
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003599#: misc/badblocks.c:1323
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003600#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003601msgid "Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"
3602msgstr "Durchgang beendet, %u defekte Blöcke gefunden. (%d/%d/%d Fehler)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003603
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003604#: misc/chattr.c:86
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003605#, fuzzy, c-format
3606msgid "Usage: %s [-RVf] [-+=aAcCdDeijsStTu] [-v version] files...\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05003607msgstr "Aufruf: %s [-RVf] [-+=AaCcDdeijsSu] [-v Version] Dateien...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003608
Philipp Thomasd0275172013-01-15 23:30:35 -05003609#: misc/chattr.c:155
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003610#, c-format
3611msgid "bad version - %s\n"
3612msgstr "falsche Version - %s\n"
3613
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003614#: misc/chattr.c:201 misc/lsattr.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003615#, c-format
3616msgid "while trying to stat %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003617msgstr "beim Auslesen des Status von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003618
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003619#: misc/chattr.c:208
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003620#, c-format
3621msgid "while reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003622msgstr "beim Lesens der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003623
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003624#: misc/chattr.c:213 misc/chattr.c:225
Philipp Thomas77c871a2010-04-19 16:59:02 -04003625#, c-format
3626msgid "Flags of %s set as "
3627msgstr "Flags von %s wie folgt gesetzt: "
3628
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003629#: misc/chattr.c:234
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003630#, c-format
3631msgid "while setting flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003632msgstr "beim Setzen der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003633
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003634#: misc/chattr.c:242
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003635#, c-format
3636msgid "Version of %s set as %lu\n"
3637msgstr "Version von %s gesetzt auf %lu\n"
3638
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003639#: misc/chattr.c:246
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003640#, c-format
3641msgid "while setting version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003642msgstr "beim Setzen der Version in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003643
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003644#: misc/chattr.c:267
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003645msgid "Couldn't allocate path variable in chattr_dir_proc"
3646msgstr "Konnte Pfad-Variable in chattr_dir_proc nicht reservieren"
3647
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003648#: misc/chattr.c:307
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003649msgid "= is incompatible with - and +\n"
3650msgstr "= ist inkompatibel mit - und +\n"
3651
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003652#: misc/chattr.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003653msgid "Must use '-v', =, - or +\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003654msgstr "Benutze „-v“, =, - oder +\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003655
Eric Sandeen032eafe2012-07-28 17:48:36 -04003656#: misc/dumpe2fs.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003657#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003658msgid "Usage: %s [-bfhixV] [-o superblock=<num>] [-o blocksize=<num>] device\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003659msgstr ""
3660"Aufruf: %s [-bfhixV] [-o superblock=<Nummer>] [-o blocksize=<Nummer>] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003661
Eric Sandeen032eafe2012-07-28 17:48:36 -04003662#: misc/dumpe2fs.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003663msgid "blocks"
3664msgstr "Blöcke"
3665
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003666#: misc/dumpe2fs.c:169
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003667msgid "clusters"
3668msgstr "Cluster"
3669
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003670#: misc/dumpe2fs.c:197
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003671#, c-format
3672msgid "Group %lu: (Blocks "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003673msgstr "Gruppe %lu: (Blöcke "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003674
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003675#: misc/dumpe2fs.c:205
Philipp Thomas720e6362008-06-21 14:06:00 -04003676#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003677msgid " Checksum 0x%04x"
3678msgstr " Prüfsumme 0x%04x"
Philipp Thomas720e6362008-06-21 14:06:00 -04003679
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003680#: misc/dumpe2fs.c:207
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003681#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003682msgid " (EXPECTED 0x%04x)"
3683msgstr " (0x%04x ERWARTET)"
3684
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003685#: misc/dumpe2fs.c:208
Philipp Thomasedc733d2012-04-22 15:38:42 -04003686#, c-format
3687msgid ", unused inodes %u\n"
3688msgstr ", ungenutzte Inodes %u\n"
3689
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003690#: misc/dumpe2fs.c:213
Philipp Thomasedc733d2012-04-22 15:38:42 -04003691#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003692msgid " %s superblock at "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003693msgstr " %s Superblock in "
3694
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003695#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003696msgid "Primary"
3697msgstr "Primary"
3698
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003699#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003700msgid "Backup"
3701msgstr "Backup"
3702
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003703#: misc/dumpe2fs.c:218
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003704msgid ", Group descriptors at "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003705msgstr ", Gruppendeskriptoren in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003706
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003707#: misc/dumpe2fs.c:222
Theodore Ts'obc759702005-05-09 20:40:55 -04003708msgid ""
3709"\n"
3710" Reserved GDT blocks at "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003711msgstr ""
3712"\n"
3713" reservierte GDT Blöcke bei "
Theodore Ts'obc759702005-05-09 20:40:55 -04003714
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003715#: misc/dumpe2fs.c:229
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003716msgid " Group descriptor at "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003717msgstr ", Gruppendeskriptor in "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003718
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003719#: misc/dumpe2fs.c:235
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003720msgid " Block bitmap at "
3721msgstr " Block bitmap in "
3722
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003723#: misc/dumpe2fs.c:239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003724msgid ", Inode bitmap at "
3725msgstr ", Inode Bitmap in "
3726
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003727#: misc/dumpe2fs.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003728msgid ""
3729"\n"
3730" Inode table at "
3731msgstr ""
3732"\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003733" Inode-Tabelle in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003734
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003735#: misc/dumpe2fs.c:249
Philipp Thomas68801282008-07-17 11:47:00 -04003736#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003737msgid ""
3738"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003739" %u free %s, %u free inodes, %u directories%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003740msgstr ""
3741"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003742" %u freie %s, %u freie Inodes, %u Verzeichnisse%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003743
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003744#: misc/dumpe2fs.c:256
Philipp Thomas720e6362008-06-21 14:06:00 -04003745#, c-format
3746msgid ", %u unused inodes\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003747msgstr ", %u ungenutzte Inodes\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003748
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003749#: misc/dumpe2fs.c:259
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003750msgid " Free blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003751msgstr " Freie Blöcke: "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003752
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003753#: misc/dumpe2fs.c:274
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003754msgid " Free inodes: "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003755msgstr " Freie Inodes: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003756
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003757#: misc/dumpe2fs.c:310
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003758msgid "while printing bad block list"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003759msgstr "beim Ausgeben der „Bad Block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003760
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003761#: misc/dumpe2fs.c:316
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003762#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003763msgid "Bad blocks: %u"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003764msgstr "Bad Blocks: %u"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003765
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003766#: misc/dumpe2fs.c:345 misc/tune2fs.c:314
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003767msgid "while reading journal inode"
3768msgstr "beim Lesen des Journal-Inodes"
3769
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003770#: misc/dumpe2fs.c:351
Philipp Thomas77c871a2010-04-19 16:59:02 -04003771msgid "while opening journal inode"
3772msgstr "beim Lesen des Journal-Inodes"
3773
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003774#: misc/dumpe2fs.c:357
Philipp Thomas77c871a2010-04-19 16:59:02 -04003775msgid "while reading journal super block"
3776msgstr "beim Lesen des Journal-Superblocks"
3777
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003778#: misc/dumpe2fs.c:364
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003779msgid "Journal superblock magic number invalid!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003780msgstr "Die magische Zahl im Journal-Superblock ist ungtig!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003781
3782#: misc/dumpe2fs.c:367
Philipp Thomas77c871a2010-04-19 16:59:02 -04003783msgid "Journal features: "
3784msgstr "Jounaleigenschaften: "
3785
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003786#: misc/dumpe2fs.c:380
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003787msgid "Journal size: "
Philipp Thomas9564ee52008-08-22 03:22:50 -04003788msgstr "Journalgrösse: "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003789
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003790#: misc/dumpe2fs.c:391
Philipp Thomas77c871a2010-04-19 16:59:02 -04003791#, c-format
3792msgid ""
3793"Journal length: %u\n"
3794"Journal sequence: 0x%08x\n"
3795"Journal start: %u\n"
3796msgstr ""
3797"Journal-Länge: %u\n"
3798"Journal-Sequenz: 0x%08x\n"
3799"Journal-Start: %u\n"
3800
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003801#: misc/dumpe2fs.c:398
Philipp Thomasd0275172013-01-15 23:30:35 -05003802#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003803msgid "Journal errno: %d\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05003804msgstr "Jounal-Fehlernummer: %d\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003805
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003806#: misc/dumpe2fs.c:415 misc/tune2fs.c:230
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003807msgid "while reading journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003808msgstr "beim Lesen des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003809
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003810#: misc/dumpe2fs.c:423
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003811msgid "Couldn't find journal superblock magic numbers"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003812msgstr "Konnte die magische Nummer des Journal-Superblocks nicht finden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003813
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003814#: misc/dumpe2fs.c:427
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003815#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003816msgid ""
3817"\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003818"Journal block size: %u\n"
3819"Journal length: %u\n"
3820"Journal first block: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003821"Journal sequence: 0x%08x\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003822"Journal start: %u\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003823"Journal number of users: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003824msgstr ""
3825"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003826"Journal Blockgröße: %u\n"
3827"Journal Länge: %u\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003828"Journal Startblock: %u\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003829"Journal Sequenz: 0x%08x\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003830"Journal Start: %u\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003831"Journal Anzahl Nutzer: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003832
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003833#: misc/dumpe2fs.c:440
Theodore Ts'o197abba2005-06-20 18:00:23 -04003834#, c-format
3835msgid "Journal users: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003836msgstr "Jounalnutzer: %s\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04003837
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003838#: misc/dumpe2fs.c:456 misc/mke2fs.c:743 misc/tune2fs.c:1178
Theodore Ts'o8f741372008-02-28 21:47:05 -05003839msgid "Couldn't allocate memory to parse options!\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003840msgstr "Speicher zum Parsen der Optionen konnte nicht reserviert werden!\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003841
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003842#: misc/dumpe2fs.c:482
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003843#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003844msgid "Invalid superblock parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003845msgstr "Ungültiger Superblock-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003846
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003847#: misc/dumpe2fs.c:497
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003848#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003849msgid "Invalid blocksize parameter: %s\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003850msgstr "Ungültiger Blockgrössen-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003851
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003852#: misc/dumpe2fs.c:508
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003853#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003854msgid ""
3855"\n"
3856"Bad extended option(s) specified: %s\n"
3857"\n"
3858"Extended options are separated by commas, and may take an argument which\n"
3859"\tis set off by an equals ('=') sign.\n"
3860"\n"
3861"Valid extended options are:\n"
3862"\tsuperblock=<superblock number>\n"
3863"\tblocksize=<blocksize>\n"
3864msgstr ""
3865"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003866"Falsche erweiterte Optionen angegeben: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003867"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003868"Erweiterte Optionen werden durch Kommatas getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003869"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003870"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003871"Gültige erweiterte Optionen sind:\n"
3872"\tsuperblock=<Nummer des Spuperblocks>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003873"\tblocksize=<Blockgrösse>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003874"\n"
3875
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003876#: misc/dumpe2fs.c:568 misc/mke2fs.c:1734
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003877#, c-format
3878msgid "\tUsing %s\n"
3879msgstr "\tBenutze %s\n"
3880
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003881#: misc/dumpe2fs.c:604 misc/e2image.c:1582 misc/tune2fs.c:1961
3882#: resize/main.c:318
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003883msgid "Couldn't find valid filesystem superblock.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003884msgstr "Kann keinen gültigen Dateisystem-Superblock finden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003885
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003886#: misc/dumpe2fs.c:632
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003887#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003888msgid ""
3889"\n"
3890"%s: %s: error reading bitmaps: %s\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003891msgstr ""
3892"\n"
3893"%s: %s: Fehler beim Lesen von Bitmaps: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003894
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003895#: misc/e2image.c:101
Philipp Thomasb93349a2014-05-31 13:32:39 -04003896#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003897msgid "Usage: %s [ -r|Q ] [ -fr ] device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003898msgstr "Aufruf: %s [-r|Q ] [ -fr ] Gerätedatei Abbild-Datei\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003899
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003900#: misc/e2image.c:103
Philipp Thomasb93349a2014-05-31 13:32:39 -04003901#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003902msgid " %s -I device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003903msgstr " %s [-I] Gerätedatei Abbild-Datei\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003904
3905#: misc/e2image.c:104
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003906#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003907msgid ""
3908" %s -ra [ -cfnp ] [ -o src_offset ] [ -O dest_offset ] src_fs "
3909"[ dest_fs ]\n"
3910msgstr ""
3911" %s -ra [ -cfnp ] [ -o Quelloffset ] [ -O Zieloffset ] Quell_Fs "
3912"[ Ziel_fs ]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003913
3914#: misc/e2image.c:169 misc/e2image.c:576 misc/e2image.c:582
3915#: misc/e2image.c:1178
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003916msgid "while allocating buffer"
3917msgstr "beim Zuweisen von Puffern"
3918
3919#: misc/e2image.c:174
Philipp Thomasb93349a2014-05-31 13:32:39 -04003920#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003921msgid "Writing block %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003922msgstr "Block %llu wird geschrieben\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003923
3924#: misc/e2image.c:188
Philipp Thomasb93349a2014-05-31 13:32:39 -04003925#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003926msgid "error writing block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003927msgstr "Schreibfehler - Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003928
3929#: misc/e2image.c:191
3930msgid "error in generic_write()"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003931msgstr "Fehler in generic_write()"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003932
3933#: misc/e2image.c:208
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003934msgid "Error: header size is bigger than wrt_size\n"
3935msgstr "Fehler: Größe des Headers übersteigt wrt_size\n"
3936
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003937#: misc/e2image.c:213
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003938msgid "Couldn't allocate header buffer\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003939msgstr "Header-Puffer konnte nicht zugewiesen werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003940
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003941#: misc/e2image.c:241
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003942msgid "while writing superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003943msgstr "beim Schreiben des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003944
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003945#: misc/e2image.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003946msgid "while writing inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003947msgstr "beim Schreiben der Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003948
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003949#: misc/e2image.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003950msgid "while writing block bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003951msgstr "beim Schreiben der Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003952
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003953#: misc/e2image.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003954msgid "while writing inode bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003955msgstr "beim Schreiben der Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003956
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003957#: misc/e2image.c:502
Philipp Thomasb93349a2014-05-31 13:32:39 -04003958#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003959msgid "Corrupt directory block %llu: bad rec_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003960msgstr "Defekter Verzeichnisblock %llu: ungültige rec_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003961
3962#: misc/e2image.c:514
Philipp Thomasb93349a2014-05-31 13:32:39 -04003963#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003964msgid "Corrupt directory block %llu: bad name_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003965msgstr "Defekter Verzeichnisblock %llu: ungültige name_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003966
3967#: misc/e2image.c:555
Philipp Thomasb93349a2014-05-31 13:32:39 -04003968#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003969msgid "%llu / %llu blocks (%d%%)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003970msgstr "%llu / %llu Blöcke (%d%%)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003971
3972#: misc/e2image.c:586 misc/e2image.c:626
3973msgid "Copying "
Philipp Thomasb93349a2014-05-31 13:32:39 -04003974msgstr "Kopieren "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003975
3976#: misc/e2image.c:623
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003977msgid ""
3978"Stopping now will destroy the filesystem, interrupt again if you are sure\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003979msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04003980"Jetzt anzuhalten würde daws Dateisystem zerstören. Wenn Sie sicher sind,\n"
3981"unterbrechen Sie noch einmal\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003982
3983#: misc/e2image.c:649
3984#, c-format
3985msgid " %s remaining at %.2f MB/s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003986msgstr " %s bleibt bai %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003987
3988#: misc/e2image.c:661 misc/e2image.c:1188
Philipp Thomasb93349a2014-05-31 13:32:39 -04003989#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003990msgid "error reading block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003991msgstr "Fehler beim Lesen von Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003992
3993#: misc/e2image.c:715
3994#, c-format
3995msgid "Copied %llu / %llu blocks (%d%%) in %s "
Philipp Thomasb93349a2014-05-31 13:32:39 -04003996msgstr "%llu / %llu Blöcke (%d%%) wurden in %s kopiert "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003997
3998#: misc/e2image.c:719
3999#, c-format
4000msgid "at %.2f MB/s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004001msgstr "bai %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004002
4003#: misc/e2image.c:755
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004004msgid "while allocating l1 table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004005msgstr "beim Anfordern von Speicher für die l1 Tabelle"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004006
4007#: misc/e2image.c:800
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004008msgid "while allocating l2 cache"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004009msgstr "beim Anfordern von Speicher für den l2 Zwischenspeicher"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004010
4011#: misc/e2image.c:823
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004012msgid ""
4013"Warning: There are still tables in the cache while putting the cache, data "
4014"will be lost so the image may not be valid.\n"
4015msgstr ""
4016"Warnung: Beim Schreiben des Zwischenspeichers gefinden sich immer noch "
4017"Tabellen in ihm. Damit gehen Daten verloren unddas Abbild ist eventuell "
4018"ungültig.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004019
4020#: misc/e2image.c:1145
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004021msgid "while allocating ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004022msgstr "beim Reservieren von Speicher für ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004023
4024#: misc/e2image.c:1152
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004025msgid "while initializing ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004026msgstr "beim Initialisieren des ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004027
4028#: misc/e2image.c:1211 misc/e2image.c:1229
4029msgid "Programming error: multiple sequential refcount blocks created!\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004030msgstr ""
4031"Programmierfehler: mehrere sequentielle Refcount-Blöcke wurden erzeugt!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004032
4033#: misc/e2image.c:1269
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004034msgid "while allocating block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004035msgstr "beim Reservieren von Speicher für die Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004036
4037#: misc/e2image.c:1278
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004038msgid "while allocating scramble block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004039msgstr "beim Reservieren von Speicher für die verwürfelte Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004040
4041#: misc/e2image.c:1285
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004042msgid "Scanning inodes...\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004043msgstr "Prüfe die Inodes…\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004044
4045#: misc/e2image.c:1297
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004046msgid "Can't allocate block buffer"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004047msgstr "Es konnte kein Blockpuffer reserviert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004048
4049#: misc/e2image.c:1336 misc/e2image.c:1350
Philipp Thomasb93349a2014-05-31 13:32:39 -04004050#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004051msgid "while iterating over inode %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004052msgstr "beim Iterieren über Inode %u"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004053
4054#: misc/e2image.c:1381
4055msgid "Raw and qcow2 images cannot be installed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004056msgstr "Rohe und Qcow2-Abbilder können nicht installiert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004057
4058#: misc/e2image.c:1403
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004059msgid "error reading bitmaps"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004060msgstr "Fehler beim Lesen der Bitmaps"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004061
4062#: misc/e2image.c:1415
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004063msgid "while opening device file"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004064msgstr "beim Öffnen der Gerätedatei"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004065
4066#: misc/e2image.c:1426
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004067msgid "while restoring the image table"
4068msgstr "beim Schreiben der Inode-Tabelle"
4069
4070#: misc/e2image.c:1523
4071msgid "-a option can only be used with raw or QCOW2 images."
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004072msgstr ""
4073"Die Option „-a“ kann nur bei rohen oder QCOW2-Abbildern benutzt werden."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004074
4075#: misc/e2image.c:1529
4076msgid "Offsets are only allowed with raw images."
Philipp Thomasb93349a2014-05-31 13:32:39 -04004077msgstr "Offsets sind nur bei Roh-Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004078
4079#: misc/e2image.c:1534
4080msgid "Move mode is only allowed with raw images."
Philipp Thomasb93349a2014-05-31 13:32:39 -04004081msgstr "Verschieben ist nur bei rohen Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004082
4083#: misc/e2image.c:1539
4084msgid "Move mode requires all data mode."
Philipp Thomasb93349a2014-05-31 13:32:39 -04004085msgstr "Der Verschiebemodus erfordert den „alle Daten“ Modus"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004086
4087#: misc/e2image.c:1549
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004088msgid "checking if mounted"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004089msgstr " Prüfung ob eingehänget"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004090
4091#: misc/e2image.c:1556
4092msgid ""
4093"\n"
4094"Running e2image on a R/W mounted filesystem can result in an\n"
4095"inconsistent image which will not be useful for debugging purposes.\n"
4096"Use -f option if you really want to do that.\n"
4097msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004098"\n"
4099"Das Starten von E2image auf einem schreib- und lesbar eingehängten\n"
4100"Dateisystem kann zu einem unvollständigen Abbild führen, welches\n"
4101"unbrauchbar für die Fehlersuche wäre. Verwenden Sie die Option -f, wenn\n"
4102"Sie das wirklich machen wollen.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004103
4104#: misc/e2image.c:1608
4105msgid "QCOW2 image can not be written to the stdout!\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004106msgstr ""
4107"Das QCOW2-Abbild kann nicht auf die Standardausgabe geschrieben werden!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004108
4109#: misc/e2image.c:1614
4110msgid "Can not stat output\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004111msgstr "Der Status der Ausgabe lässt sich nicht feststellen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004112
4113#: misc/e2image.c:1624
4114#, c-format
4115msgid "Image (%s) is compressed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004116msgstr "Das Abbild (%s) ist komprimiert\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004117
4118#: misc/e2image.c:1627
4119#, c-format
4120msgid "Image (%s) is encrypted\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004121msgstr "Das Abbild (%s) ist verschlselt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004122
4123#: misc/e2image.c:1630
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004124#, c-format
4125msgid "while trying to convert qcow2 image (%s) into raw image (%s)"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004126msgstr ""
4127"beim Versuch, das Qcow2-Image (%s) in ein rohes Image (%s) zu konvertieren"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004128
4129#: misc/e2image.c:1639
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004130msgid "The -c option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004131msgstr "Die Option „-c“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004132
4133#: misc/e2image.c:1644
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004134msgid "The -c option not supported when writing to stdout\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004135msgstr ""
4136"Die Option „-c“ wird beim Schreiben auf die Standardausgabe nicht "
4137"unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004138
4139#: misc/e2image.c:1651
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004140msgid "while allocating check_buf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004141msgstr "beim Anfordern des Prüfpuffers"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004142
4143#: misc/e2image.c:1657
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004144msgid "The -p option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004145msgstr "Die Option „-p“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004146
4147#: misc/e2image.c:1667
4148#, c-format
4149msgid "%d blocks already contained the data to be copied\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004150msgstr "%d Blöcke enthielten bereits die zu kopierenden Daten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004151
4152#: misc/e2label.c:58
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004153#, c-format
4154msgid "e2label: cannot open %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004155msgstr "e2label: Kann %s nicht öffnen.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004156
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004157#: misc/e2label.c:63
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004158#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004159msgid "e2label: cannot seek to superblock\n"
4160msgstr "e2label: cannot seek to superblock\n"
4161
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004162#: misc/e2label.c:68
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004163#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004164msgid "e2label: error reading superblock\n"
4165msgstr "e2label: Lesefehler im Superblock\n"
4166
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004167#: misc/e2label.c:72
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004168#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004169msgid "e2label: not an ext2 filesystem\n"
4170msgstr "e2label: Kein ext2 Dateisystem\n"
4171
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004172#: misc/e2label.c:97 misc/tune2fs.c:2126
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004173#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004174msgid "Warning: label too long, truncating.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004175msgstr "Warnung: Name zu lang, kürze ihn.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004176
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004177#: misc/e2label.c:100
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004178#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004179msgid "e2label: cannot seek to superblock again\n"
4180msgstr "e2label: cannot seek to superblock again\n"
4181
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004182#: misc/e2label.c:105
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004183#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004184msgid "e2label: error writing superblock\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004185msgstr "e2label: Fehler beim Schreiben des Superblocks\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004186
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004187#: misc/e2label.c:117 misc/tune2fs.c:838
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004188#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004189msgid "Usage: e2label device [newlabel]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004190msgstr "Aufruf: e2label Gerät [neuer_Name]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004191
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004192#: misc/e2undo.c:36
Philipp Thomas720e6362008-06-21 14:06:00 -04004193#, c-format
4194msgid "Usage: %s <transaction file> <filesystem>\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004195msgstr "Aufruf: %s <Transaktionsdatei> <Dateisystem>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004196
Philipp Thomas40771272008-09-07 22:55:25 -04004197#: misc/e2undo.c:52
Philipp Thomas720e6362008-06-21 14:06:00 -04004198msgid "Failed to read the file system data \n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004199msgstr "Die Dateisystemdaten konnten nicht gelesenb werden \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004200
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004201#: misc/e2undo.c:62 misc/e2undo.c:83 misc/e2undo.c:108 misc/e2undo.c:206
Philipp Thomas720e6362008-06-21 14:06:00 -04004202#, c-format
4203msgid "Failed tdb_fetch %s\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004204msgstr "tdb_fetch von %s ist misslungen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004205
Philipp Thomas40771272008-09-07 22:55:25 -04004206#: misc/e2undo.c:70
Philipp Thomas720e6362008-06-21 14:06:00 -04004207#, c-format
4208msgid "The file system Mount time didn't match %u\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004209msgstr "Die Zeit des letzten Einhängens des Dateisystems war nicht %u\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004210
Philipp Thomas40771272008-09-07 22:55:25 -04004211#: misc/e2undo.c:89
Philipp Thomas720e6362008-06-21 14:06:00 -04004212msgid "The file system UUID didn't match \n"
Philipp Thomas68801282008-07-17 11:47:00 -04004213msgstr "Die UUID des Dateisystems stimmte nicht überein \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004214
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004215#: misc/e2undo.c:163
Philipp Thomas68801282008-07-17 11:47:00 -04004216#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004217msgid "Failed tdb_open %s\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004218msgstr "tdb_open von %s ist misslungen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004219
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004220#: misc/e2undo.c:169
Philipp Thomas68801282008-07-17 11:47:00 -04004221#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004222msgid "Error while determining whether %s is mounted.\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004223msgstr "Fehler beim Überprüfen, ob %s eingehängt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004224
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004225#: misc/e2undo.c:175
Philipp Thomas40771272008-09-07 22:55:25 -04004226msgid "e2undo should only be run on unmounted file system\n"
4227msgstr "e2undo sollte nur auf nicht-eingehängten Dateisystemen laufen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004228
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004229#: misc/e2undo.c:184
Philipp Thomas68801282008-07-17 11:47:00 -04004230#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004231msgid "Failed to open %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004232msgstr "%s konnte nicht geöffnet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004233
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004234#: misc/e2undo.c:210
Philipp Thomas720e6362008-06-21 14:06:00 -04004235#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004236msgid "Replayed transaction of size %zd at location %llu\n"
4237msgstr "Zurückgespielte Transaktion der Größe %zd an Position %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004238
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004239#: misc/e2undo.c:216
Philipp Thomas720e6362008-06-21 14:06:00 -04004240#, c-format
4241msgid "Failed write %s\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004242msgstr "Gescheitertes Schreiben von %s\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004243
Eric Sandeen032eafe2012-07-28 17:48:36 -04004244#: misc/fsck.c:343
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004245#, c-format
4246msgid "WARNING: couldn't open %s: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004247msgstr "WARNUNG: Konnte %s nicht öffnen: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004248
Eric Sandeen032eafe2012-07-28 17:48:36 -04004249#: misc/fsck.c:353
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004250#, c-format
4251msgid "WARNING: bad format on line %d of %s\n"
4252msgstr "WARNUNG: falsches Format in Zeile %d von %s\n"
4253
Eric Sandeen032eafe2012-07-28 17:48:36 -04004254#: misc/fsck.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004255msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004256"WARNING: Your /etc/fstab does not contain the fsck passno\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004257"\tfield. I will kludge around things for you, but you\n"
4258"\tshould fix your /etc/fstab file as soon as you can.\n"
4259"\n"
4260msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004261"WARNUNG: Ihre /etc/fstab enthält keine Angabe darüber, wann\n"
4262"\tdas Dateisystem geprüft werden soll. Ich werde dieses\n"
4263"\tignorieren, aber Sie sollten ihre /etc/fstab so schnell\n"
4264"\twie möglich korrigieren.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004265"\n"
4266
Eric Sandeen032eafe2012-07-28 17:48:36 -04004267#: misc/fsck.c:478
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004268#, c-format
4269msgid "fsck: %s: not found\n"
4270msgstr "fsck: %s: nicht gefunden\n"
4271
Eric Sandeen032eafe2012-07-28 17:48:36 -04004272#: misc/fsck.c:594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004273#, c-format
4274msgid "%s: wait: No more child process?!?\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004275msgstr "%s: wait: kein Kindprozess mehr?!?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004276
Eric Sandeen032eafe2012-07-28 17:48:36 -04004277#: misc/fsck.c:616
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004278#, c-format
4279msgid "Warning... %s for device %s exited with signal %d.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004280msgstr "Warnung... %s für Gerät %s wurde mit Signal %d beendet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004281
Eric Sandeen032eafe2012-07-28 17:48:36 -04004282#: misc/fsck.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004283#, c-format
4284msgid "%s %s: status is %x, should never happen.\n"
4285msgstr "%s %s: Status ist %x, sollte nie vorkommen.\n"
4286
Eric Sandeen032eafe2012-07-28 17:48:36 -04004287#: misc/fsck.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004288#, c-format
4289msgid "Finished with %s (exit status %d)\n"
4290msgstr "Beendet mit %s (exit status %d)\n"
4291
Eric Sandeen032eafe2012-07-28 17:48:36 -04004292#: misc/fsck.c:721
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004293#, c-format
4294msgid "%s: Error %d while executing fsck.%s for %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004295msgstr "%s: Fehler %d bei Ausführung von fsck.%s für %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004296
Eric Sandeen032eafe2012-07-28 17:48:36 -04004297#: misc/fsck.c:742
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004298msgid ""
4299"Either all or none of the filesystem types passed to -t must be prefixed\n"
4300"with 'no' or '!'.\n"
4301msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004302"Bei -t müssen entweder allen oder keinem Dateisystem ein „no“ bzw. „!“\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004303"vorangestellt werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004304
Eric Sandeen032eafe2012-07-28 17:48:36 -04004305#: misc/fsck.c:761
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004306msgid "Couldn't allocate memory for filesystem types\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004307msgstr "Kann keinen Speicher für Dateisystemtypen reservieren.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004308
Eric Sandeen032eafe2012-07-28 17:48:36 -04004309#: misc/fsck.c:884
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004310#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004311msgid ""
4312"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
4313"number\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004314msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004315"%s: überspringe die ungültige Zeile in /etc/fstab: bind mount mit\n"
4316" Durchgangsnummer für fsck, die nicht Null ist\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004317
Eric Sandeen032eafe2012-07-28 17:48:36 -04004318#: misc/fsck.c:911
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004319#, c-format
4320msgid "fsck: cannot check %s: fsck.%s not found\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004321msgstr "fsck: kann %s nicht überprüfen: fsck.%s nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004322
Eric Sandeen032eafe2012-07-28 17:48:36 -04004323#: misc/fsck.c:967
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004324msgid "Checking all file systems.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004325msgstr "Alle Dateisysteme werden überprüft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004326
Eric Sandeen032eafe2012-07-28 17:48:36 -04004327#: misc/fsck.c:1058
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004328#, c-format
4329msgid "--waiting-- (pass %d)\n"
4330msgstr "--warten-- (Durchgang %d)\n"
4331
Eric Sandeen032eafe2012-07-28 17:48:36 -04004332#: misc/fsck.c:1078
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004333msgid ""
4334"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
4335msgstr ""
4336"Aufruf: fsck [-AMNPRTV] [ -C [ fd ] ] [-t Datesystemtyp] [FS-Optionen] "
4337"[Dateisystem...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004338
Eric Sandeen032eafe2012-07-28 17:48:36 -04004339#: misc/fsck.c:1120
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004340#, c-format
4341msgid "%s: too many devices\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004342msgstr "%s: zu viele Geräte\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004343
Eric Sandeen032eafe2012-07-28 17:48:36 -04004344#: misc/fsck.c:1153 misc/fsck.c:1239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004345#, c-format
4346msgid "%s: too many arguments\n"
4347msgstr "%s: zu viele Argumente\n"
4348
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004349#: misc/lsattr.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004350#, c-format
4351msgid "Usage: %s [-RVadlv] [files...]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004352msgstr "Aufruf: %s [-RVadlv] [Dateien...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004353
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004354#: misc/lsattr.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004355#, c-format
4356msgid "While reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004357msgstr "Beim Lesen der Flags von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004358
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004359#: misc/lsattr.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004360#, c-format
4361msgid "While reading version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004362msgstr "Beim Lesen der Version von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004363
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004364#: misc/mke2fs.c:123
Philipp Thomas77c871a2010-04-19 16:59:02 -04004365#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004366msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004367"Usage: %s [-c|-l filename] [-b block-size] [-C cluster-size]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004368"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004369"\t[-G flex-group-size] [-N number-of-inodes]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004370"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004371"\t[-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004372"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004373"\t[-t fs-type] [-T usage-type ] [-U UUID] [-jnqvDFKSV] device [blocks-"
4374"count]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004375msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004376"Aufruf: %s [-c|-l Dateiname] [-b Blockgröße] [-C Clustergröße]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004377"\t[-i Bytes-pro-Inode] [-I Inodegrösse] [-J Journal-Optionen]\n"
4378"\t[-G Größe_der_Metagruppe] [-N Anzahl_der_Inodes]\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004379"\t[-m Reservierte-Blöcke-Prozent] [-o Erzeuger-OS]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004380"\t[-g Blöcke-pro-Gruppe] [-L Volume-Label]\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04004381"\t[-M letztes-eingehängtes-Verzeichnis] [-O Eigenschaft[,...]]\n"
4382"\t[-r fs-Revision] [-E erweiterte-Option[,...]]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004383"\t[-t Dateisystemtyp] [-T Verwendungs-Typ ] [-U UUID] [-jnqvFKSV]\n"
4384"\tGerät [Block-Anzahl]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004385
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004386#: misc/mke2fs.c:252
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004387#, c-format
4388msgid "Running command: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004389msgstr "Es wird ausgeführt: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004390
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004391#: misc/mke2fs.c:256
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004392#, c-format
4393msgid "while trying to run '%s'"
4394msgstr "während des Versuchs, „%s“ auszuführen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004395
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004396#: misc/mke2fs.c:263
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004397msgid "while processing list of bad blocks from program"
4398msgstr "beim Auswerten der „Bad Block“-Liste vom Programm"
4399
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004400#: misc/mke2fs.c:290
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004401#, c-format
4402msgid "Block %d in primary superblock/group descriptor area bad.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004403msgstr "Block %d im primären Superblock/Gruppendeskriptorbereich defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004404
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004405#: misc/mke2fs.c:292
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004406#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004407msgid "Blocks %u through %u must be good in order to build a filesystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004408msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004409"Die Blöcke %u bis einschließlich %u müssen in Ordung sein, um ein\n"
4410"\tDateisystem zu erstellen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004411
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004412#: misc/mke2fs.c:295
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004413msgid "Aborting....\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004414msgstr "Abbruch...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004415
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004416#: misc/mke2fs.c:315
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004417#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004418msgid ""
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004419"Warning: the backup superblock/group descriptors at block %u contain\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004420"\tbad blocks.\n"
4421"\n"
4422msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004423"Warnung: die Sicherung des Superblock bzw. Gruppendeskriptors in Block %u "
4424"enthält\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004425"\tdefekte Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004426"\n"
4427
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004428#: misc/mke2fs.c:334
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004429msgid "while marking bad blocks as used"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004430msgstr "beim Markieren von defekten Blöcken als „belegt“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004431
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004432#: misc/mke2fs.c:386
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004433msgid "Writing inode tables: "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004434msgstr "Inode-Tabellen werden geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004435
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004436#: misc/mke2fs.c:407
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004437#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004438msgid ""
4439"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004440"Could not write %d blocks in inode table starting at %llu: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004441msgstr ""
4442"\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004443"%d Blöcke konnten nicht in die Inoden-Tabellen beginnend bei %llu "
4444"geschrieben werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004445
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004446#: misc/mke2fs.c:421 misc/mke2fs.c:2477 misc/mke2fs.c:2762
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004447msgid "done \n"
4448msgstr "erledigt \n"
4449
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004450#: misc/mke2fs.c:432
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004451msgid "while creating root dir"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004452msgstr "beim Erstellen des Wurzelverzeichnisses"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004453
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004454#: misc/mke2fs.c:439
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004455msgid "while reading root inode"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004456msgstr "beim Lesen des Root-Inode"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004457
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004458#: misc/mke2fs.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004459msgid "while setting root inode ownership"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004460msgstr "beim Setzen des Root-Inode-Eigentümers"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004461
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004462#: misc/mke2fs.c:469
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004463msgid "while creating /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004464msgstr "beim Erstellen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004465
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004466#: misc/mke2fs.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004467msgid "while looking up /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004468msgstr "beim Suchen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004469
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004470#: misc/mke2fs.c:489
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004471msgid "while expanding /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004472msgstr "beim Expandieren von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004473
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004474#: misc/mke2fs.c:504
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004475msgid "while setting bad block inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004476msgstr "beim Setzen des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004477
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004478#: misc/mke2fs.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004479#, c-format
4480msgid "Out of memory erasing sectors %d-%d\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004481msgstr "Speicher voll beim Löschen der Sektoren %d-%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004482
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004483#: misc/mke2fs.c:541
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004484#, c-format
4485msgid "Warning: could not read block 0: %s\n"
4486msgstr "Warnung: konnte Block %s nicht lesen\n"
4487
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004488#: misc/mke2fs.c:557
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004489#, c-format
4490msgid "Warning: could not erase sector %d: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004491msgstr "Warnung: konnte Sektor %d: %s nicht löschen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004492
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004493#: misc/mke2fs.c:573
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004494msgid "while initializing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004495msgstr "beim Initialisieren des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004496
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004497#: misc/mke2fs.c:581
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004498msgid "Zeroing journal device: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004499msgstr "Überschreibe Journal-Device mit Nullen: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004500
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004501#: misc/mke2fs.c:593
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004502#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004503msgid "while zeroing journal device (block %llu, count %d)"
4504msgstr "beim Überschreiben des Journal-Device mit Nullen (Block %llu, Nr. %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004505
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004506#: misc/mke2fs.c:611
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004507msgid "while writing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004508msgstr "beim Schreiben des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004509
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004510#: misc/mke2fs.c:626
Philipp Thomasb93349a2014-05-31 13:32:39 -04004511#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004512msgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004513msgstr "Ein Dateisystems mit %llu (%dk) Blöcken und %u Inodes wird erzeugt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004514
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004515#: misc/mke2fs.c:634
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004516#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004517msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004518"warning: %llu blocks unused.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004519"\n"
4520msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004521"Warnung: %llu Blöcke unbenutzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004522"\n"
4523
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004524#: misc/mke2fs.c:639
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004525#, c-format
4526msgid "Filesystem label=%s\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004527msgstr "Dateisystem-Label=%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004528
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004529#: misc/mke2fs.c:642
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004530#, c-format
4531msgid "OS type: %s\n"
4532msgstr "OS-Typ: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004533
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004534#: misc/mke2fs.c:644
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004535#, c-format
4536msgid "Block size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004537msgstr "Blockgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004538
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004539#: misc/mke2fs.c:648
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004540#, c-format
4541msgid "Cluster size=%u (log=%u)\n"
4542msgstr "Clustergröße=%u (log=%u)\n"
4543
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004544#: misc/mke2fs.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004545#, c-format
4546msgid "Fragment size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004547msgstr "Fragmentgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004548
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004549#: misc/mke2fs.c:654
Philipp Thomas77c871a2010-04-19 16:59:02 -04004550#, c-format
4551msgid "Stride=%u blocks, Stripe width=%u blocks\n"
4552msgstr "Stride=%u Blöcke, Stripebreite=%u Blöcke\n"
4553
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004554#: misc/mke2fs.c:656
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004555#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004556msgid "%u inodes, %llu blocks\n"
4557msgstr "%u Inodes, %llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004558
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004559#: misc/mke2fs.c:658
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004560#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004561msgid "%llu blocks (%2.2f%%) reserved for the super user\n"
4562msgstr "%llu Blöcke (%2.2f%%) reserviert für den Superuser\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004563
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004564#: misc/mke2fs.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004565#, c-format
4566msgid "First data block=%u\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004567msgstr "Erster Datenblock=%u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004568
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004569#: misc/mke2fs.c:663
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004570#, c-format
4571msgid "Root directory owner=%u:%u\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004572msgstr "Eigentümer des Wurzelverzeichnisses=%u:%u\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004573
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004574#: misc/mke2fs.c:665
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004575#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004576msgid "Maximum filesystem blocks=%lu\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004577msgstr "Maximale Dateisystem-Blöcke=%lu\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004578
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004579#: misc/mke2fs.c:669
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004580#, c-format
4581msgid "%u block groups\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004582msgstr "%u Blockgruppen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004583
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004584#: misc/mke2fs.c:671
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004585#, c-format
4586msgid "%u block group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004587msgstr "%u Blockgruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004588
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004589#: misc/mke2fs.c:674
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004590#, c-format
4591msgid "%u blocks per group, %u clusters per group\n"
4592msgstr "%u Blöcke pro Gruppe, %u Cluster pro Gruppe\n"
4593
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004594#: misc/mke2fs.c:677
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004595#, c-format
4596msgid "%u blocks per group, %u fragments per group\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004597msgstr "%u Blöcke pro Gruppe, %u Fragmente pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004598
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004599#: misc/mke2fs.c:679
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004600#, c-format
4601msgid "%u inodes per group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004602msgstr "%u Inodes pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004603
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004604#: misc/mke2fs.c:688
Philipp Thomasb93349a2014-05-31 13:32:39 -04004605#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004606msgid "Filesystem UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004607msgstr "UUID des Dateisystems: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004608
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004609#: misc/mke2fs.c:689
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004610msgid "Superblock backups stored on blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004611msgstr "Superblock-Sicherungskopien gespeichert in den Blöcken: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004612
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004613#: misc/mke2fs.c:766
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004614#, c-format
4615msgid "%s requires '-O 64bit'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004616msgstr "%s erfordert „-O 64Bit“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004617
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004618#: misc/mke2fs.c:772
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004619#, c-format
4620msgid "'%s' must be before 'resize=%u'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004621msgstr "„%s“ muss vor „resize=%u“ kommen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004622
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004623#: misc/mke2fs.c:785
Philipp Thomasb93349a2014-05-31 13:32:39 -04004624#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004625msgid "Invalid desc_size: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004626msgstr "Unzulässige desc_size: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004627
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004628#: misc/mke2fs.c:798
Philipp Thomasb93349a2014-05-31 13:32:39 -04004629#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004630msgid "Invalid offset: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004631msgstr "Unzulässiger Offset: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004632
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004633#: misc/mke2fs.c:812 misc/tune2fs.c:1206
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004634#, c-format
4635msgid "Invalid mmp_update_interval: %s\n"
4636msgstr "Ungültiges mmp_update_interval: %s\n"
4637
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004638#: misc/mke2fs.c:826
4639#, fuzzy, c-format
4640msgid "Invalid # of backup superblocks: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004641msgstr "Ungültige Anzahl Ersatz-Superblöcke: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004642
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004643#: misc/mke2fs.c:848
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004644#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004645msgid "Invalid stride parameter: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004646msgstr "Ungültiger \"stride\"-Parameter: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004647
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004648#: misc/mke2fs.c:863
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004649#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05004650msgid "Invalid stripe-width parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004651msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004652
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004653#: misc/mke2fs.c:886
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004654#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004655msgid "Invalid resize parameter: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004656msgstr "Ungültiger \"resize\"-Parameter: %s\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004657
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004658#: misc/mke2fs.c:893
Theodore Ts'obc759702005-05-09 20:40:55 -04004659msgid "The resize maximum must be greater than the filesystem size.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004660msgstr ""
4661"Das Maximum der Vergrösserung muss oberhalb als der Dateisystem-Grösse "
4662"liegen.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004663
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004664#: misc/mke2fs.c:917
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004665msgid "On-line resizing not supported with revision 0 filesystems\n"
4666msgstr ""
Philipp Thomas9564ee52008-08-22 03:22:50 -04004667"Online-Grössenänderungen werden bei Revison 0 Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004668"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004669
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004670#: misc/mke2fs.c:944 misc/mke2fs.c:953
Philipp Thomasb93349a2014-05-31 13:32:39 -04004671#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004672msgid "Invalid root_owner: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004673msgstr "Ungültiger Eigentümer der Wurzel: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004674
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004675#: misc/mke2fs.c:978
Philipp Thomasedc733d2012-04-22 15:38:42 -04004676#, c-format
4677msgid "Invalid quotatype parameter: %s\n"
4678msgstr "Ungültiger Quotatyp-Parameter: %s\n"
4679
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004680#: misc/mke2fs.c:989
Philipp Thomasb93349a2014-05-31 13:32:39 -04004681#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004682msgid ""
4683"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004684"Bad option(s) specified: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004685"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004686"Extended options are separated by commas, and may take an argument which\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004687"\tis set off by an equals ('=') sign.\n"
4688"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004689"Valid extended options are:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004690"\tmmp_update_interval=<interval>\n"
4691"\tnum_backup_sb=<0|1|2>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004692"\tstride=<RAID per-disk data chunk in blocks>\n"
4693"\tstripe-width=<RAID stride * data disks in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004694"\toffset=<offset to create the file system>\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004695"\tresize=<resize maximum size in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004696"\tpacked_meta_blocks=<0 to disable, 1 to enable>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004697"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004698"\tlazy_journal_init=<0 to disable, 1 to enable>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004699"\troot_uid=<uid of root directory>\n"
4700"\troot_gid=<gid of root directory>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05004701"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004702"\tdiscard\n"
4703"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004704"\tquotatype=<usr OR grp>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004705"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004706msgstr ""
4707"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004708"Ungültige Option(en) angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004709"\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004710"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004711"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004712"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004713"\terhalten welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004714"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004715"gültige erweiterte Optionen sind:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004716"\tmmp_update_interval=<Intervall>\n"
4717"\tnum_backup_sb=<0|1|2>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004718"\tstride=<RAID Segmentgrösse in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004719"\tstripe-width=<RAID Stride * Datenplatten in Blöcken>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004720"\toffset=<Offset für das Dateisystem>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004721"\tresize=<Obergrenze für Grössenänderung in Blöcken>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004722"\tpacked_meta_blocks=<0 deaktiviert, 1 aktivieren>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004723"\tlazy_itable_init=<0 für Ab-, 1 für Einschalten>\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004724"\tlazy_journal_init=<0 für Ab-, 1 fúr Einschalten>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004725"\troot_uid=<UID desw Wurzelverzeichnisses>\n"
4726"\troot_gid=<GID desw Wurzelverzeichnisses>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004727"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004728"\tdiscard\n"
4729"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004730"\tquotatype=<usr ODER grp>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004731"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004732
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004733#: misc/mke2fs.c:1015
Theodore Ts'o8f741372008-02-28 21:47:05 -05004734#, c-format
4735msgid ""
4736"\n"
4737"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
4738"\n"
4739msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004740"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004741"Warnung: Die Stripe-breite %u des RAIDs ist kein mehrfaches des Strides %u.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004742"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004743
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004744#: misc/mke2fs.c:1055
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004745#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004746msgid ""
4747"Syntax error in mke2fs config file (%s, line #%d)\n"
4748"\t%s\n"
4749msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004750"Syntaxfehler in der Konfigurationsdatei von mke2fs (%s, Zeile %d)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004751"\t%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004752
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004753#: misc/mke2fs.c:1068 misc/tune2fs.c:416
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004754#, c-format
4755msgid "Invalid filesystem option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004756msgstr "Ungültige Dateisystem-Option angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004757
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004758#: misc/mke2fs.c:1080 misc/tune2fs.c:357
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004759#, c-format
4760msgid "Invalid mount option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004761msgstr "Ungültige Option für das Einhängen angegeben: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004762
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004763#: misc/mke2fs.c:1220
Philipp Thomas40771272008-09-07 22:55:25 -04004764#, c-format
4765msgid ""
4766"\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004767"Your mke2fs.conf file does not define the %s filesystem type.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004768msgstr ""
4769"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004770"Ihre Datei mke2fs.conf definiert den Typ des Dateisystems %s nicht.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004771
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004772#: misc/mke2fs.c:1224
Philipp Thomas40771272008-09-07 22:55:25 -04004773msgid ""
4774"You probably need to install an updated mke2fs.conf file.\n"
4775"\n"
4776msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004777"Sie müsen wahrscheinlich eine aktualisierte Version der Datyei "
4778"installieren.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004779"\n"
4780
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004781#: misc/mke2fs.c:1228
Philipp Thomas3e914b52011-01-24 15:03:41 -05004782msgid "Aborting...\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004783msgstr "Abbruch…\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004784
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004785#: misc/mke2fs.c:1269
Philipp Thomas3e914b52011-01-24 15:03:41 -05004786#, c-format
4787msgid ""
4788"\n"
4789"Warning: the fs_type %s is not defined in mke2fs.conf\n"
4790"\n"
4791msgstr ""
4792"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004793"Warnung: der Dateisystemtyp %s ist in mke2fs.conf nicht definiert\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004794"\n"
4795
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004796#: misc/mke2fs.c:1449
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004797msgid "Couldn't allocate memory for new PATH.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004798msgstr "Es konnte kein Speicher für den neuen PFAD reserviert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004799
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004800#: misc/mke2fs.c:1490
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004801#, c-format
4802msgid "Couldn't init profile successfully (error: %ld).\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004803msgstr "Das Profil konnte nicht erfolgrteich initialisiert werden: %ld).\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004804
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004805#: misc/mke2fs.c:1523
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004806#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004807msgid "invalid block size - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004808msgstr "ungültige Blockgrösse - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004809
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004810#: misc/mke2fs.c:1527
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004811#, c-format
4812msgid "Warning: blocksize %d not usable on most systems.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004813msgstr ""
4814"Warnung: Eine Blockgrösse von %d ist auf den meisten System unbrauchbar.\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004815
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004816#: misc/mke2fs.c:1543
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004817#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004818msgid "invalid cluster size - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004819msgstr "ungültige Clustergrösse - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004820
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004821#: misc/mke2fs.c:1553
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004822msgid "'-R' is deprecated, use '-E' instead"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004823msgstr "„-R“ ist veraltet, bitte verwenden Sie statt dessen „-E“"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004824
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004825#: misc/mke2fs.c:1565
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004826msgid "Illegal number for blocks per group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004827msgstr "Die Zahl der Blöcke pro Gruppe ist unzulässig"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004828
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004829#: misc/mke2fs.c:1570
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004830msgid "blocks per group must be multiple of 8"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004831msgstr "Die Anzahl der Blöcke pro Gruppe muss ein Mehrfaches von 8 sein"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004832
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004833#: misc/mke2fs.c:1578
Philipp Thomas720e6362008-06-21 14:06:00 -04004834msgid "Illegal number for flex_bg size"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004835msgstr "Der Wert für die Grösse von flex_bg ist unzulässig"
Philipp Thomas720e6362008-06-21 14:06:00 -04004836
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004837#: misc/mke2fs.c:1584
Philipp Thomas720e6362008-06-21 14:06:00 -04004838msgid "flex_bg size must be a power of 2"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004839msgstr "Die Grösse von flex_bg muss eine Potenz von 2 sein"
Philipp Thomas720e6362008-06-21 14:06:00 -04004840
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004841#: misc/mke2fs.c:1589
4842#, fuzzy, c-format
4843msgid "flex_bg size (%lu) must be less than or equal to 2^31"
4844msgstr "Die Grösse von flex_bg muss eine Potenz von 2 sein"
4845
4846#: misc/mke2fs.c:1600
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004847#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004848msgid "invalid inode ratio %s (min %d/max %d)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004849msgstr "Unzulässige Inode-Rate %s (min %d/max %d)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004850
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004851#: misc/mke2fs.c:1610
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004852#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004853msgid "invalid inode size - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004854msgstr "ungültige Inodegrösse - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004855
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004856#: misc/mke2fs.c:1623
4857msgid ""
4858"Warning: -K option is deprecated and should not be used anymore. Use '-E "
4859"nodiscard' extended option instead!\n"
4860msgstr ""
4861"Warnung: die Option -K wird bald nicht mehr unterstüzt. Verwenden Sie statt "
4862"dessen die Erweiterungsoption „-E nodiscard“!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004863
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004864#: misc/mke2fs.c:1634
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004865msgid "in malloc for bad_blocks_filename"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004866msgstr "in malloc für bad_blocks_filename"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004867
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004868#: misc/mke2fs.c:1647
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004869#, c-format
4870msgid "invalid reserved blocks percent - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004871msgstr "Ungültiger Wert für die prozentuale Anzahl reservierter Blöcke - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004872
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004873#: misc/mke2fs.c:1662
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004874#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004875msgid "bad num inodes - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004876msgstr "ungültige Anzahl von Inodes - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004877
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004878#: misc/mke2fs.c:1679
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004879#, c-format
4880msgid "bad revision level - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004881msgstr "ungültige Version - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004882
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004883#: misc/mke2fs.c:1684
4884#, fuzzy, c-format
4885msgid "while trying to create revision %d"
4886msgstr ""
4887"\n"
4888"\t beim Anlegen des Journals"
4889
4890#: misc/mke2fs.c:1698
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004891msgid "The -t option may only be used once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004892msgstr "Die Option „-t“ darf nur einmel angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004893
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004894#: misc/mke2fs.c:1706
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004895msgid "The -T option may only be used once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004896msgstr "Die Option „-T“ darf nur einmel angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004897
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004898#: misc/mke2fs.c:1759 misc/mke2fs.c:2843
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004899#, c-format
4900msgid "while trying to open journal device %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004901msgstr "beim Versuch, das Journalgerät %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004902
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004903#: misc/mke2fs.c:1765
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004904#, c-format
Theodore Ts'oddc32a02003-05-03 18:45:55 -04004905msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004906msgstr ""
4907"Die Blockgrösse des Journalgeräts (%d) ist kleiner als die minimale "
4908"Blockgrösse %d\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004909
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004910#: misc/mke2fs.c:1771
Philipp Thomas68801282008-07-17 11:47:00 -04004911#, c-format
4912msgid "Using journal device's blocksize: %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004913msgstr "Die Blockgrösse des Journalgerätes wird verwendet: %d\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004914
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004915#: misc/mke2fs.c:1782
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004916#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004917msgid "invalid blocks '%s' on device '%s'"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004918msgstr "ungültiger Block „%s“ auf Gerät „%s“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004919
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004920#: misc/mke2fs.c:1802
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004921msgid "filesystem"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004922msgstr "fDateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004923
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004924#: misc/mke2fs.c:1815 resize/main.c:372
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004925msgid "while trying to determine filesystem size"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004926msgstr "beim Versuch, die Grösse des Dateisystems zu bestimmen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004927
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004928#: misc/mke2fs.c:1821
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004929msgid ""
4930"Couldn't determine device size; you must specify\n"
4931"the size of the filesystem\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004932msgstr ""
4933"Die Größe des Gerätes ist nicht feststellbar. Sie müssen sie manuell "
4934"angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004935
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004936#: misc/mke2fs.c:1828
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004937msgid ""
4938"Device size reported to be zero. Invalid partition specified, or\n"
4939"\tpartition table wasn't reread after running fdisk, due to\n"
4940"\ta modified partition being busy and in use. You may need to reboot\n"
4941"\tto re-read your partition table.\n"
4942msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004943"Als Grösse des Geräts wird Null zurück geliefert. Entweder wurde eine\n"
4944"\tungültige Partition angegeben oder die Partitionstabelle wurde nach\n"
4945"\teinem Lauf von fdisk nicht neu eingelesen, weil die modifizierte\n"
4946"\tPartition vewendet wurde. Sie müssen unter Umständen den Rechner neu\n"
4947"\tneu starten, damit die Partitionstabelle neu eingelesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004948
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004949#: misc/mke2fs.c:1845
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004950msgid "Filesystem larger than apparent device size."
Philipp Thomasb93349a2014-05-31 13:32:39 -04004951msgstr "Das Dateisystem ist grösser als als die Partition."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004952
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004953#: misc/mke2fs.c:1865
Philipp Thomas720e6362008-06-21 14:06:00 -04004954msgid "Failed to parse fs types list\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004955msgstr "Die Liste der Dateisystemtypen konnte nicht verarbeitet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004956
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004957#: misc/mke2fs.c:1906
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004958msgid "while trying to determine hardware sector size"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004959msgstr "beim Versuch, die Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004960
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004961#: misc/mke2fs.c:1912
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004962msgid "while trying to determine physical sector size"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004963msgstr "beim Versuch, die echte Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004964
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004965#: misc/mke2fs.c:1944
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004966msgid "while setting blocksize; too small for device\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004967msgstr "beim Setzen der Blockgrösse: zu klein für das Gerät\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004968
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004969#: misc/mke2fs.c:1949
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004970#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004971msgid ""
4972"Warning: specified blocksize %d is less than device physical sectorsize %d\n"
4973msgstr ""
4974"Warnung: die angegebene Blockgrösse %d ist kleiner als die echte "
4975"Sektorgrösse %d\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004976
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004977#: misc/mke2fs.c:1973
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004978#, c-format
4979msgid ""
4980"%s: Size of device (0x%llx blocks) %s too big to be expressed\n"
4981"\tin 32 bits using a blocksize of %d.\n"
4982msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004983"%1$s: Die Grösse des Gerätes %3$s (0x%2$llx Blöcke) kann bei einer "
4984"Blockgrösse\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004985"\tvon %4$d kann mit 32 Bits nicht dargestellt werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004986
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004987#: misc/mke2fs.c:1989
Philipp Thomas68801282008-07-17 11:47:00 -04004988msgid "fs_types for mke2fs.conf resolution: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04004989msgstr "Dateisystemtypen für das Aufschlüsseln von mke2fs.conf: "
Philipp Thomas68801282008-07-17 11:47:00 -04004990
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004991#: misc/mke2fs.c:1996
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004992msgid "Filesystem features not supported with revision 0 filesystems\n"
4993msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004994"Eigenschaften von Dateisystemen werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004995"\tunterstützt\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004996
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004997#: misc/mke2fs.c:2004
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004998msgid "Sparse superblocks not supported with revision 0 filesystems\n"
4999msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005000"Spärliche Superblöcke werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005001"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005002
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005003#: misc/mke2fs.c:2016
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005004msgid "Journals not supported with revision 0 filesystems\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005005msgstr ""
5006"Journale werden bei Revison-0-Dateisystemen nicht\n"
5007"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005008
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005009#: misc/mke2fs.c:2030
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005010#, c-format
5011msgid "invalid reserved blocks percent - %lf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005012msgstr "Ungültiger Werte für Prozent reservierter Blöcke - %lf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005013
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005014#: misc/mke2fs.c:2047
5015msgid ""
5016"Extents MUST be enabled for a 64-bit filesystem. Pass -O extents to "
5017"rectify.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005018msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005019"Erweiterungen MÜSSEN für 64-bittige Dateisysteme aktiviert werden.\n"
5020"\tGeben sie „-O extents“ an, um dies zu tun.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005021
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005022#: misc/mke2fs.c:2067
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005023msgid "The cluster size may not be smaller than the block size.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005024msgstr "Die Clustergrösse darf nicht kleiner als die Blockgrösse sein.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005025
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005026#: misc/mke2fs.c:2073
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005027msgid "specifying a cluster size requires the bigalloc feature"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005028msgstr "die Angabe einer Clustergrösse erfordert die Eigenschaft bigalloc"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005029
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005030#: misc/mke2fs.c:2092
Philipp Thomas720e6362008-06-21 14:06:00 -04005031#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005032msgid "warning: Unable to get device geometry for %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005033msgstr "Warnung: Die Geometrie des Gerätes „%s“ kann nicht bestimmt werden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005034
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005035#: misc/mke2fs.c:2095
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005036#, c-format
5037msgid "%s alignment is offset by %lu bytes.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005038msgstr "Die Ausrichtung von %s ist um %lu Bytes versetzt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005039
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005040#: misc/mke2fs.c:2097
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005041#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005042msgid ""
5043"This may result in very poor performance, (re)-partitioning suggested.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005044msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005045"Dies könnte in sehr schlechter Leistung resultieren. Eine "
5046"Neupartitionierung\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005047"ist angeraten.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005048
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005049#: misc/mke2fs.c:2118
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005050#, c-format
5051msgid "%d-byte blocks too big for system (max %d)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005052msgstr "Blöcke mit %d Bytes sind zu gross für das Gerät (max %d)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005053
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005054#: misc/mke2fs.c:2122
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005055#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005056msgid ""
5057"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005058msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005059"Warnung: Blöcke mit %d Bytes sind zu gross für das Gerät (max %d)\n"
5060"\t Weiterverarbeitung wurde erzwungen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005061
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005062#: misc/mke2fs.c:2178
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005063msgid "Can't support bigalloc feature without extents feature"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005064msgstr "Bigalloc ist nur mit Extents möglich"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005065
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005066#: misc/mke2fs.c:2185
Philipp Thomas720e6362008-06-21 14:06:00 -04005067msgid ""
5068"The resize_inode and meta_bg features are not compatible.\n"
5069"They can not be both enabled simultaneously.\n"
5070msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005071"resize_inode und meta_bg sind nicht kompatibel und können\n"
5072"daher nicht gleichzeitig aktiviert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005073
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005074#: misc/mke2fs.c:2194
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005075msgid ""
5076"\n"
5077"Warning: the bigalloc feature is still under development\n"
5078"See https://ext4.wiki.kernel.org/index.php/Bigalloc for more information\n"
5079"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005080msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005081"\n"
5082"Warnung: „bigalloc“ befindet sich noch in Entwicklung\n"
5083"Lesen Sie https://ext4.wiki.kernel.org/index.php/Bigalloc für weitere\n"
5084"Informationen\n"
5085"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005086
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005087#: misc/mke2fs.c:2205
Theodore Ts'obc759702005-05-09 20:40:55 -04005088msgid "reserved online resize blocks not supported on non-sparse filesystem"
5089msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005090"reservierte Blöcke für die Online-Grössenderung werden auf nicht spärlichen\n"
5091"(sparse) Dateisystemen nicht unterstützt"
Theodore Ts'obc759702005-05-09 20:40:55 -04005092
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005093#: misc/mke2fs.c:2214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005094msgid "blocks per group count out of range"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005095msgstr "Die Anzahl der Blöcke pro Gruppe ist ausserhalb des gültigen Bereichs"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005096
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005097#: misc/mke2fs.c:2238
Philipp Thomas720e6362008-06-21 14:06:00 -04005098msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005099msgstr ""
5100"Flex_bg ist nicht aktiviert, daher darf daür auch keine Grösse angegeben "
5101"werden"
Theodore Ts'o6956f612005-12-31 16:46:15 -05005102
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005103#: misc/mke2fs.c:2250
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005104#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04005105msgid "invalid inode size %d (min %d/max %d)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005106msgstr "unzulässige Innodegrösse %d (min %d/max %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005107
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005108#: misc/mke2fs.c:2268
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005109#, c-format
5110msgid "too many inodes (%llu), raise inode ratio?"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005111msgstr "zu wenige Inodes (%llu), Anzahl erhöhen?"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005112
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005113#: misc/mke2fs.c:2275
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005114#, c-format
5115msgid "too many inodes (%llu), specify < 2^32 inodes"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005116msgstr "zu viele Inodes (%llu), geben Sie weniger als 2^32 Inodes an"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005117
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005118#: misc/mke2fs.c:2289
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005119#, c-format
5120msgid ""
5121"inode_size (%u) * inodes_count (%u) too big for a\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005122"\tfilesystem with %llu blocks, specify higher inode_ratio (-i)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005123"\tor lower inode count (-N).\n"
5124msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005125"inode_size (%u) * inodes_count (%u) ist zu gross für ein\n"
5126"\tDateisystem mit %llu blöcken, geben Sie ein höheres inode_ratio (-i)\n"
5127"\tan oder eine niedrigere Anzahl Inodes (-N) an.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005128
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005129#: misc/mke2fs.c:2416
Philipp Thomas720e6362008-06-21 14:06:00 -04005130#, c-format
5131msgid ""
5132"Overwriting existing filesystem; this can be undone using the command:\n"
5133" e2undo %s %s\n"
5134"\n"
5135msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005136"Das bestehende Dateisystem wird überschrieben: dies kann mittels des "
5137"Befehls:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005138": e2undo %s %s\n"
5139"rückgängig gemacht werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005140
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005141#: misc/mke2fs.c:2430
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005142msgid "while trying to setup undo file\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005143msgstr ""
5144"beim Versuch, die Datei mit den Daten zur Rückgängigmachung anzulegen\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005145
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005146#: misc/mke2fs.c:2456
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005147msgid "Discarding device blocks: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005148msgstr "Geräteblöcke werden verworfen: "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005149
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005150#: misc/mke2fs.c:2472
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005151msgid "failed - "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005152msgstr "gescheitert - "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005153
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005154#: misc/mke2fs.c:2594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005155msgid "while setting up superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005156msgstr "beim Erstellen des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005157
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005158#: misc/mke2fs.c:2610
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005159msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
5160msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005161"Verwerfen war erfolgreich und wird 0en zurück liefern - daher wird\n"
5162"das Löschen der Inodetabelle übersprungen\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005163
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005164#: misc/mke2fs.c:2698
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005165#, c-format
5166msgid "unknown os - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005167msgstr "unbekanntes Betriebssystem - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005168
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005169#: misc/mke2fs.c:2750
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005170msgid "Allocating group tables: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005171msgstr "beim Anfordern von Speicher für die Gruppentabellen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005172
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005173#: misc/mke2fs.c:2758
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005174msgid "while trying to allocate filesystem tables"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005175msgstr "beim Anfordern von Speicher für die Dateisystemtabellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005176
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005177#: misc/mke2fs.c:2767
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005178msgid ""
5179"\n"
5180"\twhile converting subcluster bitmap"
5181msgstr ""
5182"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005183"\tbeim konvertieren der Subclusterbitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005184
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005185#: misc/mke2fs.c:2810
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005186#, c-format
5187msgid "while zeroing block %llu at end of filesystem"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005188msgstr "beim nullen von Blcok%llu amEnde desDateisystems"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005189
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005190#: misc/mke2fs.c:2824
Theodore Ts'obc759702005-05-09 20:40:55 -04005191msgid "while reserving blocks for online resize"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005192msgstr "beim Reservieren von Blöcken für die Online-Grössenänderung"
Theodore Ts'obc759702005-05-09 20:40:55 -04005193
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005194#: misc/mke2fs.c:2836 misc/tune2fs.c:679
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005195msgid "journal"
5196msgstr "Journal"
5197
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005198#: misc/mke2fs.c:2848
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005199#, c-format
5200msgid "Adding journal to device %s: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005201msgstr "Ein Journal wird auf Gerät %s hinzu gefügt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005202
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005203#: misc/mke2fs.c:2855
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005204#, c-format
5205msgid ""
5206"\n"
5207"\twhile trying to add journal to device %s"
5208msgstr ""
5209"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005210"\tbeim Versuch, ein Journal auf Gerät %s hinzu zu fügen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005211
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005212#: misc/mke2fs.c:2860 misc/mke2fs.c:2891 misc/tune2fs.c:708 misc/tune2fs.c:727
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005213msgid "done\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005214msgstr "erledgt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005215
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005216#: misc/mke2fs.c:2867
Philipp Thomas77c871a2010-04-19 16:59:02 -04005217msgid "Skipping journal creation in super-only mode\n"
5218msgstr "Die Erzeugung eines Journals wird im Nur-Super Modus übersprungen\n"
5219
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005220#: misc/mke2fs.c:2878
Philipp Thomas68801282008-07-17 11:47:00 -04005221#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005222msgid "Creating journal (%u blocks): "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005223msgstr "Das Journal (%u Blöcke) wird angelegt: "
Philipp Thomas720e6362008-06-21 14:06:00 -04005224
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005225#: misc/mke2fs.c:2887
Philipp Thomasedc733d2012-04-22 15:38:42 -04005226msgid ""
5227"\n"
5228"\twhile trying to create journal"
5229msgstr ""
5230"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005231"\t beim Anlegen des Journals"
Philipp Thomasedc733d2012-04-22 15:38:42 -04005232
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005233#: misc/mke2fs.c:2899 misc/tune2fs.c:483
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005234msgid ""
5235"\n"
5236"Error while enabling multiple mount protection feature."
5237msgstr ""
5238"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005239"Fehler beim aktivieren des Schutzes gegen mehrfaches Einhängen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005240
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005241#: misc/mke2fs.c:2904
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005242#, c-format
5243msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005244msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005245"Der Schutz gegen mehrfaches Einhängen wurde aktiviert mit einem\n"
5246"Aktualisierungsintervall von %d Sekunden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005247
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005248#: misc/mke2fs.c:2921
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005249msgid "Writing superblocks and filesystem accounting information: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005250msgstr ""
5251"Die Superblöcke und die Informationen über die Dateisystemnutzung werden\n"
5252"geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005253
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005254#: misc/mke2fs.c:2928
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005255msgid ""
5256"\n"
5257"Warning, had trouble writing out superblocks."
5258msgstr ""
5259"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005260"es gab Schwierigkeiten beim Schreiben der Superblöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005261
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005262#: misc/mke2fs.c:2930
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005263msgid ""
5264"done\n"
5265"\n"
5266msgstr ""
5267"erledigt\n"
5268"\n"
5269
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005270#: misc/mklost+found.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005271msgid "Usage: mklost+found\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005272msgstr "Aufruf: mklost+found\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005273
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005274#: misc/partinfo.c:41
Philipp Thomasa700f512008-08-29 08:49:57 -04005275#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005276msgid ""
5277"Usage: %s device...\n"
5278"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005279"Prints out the partition information for each given device.\n"
5280"For example: %s /dev/hda\n"
5281"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005282msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005283"Aufruf: %s Gerät…\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005284"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005285"Gibt Informationen über die Partitionierung jedes angegebenen Geräts.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005286"Zum Beispiel: %s /dev/hda\n"
5287"\n"
5288
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005289#: misc/partinfo.c:51
Philipp Thomas40771272008-09-07 22:55:25 -04005290#, c-format
5291msgid "Cannot open %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005292msgstr "%s kann nicht geöffnet werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005293
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005294#: misc/partinfo.c:57
Philipp Thomas40771272008-09-07 22:55:25 -04005295#, c-format
5296msgid "Cannot get geometry of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005297msgstr "Die Geometrie von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005298
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005299#: misc/partinfo.c:65
Philipp Thomas40771272008-09-07 22:55:25 -04005300#, c-format
5301msgid "Cannot get size of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005302msgstr "Die Größe von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005303
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005304#: misc/partinfo.c:71
Philipp Thomas40771272008-09-07 22:55:25 -04005305#, c-format
5306msgid "%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005307msgstr "%s: h=%3d s=%3d c=%4d Start=%8d Größe=%8lu Ende=%8d\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005308
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005309#: misc/tune2fs.c:112
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005310msgid "Please run e2fsck on the filesystem.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005311msgstr "Bitte lassen Sie e2fsck dieses Dateisystemaus überprüfen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005312
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005313#: misc/tune2fs.c:121
Philipp Thomasb93349a2014-05-31 13:32:39 -04005314#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005315msgid ""
Theodore Ts'o197abba2005-06-20 18:00:23 -04005316"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005317"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005318"\t[-m reserved_blocks_percent] [-o [^]mount_options[,...]] [-p "
5319"mmp_update_interval]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005320"\t[-r reserved_blocks_count] [-u user] [-C mount_count] [-L volume_label]\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005321"\t[-M last_mounted_dir] [-O [^]feature[,...]]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005322"\t[-Q quota_options]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005323"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID]\n"
5324"\t[ -I new_inode_size ] device\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005325msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005326"Aufruf: %s [-c max_Anzahl_Einhängungen] [-e Fehlerverhalten] [-g Gruppe]\n"
5327"\t[-i Intervall[d|m|w]] [-j] [-J Journal_Options] [-l]\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005328"\t[-m reservierte_Blöcke_Prozent] [-o [^]Einhängoptionen[,...]] [-p "
5329"mmp_Aktualisierungsintervall]\n"
5330"\t[-r QAnzahl_reservierte_Blöcke] [-u Benutzer] [-C Anzal_Einhängungen] [-L "
5331"Volumenkennung]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005332"\t[-M letztes_eingehängtes_Verzeichnis] [-O [^]Eigenschaft[,...]]\n"
5333"\t[-Q Quotaoptionen]\n"
5334"\t[-E erweiterte_Optionen[,...]] [-T Zeitpunkt_letzter_Prüfung] [-U UUID]\n"
5335"\t[ -I neue_Inodegröße ] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005336
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005337#: misc/tune2fs.c:217
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005338msgid "while trying to open external journal"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005339msgstr "beim Versuch, das externe Journal zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005340
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005341#: misc/tune2fs.c:222
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005342#, c-format
5343msgid "%s is not a journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005344msgstr "%s ist kein Journalgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005345
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005346#: misc/tune2fs.c:237
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005347msgid "Journal superblock not found!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005348msgstr "Der Journal-Superblock wurde nicht gefunden!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005349
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005350#: misc/tune2fs.c:248
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005351msgid "Filesystem's UUID not found on journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005352msgstr "Die UUID des Dateisystems wurde auf dem Journalgerät nicht gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005353
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005354#: misc/tune2fs.c:269
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005355msgid ""
5356"Cannot locate journal device. It was NOT removed\n"
5357"Use -f option to remove missing journal device.\n"
5358msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005359"Das Journalgerät wurde nicht gefunden. Es wurde NICHT entfernt\n"
5360"Bitte benutzen Sie die Option „-f“ um das fehlende Gerät zu entfernen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005361
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005362#: misc/tune2fs.c:277
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005363msgid "Journal removed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005364msgstr "Das Journal wurde entfernt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005365
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005366#: misc/tune2fs.c:321
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005367msgid "while reading bitmaps"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005368msgstr "Fehler beim Lesen der Bitmaps"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005369
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005370#: misc/tune2fs.c:329
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005371msgid "while clearing journal inode"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005372msgstr "beim Rücksetzen der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005373
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005374#: misc/tune2fs.c:340
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005375msgid "while writing journal inode"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005376msgstr "beim SWchreiben der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005377
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005378#: misc/tune2fs.c:372 misc/tune2fs.c:385
Philipp Thomas3e914b52011-01-24 15:03:41 -05005379msgid "(and reboot afterwards!)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005380msgstr "(und starten Sie hinterher das System neu)\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005381
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005382#: misc/tune2fs.c:419
Theodore Ts'o8f741372008-02-28 21:47:05 -05005383#, c-format
5384msgid "Clearing filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005385msgstr "Das Deaktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005386
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005387#: misc/tune2fs.c:425
Philipp Thomas67671422008-05-14 18:42:45 -04005388#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005389msgid "Setting filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005390msgstr "Das Aktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005391
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005392#: misc/tune2fs.c:434
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005393msgid ""
Philipp Thomas68801282008-07-17 11:47:00 -04005394"The has_journal feature may only be cleared when the filesystem is\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005395"unmounted or mounted read-only.\n"
5396msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005397"Has_journal kann nur zurück gesetzt werden, wenn das Dateisystem nicht\n"
5398"oder nur-lesen eingehängt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005399
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005400#: misc/tune2fs.c:443
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005401msgid ""
5402"The needs_recovery flag is set. Please run e2fsck before clearing\n"
5403"the has_journal flag.\n"
5404msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005405"needs_recovery ist gesetzt. Bitte lassen Sie e2fsck laufen, bevor Sie\n"
5406"has_journal zurück setzten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005407
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005408#: misc/tune2fs.c:462
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005409msgid ""
5410"Setting filesystem feature 'sparse_super' not supported\n"
5411"for filesystems with the meta_bg feature enabled.\n"
5412msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005413"Das Setzen von „sparse_super“ wird auf Dateisystemen aktiviertem\n"
5414"„meta_bg“ nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005415
5416#: misc/tune2fs.c:475
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005417msgid ""
5418"The multiple mount protection feature can't\n"
5419"be set if the filesystem is mounted or\n"
5420"read-only.\n"
5421msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005422"Der Schutz vor mehrfachem Einhängen kann nur aktiviert werden, wenn das\n"
5423"Dateisystem nicht oder nur-lesen eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005424
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005425#: misc/tune2fs.c:493
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005426#, c-format
5427msgid "Multiple mount protection has been enabled with update interval %ds.\n"
5428msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005429"Der Schutz vor mehrfachem Einhängen wurde mit einem "
5430"Aktualisierungsintervall\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005431"von %d Sekunden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005432
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005433#: misc/tune2fs.c:502
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005434msgid ""
5435"The multiple mount protection feature cannot\n"
5436"be disabled if the filesystem is readonly.\n"
5437msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005438"Der Schutz vor mehrfachem Einhängen kann nicht\n"
5439"deaktiviert werden, wenn das Dateisystem nur-lesenend\n"
5440"eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005441
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005442#: misc/tune2fs.c:510
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005443msgid "Error while reading bitmaps\n"
5444msgstr "Fehler beim Lesen der Bitmaps\n"
5445
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005446#: misc/tune2fs.c:519
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005447#, c-format
5448msgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005449msgstr ""
5450"Die magische Zahl im MMP-Block passt nicht. Erwartet: %x, gefunden: %x\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005451
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005452#: misc/tune2fs.c:524
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005453msgid "while reading MMP block."
Philipp Thomasb93349a2014-05-31 13:32:39 -04005454msgstr "beim Lesen des MMP-Blocks."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005455
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005456#: misc/tune2fs.c:556
Philipp Thomas720e6362008-06-21 14:06:00 -04005457msgid ""
5458"Clearing the flex_bg flag would cause the the filesystem to be\n"
5459"inconsistent.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005460msgstr ""
5461"Das deaktivieren von flex_bg würde das Dateisystem inkonsistent machen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005462
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005463#: misc/tune2fs.c:567
Philipp Thomas68801282008-07-17 11:47:00 -04005464msgid ""
5465"The huge_file feature may only be cleared when the filesystem is\n"
5466"unmounted or mounted read-only.\n"
5467msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005468"huge_file kann nur aktiviert werden, wenn das Dateisystem nicht\n"
5469"oder nur-lesen eingehängt ist.\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005470
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005471#: misc/tune2fs.c:627
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005472msgid ""
5473"\n"
5474"Warning: '^quota' option overrides '-Q'arguments.\n"
5475msgstr ""
5476"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005477"Warnung: die Option „^quota“ hat Vorrang vor „-Q“Argumenten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005478
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005479#: misc/tune2fs.c:672
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005480msgid "The filesystem already has a journal.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005481msgstr "Das Dateisystem hat bereits ein Journal.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005482
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005483#: misc/tune2fs.c:692
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005484#, c-format
5485msgid ""
5486"\n"
5487"\twhile trying to open journal on %s\n"
5488msgstr ""
5489"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005490"\tbeim Versuch, das Journal auf %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005491
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005492#: misc/tune2fs.c:696
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005493#, c-format
5494msgid "Creating journal on device %s: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005495msgstr "Journal wird erzeugt auf Gerät %s: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005496
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005497#: misc/tune2fs.c:704
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005498#, c-format
5499msgid "while adding filesystem to journal on %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005500msgstr "beim Hinzufügen des Dateisystems zum Journal auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005501
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005502#: misc/tune2fs.c:710
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005503msgid "Creating journal inode: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005504msgstr "Journal-Inodes werden erzeugt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005505
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005506#: misc/tune2fs.c:724
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005507msgid ""
5508"\n"
5509"\twhile trying to create journal file"
5510msgstr ""
5511"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005512"\tbeim Versuch, die Journaldatei zu erzeugen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005513
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005514#: misc/tune2fs.c:799
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005515msgid "Couldn't allocate memory to parse quota options!\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005516msgstr ""
5517"Speicher zum Parsen der Quota-Optionen konnte nicht reserviert werden!\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005518
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005519#: misc/tune2fs.c:821
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005520msgid ""
5521"\n"
5522"Bad quota options specified.\n"
5523"\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005524"Following valid quota options are available (pass by separating with "
5525"comma):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005526"\t[^]usrquota\n"
5527"\t[^]grpquota\n"
5528"\n"
5529"\n"
5530msgstr ""
5531"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005532"Es wurden ungültige Quotaoptionen angegeben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005533"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005534"Die folgenden gültigen Quotaoptionen sind verfügbar (durch Kommata getrennt\n"
5535"angeben):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005536"\t[^]usrquota\n"
5537"\t[^]grpquota\n"
5538"\n"
5539"\n"
5540
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005541#: misc/tune2fs.c:881
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005542#, c-format
5543msgid "Couldn't parse date/time specifier: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005544msgstr "Die Angabe von Zeit/Datum war unverständlich: %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005545
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005546#: misc/tune2fs.c:909 misc/tune2fs.c:922
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005547#, c-format
5548msgid "bad mounts count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005549msgstr "ungültge Anzahl Einhängungen - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005550
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005551#: misc/tune2fs.c:938
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005552#, c-format
5553msgid "bad error behavior - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005554msgstr "ungültiges Verhalten im Fehlerfall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005555
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005556#: misc/tune2fs.c:965
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005557#, c-format
5558msgid "bad gid/group name - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005559msgstr "ungültige gid/Gruppe - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005560
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005561#: misc/tune2fs.c:998
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005562#, c-format
5563msgid "bad interval - %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005564msgstr "ungültiges Intervall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005565
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005566#: misc/tune2fs.c:1027
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005567#, c-format
5568msgid "bad reserved block ratio - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005569msgstr "ungültiges Verhältnis reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005570
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005571#: misc/tune2fs.c:1042
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005572msgid "-o may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005573msgstr "-o darf nur einmal angegeben werden"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005574
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005575#: misc/tune2fs.c:1051
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005576msgid "-O may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005577msgstr "-O darf nur einmal angegeben werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005578
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005579#: misc/tune2fs.c:1068
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005580#, c-format
5581msgid "bad reserved blocks count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005582msgstr "ungültige Anzahl reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005583
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005584#: misc/tune2fs.c:1097
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005585#, c-format
5586msgid "bad uid/user name - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005587msgstr "falsche Version - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005588
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005589#: misc/tune2fs.c:1114
Philipp Thomas68801282008-07-17 11:47:00 -04005590#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005591msgid "bad inode size - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005592msgstr "ungültige Inodegröße - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005593
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005594#: misc/tune2fs.c:1121
Philipp Thomas720e6362008-06-21 14:06:00 -04005595#, c-format
5596msgid "Inode size must be a power of two- %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005597msgstr "Die Inodegröße muss eine Zweierpotenz sein - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005598
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005599#: misc/tune2fs.c:1215
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005600#, c-format
5601msgid "mmp_update_interval too big: %lu\n"
5602msgstr "mmp_update_interval ist zu groß: %lu\n"
5603
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005604#: misc/tune2fs.c:1220
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005605#, c-format
5606msgid "Setting multiple mount protection update interval to %lu second\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005607msgid_plural ""
5608"Setting multiple mount protection update interval to %lu seconds\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005609msgstr[0] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005610"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5611"wird auf %lu Sekunde gesetzt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005612msgstr[1] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005613"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5614"wird auf %lu Sekunden gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005615
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005616#: misc/tune2fs.c:1243
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005617#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005618msgid "Invalid RAID stride: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005619msgstr "Ungültiger RAID-stride: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005620
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005621#: misc/tune2fs.c:1258
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005622#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005623msgid "Invalid RAID stripe-width: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005624msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005625
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005626#: misc/tune2fs.c:1273
Philipp Thomas40771272008-09-07 22:55:25 -04005627#, c-format
5628msgid "Invalid hash algorithm: %s\n"
5629msgstr "Ungültiger Hashalgorithmus: %s\n"
5630
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005631#: misc/tune2fs.c:1279
Philipp Thomas40771272008-09-07 22:55:25 -04005632#, c-format
5633msgid "Setting default hash algorithm to %s (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005634msgstr "Der Standardhashalgorithmus wird auf %s (%d) gesetzt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005635
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005636#: misc/tune2fs.c:1298
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005637msgid ""
5638"\n"
5639"Bad options specified.\n"
5640"\n"
5641"Extended options are separated by commas, and may take an argument which\n"
5642"\tis set off by an equals ('=') sign.\n"
5643"\n"
5644"Valid extended options are:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005645"\tclear_mmp\n"
5646"\thash_alg=<hash algorithm>\n"
5647"\tmount_opts=<extended default mount options>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005648"\tstride=<RAID per-disk chunk size in blocks>\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005649"\tstripe_width=<RAID stride*data disks in blocks>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005650"\ttest_fs\n"
5651"\t^test_fs\n"
5652msgstr ""
5653"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005654"Falsche erweiterte Optionen angegeben: %s\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005655"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005656"Erweiterte Optionen werden durch Kommatas getrennt. Manche erwarten ein\n"
5657"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005658"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005659"Gültige erweiterte Optionen sind:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005660"\tclear_mmp\n"
5661"\thash_alg=<Hashalgorithmus>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005662"\tmount_opts=<erweiterte Standardeinhängoptionen>\n"
5663"\tstride=<RAID Blockgröße pro PLatte in Blöcken\n"
5664"\tstripe_width=<RAID Stride*Datenplatten in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005665"\ttest_fs\n"
5666"\t^test_fs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005667"\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005668
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005669#: misc/tune2fs.c:1764
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005670msgid "Failed to read inode bitmap\n"
5671msgstr "Die Inode-Bitmap konnte nicht gelesen werden\n"
5672
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005673#: misc/tune2fs.c:1769
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005674msgid "Failed to read block bitmap\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005675msgstr "Die Block-Bitmap konnte nicht gelesen werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005676
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005677#: misc/tune2fs.c:1786 resize/resize2fs.c:925
Philipp Thomas720e6362008-06-21 14:06:00 -04005678msgid "blocks to be moved"
5679msgstr "zu verschiebende Blöcke"
5680
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005681#: misc/tune2fs.c:1789
Philipp Thomas77c871a2010-04-19 16:59:02 -04005682msgid "Failed to allocate block bitmap when increasing inode size\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005683msgstr ""
5684"Beim erhöhen der Inodegröße konnte keine Blockbitmap reserviert werden\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005685
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005686#: misc/tune2fs.c:1795
Philipp Thomas77c871a2010-04-19 16:59:02 -04005687msgid "Not enough space to increase inode size \n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005688msgstr "Der Platz reicht nicht aus für eine erhöhung der Inodegröße \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005689
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005690#: misc/tune2fs.c:1800
Philipp Thomas77c871a2010-04-19 16:59:02 -04005691msgid "Failed to relocate blocks during inode resize \n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005692msgstr ""
5693"Das verschieben von Blöcken während der Größenänderung der Inodes "
5694"scheiterte \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005695
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005696#: misc/tune2fs.c:1832
Philipp Thomas77c871a2010-04-19 16:59:02 -04005697msgid ""
5698"Error in resizing the inode size.\n"
5699"Run e2undo to undo the file system changes. \n"
5700msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005701"Fehler beim Ändern der Inodegröße.\n"
5702"Starten Sie e2undo, um die Änderungen am Dateisystem rückgängig zu machen. \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005703
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005704#: misc/tune2fs.c:1859
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005705msgid "Couldn't allocate memory for tdb filename\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005706msgstr "Es kann kein Speicher für den Tdb-Dateinamen reserviert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005707
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005708#: misc/tune2fs.c:1880
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005709#, c-format
5710msgid "while trying to delete %s"
5711msgstr "beim Versuch, %s zu löschen"
5712
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005713#: misc/tune2fs.c:1888
Philipp Thomas77c871a2010-04-19 16:59:02 -04005714#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005715msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005716"To undo the tune2fs operation please run the command\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005717" e2undo %s %s\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005718"\n"
5719msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005720"Um die durch Tune2fs gemachten Ändrungen rückgängig zu machen, starten Sie\n"
5721"bitte\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005722" e2undo %s %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005723"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005724
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005725#: misc/tune2fs.c:1957
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005726#, c-format
5727msgid ""
5728"MMP block magic is bad. Try to fix it by running:\n"
5729"'e2fsck -f %s'\n"
5730msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005731"Die magische Zahl des MMP-Blocks ist ungültig. Versuchen Sie, dies durch\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005732"„e2fsck -f %s“\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005733"zu beheben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005734
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005735#: misc/tune2fs.c:1975
Philipp Thomas40771272008-09-07 22:55:25 -04005736#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04005737msgid "The inode size is already %lu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005738msgstr "Die Indoegröße ist bereits %lu\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005739
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005740#: misc/tune2fs.c:1982
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005741msgid "Shrinking inode size is not supported\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005742msgstr "Das verringern der Inodegröße wird nicht unterstützt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005743
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005744#: misc/tune2fs.c:1987
Philipp Thomasb93349a2014-05-31 13:32:39 -04005745#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005746msgid "Invalid inode size %lu (max %d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005747msgstr "Unzulässige Inodegröße: %lu (max %d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005748
5749#: misc/tune2fs.c:2034
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005750#, c-format
5751msgid "Setting maximal mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005752msgstr "Die maximale Anzahl von Einhängungen wird auf %d gesezt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005753
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005754#: misc/tune2fs.c:2040
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005755#, c-format
5756msgid "Setting current mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005757msgstr "Die Anzahl der Einhängungen wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005758
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005759#: misc/tune2fs.c:2045
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005760#, c-format
5761msgid "Setting error behavior to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005762msgstr "Das Fehlerverhalten wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005763
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005764#: misc/tune2fs.c:2050
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005765#, c-format
5766msgid "Setting reserved blocks gid to %lu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005767msgstr "Die GID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005768
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005769#: misc/tune2fs.c:2055
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005770#, c-format
5771msgid "interval between checks is too big (%lu)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005772msgstr "der Abstand zwischen zwei Prüfläfen ist zu groß (%lu)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005773
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005774#: misc/tune2fs.c:2062
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005775#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04005776msgid "Setting interval between checks to %lu seconds\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005777msgstr "Der Abstand zwischen den PrüfLäufen wird auf %lu Sekunden gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005778
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005779#: misc/tune2fs.c:2069
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005780#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005781msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005782msgstr ""
5783"Der prozentuelle Anteil reservierter Blöcke wird auf %g%% (%llu Blöcke)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005784
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005785#: misc/tune2fs.c:2075
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005786#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005787msgid "reserved blocks count is too big (%llu)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005788msgstr "Die Anzahl reservierter Blöcke ist zu groß (%llu)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005789
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005790#: misc/tune2fs.c:2082
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005791#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005792msgid "Setting reserved blocks count to %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005793msgstr "Die Anzahl reservierter Blöcke wird auf %llu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005794
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005795#: misc/tune2fs.c:2088
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005796msgid ""
5797"\n"
5798"The filesystem already has sparse superblocks.\n"
5799msgstr ""
5800"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005801"Das Dateisystemhat bereits spärliche Superblöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005802
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005803#: misc/tune2fs.c:2092
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005804msgid ""
5805"\n"
5806"Setting the sparse superblock flag not supported\n"
5807"for filesystems with the meta_bg feature enabled.\n"
5808msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005809"\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005810"Das aktivieren spärlicher Superblöcke wird auf Dateisystemen mit "
5811"aktivierter\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005812"Eigenschaft meta_bg nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005813
5814#: misc/tune2fs.c:2103
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005815#, c-format
5816msgid ""
5817"\n"
5818"Sparse superblock flag set. %s"
5819msgstr ""
5820"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005821"Kennung „spärlche Superblöcke“ ist gesetzt. %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005822
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005823#: misc/tune2fs.c:2108
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005824msgid ""
5825"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005826"Clearing the sparse superblock flag not supported.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005827msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005828"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005829"Das zurücksetzen der Kennung „spärlche Superblöcke“ wird nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005830
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005831#: misc/tune2fs.c:2116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005832#, c-format
5833msgid "Setting time filesystem last checked to %s\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005834msgstr ""
5835"Der Zeitpunkt der letzten Prüfung des Dateisystems wird auf %s gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005836
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005837#: misc/tune2fs.c:2122
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005838#, c-format
5839msgid "Setting reserved blocks uid to %lu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005840msgstr "Die UID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005841
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005842#: misc/tune2fs.c:2154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005843msgid "Error in using clear_mmp. It must be used with -f\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005844msgstr ""
5845"Fehler bei der Verwendung von clear_mmp. Es muss zusammen mit -f benutzt "
5846"werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005847
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005848#: misc/tune2fs.c:2172
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005849msgid ""
5850"The quota feature may only be changed when the filesystem is unmounted.\n"
5851msgstr ""
5852"Quotas können nur bei nicht eingehängten Dateisystemen geändert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005853
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005854#: misc/tune2fs.c:2191
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005855msgid "The UUID may only be changed when the filesystem is unmounted.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005856msgstr ""
5857"Die UUID kann nur bei nicht eingehängtem Dateisystem geändert werden.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005858
5859#: misc/tune2fs.c:2219
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005860msgid "Invalid UUID format\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005861msgstr "Ungültiges UUID-Format\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005862
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005863#: misc/tune2fs.c:2232
Philipp Thomas720e6362008-06-21 14:06:00 -04005864msgid "The inode size may only be changed when the filesystem is unmounted.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005865msgstr ""
5866"Die Inode-Größe kann nur bei ausgehängtem Dateisystem geändert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005867
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005868#: misc/tune2fs.c:2240
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005869msgid ""
5870"Changing the inode size not supported for filesystems with the flex_bg\n"
5871"feature enabled.\n"
5872msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005873"Das Ändern der Inodegröße auf Dateisystemen mit aktiviertem flex_bg\n"
5874"wird nicht unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005875
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005876#: misc/tune2fs.c:2253
Philipp Thomas68801282008-07-17 11:47:00 -04005877#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005878msgid "Setting inode size %lu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005879msgstr "Die Inodegröße wird auf %lu gesetzt\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005880
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005881#: misc/tune2fs.c:2256
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005882msgid "Failed to change inode size\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005883msgstr "Die Inodegröße konnte nicht geändert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005884
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005885#: misc/tune2fs.c:2267
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005886#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005887msgid "Setting stride size to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005888msgstr "Die Stridegröße wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005889
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005890#: misc/tune2fs.c:2272
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005891#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005892msgid "Setting stripe width to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005893msgstr "Die Stripbraite wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005894
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005895#: misc/tune2fs.c:2279
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005896#, c-format
5897msgid "Setting extended default mount options to '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005898msgstr "Die erweiterten standard Einhängotionen werden auf „%s“ gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005899
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005900#: misc/util.c:93
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005901msgid "<proceeding>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005902msgstr "<verarbeitung läuft\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005903
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005904#: misc/util.c:97
Philipp Thomasb93349a2014-05-31 13:32:39 -04005905#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005906msgid "Proceed anyway (or wait %d seconds) ? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005907msgstr "Trotzdem fortfahren (oder %d Sekunden warten) ? (j,n) "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005908
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005909#: misc/util.c:101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005910msgid "Proceed anyway? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005911msgstr "Trotzdem fortfahren? (j,n) "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005912
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005913#: misc/util.c:132
Philipp Thomasb93349a2014-05-31 13:32:39 -04005914#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005915msgid "\tlast mounted on %s on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005916msgstr "\tzuletzt auf %s auf %s eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005917
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005918#: misc/util.c:135
Philipp Thomasb93349a2014-05-31 13:32:39 -04005919#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005920msgid "\tlast mounted on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005921msgstr "\tzuletzt auf %s eingehängt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005922
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005923#: misc/util.c:138
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005924#, c-format
5925msgid "\tcreated on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005926msgstr "\tauf %s erzeugt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005927
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005928#: misc/util.c:141
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005929#, c-format
5930msgid "\tlast modified on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005931msgstr "\tzuletzt modifiziert %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005932
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005933#: misc/util.c:175
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005934#, c-format
5935msgid "Found a %s partition table in %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005936msgstr "In %2$s wurde eine %1$s Partitionstabelle gefunden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005937
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005938#: misc/util.c:205
Philipp Thomasb93349a2014-05-31 13:32:39 -04005939#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005940msgid "Creating regular file %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005941msgstr "Die reguläre Datei %s wird angelegt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005942
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005943#: misc/util.c:208
Philipp Thomasb93349a2014-05-31 13:32:39 -04005944#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005945msgid "Could not open %s: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005946msgstr "%s kann nicht geöffnet werden: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005947
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005948#: misc/util.c:211
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005949msgid ""
5950"\n"
5951"The device apparently does not exist; did you specify it correctly?\n"
5952msgstr ""
5953"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005954"Das Gerät existiert offensichtlich nicht; haben Sie es korrekt angegeben?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005955
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005956#: misc/util.c:233
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005957#, c-format
5958msgid "%s is not a block special device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005959msgstr "%s ist kein spezielles Blockgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005960
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005961#: misc/util.c:255
Philipp Thomasb93349a2014-05-31 13:32:39 -04005962#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005963msgid "%s contains a %s file system labelled '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005964msgstr "%s hat ein %s-Dateisystem mit Namen „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005965
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005966#: misc/util.c:258
Philipp Thomasb93349a2014-05-31 13:32:39 -04005967#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005968msgid "%s contains a %s file system\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005969msgstr "%s hat ein %s-Dateisystem\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005970
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005971#: misc/util.c:295
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005972#, c-format
5973msgid "%s is entire device, not just one partition!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005974msgstr "%s ist das ganze Gerät und nicht nur eine einzelne Partition!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005975
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005976#: misc/util.c:318
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005977msgid "mke2fs forced anyway. Hope /etc/mtab is incorrect.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005978msgstr ""
5979"mke2fs wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005980
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005981#: misc/util.c:323
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005982#, c-format
5983msgid "will not make a %s here!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005984msgstr "%s wird hier nicht angelegt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005985
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005986#: misc/util.c:330
Theodore Ts'o7ae19832005-06-19 09:45:36 -04005987msgid "mke2fs forced anyway.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005988msgstr "mke2fs wird trotzdem erzwungen.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04005989
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005990#: misc/util.c:346
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005991msgid "Couldn't allocate memory to parse journal options!\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005992msgstr ""
5993"Es konnte kein Speicher zum Parsen der Journaloptionen reserviert werden!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005994
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005995#: misc/util.c:371
Philipp Thomas3e914b52011-01-24 15:03:41 -05005996#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04005997msgid ""
5998"\n"
5999"Could not find journal device matching %s\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05006000msgstr ""
6001"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006002"Ein zu %s passendes Journalgerät konnte nicht gefunden werden\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04006003
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006004#: misc/util.c:398
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006005msgid ""
6006"\n"
6007"Bad journal options specified.\n"
6008"\n"
6009"Journal options are separated by commas, and may take an argument which\n"
6010"\tis set off by an equals ('=') sign.\n"
6011"\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04006012"Valid journal options are:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006013"\tsize=<journal size in megabytes>\n"
6014"\tdevice=<journal device>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006015"\tlocation=<journal location>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006016"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04006017"The journal size must be between 1024 and 10240000 filesystem blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006018"\n"
6019msgstr ""
6020"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006021"Falsche Journaloptionen angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006022"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006023"Journaloptionen werden durch Kommatas getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006024"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006025"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006026"Gültige Journaloptionen sind:\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006027"\tsize=<Journalgröße in Megabytes>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006028"\tdevice=<Journalgerät>\n"
6029"\tlocation=<Position des Journals>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006030"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006031"Die Größe des Journals muss zwischen 1024 und 10240000 Dateisystemblöcken\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006032"\tliegen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006033"\n"
6034
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006035#: misc/util.c:429
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006036msgid ""
6037"\n"
6038"Filesystem too small for a journal\n"
6039msgstr ""
6040"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006041"Das Dateisystem ist für ein Journal zu klein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006042
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006043#: misc/util.c:436
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006044#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006045msgid ""
6046"\n"
6047"The requested journal size is %d blocks; it must be\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006048"between 1024 and 10240000 blocks. Aborting.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006049msgstr ""
6050"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006051"Die gewünschte Journalgröße ist %d Blöcke; sie muss\n"
6052"zwischen 1024 und 10240000 Blöcken liegen. Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006053
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006054#: misc/util.c:444
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006055msgid ""
6056"\n"
6057"Journal size too big for filesystem.\n"
6058msgstr ""
6059"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006060"Das Journal ist für dieses Dateisystem zu groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006061
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006062#: misc/util.c:458
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006063#, c-format
6064msgid ""
6065"This filesystem will be automatically checked every %d mounts or\n"
6066"%g days, whichever comes first. Use tune2fs -c or -i to override.\n"
6067msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006068"Dieses Dateisystem wird automatisch alle %d Einhängungen oder\n"
6069"%g Tage überprüft, was immer zuerst kommt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006070
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006071#: misc/uuidd.c:48
6072#, c-format
6073msgid "Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006074msgstr "Aufruf: %s [-d] [-p Piddatei] [-s Socketpfad] [-T Timeout]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006075
6076#: misc/uuidd.c:50
6077#, c-format
6078msgid " %s [-r|t] [-n num] [-s socketpath]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006079msgstr " %s [-r|t] [-n Anzahl] [-s Socketpfad]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006080
6081#: misc/uuidd.c:52
6082#, c-format
6083msgid " %s -k\n"
6084msgstr " %s -k\n"
6085
6086#: misc/uuidd.c:154
6087msgid "bad arguments"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006088msgstr "ungültige Argumente"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006089
6090#: misc/uuidd.c:172
6091msgid "connect"
6092msgstr "verbinden"
6093
6094#: misc/uuidd.c:191
6095msgid "write"
6096msgstr "schreiben"
6097
6098#: misc/uuidd.c:199
6099msgid "read count"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006100msgstr "Lesezähler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006101
6102#: misc/uuidd.c:205
6103msgid "bad response length"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006104msgstr "ungültige Länge der Antwort"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006105
6106#: misc/uuidd.c:270
6107#, c-format
6108msgid "uuidd daemon already running at pid %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006109msgstr "der uuidd Dämon läft bereits mit pid %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006110
6111#: misc/uuidd.c:278
6112#, c-format
6113msgid "Couldn't create unix stream socket: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006114msgstr "Es konnte kein Unix stream Socket erzeugt werden: %s"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006115
6116#: misc/uuidd.c:307
6117#, c-format
6118msgid "Couldn't bind unix socket %s: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006119msgstr "Es konnte nicht mit Unixsocket %s verbunden werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006120
6121#: misc/uuidd.c:315
6122#, c-format
6123msgid "Couldn't listen on unix socket %s: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006124msgstr "Lauschen auf Unixsocket %s war nicht möglich: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006125
6126#: misc/uuidd.c:353
6127#, c-format
6128msgid "Error reading from client, len = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006129msgstr "Fehler beim Lesen vom Client, Länge = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006130
6131#: misc/uuidd.c:361
6132#, c-format
6133msgid "operation %d, incoming num = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006134msgstr "Operation %d, eingehende Nummer = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006135
6136#: misc/uuidd.c:380
6137#, c-format
6138msgid "Generated time UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006139msgstr "Zeit-UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006140
6141#: misc/uuidd.c:390
6142#, c-format
6143msgid "Generated random UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006144msgstr "Zufällige UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006145
6146#: misc/uuidd.c:399
6147#, c-format
6148msgid "Generated time UUID %s and subsequent UUID\n"
6149msgid_plural "Generated time UUID %s and %d subsequent UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006150msgstr[0] "Zeit-UUID %s und die folgende UUID erzeugt\n"
6151msgstr[1] "Zeit-UUID %s und die folgenden %d UUIDs erzeugt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006152
6153#: misc/uuidd.c:420
6154#, c-format
6155msgid "Generated %d UUID's:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006156msgstr "%d UUIDs erzeugt:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006157
6158#: misc/uuidd.c:432
6159#, c-format
6160msgid "Invalid operation %d\n"
6161msgstr "Ungültige Operation %d\n"
6162
6163#: misc/uuidd.c:476 misc/uuidd.c:498
6164#, c-format
6165msgid "Bad number: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006166msgstr "Ungültige Nummer: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006167
6168#: misc/uuidd.c:533 misc/uuidd.c:562
6169#, c-format
6170msgid "Error calling uuidd daemon (%s): %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006171msgstr "Fehler beim Aufruf des Uuid-Dämons (%s): %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006172
6173#: misc/uuidd.c:543
6174#, c-format
6175msgid "%s and subsequent UUID\n"
6176msgid_plural "%s and subsequent %d UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006177msgstr[0] "%s und die folgende UUID\n"
6178msgstr[1] "%s und die folgenden %d UUIDs\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006179
6180#: misc/uuidd.c:547
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006181msgid "List of UUID's:\n"
6182msgstr "Liste der UUIDs:\n"
6183
6184#: misc/uuidd.c:568
6185#, c-format
6186msgid "Unexpected reply length from server %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006187msgstr "Unerwartete Antwortlänge von Server %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006188
6189#: misc/uuidd.c:585
6190#, c-format
6191msgid "Couldn't kill uuidd running at pid %d: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006192msgstr "Der mit PID %d laufende uuidd konnte nicht abgeschossen werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006193
6194#: misc/uuidd.c:591
6195#, c-format
6196msgid "Killed uuidd running at pid %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006197msgstr "Der mit PID %d laufende uuidd wurde abgeschossen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006198
6199#: misc/uuidgen.c:32
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006200#, c-format
6201msgid "Usage: %s [-r] [-t]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006202msgstr "Aufruf: %s [-r] [-t]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006203
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006204#: resize/extent.c:202
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006205msgid "# Extent dump:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006206msgstr "# Dumpder Erweiterung:\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006207
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006208#: resize/extent.c:203
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006209#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006210msgid "#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006211msgstr "#\tAnz=%llu, Größe=%llu, Cursor=%llu, Sortiert=%llu\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006212
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006213#: resize/main.c:44
Philipp Thomas68801282008-07-17 11:47:00 -04006214#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006215msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04006216"Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] device [new_size]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006217"\n"
6218msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006219"Aufruf: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] Gerät [neue_größe]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006220"\n"
6221
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006222#: resize/main.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006223msgid "Extending the inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006224msgstr "Die Inode-Tabelle wird erweitert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006225
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006226#: resize/main.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006227msgid "Relocating blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006228msgstr "Blöcke werden verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006229
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006230#: resize/main.c:72
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006231msgid "Scanning inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006232msgstr "Die Inodetabelle wird gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006233
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006234#: resize/main.c:75
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006235msgid "Updating inode references"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006236msgstr "Die Inode-Referenzen werden aktualisiert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006237
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006238#: resize/main.c:78
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006239msgid "Moving inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006240msgstr "Die Inode-Tabelle wird verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006241
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006242#: resize/main.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006243msgid "Unknown pass?!?"
6244msgstr "Unbekannter Durchgang?!?"
6245
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006246#: resize/main.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006247#, c-format
6248msgid "Begin pass %d (max = %lu)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006249msgstr "Start von Durchgang %d (max = %lu)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006250
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006251#: resize/main.c:155
6252msgid ""
6253"\n"
6254"Resizing bigalloc file systems has not been fully tested. Proceed at\n"
6255"your own risk! Use the force option if you want to go ahead anyway.\n"
6256"\n"
6257msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006258"\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006259"Die Größenveränderung von Bigalloc-Dateisystemen wurde noch nicht "
6260"vollständig\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006261"geprüft. Deswegen handeln Sie auf eigene Gefahr!. Verwenden Sie die „force“\n"
6262"Option, wenn Sie trotzdem fortfahren wollen.n\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006263
6264#: resize/main.c:272
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006265#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006266msgid "while opening %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006267msgstr "beim Öffnen von %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006268
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006269#: resize/main.c:280
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006270#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006271msgid "while getting stat information for %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006272msgstr "beim Abfragen der Statusinformation für %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006273
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006274#: resize/main.c:327
Theodore Ts'o057a1592010-06-07 12:24:21 -04006275#, c-format
6276msgid ""
6277"Please run 'e2fsck -f %s' first.\n"
6278"\n"
6279msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006280"Bitte lassen Sie zuerst „e2fsck -f %s“ laufen.\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04006281"\n"
6282
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006283#: resize/main.c:346
Philipp Thomas720e6362008-06-21 14:06:00 -04006284#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006285msgid "Estimated minimum size of the filesystem: %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006286msgstr "Geschätzte minimale Größe des Dateisystems: %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006287
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006288#: resize/main.c:382
Philipp Thomas77c871a2010-04-19 16:59:02 -04006289#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006290msgid "Invalid new size: %s\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006291msgstr "Unzulässige neue Größe: %s\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006292
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006293#: resize/main.c:398
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006294msgid "New size too large to be expressed in 32 bits\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006295msgstr "Die neue Größe lässt sich nicht mehr mit 32 Bits ausdrücken\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006296
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006297#: resize/main.c:406
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006298#, c-format
6299msgid "New size smaller than minimum (%llu)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006300msgstr "Die neue Grösse ist kleiner als das Minimum (%llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006301
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006302#: resize/main.c:412
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006303msgid "Invalid stride length"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006304msgstr "Ungültige \"Stride\"-Länge"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006305
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006306#: resize/main.c:436
Philipp Thomasa4edef12011-01-26 18:54:24 -05006307#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006308msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006309"The containing partition (or device) is only %llu (%dk) blocks.\n"
6310"You requested a new size of %llu blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006311"\n"
6312msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006313"Die sie enthaltende Partition (odert Gerät) ist nur %llu (%dk) Blöcke groß.\n"
6314"Sie wollen %llu Blöcke haben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006315
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006316#: resize/main.c:443
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006317#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006318msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006319"The filesystem is already %llu blocks long. Nothing to do!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006320"\n"
6321msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006322"Das Dateisystem ist bereits %llu Blöcke lang. Nichts zu tun!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006323"\n"
6324
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006325#: resize/main.c:452
Philipp Thomas77c871a2010-04-19 16:59:02 -04006326#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006327msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006328msgstr ""
6329"Die Größe des Dateisystems auf %s wird auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006330
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006331#: resize/main.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006332#, c-format
6333msgid "while trying to resize %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006334msgstr "beim Versuch, die Größe von %s zu ändern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006335
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006336#: resize/main.c:464
Philipp Thomas77c871a2010-04-19 16:59:02 -04006337#, c-format
6338msgid ""
6339"Please run 'e2fsck -fy %s' to fix the filesystem\n"
6340"after the aborted resize operation.\n"
6341msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006342"Bitte lassen Sie „e2fsck -fy %s“ laufen, um das\n"
6343"Dateisystem nach der abgebrochenen Größenänderung\n"
6344"zu reparieren\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006345
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006346#: resize/main.c:470
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006347#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006348msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006349"The filesystem on %s is now %llu blocks long.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006350"\n"
6351msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006352"Das Dateisystem auf %s is nun %llu Blöcke lang.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006353"\n"
6354
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006355#: resize/main.c:485
Philipp Thomas77c871a2010-04-19 16:59:02 -04006356#, c-format
6357msgid "while trying to truncate %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006358msgstr "beim Versuch, %s abzuschneiden"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006359
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006360#: resize/online.c:82
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006361msgid "kernel does not support online resize with sparse_super2"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006362msgstr ""
6363"Der Kernel unterstützt die Online-Größenänderung mit sparse_super2 nicht"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006364
6365#: resize/online.c:87
Philipp Thomas720e6362008-06-21 14:06:00 -04006366#, c-format
6367msgid "Filesystem at %s is mounted on %s; on-line resizing required\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006368msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006369"Dateisystem bei %s ist auf %s eingehängt; Online-Größenänderung ist\n"
6370"erforderlich\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006371
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006372#: resize/online.c:91
Philipp Thomas3e914b52011-01-24 15:03:41 -05006373msgid "On-line shrinking not supported"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006374msgstr "Online-Schrumpfen wird nicht unterstützt"
Philipp Thomas720e6362008-06-21 14:06:00 -04006375
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006376#: resize/online.c:116
Philipp Thomas720e6362008-06-21 14:06:00 -04006377msgid "Filesystem does not support online resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006378msgstr "Das Dateisystem unterstützt die Online-Größenänderung nicht"
Philipp Thomas720e6362008-06-21 14:06:00 -04006379
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006380#: resize/online.c:125
Philipp Thomasd0275172013-01-15 23:30:35 -05006381msgid "Not enough reserved gdt blocks for resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006382msgstr "Nicht genug reservierte GDT-Blöcke für die Größenänderung"
Philipp Thomasd0275172013-01-15 23:30:35 -05006383
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006384#: resize/online.c:132
Philipp Thomasd0275172013-01-15 23:30:35 -05006385msgid "Kernel does not support resizing a file system this large"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006386msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006387"Der Kernel unterstützt die Online-Grössenänderungen eines so großen\n"
6388"Dateisystems nicht"
Philipp Thomasd0275172013-01-15 23:30:35 -05006389
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006390#: resize/online.c:140
Philipp Thomas68801282008-07-17 11:47:00 -04006391#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006392msgid "while trying to open mountpoint %s"
Philipp Thomas9564ee52008-08-22 03:22:50 -04006393msgstr "beim Versuch, Einhängpunkt %s zu öffnen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006394
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006395#: resize/online.c:145
Philipp Thomasb93349a2014-05-31 13:32:39 -04006396#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006397msgid "Old resize interface requested.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006398msgstr "Die alte Schnittstelle für Größenänderung wurde angefordert.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006399
6400#: resize/online.c:164 resize/online.c:181
Philipp Thomas720e6362008-06-21 14:06:00 -04006401msgid "Permission denied to resize filesystem"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006402msgstr "Die Erlaubnis zum ändern der Dateisystemgröße wurde verweigert"
Philipp Thomas720e6362008-06-21 14:06:00 -04006403
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006404#: resize/online.c:167 resize/online.c:187
Philipp Thomas720e6362008-06-21 14:06:00 -04006405msgid "While checking for on-line resizing support"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006406msgstr "Beim überprüfen der Unterstützung für Online-Größenänderung"
Philipp Thomas720e6362008-06-21 14:06:00 -04006407
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006408#: resize/online.c:184
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006409msgid "Kernel does not support online resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006410msgstr "Der Kernel bietet keine Untrerstützung für eine Online-Größenänderung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006411
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006412#: resize/online.c:223
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006413#, c-format
6414msgid "Performing an on-line resize of %s to %llu (%dk) blocks.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006415msgstr "Die Größe von %s wird gerade online auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006416
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006417#: resize/online.c:233
Philipp Thomas720e6362008-06-21 14:06:00 -04006418msgid "While trying to extend the last group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006419msgstr "beim Versuch, die letzte Gruppe zu erweitern"
Philipp Thomas720e6362008-06-21 14:06:00 -04006420
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006421#: resize/online.c:287
Philipp Thomas68801282008-07-17 11:47:00 -04006422#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006423msgid "While trying to add group #%d"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006424msgstr "beim Versuch, die Gruppe #%d hinzu zu fügen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006425
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006426#: resize/online.c:298
Philipp Thomasa700f512008-08-29 08:49:57 -04006427#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006428msgid ""
6429"Filesystem at %s is mounted on %s, and on-line resizing is not supported on "
6430"this system.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006431msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006432"Das Dateisystem bei %s ist auf %s eingehängt und die Änderung der Größe im\n"
6433"laufenden System wird auf diesem System nicht unterstützt.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006434
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006435#: resize/resize2fs.c:402
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006436#, c-format
6437msgid "inodes (%llu) must be less than %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006438msgstr "Die Inodes (%llu) müssen unter %u liegen"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006439
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006440#: resize/resize2fs.c:685
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006441msgid "reserved blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006442msgstr "reservierte Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006443
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006444#: resize/resize2fs.c:930
Theodore Ts'obc759702005-05-09 20:40:55 -04006445msgid "meta-data blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006446msgstr "Metadaten-Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006447
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006448#: resize/resize2fs.c:1031 resize/resize2fs.c:1828
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006449msgid "new meta blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006450msgstr "neue Metadaten-Blöcke"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006451
6452#: resize/resize2fs.c:2046
6453msgid "Should never happen! No sb in last super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006454msgstr "Dies sollte nie geschehen! Kein sb im letzten super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006455
6456#: resize/resize2fs.c:2051
6457msgid "Should never happen! Unexpected old_desc in super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006458msgstr "Dies sollte nie geschehen! Unerwartete old_desc in super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006459
6460#: resize/resize2fs.c:2129
Theodore Ts'obc759702005-05-09 20:40:55 -04006461msgid "Should never happen: resize inode corrupt!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006462msgstr "Dies sollte nie geschehen: die Größenänderungs-Inode ist defekt!\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05006463
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006464#: lib/ext2fs/ext2_err.c:11
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006465msgid "EXT2FS Library version 1.42.10"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006466msgstr "EXT2FS Bibliothek Version 1.42.10"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006467
6468#: lib/ext2fs/ext2_err.c:12
6469msgid "Wrong magic number for ext2_filsys structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006470msgstr "Falsche magische Zahl für eine ext2_filesys-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006471
6472#: lib/ext2fs/ext2_err.c:13
6473msgid "Wrong magic number for badblocks_list structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006474msgstr "Falsche magische Zahl für eine badblocks_list-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006475
6476#: lib/ext2fs/ext2_err.c:14
6477msgid "Wrong magic number for badblocks_iterate structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006478msgstr "Falsche magische Zahl für eine badblocks_iterate-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006479
6480#: lib/ext2fs/ext2_err.c:15
6481msgid "Wrong magic number for inode_scan structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006482msgstr "Falsche magische Zahl für eine inode_scan-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006483
6484#: lib/ext2fs/ext2_err.c:16
6485msgid "Wrong magic number for io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006486msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006487
6488#: lib/ext2fs/ext2_err.c:17
6489msgid "Wrong magic number for unix io_channel structure"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006490msgstr "Falsche magische Zahl für eine Unix io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006491
6492#: lib/ext2fs/ext2_err.c:18
6493msgid "Wrong magic number for io_manager structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006494msgstr "Falsche magische Zahl für eine io_manager-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006495
6496#: lib/ext2fs/ext2_err.c:19
6497msgid "Wrong magic number for block_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006498msgstr "Falsche magische Zahl für eine block_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006499
6500#: lib/ext2fs/ext2_err.c:20
6501msgid "Wrong magic number for inode_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006502msgstr "Falsche magische Zahl für eine inode_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006503
6504#: lib/ext2fs/ext2_err.c:21
6505msgid "Wrong magic number for generic_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006506msgstr "Falsche magische Zahl für eine generic_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006507
6508#: lib/ext2fs/ext2_err.c:22
6509msgid "Wrong magic number for test io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006510msgstr "Falsche magische Zahl für eine test-io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006511
6512#: lib/ext2fs/ext2_err.c:23
6513msgid "Wrong magic number for directory block list structure"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006514msgstr ""
6515"Falsche magische Zahl für eine Struktur für die Liste der Verzeichnisblöcke"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006516
6517#: lib/ext2fs/ext2_err.c:24
6518msgid "Wrong magic number for icount structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006519msgstr "Falsche magische Zahl für eine icount-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006520
6521#: lib/ext2fs/ext2_err.c:25
6522msgid "Wrong magic number for Powerquest io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006523msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006524
6525#: lib/ext2fs/ext2_err.c:26
6526msgid "Wrong magic number for ext2 file structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006527msgstr "Falsche magische Zahl für eine ext2 Datei-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006528
6529#: lib/ext2fs/ext2_err.c:27
6530msgid "Wrong magic number for Ext2 Image Header"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006531msgstr "Falsche magische Zahl für einen Ext2-Abbild-Kopf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006532
6533#: lib/ext2fs/ext2_err.c:28
6534msgid "Wrong magic number for inode io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006535msgstr "Falsche magische Zahl für eine Struktur des Inode-io_channels"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006536
6537#: lib/ext2fs/ext2_err.c:29
6538msgid "Wrong magic number for ext4 extent handle"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006539msgstr "Falsche magische Zahl für eine ext4 Erweiterungshandle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006540
6541#: lib/ext2fs/ext2_err.c:30
6542msgid "Bad magic number in super-block"
6543msgstr "Ungültige magische Zahl im Superblock"
6544
6545#: lib/ext2fs/ext2_err.c:31
6546msgid "Filesystem revision too high"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006547msgstr "Die Dateisystemversion ist zu hoch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006548
6549#: lib/ext2fs/ext2_err.c:32
6550msgid "Attempt to write to filesystem opened read-only"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006551msgstr ""
6552"Dies ist ein Versuch, auf ein nur-lesened geöffnetes Dateisystem zu schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006553
6554#: lib/ext2fs/ext2_err.c:33
6555msgid "Can't read group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006556msgstr "Die Gruppendeskriptoren konnten nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006557
6558#: lib/ext2fs/ext2_err.c:34
6559msgid "Can't write group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006560msgstr "Die Gruppendeskriptoren konnten nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006561
6562#: lib/ext2fs/ext2_err.c:35
6563msgid "Corrupt group descriptor: bad block for block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006564msgstr "Defekter Gruppendeskriptor: defekter Block für die Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006565
6566#: lib/ext2fs/ext2_err.c:36
6567msgid "Corrupt group descriptor: bad block for inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006568msgstr "Defekter Gruppendeskriptor: defekter Block für die Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006569
6570#: lib/ext2fs/ext2_err.c:37
6571msgid "Corrupt group descriptor: bad block for inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006572msgstr "Defekter Gruppendeskriptor: defekter Block für die Inodetabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006573
6574#: lib/ext2fs/ext2_err.c:38
6575msgid "Can't write an inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006576msgstr "Die Inode-Bitmap konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006577
6578#: lib/ext2fs/ext2_err.c:39
6579msgid "Can't read an inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006580msgstr "Eine Inode-Bitmap konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006581
6582#: lib/ext2fs/ext2_err.c:40
Darrick J. Wong580d8a02013-10-07 09:20:28 -04006583msgid "Can't write a block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006584msgstr "Eine Block-Bitmap kann nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006585
6586#: lib/ext2fs/ext2_err.c:41
Darrick J. Wongba0230f2013-12-12 12:41:58 -05006587msgid "Can't read a block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006588msgstr "Eine Block-Bitmap kann nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006589
6590#: lib/ext2fs/ext2_err.c:42
6591msgid "Can't write an inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006592msgstr "Eine Inodetablle kann nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006593
6594#: lib/ext2fs/ext2_err.c:43
6595msgid "Can't read an inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006596msgstr "Eine Inodetablle kann nicht gelsen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006597
6598#: lib/ext2fs/ext2_err.c:44
6599msgid "Can't read next inode"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006600msgstr "Die nächste Inode kann nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006601
6602#: lib/ext2fs/ext2_err.c:45
6603msgid "Filesystem has unexpected block size"
6604msgstr "Das Dateisystem hat eine unerwartete Blockgröße"
6605
6606#: lib/ext2fs/ext2_err.c:46
6607msgid "EXT2 directory corrupted"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006608msgstr "Das Ext2-Verzeichnis ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006609
6610#: lib/ext2fs/ext2_err.c:47
6611msgid "Attempt to read block from filesystem resulted in short read"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006612msgstr ""
6613"Der Versuch, einen Block vom Dateisystem zu lesen endete in kurzem lesen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006614
6615#: lib/ext2fs/ext2_err.c:48
6616msgid "Attempt to write block to filesystem resulted in short write"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006617msgstr ""
6618"Der Versuch, einen Block auf das Dateisystem zu schreiben endete in kurzem "
6619"schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006620
6621#: lib/ext2fs/ext2_err.c:49
6622msgid "No free space in the directory"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006623msgstr "Kein freier Platz im Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006624
6625#: lib/ext2fs/ext2_err.c:50
6626msgid "Inode bitmap not loaded"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006627msgstr "die Inode Bitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006628
6629#: lib/ext2fs/ext2_err.c:51
6630msgid "Block bitmap not loaded"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006631msgstr "die Blockbitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006632
6633#: lib/ext2fs/ext2_err.c:52
6634msgid "Illegal inode number"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006635msgstr "Illegale Inodenummer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006636
6637#: lib/ext2fs/ext2_err.c:53
6638msgid "Illegal block number"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006639msgstr "Illegale Blockzahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006640
6641#: lib/ext2fs/ext2_err.c:54
6642msgid "Internal error in ext2fs_expand_dir"
6643msgstr "Interner Fehler in ext2fs_expand_dir"
6644
6645#: lib/ext2fs/ext2_err.c:55
6646msgid "Not enough space to build proposed filesystem"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006647msgstr "Nicht genug Platz um das vorgeschlagene Dateiszstem zu bauen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006648
6649#: lib/ext2fs/ext2_err.c:56
6650msgid "Illegal block number passed to ext2fs_mark_block_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006651msgstr ""
6652"Es wurde eine illegale Blocknummer an ext2fs_mark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006653
6654#: lib/ext2fs/ext2_err.c:57
6655msgid "Illegal block number passed to ext2fs_unmark_block_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006656msgstr ""
6657"Es wurde eine illegale Blocknummer an ext2fs_unmark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006658
6659#: lib/ext2fs/ext2_err.c:58
6660msgid "Illegal block number passed to ext2fs_test_block_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006661msgstr ""
6662"Es wurde eine illegale Blocknummer an ext2fs_test_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006663
6664#: lib/ext2fs/ext2_err.c:59
6665msgid "Illegal inode number passed to ext2fs_mark_inode_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006666msgstr ""
6667"Es wurde eine illegale Inodenummer an ext2fs_mark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006668
6669#: lib/ext2fs/ext2_err.c:60
6670msgid "Illegal inode number passed to ext2fs_unmark_inode_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006671msgstr ""
6672"Es wurde eine illegale Inodenummer an ext2fs_unmark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006673
6674#: lib/ext2fs/ext2_err.c:61
6675msgid "Illegal inode number passed to ext2fs_test_inode_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006676msgstr ""
6677"Es wurde eine illegale Inodenummer an ext2fs_test_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006678
6679#: lib/ext2fs/ext2_err.c:62
6680msgid "Attempt to fudge end of block bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006681msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006682"Es wird versucht, das Ende der Block-Bitmap jenseits des wirklichen Endes\n"
6683"zu fummeln"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006684
6685#: lib/ext2fs/ext2_err.c:63
6686msgid "Attempt to fudge end of inode bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006687msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006688"Es wird versucht, das Ende der Inode-Bitmap jenseits des wirklichen Endes\n"
6689"zu fummeln"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006690
6691#: lib/ext2fs/ext2_err.c:64
6692msgid "Illegal indirect block found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006693msgstr "Es wurde ein illegaler indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006694
6695#: lib/ext2fs/ext2_err.c:65
6696msgid "Illegal doubly indirect block found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006697msgstr "Es wurde ein illegaler doppelt indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006698
6699#: lib/ext2fs/ext2_err.c:66
6700msgid "Illegal triply indirect block found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006701msgstr "Es wurde ein illegaler dreifach indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006702
6703#: lib/ext2fs/ext2_err.c:67
6704msgid "Block bitmaps are not the same"
6705msgstr "Die Blockbitmaps sind nicht identisch"
6706
6707#: lib/ext2fs/ext2_err.c:68
6708msgid "Inode bitmaps are not the same"
6709msgstr "Die Inodebitmaps sind nicht identisch"
6710
6711#: lib/ext2fs/ext2_err.c:69
6712msgid "Illegal or malformed device name"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006713msgstr "Ungültiger oder misgestalteter Gerätename"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006714
6715#: lib/ext2fs/ext2_err.c:70
6716msgid "A block group is missing an inode table"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006717msgstr "Einer Blockgruppe fehlt eine Inodetabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006718
6719#: lib/ext2fs/ext2_err.c:71
6720msgid "The ext2 superblock is corrupt"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006721msgstr "Der Ext2-Superblock ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006722
6723#: lib/ext2fs/ext2_err.c:72
6724msgid "Illegal generic bit number passed to ext2fs_mark_generic_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006725msgstr ""
6726"Eine unzulässige generische Bitnummer wurde an ext2fs_mark_generic_bitmap "
6727"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006728
6729#: lib/ext2fs/ext2_err.c:73
6730msgid "Illegal generic bit number passed to ext2fs_unmark_generic_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006731msgstr ""
6732"Eine unzulässige generische Bitnummer wurde an ext2fs_unmark_generic_bitmap "
6733"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006734
6735#: lib/ext2fs/ext2_err.c:74
6736msgid "Illegal generic bit number passed to ext2fs_test_generic_bitmap"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006737msgstr ""
6738"Eine unzulässige generische Bitnummer wurde an ext2fs_test_generic_bitmap "
6739"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006740
6741#: lib/ext2fs/ext2_err.c:75
6742msgid "Too many symbolic links encountered."
Philipp Thomas9bf41072014-07-05 23:18:04 -04006743msgstr "Es wurden zuviele symbolische Verknüpfungen gefunden."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006744
6745#: lib/ext2fs/ext2_err.c:76
6746msgid "The callback function will not handle this case"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006747msgstr "Die Callback-Funktion kann diesen Fall nicht handhaben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006748
6749#: lib/ext2fs/ext2_err.c:77
6750msgid "The inode is from a bad block in the inode table"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006751msgstr "Die Indoe kommt von einem beschädigten Block in der Inadetabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006752
6753#: lib/ext2fs/ext2_err.c:78
6754msgid "Filesystem has unsupported feature(s)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006755msgstr "Das Dateisystem besitzt nicht unterstützte Eigenschaft(en)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006756
6757#: lib/ext2fs/ext2_err.c:79
6758msgid "Filesystem has unsupported read-only feature(s)"
6759msgstr "Das Dateisystem besitzt nicht unterstützte nur-lesen Eigenschaft(en):"
6760
6761#: lib/ext2fs/ext2_err.c:80
6762msgid "IO Channel failed to seek on read or write"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006763msgstr "Der EA-Kanal hat nicht positioniert beim Lesen oder Schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006764
6765#: lib/ext2fs/ext2_err.c:81
6766msgid "Memory allocation failed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006767msgstr "Die Reservierung von Speicher schlug fehl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006768
6769#: lib/ext2fs/ext2_err.c:82
6770msgid "Invalid argument passed to ext2 library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006771msgstr "Ein ungültiges Argument wurde an die Ext2-Bibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006772
6773#: lib/ext2fs/ext2_err.c:83
6774msgid "Could not allocate block in ext2 filesystem"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006775msgstr "Konnte kein Block im ext2-Dateisystem angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006776
6777#: lib/ext2fs/ext2_err.c:84
6778msgid "Could not allocate inode in ext2 filesystem"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006779msgstr "Konnte keine Inode im ext2-Dateisystem angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006780
6781#: lib/ext2fs/ext2_err.c:85
6782msgid "Ext2 inode is not a directory"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006783msgstr "Die Ext2-Inode weist nicht auf ein Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006784
6785#: lib/ext2fs/ext2_err.c:86
6786msgid "Too many references in table"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006787msgstr "Zu viele Referenzen in der TAbelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006788
6789#: lib/ext2fs/ext2_err.c:87
6790msgid "File not found by ext2_lookup"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006791msgstr "Die Datei wurde von ext2_lookup nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006792
6793#: lib/ext2fs/ext2_err.c:88
6794msgid "File open read-only"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006795msgstr "Die Datei wurde nur-lesend geöffnet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006796
6797#: lib/ext2fs/ext2_err.c:89
6798msgid "Ext2 directory block not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006799msgstr "Der Verzeichnisblock des ext2-Dateisystems wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006800
6801#: lib/ext2fs/ext2_err.c:90
6802msgid "Ext2 directory already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006803msgstr "Das Ext2-Verzeichnis existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006804
6805#: lib/ext2fs/ext2_err.c:91
6806msgid "Unimplemented ext2 library function"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006807msgstr "Nicht implementierte Ext2-Bibliotheksfunktion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006808
6809#: lib/ext2fs/ext2_err.c:92
6810msgid "User cancel requested"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006811msgstr "Der Benutzer hat abgebrochen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006812
6813#: lib/ext2fs/ext2_err.c:93
6814msgid "Ext2 file too big"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006815msgstr "Die Ext2-Datei ist zu groß"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006816
6817#: lib/ext2fs/ext2_err.c:94
6818msgid "Supplied journal device not a block device"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006819msgstr "Das angegebene Journalgerät ist kein blockorientiertes Gerät"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006820
6821#: lib/ext2fs/ext2_err.c:95
6822msgid "Journal superblock not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006823msgstr "Der Journal-Superblock wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006824
6825#: lib/ext2fs/ext2_err.c:96
6826msgid "Journal must be at least 1024 blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006827msgstr "Das Journal muß mindestens 1024 Blöcke groß sein"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006828
6829#: lib/ext2fs/ext2_err.c:97
6830msgid "Unsupported journal version"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006831msgstr "Nicht unterstützte Journalversion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006832
6833#: lib/ext2fs/ext2_err.c:98
6834msgid "Error loading external journal"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006835msgstr "Fehler beim Laden des externen Journals"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006836
6837#: lib/ext2fs/ext2_err.c:99
6838msgid "Journal not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006839msgstr "Das Journal wurde nicht gefunden. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006840
6841#: lib/ext2fs/ext2_err.c:100
6842msgid "Directory hash unsupported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006843msgstr "Verzeichnishashes werden nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006844
6845#: lib/ext2fs/ext2_err.c:101
6846msgid "Illegal extended attribute block number"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006847msgstr "Die Nummer des Blocks für erweiterte Attribute ist unzulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006848
6849#: lib/ext2fs/ext2_err.c:102
6850msgid "Cannot create filesystem with requested number of inodes"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006851msgstr ""
6852"Ein Dateisystem mit der gewünschten Anzahl Inodes kann nicht erzeugt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006853
6854#: lib/ext2fs/ext2_err.c:103
6855msgid "E2image snapshot not in use"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006856msgstr "Der E2image-Schnappschuss ist nicht in Gebrauch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006857
6858#: lib/ext2fs/ext2_err.c:104
6859msgid "Too many reserved group descriptor blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006860msgstr "Zu viele reservierte Blöcke für Gruppen-Descriptoren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006861
6862#: lib/ext2fs/ext2_err.c:105
6863msgid "Resize inode is corrupt"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006864msgstr "Die Größenänderungs-Inode ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006865
6866#: lib/ext2fs/ext2_err.c:106
6867msgid "Tried to set block bmap with missing indirect block"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006868msgstr ""
6869"Es wurde versucht, eine Blockbmap mit fehlendem indirektem Block zu schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006870
6871#: lib/ext2fs/ext2_err.c:107
6872msgid "TDB: Success"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006873msgstr "TDB: Erfolg"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006874
6875#: lib/ext2fs/ext2_err.c:108
6876msgid "TDB: Corrupt database"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006877msgstr "TDB: Korrupte Datenbank"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006878
6879#: lib/ext2fs/ext2_err.c:109
6880msgid "TDB: IO Error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006881msgstr "TDB: EA-Fehler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006882
6883#: lib/ext2fs/ext2_err.c:110
6884msgid "TDB: Locking error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006885msgstr "TDB: Fehler beim Sperren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006886
6887#: lib/ext2fs/ext2_err.c:111
6888msgid "TDB: Out of memory"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006889msgstr "TDB: Hauptspeicher erschöpft"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006890
6891#: lib/ext2fs/ext2_err.c:112
6892msgid "TDB: Record exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006893msgstr "TDB: Datensatz existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006894
6895#: lib/ext2fs/ext2_err.c:113
6896msgid "TDB: Lock exists on other keys"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006897msgstr "TDB: Die Sperre existiert schon auf anderen Schlüsseln"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006898
6899#: lib/ext2fs/ext2_err.c:114
6900msgid "TDB: Invalid parameter"
6901msgstr "TDB: Ungültiger Parameter"
6902
6903#: lib/ext2fs/ext2_err.c:115
6904msgid "TDB: Record does not exist"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006905msgstr "TDB: Der DAtensatz existiert nicht"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006906
6907#: lib/ext2fs/ext2_err.c:116
6908msgid "TDB: Write not permitted"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006909msgstr "TDB: Schreiben ist nicht zulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006910
6911#: lib/ext2fs/ext2_err.c:117
6912msgid "Ext2fs directory block list is empty"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006913msgstr "Die Liste der Ext2fs-Verzeichnisblöcke ist leer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006914
6915#: lib/ext2fs/ext2_err.c:118
6916msgid "Attempt to modify a block mapping via a read-only block iterator"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006917msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006918"Es wird versucht, eine Block-Kartierung über einen nur-lesen Blockiterator "
6919"zu\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006920"ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006921
6922#: lib/ext2fs/ext2_err.c:119
6923msgid "Wrong magic number for ext4 extent saved path"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006924msgstr "Falsche magische Zahl für einen gespeicherten Pfad zu ext4-Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006925
6926#: lib/ext2fs/ext2_err.c:120
6927msgid "Wrong magic number for 64-bit generic bitmap"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006928msgstr "Falsche magische Zahl für eine 64-Bit generische Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006929
6930#: lib/ext2fs/ext2_err.c:121
6931msgid "Wrong magic number for 64-bit block bitmap"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006932msgstr "Falsche magische Zahl für eine 64-Bit Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006933
6934#: lib/ext2fs/ext2_err.c:122
6935msgid "Wrong magic number for 64-bit inode bitmap"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006936msgstr "Falsche magische Zahl für eine 64-Bit Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006937
6938#: lib/ext2fs/ext2_err.c:123
6939msgid "Wrong magic number --- RESERVED_13"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006940msgstr "Falsche magische Zahl --- RESERVED_13"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006941
6942#: lib/ext2fs/ext2_err.c:124
6943msgid "Wrong magic number --- RESERVED_14"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006944msgstr "Falsche magische Zahl --- RESERVED_14"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006945
6946#: lib/ext2fs/ext2_err.c:125
6947msgid "Wrong magic number --- RESERVED_15"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006948msgstr "Falsche magische Zahl --- RESERVED_15"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006949
6950#: lib/ext2fs/ext2_err.c:126
6951msgid "Wrong magic number --- RESERVED_16"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006952msgstr "Falsche magische Zahl --- RESERVED_16"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006953
6954#: lib/ext2fs/ext2_err.c:127
6955msgid "Wrong magic number --- RESERVED_17"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006956msgstr "Falsche magische Zahl --- RESERVED_17"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006957
6958#: lib/ext2fs/ext2_err.c:128
6959msgid "Wrong magic number --- RESERVED_18"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006960msgstr "Falsche magische Zahl --- RESERVED_18"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006961
6962#: lib/ext2fs/ext2_err.c:129
6963msgid "Wrong magic number --- RESERVED_19"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006964msgstr "Falsche magische Zahl --- RESERVED_19"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006965
6966#: lib/ext2fs/ext2_err.c:130
6967msgid "Corrupt extent header"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006968msgstr "Defekter Kopf einer Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006969
6970#: lib/ext2fs/ext2_err.c:131
6971msgid "Corrupt extent index"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006972msgstr "Beschädigter Erweiterungsindex"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006973
6974#: lib/ext2fs/ext2_err.c:132
6975msgid "Corrupt extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006976msgstr "Beschädigte Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006977
6978#: lib/ext2fs/ext2_err.c:133
6979msgid "No free space in extent map"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006980msgstr "Es ist kein freier Platz in der Karte der Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006981
6982#: lib/ext2fs/ext2_err.c:134
6983msgid "Inode does not use extents"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006984msgstr "Die INode verwendet keine Erweiterungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006985
6986#: lib/ext2fs/ext2_err.c:135
6987msgid "No 'next' extent"
6988msgstr "Keine „nächste“ Erweiterung"
6989
6990#: lib/ext2fs/ext2_err.c:136
6991msgid "No 'previous' extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006992msgstr "Keine „vorherige“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006993
6994#: lib/ext2fs/ext2_err.c:137
6995msgid "No 'up' extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006996msgstr "Keine „oben“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006997
6998#: lib/ext2fs/ext2_err.c:138
6999msgid "No 'down' extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007000msgstr "Keine „unten“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007001
7002#: lib/ext2fs/ext2_err.c:139
7003msgid "No current node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007004msgstr "Kein aktueller Knoten"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007005
7006#: lib/ext2fs/ext2_err.c:140
7007msgid "Ext2fs operation not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007008msgstr "Diese Ext2fs-Operation wird nicht unterstẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007009
7010#: lib/ext2fs/ext2_err.c:141
7011msgid "No room to insert extent in node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007012msgstr "Es gibt keinen Platz, um die Erweiterung in den Knoten einzufügen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007013
7014#: lib/ext2fs/ext2_err.c:142
7015msgid "Splitting would result in empty node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007016msgstr "Die Aufteilung würde zu einem leeren Knoten führen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007017
7018#: lib/ext2fs/ext2_err.c:143
7019msgid "Extent not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007020msgstr "Die Erweiterung wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007021
7022#: lib/ext2fs/ext2_err.c:144
7023msgid "Operation not supported for inodes containing extents"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007024msgstr "Die Operation wird für Inodes mit Erweiterungen nicht unterstẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007025
7026#: lib/ext2fs/ext2_err.c:145
7027msgid "Extent length is invalid"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007028msgstr "Die Länge der Erweiterung in ungültig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007029
7030#: lib/ext2fs/ext2_err.c:146
7031msgid "I/O Channel does not support 64-bit block numbers"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007032msgstr "Der EA-Kanal unterstützt keine 64-bittigen Blocknummern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007033
7034#: lib/ext2fs/ext2_err.c:147
7035msgid "Can't check if filesystem is mounted due to missing mtab file"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007036msgstr ""
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04007037"Wegen des Fehlens von /etc/mtab kann nicht geprüft werden, ob das "
7038"Dateisystem\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007039"eingehängt ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007040
7041#: lib/ext2fs/ext2_err.c:148
7042msgid "Filesystem too large to use legacy bitmaps"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007043msgstr "Das Dateisystem ist zu groß um die veralteten Bitmaps zu verwenden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007044
7045#: lib/ext2fs/ext2_err.c:149
7046msgid "MMP: invalid magic number"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007047msgstr "MMP: fehlende magische Zahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007048
7049#: lib/ext2fs/ext2_err.c:150
7050msgid "MMP: device currently active"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007051msgstr "MMP: das Gerät ist derzeit aktiv"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007052
7053#: lib/ext2fs/ext2_err.c:151
7054msgid "MMP: fsck being run"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007055msgstr "MMP: fsck läuft derzeit"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007056
7057#: lib/ext2fs/ext2_err.c:152
7058msgid "MMP: block number beyond filesystem range"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007059msgstr "MMP: die Blocknummer ist jenseits der Dateisystemgrenzen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007060
7061#: lib/ext2fs/ext2_err.c:153
7062msgid "MMP: undergoing an unknown operation"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007063msgstr "MMP: ein unbekannte Operation wird durchdeführt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007064
7065#: lib/ext2fs/ext2_err.c:154
7066msgid "MMP: filesystem still in use"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007067msgstr "MMP: das Dateisystem wird immer noch verwendet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007068
7069#: lib/ext2fs/ext2_err.c:155
7070msgid "MMP: open with O_DIRECT failed"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007071msgstr "MMP: öffnen mit O_DIRECT ist gescheitert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007072
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007073#: lib/ext2fs/ext2_err.c:156
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007074msgid "Block group descriptor size incorrect"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007075msgstr "Die Größe des „Blockgruppen-Descriptors“ ist unzuässig"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007076
7077#: lib/ext2fs/ext2_err.c:157
7078msgid "Inode checksum does not match inode"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007079msgstr "Die Prüfsumme der Inode passt nicht zu ihr"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007080
7081#: lib/ext2fs/ext2_err.c:158
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007082msgid "Inode bitmap checksum does not match bitmap"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007083msgstr "Die Prüfsumme der Inodebitmap passt nicht zur Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007084
7085#: lib/ext2fs/ext2_err.c:159
7086msgid "Extent block checksum does not match extent block"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007087msgstr "Die Prüfsumme des Erweiterungsbloacks passt nicht zu ihm"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007088
7089#: lib/ext2fs/ext2_err.c:160
7090msgid "Directory block does not have space for checksum"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007091msgstr "Der Verzeichnisblock hat keinen Platz für eine Prüfsumme"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007092
7093#: lib/ext2fs/ext2_err.c:161
7094msgid "Directory block checksum does not match directory block"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007095msgstr "Die Prüfsumme des Verzeichnisblocks passt nicht zu ihm"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007096
7097#: lib/ext2fs/ext2_err.c:162
7098msgid "Extended attribute block checksum does not match block"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007099msgstr "Die Prüfsumme des Blocks für erweiterte Attribute passt nicht zu ihm"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007100
7101#: lib/ext2fs/ext2_err.c:163
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007102msgid "Superblock checksum does not match superblock"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007103msgstr "Die Prüfsumme des Superblocks passt nicht zu ihm"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007104
7105#: lib/ext2fs/ext2_err.c:164
7106msgid "Unknown checksum algorithm"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007107msgstr "Unbekannter Prüfsummenalgorithmus"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007108
7109#: lib/ext2fs/ext2_err.c:165
7110msgid "MMP block checksum does not match MMP block"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007111msgstr "Die Prüfsumme des des MMP-Blocks passt nicht zu ihm"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007112
7113#: lib/ext2fs/ext2_err.c:166
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007114msgid "Ext2 file already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007115msgstr "Die Ext2-Datei existiert bereits"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007116
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007117#: e2fsck/prof_err.c:11
7118msgid "Profile version 0.0"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007119msgstr "Profilversion 0.0"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007120
7121#: e2fsck/prof_err.c:12
7122msgid "Bad magic value in profile_node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007123msgstr "Ungültige magische Zahl im profile_node"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007124
7125#: e2fsck/prof_err.c:13
7126msgid "Profile section not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007127msgstr "die Profilsektion wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007128
7129#: e2fsck/prof_err.c:14
7130msgid "Profile relation not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007131msgstr "Zusammenhang des Profils wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007132
7133#: e2fsck/prof_err.c:15
7134msgid "Attempt to add a relation to node which is not a section"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007135msgstr ""
Philipp Thomas9bf41072014-07-05 23:18:04 -04007136"Dies ist ein Versuch, einen Bezug zu einem Knoten hinzu zu fügen, der keine\n"
7137"Sektion ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007138
7139#: e2fsck/prof_err.c:16
7140msgid "A profile section header has a non-zero value"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007141msgstr "Der Vorspann der Profilsektion hat einen von Null verschiedenen Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007142
7143#: e2fsck/prof_err.c:17
7144msgid "Bad linked list in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007145msgstr "Ungültige verkettete Liste in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007146
7147#: e2fsck/prof_err.c:18
7148msgid "Bad group level in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007149msgstr "Ungültige Gruppenebene in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007150
7151#: e2fsck/prof_err.c:19
7152msgid "Bad parent pointer in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007153msgstr "Ungültiger Zeiger auf die Eltern in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007154
7155#: e2fsck/prof_err.c:20
7156msgid "Bad magic value in profile iterator"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007157msgstr "Ungültige magische Zahl im Profiliterator"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007158
7159#: e2fsck/prof_err.c:21
7160msgid "Can't set value on section node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007161msgstr "In dem Sektionsknoten kann der Wert nicht gesetzt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007162
7163#: e2fsck/prof_err.c:22
7164msgid "Invalid argument passed to profile library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007165msgstr "Es wurde ein unzulässiges Argument an die Profilbibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007166
7167#: e2fsck/prof_err.c:23
7168msgid "Attempt to modify read-only profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007169msgstr "Es wird versucht, ein nur lesbares Profil zu ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007170
7171#: e2fsck/prof_err.c:24
7172msgid "Profile section header not at top level"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007173msgstr "Der Profilsektionsvorspann ist nicht auf der obersten Ebene"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007174
7175#: e2fsck/prof_err.c:25
7176msgid "Syntax error in profile section header"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007177msgstr "Syntaxfehler im Profilsektionsvorspann"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007178
7179#: e2fsck/prof_err.c:26
7180msgid "Syntax error in profile relation"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007181msgstr "Syntaxfehler in den Profilbeziehungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007182
7183#: e2fsck/prof_err.c:27
7184msgid "Extra closing brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007185msgstr "Überzählige schließende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007186
7187#: e2fsck/prof_err.c:28
7188msgid "Missing open brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007189msgstr "Fehlende öffnende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007190
7191#: e2fsck/prof_err.c:29
7192msgid "Bad magic value in profile_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007193msgstr "Ungültige magische Zahl im profile_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007194
7195#: e2fsck/prof_err.c:30
7196msgid "Bad magic value in profile_section_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007197msgstr "Unbekannte magische Zahl im section_t des Profils"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007198
7199#: e2fsck/prof_err.c:31
7200msgid "Iteration through all top level section not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007201msgstr "Iteration durch alle Toplevel-Sektionen wird nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007202
7203#: e2fsck/prof_err.c:32
7204msgid "Invalid profile_section object"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007205msgstr "Ungültiges profile_section-Objekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007206
7207#: e2fsck/prof_err.c:33
7208msgid "No more sections"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007209msgstr "Keine weiteren Sektionen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007210
7211#: e2fsck/prof_err.c:34
7212msgid "Bad nameset passed to query routine"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007213msgstr "Ungültige Namen an die Abfrageroutine übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007214
7215#: e2fsck/prof_err.c:35
7216msgid "No profile file open"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007217msgstr "Es ist keine Profildatei offen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007218
7219#: e2fsck/prof_err.c:36
7220msgid "Bad magic value in profile_file_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007221msgstr "UNgültige magische Zahl im profile_file_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007222
7223#: e2fsck/prof_err.c:37
7224msgid "Couldn't open profile file"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05007225msgstr "Die Profildatei konnte nicht geöffnet werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007226
7227#: e2fsck/prof_err.c:38
7228msgid "Section already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007229msgstr "Die Sektion existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007230
7231#: e2fsck/prof_err.c:39
7232msgid "Invalid boolean value"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007233msgstr "Ungültiger boolscher Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007234
7235#: e2fsck/prof_err.c:40
7236msgid "Invalid integer value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007237msgstr "Ungültiger ganzzahliger Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007238
7239#: e2fsck/prof_err.c:41
7240msgid "Bad magic value in profile_file_data_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007241msgstr "Ungültige magische Zahl im profile_file_data_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007242
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007243#~ msgid "Clearing extent flag not supported on %s"
7244#~ msgstr ""
7245#~ "Das Zurücksetzen des Kennzeichens für „Erweiterung“ wird auf %s\n"
7246#~ "\tnicht unterstützt"
7247
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007248#~ msgid ""
7249#~ "%s: The combination of flex_bg and\n"
7250#~ "\t!resize_inode features is not supported by resize2fs.\n"
7251#~ msgstr ""
7252#~ "%s: Die Kombination der Eigenschaften flex_bg und\n"
7253#~ "t!resize_inode wird von resize2fs nicht unterestützt.\n"
7254
Philipp Thomasedc733d2012-04-22 15:38:42 -04007255#~ msgid "@i %i should not have EOFBLOCKS_FL set (size %Is, lblk %r)\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04007256#~ msgstr ""
7257#~ " in @i %i sollte EOFBLOCKS_FL nicht gesetzt sein (Größe %Is, lblk %r)\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04007258
7259#~ msgid "Couldn't determine journal size"
7260#~ msgstr "Konnte die Größe des Dateisystems nicht ermitteln"
7261
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007262#~ msgid "#\t\t %llu -> %llu (%llu)\n"
7263#~ msgstr "#\t\t %llu -> %llu (%llu)\n"
7264
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007265#~ msgid "short write (only %d bytes) for writing image header"
7266#~ msgstr "short write (only %d bytes) for writing image header"
7267
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007268#~ msgid "Warning: fragments not supported. Ignoring -f option\n"
7269#~ msgstr "Warnung: Fragmente werden nicht unterstützt. Ignoriere -f Option\n"
7270
7271#~ msgid "Calling BLKDISCARD from %llu to %llu "
7272#~ msgstr "Der Aufruf von BLKDISCARD für den Bereich von %llu bis %llu war "
7273
7274#~ msgid "succeeded.\n"
7275#~ msgstr "erfolgreich.\n"