blob: 7413d2b014b61072ee820459649e1f39f52862f0 [file] [log] [blame]
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001# German translation of e2fsprogs
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002# Copyright (C) 1996 Theodore Tso (msgids)
3# This file is distributed under the same license as the e2fsprogs package.
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004#
Philipp Thomas3e914b52011-01-24 15:03:41 -05005# Olaf Klemke <olke@users.sourceforge.net>,2002.
6# Marc Langer <marc@marclanger.de>,2003.
Philipp Thomasb93349a2014-05-31 13:32:39 -04007# Philipp Thomas <pth@suse.de>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
Philipp Thomas294dd5a2011-10-16 21:53:39 -04008#
Theodore Ts'o7ae19832005-06-19 09:45:36 -04009#. The strings in e2fsck's problem.c can be very hard to translate,
10#. since the strings are expanded in two different ways. First of all,
11#. there is an @-expansion, where strings like "@i" are expanded to
12#. "inode", and so on. In order to make it easier for translators, the
13#. e2fsprogs po template file has been enhanced with comments that show
14#. the @-expansion, for the strings in the problem.c file.
15#.
16#. Translators are free to use the @-expansion facility if they so
17#. choose, by providing translations for strings in e2fsck/message.c.
18#. These translation can completely replace an expansion; for example,
19#. if "bblock" (which indicated that "@b" would be expanded to "block")
20#. is translated as "ddatenverlust", then "@d" will be expanded to
21#. "datenverlust". Alternatively, translators can simply not use the
22#. @-expansion facility at all.
23#.
24#. The second expansion which is done for e2fsck's problem.c messages is
25#. a dynamic %-expansion, which expands %i as an inode number, and so
26#. on. A table of these expansions can be found below. Note that
27#. %-expressions that begin with "%D" and "%I" are two-character
28#. expansions; so for example, "%Iu" expands to the inode's user id
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040029#. ownership field (inode->i_uid). Also the "%B" expansion is special:
30#. it can expand to either the string "indirect block" (possibly preceded
31#. by the word "double" or "triple"), or the string "block #" immediately
32#. followed by an integer indicating a block sequence number.
Theodore Ts'o7ae19832005-06-19 09:45:36 -040033#.
34#. %b <blk> block number
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040035#. %B "indirect block" | "block #"<blkcount> string | string+integer
Theodore Ts'o7ae19832005-06-19 09:45:36 -040036#. %c <blk2> block number
37#. %Di <dirent> -> ino inode number
38#. %Dn <dirent> -> name string
39#. %Dr <dirent> -> rec_len
40#. %Dl <dirent> -> name_len
41#. %Dt <dirent> -> filetype
42#. %d <dir> inode number
43#. %g <group> integer
44#. %i <ino> inode number
45#. %Is <inode> -> i_size
46#. %IS <inode> -> i_extra_isize
47#. %Ib <inode> -> i_blocks
48#. %Il <inode> -> i_links_count
49#. %Im <inode> -> i_mode
50#. %IM <inode> -> i_mtime
51#. %IF <inode> -> i_faddr
52#. %If <inode> -> i_file_acl
53#. %Id <inode> -> i_dir_acl
54#. %Iu <inode> -> i_uid
55#. %Ig <inode> -> i_gid
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040056#. %It <str> file type
Theodore Ts'o7ae19832005-06-19 09:45:36 -040057#. %j <ino2> inode number
58#. %m <com_err error message>
59#. %N <num>
60#. %p ext2fs_get_pathname of directory <ino>
61#. %P ext2fs_get_pathname of <dirent>->ino with <ino2> as
62#. the containing directory. (If dirent is NULL
63#. then return the pathname of directory <ino2>)
64#. %q ext2fs_get_pathname of directory <dir>
65#. %Q ext2fs_get_pathname of directory <ino> with <dir> as
66#. the containing directory.
67#. %s <str> miscellaneous string
68#. %S backup superblock
69#. %X <num> hexadecimal format
70#.
Theodore Ts'oa2328c92002-10-30 23:26:03 -050071msgid ""
72msgstr ""
Philipp Thomas37be3822015-05-17 20:21:39 -040073"Project-Id-Version: e2fsprogs-1.42.12-pre2\n"
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050074"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
Theodore Ts'obd386982015-05-17 20:34:58 -040075"POT-Creation-Date: 2015-05-17 20:31-0400\n"
Philipp Thomas37be3822015-05-17 20:21:39 -040076"PO-Revision-Date: 2014-09-26 11:53+0200\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -040077"Last-Translator: Philipp Thomas <pth@suse.de>\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -050078"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -040079"Language: de\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050080"MIME-Version: 1.0\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -040081"Content-Type: text/plain; charset=UTF-8\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050082"Content-Transfer-Encoding: 8bit\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -050083"Plural-Forms: nplurals=2; plural=(n != 1);\n"
84
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040085#: e2fsck/badblocks.c:23 misc/mke2fs.c:211
Theodore Ts'oa2328c92002-10-30 23:26:03 -050086#, c-format
87msgid "Bad block %u out of range; ignored.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -050088msgstr "„Bad block“ %u außerhalb des gültigen Bereichs; ignoriert.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050089
Philipp Thomas294dd5a2011-10-16 21:53:39 -040090#: e2fsck/badblocks.c:46
Theodore Ts'oa2328c92002-10-30 23:26:03 -050091msgid "while sanity checking the bad blocks inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -040092msgstr "während der logischen Prüfung des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050093
Philipp Thomas294dd5a2011-10-16 21:53:39 -040094#: e2fsck/badblocks.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -050095msgid "while reading the bad blocks inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -040096msgstr "während des Lesens des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -050097
Theodore Ts'ocd75fb02014-07-05 23:44:28 -040098#: e2fsck/badblocks.c:72 e2fsck/scantest.c:107 e2fsck/unix.c:1345
Theodore Ts'obd386982015-05-17 20:34:58 -040099#: e2fsck/unix.c:1434 misc/badblocks.c:1242 misc/badblocks.c:1250
100#: misc/badblocks.c:1264 misc/badblocks.c:1276 misc/dumpe2fs.c:604
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400101#: misc/e2image.c:1396 misc/e2image.c:1580 misc/e2image.c:1599
Theodore Ts'obd386982015-05-17 20:34:58 -0400102#: misc/mke2fs.c:227 misc/tune2fs.c:1955 misc/tune2fs.c:2044 resize/main.c:317
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500103#, c-format
104msgid "while trying to open %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400105msgstr "beim Versuch, %s zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500106
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400107#: e2fsck/badblocks.c:83
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500108#, c-format
109msgid "while trying popen '%s'"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400110msgstr "beim Versuch, „%s“ mittels „popen“ zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500111
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400112#: e2fsck/badblocks.c:94 misc/mke2fs.c:234
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500113msgid "while reading in list of bad blocks from file"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400114msgstr "beim Lesen der „Bad Block“-Liste aus der Datei"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500115
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400116#: e2fsck/badblocks.c:105
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500117msgid "while updating bad block inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400118msgstr "beim Updaten des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500119
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400120#: e2fsck/badblocks.c:133
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500121#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -0400122msgid "Warning: illegal block %u found in bad block inode. Cleared.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400123msgstr ""
124"Warnung: Nicht zulässiger Block %u im „Bad Blocks“-Inode gefunden! "
125"Bereinigt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500126
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400127#: e2fsck/ehandler.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500128#, c-format
129msgid "Error reading block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400130msgstr "Lesefehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500131
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400132#: e2fsck/ehandler.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500133#, c-format
134msgid "Error reading block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400135msgstr "Lesefehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500136
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400137#: e2fsck/ehandler.c:61 e2fsck/ehandler.c:110
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500138msgid "Ignore error"
Philipp Thomasab02a742014-07-09 23:13:30 -0400139msgstr "Fehler ignorieren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500140
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400141#: e2fsck/ehandler.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500142msgid "Force rewrite"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400143msgstr "Rückschreiben erzwingen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500144
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400145#: e2fsck/ehandler.c:104
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500146#, c-format
147msgid "Error writing block %lu (%s) while %s. "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400148msgstr "Schreibfehler - Block %lu (%s) während %s. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500149
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400150#: e2fsck/ehandler.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500151#, c-format
152msgid "Error writing block %lu (%s). "
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400153msgstr "Schreibfehler - Block %lu (%s). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500154
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400155#: e2fsck/emptydir.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500156msgid "empty dirblocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400157msgstr "leere Verzeichnisblöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500158
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400159#: e2fsck/emptydir.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500160msgid "empty dir map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500161msgstr "leere Verzeichnisliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500162
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400163#: e2fsck/emptydir.c:98
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500164#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400165msgid "Empty directory block %u (#%d) in inode %u\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500166msgstr "leerer Verzeichnisblock %u (#%d) im Inode %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500167
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400168#: e2fsck/extend.c:22
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500169#, c-format
170msgid "%s: %s filename nblocks blocksize\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400171msgstr "%s: %s Dateiname nblocks Blockgröße\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500172
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400173#: e2fsck/extend.c:44
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500174#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500175msgid "Illegal number of blocks!\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400176msgstr "Blockanzahl nicht zulässig!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500177
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400178#: e2fsck/extend.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500179#, c-format
180msgid "Couldn't allocate block buffer (size=%d)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500181msgstr "Es konnte kein Blockpuffer (Größe=%d) reserviert werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500182
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400183#: e2fsck/flushb.c:35
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500184#, c-format
185msgid "Usage: %s disk\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400186msgstr "Aufruf: %s Laufwerk\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500187
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400188#: e2fsck/flushb.c:64
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500189#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500190msgid "BLKFLSBUF ioctl not supported! Can't flush buffers.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400191msgstr "BLKFLSBUF ioctl nicht unterstützt! Puffer kann nicht geleert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500192
Eric Sandeen032eafe2012-07-28 17:48:36 -0400193#: e2fsck/iscan.c:44
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500194#, c-format
195msgid "Usage: %s [-F] [-I inode_buffer_blocks] device\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400196msgstr "Aufruf: %s [-F] [-I inode_buffer_blocks] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500197
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400198#: e2fsck/iscan.c:81 e2fsck/unix.c:972
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500199#, c-format
200msgid "while opening %s for flushing"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500201msgstr "beim Öffnen von %s für die Puffer-Leerung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500202
Theodore Ts'obd386982015-05-17 20:34:58 -0400203#: e2fsck/iscan.c:86 e2fsck/unix.c:978 resize/main.c:290
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500204#, c-format
205msgid "while trying to flush %s"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400206msgstr "während des Rückschreibeversuches auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500207
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400208#: e2fsck/iscan.c:110
Philipp Thomasb93349a2014-05-31 13:32:39 -0400209#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400210msgid "while trying to open '%s'"
211msgstr "beim Versuch, %s zu öffnen"
212
213#: e2fsck/iscan.c:119 e2fsck/scantest.c:114 misc/e2image.c:1290
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500214msgid "while opening inode scan"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500215msgstr "beim Start des Inode-Scans"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500216
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400217#: e2fsck/iscan.c:127 misc/e2image.c:1309
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500218msgid "while getting next inode"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400219msgstr "beim Laden des nächsten Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500220
Eric Sandeen032eafe2012-07-28 17:48:36 -0400221#: e2fsck/iscan.c:136
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500222#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400223msgid "%u inodes scanned.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400224msgstr "%u Inodes untersucht.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500225
Philipp Thomas37be3822015-05-17 20:21:39 -0400226#: e2fsck/journal.c:524
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500227msgid "reading journal superblock\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400228msgstr "Journal-Superblock wird gelesen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500229
Philipp Thomas37be3822015-05-17 20:21:39 -0400230#: e2fsck/journal.c:581
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500231#, c-format
232msgid "%s: no valid journal superblock found\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400233msgstr "%s: keinen gültigen Journal-Superblock gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500234
Philipp Thomas37be3822015-05-17 20:21:39 -0400235#: e2fsck/journal.c:590
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500236#, c-format
237msgid "%s: journal too short\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400238msgstr "%s: Das Journal ist zu kurz\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500239
Philipp Thomas37be3822015-05-17 20:21:39 -0400240#: e2fsck/journal.c:881
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500241#, c-format
242msgid "%s: recovering journal\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400243msgstr "%s: Journal wird wiederhergestellt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500244
Philipp Thomas37be3822015-05-17 20:21:39 -0400245#: e2fsck/journal.c:883
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500246#, c-format
247msgid "%s: won't do journal recovery while read-only\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500248msgstr "%s: Das Journal ist nur lesbar - Keine Wiederherstellung\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500249
Philipp Thomas37be3822015-05-17 20:21:39 -0400250#: e2fsck/journal.c:910
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500251#, c-format
252msgid "while trying to re-open %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400253msgstr "beim Versuch, %s erneut zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500254
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400255#: e2fsck/message.c:113
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500256msgid "aextended attribute"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500257msgstr "aerweiterte Attribute"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500258
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400259#: e2fsck/message.c:114
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500260msgid "Aerror allocating"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500261msgstr "AFehler beim Reservieren von Platz für"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500262
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400263#: e2fsck/message.c:115
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500264msgid "bblock"
265msgstr "bBlock"
266
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400267#: e2fsck/message.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500268msgid "Bbitmap"
269msgstr "BBitmap"
270
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400271#: e2fsck/message.c:117
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500272msgid "ccompress"
273msgstr "ckomprimieren"
274
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400275#: e2fsck/message.c:118
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500276msgid "Cconflicts with some other fs @b"
Philipp Thomasab02a742014-07-09 23:13:30 -0400277msgstr "CKonflikte mit einem anderen Dateisystemblock"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500278
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400279#: e2fsck/message.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500280msgid "ddirectory"
281msgstr "dVerzeichnis"
282
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400283#: e2fsck/message.c:120
284msgid "Ddeleted"
285msgstr "Dgelöscht"
286
287#: e2fsck/message.c:121
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500288msgid "eentry"
289msgstr "eEintrag"
290
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400291#: e2fsck/message.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500292msgid "E@e '%Dn' in %p (%i)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400293msgstr "E@e „%Dn“ in %p (%i)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500294
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400295#: e2fsck/message.c:123
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500296msgid "ffilesystem"
297msgstr "fDateisystem"
298
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400299#: e2fsck/message.c:124
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500300msgid "Ffor @i %i (%Q) is"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400301msgstr "Ffür @i %i (%Q) ist"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500302
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400303#: e2fsck/message.c:125
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500304msgid "ggroup"
305msgstr "gGruppe"
306
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400307#: e2fsck/message.c:126
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500308msgid "hHTREE @d @i"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500309msgstr "hHTREE @dinode"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500310
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400311#: e2fsck/message.c:127
312msgid "iinode"
313msgstr "iInode"
314
315#: e2fsck/message.c:128
316msgid "Iillegal"
317msgstr "Iillegal(er)"
318
319#: e2fsck/message.c:129
320msgid "jjournal"
321msgstr "jJournal"
322
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400323#: e2fsck/message.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500324msgid "llost+found"
325msgstr "llost+found"
326
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400327#: e2fsck/message.c:131
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500328msgid "Lis a link"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500329msgstr "List eine Verknüpfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500330
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400331#: e2fsck/message.c:132
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400332msgid "mmultiply-claimed"
Philipp Thomas9564ee52008-08-22 03:22:50 -0400333msgstr "mmehrfach beansprucht"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400334
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400335#: e2fsck/message.c:133
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400336msgid "ninvalid"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400337msgstr "nungültig"
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400338
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400339#: e2fsck/message.c:134
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500340msgid "oorphaned"
341msgstr "overwaist"
342
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400343#: e2fsck/message.c:135
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500344msgid "pproblem in"
345msgstr "pProblem in"
346
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400347#: e2fsck/message.c:136
348msgid "qquota"
349msgstr "qQuota"
350
351#: e2fsck/message.c:137
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500352msgid "rroot @i"
353msgstr "rRoot @i"
354
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400355#: e2fsck/message.c:138
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500356msgid "sshould be"
357msgstr "ssollte sein"
358
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400359#: e2fsck/message.c:139
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500360msgid "Ssuper@b"
361msgstr "SSuper@b"
362
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400363#: e2fsck/message.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500364msgid "uunattached"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500365msgstr "unicht verbunden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500366
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400367#: e2fsck/message.c:141
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500368msgid "vdevice"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400369msgstr "vGerät"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500370
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400371#: e2fsck/message.c:142
Philipp Thomas720e6362008-06-21 14:06:00 -0400372msgid "xextent"
Philipp Thomas68801282008-07-17 11:47:00 -0400373msgstr "xErweiterung"
Philipp Thomas720e6362008-06-21 14:06:00 -0400374
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400375#: e2fsck/message.c:143
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500376msgid "zzero-length"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500377msgstr "zmit Länge Null"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500378
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400379#: e2fsck/message.c:154
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500380msgid "<The NULL inode>"
Philipp Thomasab02a742014-07-09 23:13:30 -0400381msgstr "<Der NULL-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500382
Philipp Thomas77c871a2010-04-19 16:59:02 -0400383#: e2fsck/message.c:155
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400384msgid "<The bad blocks inode>"
385msgstr "<Der „Bad Blocks“-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500386
Philipp Thomas77c871a2010-04-19 16:59:02 -0400387#: e2fsck/message.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400388msgid "<The user quota inode>"
389msgstr "<Die Benutzerquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500390
Philipp Thomas77c871a2010-04-19 16:59:02 -0400391#: e2fsck/message.c:158
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400392msgid "<The group quota inode>"
393msgstr "<Die Gruppenquota-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500394
Philipp Thomas77c871a2010-04-19 16:59:02 -0400395#: e2fsck/message.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400396msgid "<The boot loader inode>"
Philipp Thomasab02a742014-07-09 23:13:30 -0400397msgstr "<Der „boot loader“-Inode>"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400398
399#: e2fsck/message.c:160
400msgid "<The undelete directory inode>"
401msgstr "<Der „undelete directory“-Inode>"
402
403#: e2fsck/message.c:161
404msgid "<The group descriptor inode>"
405msgstr "<Des „group descriptor“-Inode>"
406
407#: e2fsck/message.c:162
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500408msgid "<The journal inode>"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500409msgstr "<Der Journal-Inode>"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500410
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400411#: e2fsck/message.c:163
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500412msgid "<Reserved inode 9>"
413msgstr "<Der reservierte Inode 9>"
414
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400415#: e2fsck/message.c:164
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500416msgid "<Reserved inode 10>"
417msgstr "<Der reservierte Inode 10>"
418
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400419#: e2fsck/message.c:334
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400420msgid "regular file"
Philipp Thomasab02a742014-07-09 23:13:30 -0400421msgstr "reguläre Datei"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400422
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400423#: e2fsck/message.c:336
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400424msgid "directory"
Theodore Ts'o7527ef12007-12-05 19:35:20 -0500425msgstr "Verzeichnis"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400426
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400427#: e2fsck/message.c:338
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400428msgid "character device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400429msgstr "zeichenorientiertes Gerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400430
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400431#: e2fsck/message.c:340
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400432msgid "block device"
Philipp Thomasab02a742014-07-09 23:13:30 -0400433msgstr "blockorientiertes Gerät"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400434
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400435#: e2fsck/message.c:342
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400436msgid "named pipe"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400437msgstr "named pipe"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400438
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400439#: e2fsck/message.c:344
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400440msgid "symbolic link"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400441msgstr "symbolische Verknüpfung"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400442
Philipp Thomas37be3822015-05-17 20:21:39 -0400443#: e2fsck/message.c:346 misc/uuidd.c:162
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400444msgid "socket"
Philipp Thomasab02a742014-07-09 23:13:30 -0400445msgstr "Socket"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400446
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400447#: e2fsck/message.c:348
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400448#, c-format
449msgid "unknown file type with mode 0%o"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400450msgstr "unbekannter Dateityp mit Modus 0%o"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400451
Philipp Thomasedc733d2012-04-22 15:38:42 -0400452#: e2fsck/message.c:423
Philipp Thomas77c871a2010-04-19 16:59:02 -0400453msgid "indirect block"
454msgstr "indirekte Blöcke"
455
Philipp Thomasedc733d2012-04-22 15:38:42 -0400456#: e2fsck/message.c:425
Philipp Thomas77c871a2010-04-19 16:59:02 -0400457msgid "double indirect block"
458msgstr "doppelt indirekte Blöcke"
459
Philipp Thomasedc733d2012-04-22 15:38:42 -0400460#: e2fsck/message.c:427
Philipp Thomas77c871a2010-04-19 16:59:02 -0400461msgid "triple indirect block"
462msgstr "dreifach indirekte Blöcke"
463
Philipp Thomasedc733d2012-04-22 15:38:42 -0400464#: e2fsck/message.c:429
Philipp Thomas77c871a2010-04-19 16:59:02 -0400465msgid "translator block"
466msgstr "Übersetzerblock"
467
Philipp Thomasedc733d2012-04-22 15:38:42 -0400468#: e2fsck/message.c:431
Philipp Thomas77c871a2010-04-19 16:59:02 -0400469msgid "block #"
470msgstr "Block Nr."
471
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400472#: e2fsck/pass1b.c:222
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500473msgid "multiply claimed inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500474msgstr "mehrfach beanspruchte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500475
Philipp Thomas37be3822015-05-17 20:21:39 -0400476#: e2fsck/pass1b.c:625 e2fsck/pass1b.c:746
Philipp Thomas68801282008-07-17 11:47:00 -0400477#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400478msgid "internal error: can't find dup_blk for %llu\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500479msgstr "interner Fehler: dup_blk für %llu wurde nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500480
Philipp Thomas37be3822015-05-17 20:21:39 -0400481#: e2fsck/pass1b.c:852
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500482msgid "returned from clone_file_block"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400483msgstr "zurückgegeben von clone_file_block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500484
Philipp Thomas37be3822015-05-17 20:21:39 -0400485#: e2fsck/pass1b.c:874
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400486#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400487msgid "internal error: couldn't lookup EA block record for %llu"
Philipp Thomasab02a742014-07-09 23:13:30 -0400488msgstr "interner Fehler: EA-Blockliste für %llu wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400489
Philipp Thomas37be3822015-05-17 20:21:39 -0400490#: e2fsck/pass1b.c:886
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400491#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400492msgid "internal error: couldn't lookup EA inode record for %u"
Philipp Thomasab02a742014-07-09 23:13:30 -0400493msgstr "Interner Fehler: EA-Inodeliste für %u wurde nicht gefunden"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400494
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400495#: e2fsck/pass1.c:475 e2fsck/pass2.c:782
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400496msgid "reading directory block"
Philipp Thomasab02a742014-07-09 23:13:30 -0400497msgstr "Verzeichnisblock wird gelesen"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400498
Philipp Thomas37be3822015-05-17 20:21:39 -0400499#: e2fsck/pass1.c:634
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500500msgid "in-use inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400501msgstr "„in-use inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500502
Philipp Thomas37be3822015-05-17 20:21:39 -0400503#: e2fsck/pass1.c:645
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500504msgid "directory inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400505msgstr "„directory inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500506
Philipp Thomas37be3822015-05-17 20:21:39 -0400507#: e2fsck/pass1.c:655
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500508msgid "regular file inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400509msgstr "„regular file inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500510
Philipp Thomas37be3822015-05-17 20:21:39 -0400511#: e2fsck/pass1.c:664 misc/e2image.c:1265
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500512msgid "in-use block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400513msgstr "„in-use block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500514
Philipp Thomas37be3822015-05-17 20:21:39 -0400515#: e2fsck/pass1.c:730
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400516msgid "opening inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -0400517msgstr "Inode-Scan wird gestartet"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500518
Philipp Thomas37be3822015-05-17 20:21:39 -0400519#: e2fsck/pass1.c:764
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400520msgid "getting next inode from scan"
Philipp Thomas1e8757d2008-03-18 14:36:12 -0400521msgstr "beim Lesen des nächsten Inodes"
Theodore Ts'o851bcf32007-07-08 12:09:40 -0400522
Theodore Ts'obd386982015-05-17 20:34:58 -0400523#: e2fsck/pass1.c:1279
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500524msgid "Pass 1"
525msgstr "Durchgang 1"
526
Theodore Ts'obd386982015-05-17 20:34:58 -0400527#: e2fsck/pass1.c:1336
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500528#, c-format
529msgid "reading indirect blocks of inode %u"
Philipp Thomasab02a742014-07-09 23:13:30 -0400530msgstr "indirekte Blöcke von Inode %u werden gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500531
Theodore Ts'obd386982015-05-17 20:34:58 -0400532#: e2fsck/pass1.c:1386
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500533msgid "bad inode map"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500534msgstr "fehlerhafte Inode-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500535
Theodore Ts'obd386982015-05-17 20:34:58 -0400536#: e2fsck/pass1.c:1409
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500537msgid "inode in bad block map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400538msgstr "Inode in „Bad Blocks“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500539
Theodore Ts'obd386982015-05-17 20:34:58 -0400540#: e2fsck/pass1.c:1429
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500541msgid "imagic inode map"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400542msgstr "i„magic inode“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500543
Theodore Ts'obd386982015-05-17 20:34:58 -0400544#: e2fsck/pass1.c:1456
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500545msgid "multiply claimed block map"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500546msgstr "mehrfach referenzierte Blockliste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500547
Theodore Ts'obd386982015-05-17 20:34:58 -0400548#: e2fsck/pass1.c:1567
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500549msgid "ext attr block map"
550msgstr "ext attr block map"
551
Theodore Ts'obd386982015-05-17 20:34:58 -0400552#: e2fsck/pass1.c:2516
Philipp Thomas77c871a2010-04-19 16:59:02 -0400553#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500554msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -0400555msgstr "%6lu(%c): erwartete %6lu erhielt phys %6lu (Blockanzahl %lld)\n"
Philipp Thomas40771272008-09-07 22:55:25 -0400556
Theodore Ts'obd386982015-05-17 20:34:58 -0400557#: e2fsck/pass1.c:2898
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500558msgid "block bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500559msgstr "Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500560
Theodore Ts'obd386982015-05-17 20:34:58 -0400561#: e2fsck/pass1.c:2904
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500562msgid "inode bitmap"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500563msgstr "Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500564
Theodore Ts'obd386982015-05-17 20:34:58 -0400565#: e2fsck/pass1.c:2910
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500566msgid "inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500567msgstr "Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500568
Philipp Thomasedc733d2012-04-22 15:38:42 -0400569#: e2fsck/pass2.c:283
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500570msgid "Pass 2"
Theodore Ts'oddc32a02003-05-03 18:45:55 -0400571msgstr "Durchgang 2"
Theodore Ts'o0c897a92002-11-09 12:01:18 -0500572
Theodore Ts'obd386982015-05-17 20:34:58 -0400573#: e2fsck/pass2.c:806
Philipp Thomas720e6362008-06-21 14:06:00 -0400574msgid "Can not continue."
Philipp Thomasab02a742014-07-09 23:13:30 -0400575msgstr "Das Programm kann nicht fortfahren."
Philipp Thomas720e6362008-06-21 14:06:00 -0400576
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400577#: e2fsck/pass3.c:77
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500578msgid "inode done bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400579msgstr "„inode done“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500580
Philipp Thomasedc733d2012-04-22 15:38:42 -0400581#: e2fsck/pass3.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500582msgid "Peak memory"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500583msgstr "Peak-Memory"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500584
Philipp Thomas37be3822015-05-17 20:21:39 -0400585#: e2fsck/pass3.c:148
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500586msgid "Pass 3"
587msgstr "Durchgang 3"
588
Philipp Thomas37be3822015-05-17 20:21:39 -0400589#: e2fsck/pass3.c:340
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500590msgid "inode loop detection bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400591msgstr "„inode loop detection“-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500592
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400593#: e2fsck/pass4.c:196
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500594msgid "Pass 4"
595msgstr "Durchgang 4"
596
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400597#: e2fsck/pass5.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500598msgid "Pass 5"
599msgstr "Durchgang 5"
600
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400601#: e2fsck/problem.c:51
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500602msgid "(no prompt)"
603msgstr "(nicht interaktiv)"
604
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400605#: e2fsck/problem.c:52
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500606msgid "Fix"
Philipp Thomasab02a742014-07-09 23:13:30 -0400607msgstr "Reparieren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500608
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400609#: e2fsck/problem.c:53
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500610msgid "Clear"
Philipp Thomasab02a742014-07-09 23:13:30 -0400611msgstr "Bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500612
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400613#: e2fsck/problem.c:54
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500614msgid "Relocate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400615msgstr "Zurücksetzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500616
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400617#: e2fsck/problem.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500618msgid "Allocate"
Philipp Thomasab02a742014-07-09 23:13:30 -0400619msgstr "Freigeben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500620
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400621#: e2fsck/problem.c:56
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500622msgid "Expand"
Philipp Thomasab02a742014-07-09 23:13:30 -0400623msgstr "Erweitern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500624
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400625#: e2fsck/problem.c:57
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500626msgid "Connect to /lost+found"
Philipp Thomasab02a742014-07-09 23:13:30 -0400627msgstr "Nach /lost+found verbinden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500628
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400629#: e2fsck/problem.c:58
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500630msgid "Create"
Philipp Thomasab02a742014-07-09 23:13:30 -0400631msgstr "Erstellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500632
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400633#: e2fsck/problem.c:59
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500634msgid "Salvage"
Philipp Thomasab02a742014-07-09 23:13:30 -0400635msgstr "Retten"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500636
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400637#: e2fsck/problem.c:60
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500638msgid "Truncate"
Philipp Thomasab02a742014-07-09 23:13:30 -0400639msgstr "Verkürzen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500640
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400641#: e2fsck/problem.c:61
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500642msgid "Clear inode"
Philipp Thomasab02a742014-07-09 23:13:30 -0400643msgstr "Inode bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500644
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400645#: e2fsck/problem.c:62
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500646msgid "Abort"
647msgstr "Abbrechen"
648
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400649#: e2fsck/problem.c:63
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500650msgid "Split"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500651msgstr "Aufteilen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500652
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400653#: e2fsck/problem.c:64
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500654msgid "Continue"
655msgstr "Fortsetzen"
656
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400657#: e2fsck/problem.c:65
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400658msgid "Clone multiply-claimed blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400659msgstr "Mehrfach referenzierte Blöcke werden geklont"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500660
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400661#: e2fsck/problem.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500662msgid "Delete file"
Philipp Thomasab02a742014-07-09 23:13:30 -0400663msgstr "Datei löschen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500664
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400665#: e2fsck/problem.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500666msgid "Suppress messages"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400667msgstr "Ausgaben unterdrücken"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500668
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400669#: e2fsck/problem.c:68
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500670msgid "Unlink"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500671msgstr "Trennen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500672
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400673#: e2fsck/problem.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500674msgid "Clear HTree index"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400675msgstr "Der HTree-Index wird bereinigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500676
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400677#: e2fsck/problem.c:70
Theodore Ts'obc759702005-05-09 20:40:55 -0400678msgid "Recreate"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400679msgstr "Zurücksetzen"
Theodore Ts'obc759702005-05-09 20:40:55 -0400680
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400681#: e2fsck/problem.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500682msgid "(NONE)"
683msgstr "(NICHTS)"
684
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400685#: e2fsck/problem.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500686msgid "FIXED"
687msgstr "REPARIERT"
688
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400689#: e2fsck/problem.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500690msgid "CLEARED"
691msgstr "BEREINIGT"
692
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400693#: e2fsck/problem.c:82
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500694msgid "RELOCATED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400695msgstr "ZURÜCKGESETZT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500696
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400697#: e2fsck/problem.c:83
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500698msgid "ALLOCATED"
699msgstr "FREIGEGEBEN"
700
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400701#: e2fsck/problem.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500702msgid "EXPANDED"
703msgstr "ERWEITERT"
704
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400705#: e2fsck/problem.c:85
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500706msgid "RECONNECTED"
707msgstr "WIEDER VERBUNDEN"
708
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400709#: e2fsck/problem.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500710msgid "CREATED"
711msgstr "ANGELEGT"
712
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400713#: e2fsck/problem.c:87
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500714msgid "SALVAGED"
715msgstr "GERETTET"
716
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400717#: e2fsck/problem.c:88
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500718msgid "TRUNCATED"
Philipp Thomasab02a742014-07-09 23:13:30 -0400719msgstr "ABGESCHNITTEN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500720
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400721#: e2fsck/problem.c:89
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500722msgid "INODE CLEARED"
723msgstr "INODE BEREINIGT"
724
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400725#: e2fsck/problem.c:90
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500726msgid "ABORTED"
727msgstr "ABGEBROCHEN"
728
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400729#: e2fsck/problem.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500730msgid "SPLIT"
Philipp Thomasab02a742014-07-09 23:13:30 -0400731msgstr "ABGESPALTEN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500732
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400733#: e2fsck/problem.c:92
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500734msgid "CONTINUING"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400735msgstr "ES WIRD FORTGEFAHREN"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500736
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400737#: e2fsck/problem.c:93
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400738msgid "MULTIPLY-CLAIMED BLOCKS CLONED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400739msgstr "MEHRFACH REFERENZIERTE BLÖCKE WURDEN GEKLONT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500740
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400741#: e2fsck/problem.c:94
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500742msgid "FILE DELETED"
Philipp Thomas9bf41072014-07-05 23:18:04 -0400743msgstr "DATEI WURDE GELÖSCHT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500744
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400745#: e2fsck/problem.c:95
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500746msgid "SUPPRESSED"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400747msgstr "UNTERDRÜCKT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500748
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400749#: e2fsck/problem.c:96
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500750msgid "UNLINKED"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500751msgstr "GETRENNT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500752
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400753#: e2fsck/problem.c:97
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500754msgid "HTREE INDEX CLEARED"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500755msgstr "HTREE-INDEX BEREINIGT"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500756
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400757#: e2fsck/problem.c:98
Theodore Ts'obc759702005-05-09 20:40:55 -0400758msgid "WILL RECREATE"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500759msgstr "WIRD WIEDER AUFGEBAUT"
Theodore Ts'obc759702005-05-09 20:40:55 -0400760
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400761#. @-expanded: block bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400762#: e2fsck/problem.c:107
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500763msgid "@b @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400764msgstr "Block-Bitmap für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500765
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400766#. @-expanded: inode bitmap for group %g is not in group. (block %b)\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400767#: e2fsck/problem.c:111
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500768msgid "@i @B for @g %g is not in @g. (@b %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400769msgstr "Inode-Bitmap für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500770
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400771#. @-expanded: inode table for group %g is not in group. (block %b)\n
772#. @-expanded: WARNING: SEVERE DATA LOSS POSSIBLE.\n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400773#: e2fsck/problem.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500774msgid ""
775"@i table for @g %g is not in @g. (@b %b)\n"
776"WARNING: SEVERE DATA LOSS POSSIBLE.\n"
777msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400778"Inode-Tabelle für Gruppe %g ist nicht in der Gruppe. (Block %b)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400779"WARNUNG: GROSSER DATENVERLUST IST MÖGLICH.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500780
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400781#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400782#. @-expanded: The superblock could not be read or does not describe a valid ext2/ext3/ext4\n
783#. @-expanded: filesystem. If the device is valid and it really contains an ext2/ext3/ext4\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400784#. @-expanded: filesystem (and not swap or ufs or something else), then the superblock\n
785#. @-expanded: is corrupt, and you might try running e2fsck with an alternate superblock:\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400786#. @-expanded: e2fsck -b 8193 <device>\n
787#. @-expanded: or\n
788#. @-expanded: e2fsck -b 32768 <device>\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400789#. @-expanded: \n
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400790#: e2fsck/problem.c:122
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500791msgid ""
792"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400793"The @S could not be read or does not describe a valid ext2/ext3/ext4\n"
794"@f. If the @v is valid and it really contains an ext2/ext3/ext4\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500795"@f (and not swap or ufs or something else), then the @S\n"
796"is corrupt, and you might try running e2fsck with an alternate @S:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400797" e2fsck -b 8193 <@v>\n"
798" or\n"
799" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500800"\n"
801msgstr ""
802"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400803"Der Superblock ist unlesbar bzw. beschreibt kein gültiges ext2/ext3/ext4-\n"
804"Dateisystem. Wenn das Gerät gültig ist und ein ext2/ext3/ext4-\n"
805"Dateisystem (kein swap oder ufs usw.) enthält, dann ist der Superblock\n"
806"beschädigt, und Sie könnten versuchen, e2fsck mit einem anderen Superblock\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -0400807"zu starten:\n"
808" e2fsck -b 8193 <@v>\n"
809" oder\n"
810" e2fsck -b 32768 <@v>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500811"\n"
812
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400813#. @-expanded: The filesystem size (according to the superblock) is %b blocks\n
814#. @-expanded: The physical size of the device is %c blocks\n
815#. @-expanded: Either the superblock or the partition table is likely to be corrupt!\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400816#: e2fsck/problem.c:133
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500817msgid ""
818"The @f size (according to the @S) is %b @bs\n"
819"The physical size of the @v is %c @bs\n"
820"Either the @S or the partition table is likely to be corrupt!\n"
821msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400822"Die Größe des Dateisystems (laut Superblock) ist %b Blöcke.\n"
823"Die physikalische Größe des Gerätes ist %c Blöcke.\n"
824"Entweder ist der Superblock oder die Partionstabelle beschädigt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500825
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400826#. @-expanded: superblock block_size = %b, fragsize = %c.\n
827#. @-expanded: This version of e2fsck does not support fragment sizes different\n
828#. @-expanded: from the block size.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400829#: e2fsck/problem.c:140
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500830msgid ""
831"@S @b_size = %b, fragsize = %c.\n"
832"This version of e2fsck does not support fragment sizes different\n"
833"from the @b size.\n"
834msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500835"@S-@b_size = %b, fragsize = %c.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400836"Diese Version von e2fsck unterstützt keine von Blockgrößen verschiedene "
837"Fragmentgrößen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500838
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400839#. @-expanded: superblock blocks_per_group = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400840#: e2fsck/problem.c:147
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500841msgid "@S @bs_per_group = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500842msgstr "@bs_per_group im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500843
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400844#. @-expanded: superblock first_data_block = %b, should have been %c\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400845#: e2fsck/problem.c:152
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500846msgid "@S first_data_@b = %b, should have been %c\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500847msgstr "first_data_@b im @S = %b, sollte %c sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500848
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400849#. @-expanded: filesystem did not have a UUID; generating one.\n
850#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400851#: e2fsck/problem.c:157
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500852msgid ""
853"@f did not have a UUID; generating one.\n"
854"\n"
855msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400856"Das Dateisystem hat keine UUID; es wird eine generiert.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500857"\n"
858
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400859#: e2fsck/problem.c:162
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400860#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500861msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400862"Note: if several inode or block bitmap blocks or part\n"
863"of the inode table require relocation, you may wish to try\n"
864"running e2fsck with the '-b %S' option first. The problem\n"
865"may lie only with the primary block group descriptors, and\n"
866"the backup block group descriptors may be OK.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500867"\n"
868msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400869"Hinweis: Wenn mehrere Inodes oder Bitmap-Blöcke\n"
870"neu geordnet werden müssen, oder ein Teil der Inode-Tabelle\n"
871"verschoben werden muss, könnte es helfen, e2fsck erst einmal\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -0400872"mit der Option „-b %S“ zu starten. Das Problem könnte\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500873"im primären Blockgruppenbezeichner liegen und seine\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -0500874"Sicherungskopie in Ordnung sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500875"\n"
876
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400877#. @-expanded: Corruption found in superblock. (%s = %N).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400878#: e2fsck/problem.c:171
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500879msgid "Corruption found in @S. (%s = %N).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400880msgstr "Beschädigung gefunden im Superblock. (%s = %N).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500881
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400882#. @-expanded: Error determining size of the physical device: %m\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400883#: e2fsck/problem.c:176
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500884#, c-format
885msgid "Error determining size of the physical @v: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400886msgstr "Fehler bei der Feststellung der Größe des physischen Gerät: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500887
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400888#. @-expanded: inode count in superblock is %i, should be %j.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400889#: e2fsck/problem.c:181
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400890msgid "@i count in @S is %i, @s %j.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -0400891msgstr "@i-Anzahl in @S ist %i, sollte %j sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500892
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400893#: e2fsck/problem.c:185
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500894msgid "The Hurd does not support the filetype feature.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500895msgstr "Hurd unterstützt keine Dateitypen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500896
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500897#. @-expanded: superblock has an invalid journal (inode %i).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400898#: e2fsck/problem.c:190
Philipp Thomas77c871a2010-04-19 16:59:02 -0400899#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500900msgid "@S has an @n @j (@i %i).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400901msgstr "Der Superblock hat ein defektes Journal (Inode %i).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500902
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400903#. @-expanded: External journal has multiple filesystem users (unsupported).\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400904#: e2fsck/problem.c:195
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500905msgid "External @j has multiple @f users (unsupported).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400906msgstr ""
907"Externes Journal hat mehrere Dateisystem-Benutzer (nicht unterstützt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500908
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400909#. @-expanded: Can't find external journal\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400910#: e2fsck/problem.c:200
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500911msgid "Can't find external @j\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400912msgstr "Externes Journal kann nicht gefunden werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500913
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400914#. @-expanded: External journal has bad superblock\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400915#: e2fsck/problem.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500916msgid "External @j has bad @S\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400917msgstr "Externes Journal hat einen ungültigen Superblock\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500918
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400919#. @-expanded: External journal does not support this filesystem\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400920#: e2fsck/problem.c:210
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500921msgid "External @j does not support this @f\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400922msgstr "Externes Journal unterstützt dieses Dateisystem nicht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500923
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500924#. @-expanded: filesystem journal superblock is unknown type %N (unsupported).\n
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400925#. @-expanded: It is likely that your copy of e2fsck is old and/or doesn't support this journal
926#. @-expanded: format.\n
927#. @-expanded: It is also possible the journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400928#: e2fsck/problem.c:215
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500929msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500930"@f @j @S is unknown type %N (unsupported).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -0400931"It is likely that your copy of e2fsck is old and/or doesn't support this @j "
932"format.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500933"It is also possible the @j @S is corrupt.\n"
934msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -0400935"Der Superblock des Dateisystem-Journals hat den unbekannten Typ %N (nicht "
936"unterstützt).\n"
937"Es ist möglich, dass Ihr e2fsck älter ist und/oder dieses Journal-Format "
938"nicht unterstützt.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400939"Es ist ebenso möglich, dass der Joornal-Superblock defekt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500940
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500941#. @-expanded: journal superblock is corrupt.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400942#: e2fsck/problem.c:223
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500943msgid "@j @S is corrupt.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400944msgstr "Der Journal-Superblock ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500945
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400946#. @-expanded: superblock has_journal flag is clear, but a journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400947#: e2fsck/problem.c:228
Theodore Ts'ocd75fb02014-07-05 23:44:28 -0400948msgid "@S has_@j flag is clear, but a @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500949msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400950"Der Bitschalter has_journal im Superblock ist nicht gesetzt, aber ein\n"
951"Journal %s ist vorhanden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500952
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500953#. @-expanded: superblock needs_recovery flag is set, but no journal is present.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400954#: e2fsck/problem.c:233
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500955msgid "@S needs_recovery flag is set, but no @j is present.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500956msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -0400957"Im Superblock ist der Bitschalter „needs_recovery“ gesetzt, aber ein "
958"Journal\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400959"ist nicht vorhanden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500960
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500961#. @-expanded: superblock needs_recovery flag is clear, but journal has data.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400962#: e2fsck/problem.c:238
Theodore Ts'o945ffb92009-01-26 20:43:10 -0500963msgid "@S needs_recovery flag is clear, but @j has data.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -0500964msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -0400965"Der Bitschalter „needs_recovery“ im Superblock ist nicht gesetzt, aber das\n"
966"Journal enthält Daten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500967
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400968#. @-expanded: Clear journal
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400969#: e2fsck/problem.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500970msgid "Clear @j"
Philipp Thomasab02a742014-07-09 23:13:30 -0400971msgstr "Journal bereinigen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500972
Philipp Thomas77c871a2010-04-19 16:59:02 -0400973#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
Philipp Thomas37be3822015-05-17 20:21:39 -0400974#: e2fsck/problem.c:248 e2fsck/problem.c:707
Philipp Thomas77c871a2010-04-19 16:59:02 -0400975msgid "@f has feature flag(s) set, but is a revision 0 @f. "
Philipp Thomasab02a742014-07-09 23:13:30 -0400976msgstr ""
977"Das Dateisystem hat Eigenschafts-Bitschalter gesetzt, ist aber ein\n"
978"Revision-0-Dateisystem. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500979
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400980#. @-expanded: %s orphaned inode %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400981#: e2fsck/problem.c:253
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500982msgid "%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400983msgstr "%s verwaister Inode (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500984
Philipp Thomas77c871a2010-04-19 16:59:02 -0400985#. @-expanded: illegal %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400986#: e2fsck/problem.c:258
Philipp Thomas77c871a2010-04-19 16:59:02 -0400987msgid "@I %B (%b) found in @o @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400988msgstr "Unzulässiges %B (%b) in verwaisten Inode %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500989
Philipp Thomas77c871a2010-04-19 16:59:02 -0400990#. @-expanded: Already cleared %B (%b) found in orphaned inode %i.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400991#: e2fsck/problem.c:263
Philipp Thomas77c871a2010-04-19 16:59:02 -0400992msgid "Already cleared %B (%b) found in @o @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400993msgstr "Bereits bereinigter %B (%b) im verwaisten Inode %i gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500994
Theodore Ts'o7ae19832005-06-19 09:45:36 -0400995#. @-expanded: illegal orphaned inode %i in superblock.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -0400996#: e2fsck/problem.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -0500997#, c-format
998msgid "@I @o @i %i in @S.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -0400999msgstr "Unzulässiger verwaister Inode %i im Superblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001000
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001001#. @-expanded: illegal inode %i in orphaned inode list.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001002#: e2fsck/problem.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001003#, c-format
1004msgid "@I @i %i in @o @i list.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001005msgstr "Unzulässiger Inode %i in der Liste der verwaisten Inodes.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001006
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001007#. @-expanded: journal superblock has an unknown read-only feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001008#: e2fsck/problem.c:278
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001009msgid "@j @S has an unknown read-only feature flag set.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001010msgstr ""
1011"Der Journal-Superblock hat einen unbekannten Nur-Lesen-Bitschalter gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001012
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001013#. @-expanded: journal superblock has an unknown incompatible feature flag set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001014#: e2fsck/problem.c:283
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001015msgid "@j @S has an unknown incompatible feature flag set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001016msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001017"Im Journal-Superblock ist ein unbekannter Bitschalter für eine\n"
1018"inkompatible Eigenschaft gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001019
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001020#. @-expanded: journal version not supported by this e2fsck.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001021#: e2fsck/problem.c:288
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001022msgid "@j version not supported by this e2fsck.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001023msgstr "Diese Journal-Version wird von diesem e2fsck nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001024
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001025#. @-expanded: Moving journal from /%s to hidden inode.\n
1026#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001027#: e2fsck/problem.c:293
Theodore Ts'o7527ef12007-12-05 19:35:20 -05001028#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001029msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001030"Moving @j from /%s to hidden @i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001031"\n"
1032msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001033"Journal wird von /%s zum versteckten Inode verschoben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001034"\n"
1035
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001036#. @-expanded: Error moving journal: %m\n
1037#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001038#: e2fsck/problem.c:298
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001039#, c-format
1040msgid ""
1041"Error moving @j: %m\n"
1042"\n"
1043msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001044"Fehler beim Verschieben des Journals: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001045"\n"
1046
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001047#. @-expanded: Found invalid V2 journal superblock fields (from V1 journal).\n
1048#. @-expanded: Clearing fields beyond the V1 journal superblock...\n
1049#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001050#: e2fsck/problem.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001051msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001052"Found @n V2 @j @S fields (from V1 @j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001053"Clearing fields beyond the V1 @j @S...\n"
1054"\n"
1055msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001056"Unvollständige V2-Journal-Superblock-Felder (vom V1-Journal) gefunden.\n"
1057"Die Felder nach dem V1-Journal-Superblock werden bereinigt...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001058"\n"
1059
Philipp Thomas77c871a2010-04-19 16:59:02 -04001060#. @-expanded: Run journal anyway
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001061#: e2fsck/problem.c:309
Philipp Thomas77c871a2010-04-19 16:59:02 -04001062msgid "Run @j anyway"
Philipp Thomasab02a742014-07-09 23:13:30 -04001063msgstr "Journal trotzdem starten"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001064
1065#. @-expanded: Recovery flag not set in backup superblock, so running journal anyway.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001066#: e2fsck/problem.c:314
Philipp Thomas77c871a2010-04-19 16:59:02 -04001067msgid "Recovery flag not set in backup @S, so running @j anyway.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001068msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001069"Der Bitschalter für Wiederherstellung ist im Sicherungs-Superblock nicht\n"
1070"gesetzt, das Journal wird daher trotzdem gestartet.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001071
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001072#. @-expanded: Backing up journal inode block information.\n
1073#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001074#: e2fsck/problem.c:319
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001075msgid ""
1076"Backing up @j @i @b information.\n"
1077"\n"
1078msgstr ""
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001079"Die Informationen des Journal-Inodeblocks werden gesichert.\n"
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001080"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001081
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001082#. @-expanded: filesystem does not have resize_inode enabled, but s_reserved_gdt_blocks\n
1083#. @-expanded: is %N; should be zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001084#: e2fsck/problem.c:324
Theodore Ts'obc759702005-05-09 20:40:55 -04001085msgid ""
1086"@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
1087"is %N; @s zero. "
1088msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001089"Für @f ist resize_@i nicht eingeschaltet, aber s_reserved_gdt_@bs\n"
1090"ist %N; @s Null. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001091
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001092#. @-expanded: Resize_inode not enabled, but the resize inode is non-zero.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001093#: e2fsck/problem.c:330
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001094msgid "Resize_@i not enabled, but the resize @i is non-zero. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001095msgstr ""
1096"Resize_@i ist nicht aktiviert, aber der zu modifizierende Inode ist nicht-"
1097"Null."
Theodore Ts'obc759702005-05-09 20:40:55 -04001098
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001099#. @-expanded: Resize inode not valid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001100#: e2fsck/problem.c:335
Theodore Ts'obc759702005-05-09 20:40:55 -04001101msgid "Resize @i not valid. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001102msgstr "Resize-Inode ist ungültig. "
Theodore Ts'obc759702005-05-09 20:40:55 -04001103
Philipp Thomas77c871a2010-04-19 16:59:02 -04001104#. @-expanded: superblock last mount time (%t,\n
1105#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001106#: e2fsck/problem.c:340
Philipp Thomas77c871a2010-04-19 16:59:02 -04001107msgid ""
1108"@S last mount time (%t,\n"
1109"\tnow = %T) is in the future.\n"
1110msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001111"Der Zeitpunkt des letzten Einhängens des Superblocks (%t,\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001112"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001113
Philipp Thomas77c871a2010-04-19 16:59:02 -04001114#. @-expanded: superblock last write time (%t,\n
1115#. @-expanded: \tnow = %T) is in the future.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001116#: e2fsck/problem.c:345
Philipp Thomas77c871a2010-04-19 16:59:02 -04001117msgid ""
1118"@S last write time (%t,\n"
1119"\tnow = %T) is in the future.\n"
1120msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001121"Der Zeitpunkt des letzten Schreibens des Superblocks (%t,\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001122"\tjetzt = %T) liegt in der Zukunft.\n"
Theodore Ts'o6956f612005-12-31 16:46:15 -05001123
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001124#. @-expanded: superblock hint for external superblock should be %X.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001125#: e2fsck/problem.c:349
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001126#, c-format
1127msgid "@S hint for external superblock @s %X. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001128msgstr "Superblock-Hinweis für externen Superblock sollte %X sein. "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05001129
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001130#. @-expanded: Adding dirhash hint to filesystem.\n
1131#. @-expanded: \n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001132#: e2fsck/problem.c:354
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001133msgid ""
1134"Adding dirhash hint to @f.\n"
1135"\n"
1136msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001137"Verzeichnishash-Hinweis wird zum Dateisystem hinzugefügt.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001138"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001139
Philipp Thomasedc733d2012-04-22 15:38:42 -04001140#. @-expanded: group descriptor %g checksum is %04x, should be %04y.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001141#: e2fsck/problem.c:359
Philipp Thomasedc733d2012-04-22 15:38:42 -04001142msgid "@g descriptor %g checksum is %04x, should be %04y. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001143msgstr ""
1144"Die Prüfsumme des Gruppendeskriptors %g ist %04x, sie sollte %04y sein. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001145
1146#. @-expanded: group descriptor %g marked uninitialized without feature set.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001147#: e2fsck/problem.c:364
Philipp Thomas720e6362008-06-21 14:06:00 -04001148#, c-format
1149msgid "@g descriptor %g marked uninitialized without feature set.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001150msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001151"Gruppendeskriptor %g ist ohne eine gesetzte Eigenschaft.\n"
1152"als nicht initialisiert gekennzeichnet.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001153
Philipp Thomas720e6362008-06-21 14:06:00 -04001154#. @-expanded: group descriptor %g has invalid unused inodes count %b.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001155#: e2fsck/problem.c:369
Philipp Thomas720e6362008-06-21 14:06:00 -04001156msgid "@g descriptor %g has invalid unused inodes count %b. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001157msgstr ""
1158"Gruppendeskriptor %g hat eine ungültige Anzahl ungenutzter Inodes von %b. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001159
1160#. @-expanded: Last group block bitmap uninitialized.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001161#: e2fsck/problem.c:374
Philipp Thomas720e6362008-06-21 14:06:00 -04001162msgid "Last @g @b @B uninitialized. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001163msgstr "Die letzte Gruppen-Blockbitmap ist nicht initialisiert. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001164
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001165#: e2fsck/problem.c:379
Philipp Thomas720e6362008-06-21 14:06:00 -04001166#, c-format
1167msgid "Journal transaction %i was corrupt, replay was aborted.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001168msgstr ""
1169"Journaltransaktion %i war beschädigt, die Wiederholung wurde abgebrochen.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001170
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001171#: e2fsck/problem.c:383
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001172msgid "The test_fs flag is set (and ext4 is available). "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001173msgstr "Die Kennung test_fs wurde gesetzt (und ext4 ist verfügbar). "
1174
1175#. @-expanded: superblock last mount time is in the future.\n
1176#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1177#. @-expanded: set)
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001178#: e2fsck/problem.c:388
Philipp Thomas77c871a2010-04-19 16:59:02 -04001179msgid ""
1180"@S last mount time is in the future.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001181"\t(by less than a day, probably due to the hardware clock being incorrectly "
1182"set) "
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001183msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001184"Der Zeitpunkt des letzten Einhängens des Superblocks liegt in der Zukunft.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001185"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-"
1186"Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001187
1188#. @-expanded: superblock last write time is in the future.\n
1189#. @-expanded: \t(by less than a day, probably due to the hardware clock being incorrectly
1190#. @-expanded: set).
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001191#: e2fsck/problem.c:394
Philipp Thomas77c871a2010-04-19 16:59:02 -04001192msgid ""
1193"@S last write time is in the future.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001194"\t(by less than a day, probably due to the hardware clock being incorrectly "
1195"set). "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001196msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001197"Der Zeitpunkt des letzten Schreibens des Superblocks liegt in der Zukunft.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001198"\t(weniger als ein Tag, wahrscheinlich aufgrund falsch gesetzter Hardware-"
1199"Uhr) "
Philipp Thomas77c871a2010-04-19 16:59:02 -04001200
1201#. @-expanded: One or more block group descriptor checksums are invalid.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001202#: e2fsck/problem.c:400
Philipp Thomas77c871a2010-04-19 16:59:02 -04001203msgid "One or more @b @g descriptor checksums are invalid. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001204msgstr "Die Prüfsumme eines oder mehrerer Gruppendeskriptoren ist ungültig. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001205
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001206#. @-expanded: Setting free inodes count to %j (was %i)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001207#: e2fsck/problem.c:405
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001208msgid "Setting free @is count to %j (was %i)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001209msgstr "Die Anzahl der freien Inodes wird auf %j gesetzt (war %i)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001210
1211#. @-expanded: Setting free blocks count to %c (was %b)\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001212#: e2fsck/problem.c:410
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001213msgid "Setting free @bs count to %c (was %b)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001214msgstr "Die Anzahl der freien Blöcke wird auf %c gesetzt (war %b)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001215
Eric Sandeen032eafe2012-07-28 17:48:36 -04001216#. @-expanded: Making quota inode %i (%Q) hidden.\n
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001217#: e2fsck/problem.c:415
Eric Sandeen032eafe2012-07-28 17:48:36 -04001218msgid "Making @q @i %i (%Q) hidden.\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05001219msgstr "Quota-Inode %i (%Q) wird versteckt.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001220
1221#. @-expanded: superblock has invalid MMP block.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001222#: e2fsck/problem.c:420
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001223msgid "@S has invalid MMP block. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001224msgstr "Der Superblock hat einen ungültigen MMP-Block. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001225
1226#. @-expanded: superblock has invalid MMP magic.
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001227#: e2fsck/problem.c:425
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001228msgid "@S has invalid MMP magic. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001229msgstr "Der Superblock besitzt eine falsche MMP-Kennung. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001230
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001231#: e2fsck/problem.c:430
Philipp Thomasedc733d2012-04-22 15:38:42 -04001232#, c-format
1233msgid "ext2fs_open2: %m\n"
1234msgstr "ext2fs_open2: %m\n"
1235
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001236#: e2fsck/problem.c:435
Philipp Thomasedc733d2012-04-22 15:38:42 -04001237#, c-format
1238msgid "ext2fs_check_desc: %m\n"
1239msgstr "ext2fs_check_desc: %m\n"
1240
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001241#. @-expanded: superblock 64bit filesystems needs extents to access the whole disk.
Philipp Thomasedc733d2012-04-22 15:38:42 -04001242#: e2fsck/problem.c:440
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001243msgid "@S 64bit filesystems needs extents to access the whole disk. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001244msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001245"Superblock-64Bit-Dateisysteme brauchen Erweiterungen, um auf die gesamte\n"
1246"Platte zugreifen zu können. "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001247
Philipp Thomas37be3822015-05-17 20:21:39 -04001248#: e2fsck/problem.c:445
1249msgid "First_meta_bg is too big. (%N, max value %g). "
1250msgstr "First_meta_bg ist zu groß. (%N, max. Wert %g). "
1251
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001252#. @-expanded: Pass 1: Checking inodes, blocks, and sizes\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001253#: e2fsck/problem.c:452
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001254msgid "Pass 1: Checking @is, @bs, and sizes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001255msgstr "Durchgang 1: Inodes, Blöcke und Größen werden geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001256
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001257#. @-expanded: root inode is not a directory.
Philipp Thomas37be3822015-05-17 20:21:39 -04001258#: e2fsck/problem.c:456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001259msgid "@r is not a @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001260msgstr "Root-Inode ist kein Verzeichnis. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001261
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001262#. @-expanded: root inode has dtime set (probably due to old mke2fs).
Philipp Thomas37be3822015-05-17 20:21:39 -04001263#: e2fsck/problem.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001264msgid "@r has dtime set (probably due to old mke2fs). "
Theodore Ts'obd386982015-05-17 20:34:58 -04001265msgstr ""
1266"Für Root-Inode ist dtime gesetzt (vielleicht durch ein zu altes mke2fs). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001267
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001268#. @-expanded: Reserved inode %i (%Q) has invalid mode.
Philipp Thomas37be3822015-05-17 20:21:39 -04001269#: e2fsck/problem.c:466
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001270msgid "Reserved @i %i (%Q) has @n mode. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001271msgstr "Reservierter Inode %i (%Q) hat einen ungültigen Modus. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001272
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001273#. @-expanded: deleted inode %i has zero dtime.
Philipp Thomas37be3822015-05-17 20:21:39 -04001274#: e2fsck/problem.c:471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001275#, c-format
1276msgid "@D @i %i has zero dtime. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001277msgstr "dtime für gelöschten Inode %i ist Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001278
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001279#. @-expanded: inode %i is in use, but has dtime set.
Philipp Thomas37be3822015-05-17 20:21:39 -04001280#: e2fsck/problem.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001281#, c-format
1282msgid "@i %i is in use, but has dtime set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001283msgstr "Inode %i ist in Benutzung, aber hat dtime gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001284
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001285#. @-expanded: inode %i is a zero-length directory.
Philipp Thomas37be3822015-05-17 20:21:39 -04001286#: e2fsck/problem.c:481
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001287#, c-format
1288msgid "@i %i is a @z @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001289msgstr "Inode %i ist ein Verzeichnis mit Länge Null. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001290
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001291#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001292#: e2fsck/problem.c:486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001293msgid "@g %g's @b @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001294msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001295"Die Blockbitmap der Gruppe %g auf %b überschneidet sich mit\n"
1296"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001297
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001298#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001299#: e2fsck/problem.c:491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001300msgid "@g %g's @i @B at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001301msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001302"Die Inode-Bitmap der Gruppe %g bei %b überschneidet sich mit\n"
1303"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001304
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001305#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001306#: e2fsck/problem.c:496
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001307msgid "@g %g's @i table at %b @C.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001308msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001309"Die Inode-Tabelle der Gruppe %g bei %b überschneidet sich mit\n"
1310"einem anderen Dateisystemblock.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001311
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001312#. @-expanded: group %g's block bitmap (%b) is bad.
Philipp Thomas37be3822015-05-17 20:21:39 -04001313#: e2fsck/problem.c:501
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001314msgid "@g %g's @b @B (%b) is bad. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001315msgstr "die @b-@B (%b) von @g %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001316
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001317#. @-expanded: group %g's inode bitmap (%b) is bad.
Philipp Thomas37be3822015-05-17 20:21:39 -04001318#: e2fsck/problem.c:506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001319msgid "@g %g's @i @B (%b) is bad. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001320msgstr "Die Inode-Bitmap (%b) der Gruppe %g ist ungültig. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001321
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001322#. @-expanded: inode %i, i_size is %Is, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04001323#: e2fsck/problem.c:511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001324msgid "@i %i, i_size is %Is, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001325msgstr "Inode %i, i_size ist %Is, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001326
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001327#. @-expanded: inode %i, i_blocks is %Ib, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04001328#: e2fsck/problem.c:516
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001329msgid "@i %i, i_@bs is %Ib, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001330msgstr "Inode %i, i_@bs ist %Ib, sollte %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001331
Philipp Thomas77c871a2010-04-19 16:59:02 -04001332#. @-expanded: illegal %B (%b) in inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04001333#: e2fsck/problem.c:521
Philipp Thomas77c871a2010-04-19 16:59:02 -04001334msgid "@I %B (%b) in @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001335msgstr "Unzulässiger %B (%b) in Inode %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001336
Philipp Thomas77c871a2010-04-19 16:59:02 -04001337#. @-expanded: %B (%b) overlaps filesystem metadata in inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04001338#: e2fsck/problem.c:526
Philipp Thomas77c871a2010-04-19 16:59:02 -04001339msgid "%B (%b) overlaps @f metadata in @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001340msgstr "%B (%b) überlappt Dateisystem-Metadaten in @i %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001341
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001342#. @-expanded: inode %i has illegal block(s).
Philipp Thomas37be3822015-05-17 20:21:39 -04001343#: e2fsck/problem.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001344#, c-format
1345msgid "@i %i has illegal @b(s). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001346msgstr "Inode %i hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001347
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001348#. @-expanded: Too many illegal blocks in inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001349#: e2fsck/problem.c:536
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001350#, c-format
1351msgid "Too many illegal @bs in @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001352msgstr "Zu viele unzulässige Blöcke in @i %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001353
Philipp Thomas77c871a2010-04-19 16:59:02 -04001354#. @-expanded: illegal %B (%b) in bad block inode.
Philipp Thomas37be3822015-05-17 20:21:39 -04001355#: e2fsck/problem.c:541
Philipp Thomas77c871a2010-04-19 16:59:02 -04001356msgid "@I %B (%b) in bad @b @i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001357msgstr "Ungültiger %B (%b) in „bad block“-Inode. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001358
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001359#. @-expanded: Bad block inode has illegal block(s).
Philipp Thomas37be3822015-05-17 20:21:39 -04001360#: e2fsck/problem.c:546
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001361msgid "Bad @b @i has illegal @b(s). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001362msgstr "„Bad Block“-Inode hat unzulässige(n) Block/Blöcke. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001363
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001364#. @-expanded: Duplicate or bad block in use!\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001365#: e2fsck/problem.c:551
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001366msgid "Duplicate or bad @b in use!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001367msgstr "Doppelter oder unzulässiger Block in Gebrauch!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001368
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001369#. @-expanded: Bad block %b used as bad block inode indirect block.
Philipp Thomas37be3822015-05-17 20:21:39 -04001370#: e2fsck/problem.c:556
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001371msgid "Bad @b %b used as bad @b @i indirect @b. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001372msgstr ""
1373"Ungültiger Block %b wird benutzt als indirekter Block des „Bad Block“-"
1374"Inodes. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001375
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001376#. @-expanded: \n
1377#. @-expanded: The bad block inode has probably been corrupted. You probably\n
1378#. @-expanded: should stop now and run e2fsck -c to scan for bad blocks\n
1379#. @-expanded: in the filesystem.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001380#: e2fsck/problem.c:561
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001381msgid ""
1382"\n"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001383"The bad @b @i has probably been corrupted. You probably\n"
1384"should stop now and run e2fsck -c to scan for bad blocks\n"
1385"in the @f.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001386msgstr ""
Theodore Ts'of9e6df42004-05-04 16:19:13 -04001387"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001388"Der „Bad Block“-Inode ist wahrscheinlich beschädigt worden. Sie sollten\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001389"nun innehalten und „e2fsck -c“ ausführen, um nach defekten Blöcken in\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001390"dem Dateisystem zu suchen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001391
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001392#. @-expanded: \n
1393#. @-expanded: If the block is really bad, the filesystem can not be fixed.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001394#: e2fsck/problem.c:568
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001395msgid ""
1396"\n"
1397"If the @b is really bad, the @f can not be fixed.\n"
1398msgstr ""
1399"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001400"Wenn der Block wirklich defekt ist, kann das Dateisystem nicht repariert "
1401"werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001402
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001403#. @-expanded: You can remove this block from the bad block list and hope\n
1404#. @-expanded: that the block is really OK. But there are no guarantees.\n
1405#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04001406#: e2fsck/problem.c:573
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001407msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001408"You can remove this @b from the bad @b list and hope\n"
1409"that the @b is really OK. But there are no guarantees.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001410"\n"
1411msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001412"Sie können diesen Block aus der Liste der defekten Blöcke löschen\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001413"und hoffen, das dieser wirklich in Ordnung ist, es gibt aber\n"
1414"KEINE GARANTIEN.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001415"\n"
1416
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001417#. @-expanded: The primary superblock (%b) is on the bad block list.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001418#: e2fsck/problem.c:579
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001419msgid "The primary @S (%b) is on the bad @b list.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001420msgstr "Der primäre Superblock (%b) ist in der Liste der defekten Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001421
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001422#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001423#: e2fsck/problem.c:584
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001424msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001425msgstr ""
1426"Block %b im primären Gruppendeskriptor ist in der Liste der defekten Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001427
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001428#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001429#: e2fsck/problem.c:590
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001430msgid "Warning: Group %g's @S (%b) is bad.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001431msgstr "Warnung: der Superblock der Gruppe %g (%b) ist defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001432
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001433#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001434#: e2fsck/problem.c:595
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001435msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001436msgstr ""
1437"Warnung: die Kopie des Gruppendeskriptors von Gruppe %g hat einen defekten "
1438"Block (%b).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001439
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001440#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001441#: e2fsck/problem.c:601
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001442msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001443msgstr ""
1444"Programmierfehler? Block #%b wird ohne Grund in process_bad_@b verlangt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001445
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001446#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001447#: e2fsck/problem.c:607
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001448msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001449msgstr ""
1450"Fehler beim Zuweisen von %N zusammenhängenende(m/n) Block/Blöcken in der @b-"
1451"@g %g für %s: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001452
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001453#. @-expanded: error allocating block buffer for relocating %s\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001454#: e2fsck/problem.c:612
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001455#, c-format
1456msgid "@A @b buffer for relocating %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001457msgstr "Fehler beim Zuweisen eines Blockpuffers zum Verschieben von %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001458
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001459#. @-expanded: Relocating group %g's %s from %b to %c...\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001460#: e2fsck/problem.c:617
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001461msgid "Relocating @g %g's %s from %b to %c...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001462msgstr "Gruppe %g's %s wird von %b nach %c verschoben ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001463
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001464#. @-expanded: Relocating group %g's %s to %c...\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001465#: e2fsck/problem.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001466#, c-format
1467msgid "Relocating @g %g's %s to %c...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001468msgstr "Gruppe %g's %s wird nach %c verschoben ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001469
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001470#. @-expanded: Warning: could not read block %b of %s: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001471#: e2fsck/problem.c:627
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001472msgid "Warning: could not read @b %b of %s: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001473msgstr "Warnung: Block %b von %s konnte nicht gelesen werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001474
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001475#. @-expanded: Warning: could not write block %b for %s: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001476#: e2fsck/problem.c:632
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001477msgid "Warning: could not write @b %b for %s: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001478msgstr "Warnung: Block %b von %s konnte nicht geschrieben werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001479
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001480#. @-expanded: error allocating inode bitmap (%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001481#: e2fsck/problem.c:637 e2fsck/problem.c:1501
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001482msgid "@A @i @B (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001483msgstr "Fehler beim Zuweisen der Inode-Bitmap (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001484
1485#. @-expanded: error allocating block bitmap (%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001486#: e2fsck/problem.c:642
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001487msgid "@A @b @B (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001488msgstr "Fehler beim Zuweisen der Block-Bitmap (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001489
1490#. @-expanded: error allocating icount link information: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001491#: e2fsck/problem.c:647
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001492#, c-format
1493msgid "@A icount link information: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001494msgstr "Fehler beim Zuweisen der „icount link information“: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001495
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001496#. @-expanded: error allocating directory block array: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001497#: e2fsck/problem.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001498#, c-format
1499msgid "@A @d @b array: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001500msgstr "Fehler beim Zuweisen des Verzeichnis-Block-Feldes: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001501
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001502#. @-expanded: Error while scanning inodes (%i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001503#: e2fsck/problem.c:657
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001504#, c-format
1505msgid "Error while scanning @is (%i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001506msgstr "Fehler während des Durchsuchens der Inodes (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001507
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001508#. @-expanded: Error while iterating over blocks in inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001509#: e2fsck/problem.c:662
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001510#, c-format
1511msgid "Error while iterating over @bs in @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001512msgstr "Fehler beim Iterieren über die Blöcke in Inode %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001513
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001514#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001515#: e2fsck/problem.c:667
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001516msgid "Error storing @i count information (@i=%i, count=%N): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001517msgstr ""
1518"Fehler beim Speichern der Informationen zur Inode-Anzahl (Inode=%i, Anzahl="
1519"%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001520
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001521#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001522#: e2fsck/problem.c:672
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001523msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001524msgstr ""
1525"Fehler beim Speichern der Verzeichnis-Block-Informationen (Inode=%i, Block="
1526"%b, Anzahl=%N): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001527
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001528#. @-expanded: Error reading inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001529#: e2fsck/problem.c:678
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001530#, c-format
1531msgid "Error reading @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001532msgstr "Fehler beim Lesen des Inodes %i: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001533
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001534#. @-expanded: inode %i has imagic flag set.
Philipp Thomas37be3822015-05-17 20:21:39 -04001535#: e2fsck/problem.c:686
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001536#, c-format
1537msgid "@i %i has imagic flag set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001538msgstr "Inode %i hat den Imagic-Bitschalter gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001539
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001540#. @-expanded: Special (device/socket/fifo/symlink) file (inode %i) has immutable\n
1541#. @-expanded: or append-only flag set.
Philipp Thomas37be3822015-05-17 20:21:39 -04001542#: e2fsck/problem.c:691
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001543#, c-format
1544msgid ""
1545"Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
1546"or append-only flag set. "
1547msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04001548"Spezielle Geräte-/Socket-/Fifo-/Symlink-Datei (Inode %i) hat den Bitschalter "
1549"für\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001550"unveränderbar oder Nur-Anhängen gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001551
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001552#. @-expanded: inode %i has compression flag set on filesystem without compression support.
Philipp Thomas37be3822015-05-17 20:21:39 -04001553#: e2fsck/problem.c:697
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001554#, c-format
1555msgid "@i %i has @cion flag set on @f without @cion support. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001556msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001557"Inode %i hat den Kompressions-Bitschalter auf einem Dateisystem gesetzt,\n"
1558"welches dies nicht unterstützt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001559
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001560#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
Philipp Thomas37be3822015-05-17 20:21:39 -04001561#: e2fsck/problem.c:702
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001562#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001563msgid "Special (@v/socket/fifo) @i %i has non-zero size. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001564msgstr "Spezieller Geräte-/Socket-/Fifo-Inode %i hat die Größe Null. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001565
1566#. @-expanded: journal inode is not in use, but contains data.
Philipp Thomas37be3822015-05-17 20:21:39 -04001567#: e2fsck/problem.c:712
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001568msgid "@j @i is not in use, but contains data. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001569msgstr "Inode %i wird nicht verwendet, aber enthält Daten. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001570
1571#. @-expanded: journal is not regular file.
Philipp Thomas37be3822015-05-17 20:21:39 -04001572#: e2fsck/problem.c:717
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001573msgid "@j is not regular file. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001574msgstr "Journal ist keine reguläre Datei. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001575
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001576#. @-expanded: inode %i was part of the orphaned inode list.
Philipp Thomas37be3822015-05-17 20:21:39 -04001577#: e2fsck/problem.c:722
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001578#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001579msgid "@i %i was part of the @o @i list. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001580msgstr "Inode %i war Teil der Liste verwaister Inodes. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001581
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001582#. @-expanded: inodes that were part of a corrupted orphan linked list found.
Philipp Thomas37be3822015-05-17 20:21:39 -04001583#: e2fsck/problem.c:728
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001584msgid "@is that were part of a corrupted orphan linked list found. "
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001585msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001586"Inodes wurden gefunden, die Teil einer defekten verketteten Liste von\n"
1587"verwaisten Inodes waren. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001588
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001589#. @-expanded: error allocating refcount structure (%N): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001590#: e2fsck/problem.c:733
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001591msgid "@A refcount structure (%N): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001592msgstr "Fehler beim Zuweisen der refcount-Struktur (%N): %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001593
1594#. @-expanded: Error reading extended attribute block %b for inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04001595#: e2fsck/problem.c:738
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001596msgid "Error reading @a @b %b for @i %i. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001597msgstr ""
1598"Fehler beim Lesen des Blocks für erweiterte Attribute %b für Inode %i. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001599
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001600#. @-expanded: inode %i has a bad extended attribute block %b.
Philipp Thomas37be3822015-05-17 20:21:39 -04001601#: e2fsck/problem.c:743
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001602msgid "@i %i has a bad @a @b %b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001603msgstr "Inode %i hat einen defekten Erweiterte-Attribute-Block %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001604
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001605#. @-expanded: Error reading extended attribute block %b (%m).
Philipp Thomas37be3822015-05-17 20:21:39 -04001606#: e2fsck/problem.c:748
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001607msgid "Error reading @a @b %b (%m). "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001608msgstr "Fehler beim Lesen des Blocks für erweiterte Attribute (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001609
Philipp Thomas77c871a2010-04-19 16:59:02 -04001610#. @-expanded: extended attribute block %b has reference count %r, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04001611#: e2fsck/problem.c:753
Philipp Thomas77c871a2010-04-19 16:59:02 -04001612msgid "@a @b %b has reference count %r, @s %N. "
Theodore Ts'obd386982015-05-17 20:34:58 -04001613msgstr ""
1614"Der Referenzzähler des Blocks für erweiterte Attribute %b ist %r, richtig "
1615"wäre %N. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001616
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001617#. @-expanded: Error writing extended attribute block %b (%m).
Philipp Thomas37be3822015-05-17 20:21:39 -04001618#: e2fsck/problem.c:758
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001619msgid "Error writing @a @b %b (%m). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001620msgstr "Fehler beim Schreiben des Blocks für erweiterte Attribute %b (%m). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001621
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001622#. @-expanded: extended attribute block %b has h_blocks > 1.
Philipp Thomas37be3822015-05-17 20:21:39 -04001623#: e2fsck/problem.c:763
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001624msgid "@a @b %b has h_@bs > 1. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001625msgstr "Der Block für erweiterte Attribute %b hat h_blocks > 1. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001626
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001627#. @-expanded: error allocating extended attribute block %b.
Philipp Thomas37be3822015-05-17 20:21:39 -04001628#: e2fsck/problem.c:768
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001629msgid "@A @a @b %b. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001630msgstr "Fehler beim Zuweisen des Blocks für erweiterte Attribute %b. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001631
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001632#. @-expanded: extended attribute block %b is corrupt (allocation collision).
Philipp Thomas37be3822015-05-17 20:21:39 -04001633#: e2fsck/problem.c:773
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001634msgid "@a @b %b is corrupt (allocation collision). "
Theodore Ts'obd386982015-05-17 20:34:58 -04001635msgstr ""
1636"Der Block für erweiterte Attribute %b ist defekt (Kollision der "
1637"Platzanforderungen). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001638
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001639#. @-expanded: extended attribute block %b is corrupt (invalid name).
Philipp Thomas37be3822015-05-17 20:21:39 -04001640#: e2fsck/problem.c:778
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001641msgid "@a @b %b is corrupt (@n name). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001642msgstr "Der Block für erweiterte Attribute %b ist defekt (ungültiger Name). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001643
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001644#. @-expanded: extended attribute block %b is corrupt (invalid value).
Philipp Thomas37be3822015-05-17 20:21:39 -04001645#: e2fsck/problem.c:783
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001646msgid "@a @b %b is corrupt (@n value). "
Philipp Thomasab02a742014-07-09 23:13:30 -04001647msgstr "Der Block für erweiterte Attribute %b ist defekt (ungültiger Wert). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001648
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001649#. @-expanded: inode %i is too big.
Philipp Thomas37be3822015-05-17 20:21:39 -04001650#: e2fsck/problem.c:788
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001651#, c-format
1652msgid "@i %i is too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001653msgstr "Inode %i ist zu groß. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001654
Philipp Thomas77c871a2010-04-19 16:59:02 -04001655#. @-expanded: %B (%b) causes directory to be too big.
Philipp Thomas37be3822015-05-17 20:21:39 -04001656#: e2fsck/problem.c:792
Philipp Thomas77c871a2010-04-19 16:59:02 -04001657msgid "%B (%b) causes @d to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001658msgstr "%B (%b) macht das Verzeichnis zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001659
Philipp Thomas37be3822015-05-17 20:21:39 -04001660#: e2fsck/problem.c:797
Philipp Thomas77c871a2010-04-19 16:59:02 -04001661msgid "%B (%b) causes file to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001662msgstr "Block #%B (%b) macht die Datei zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001663
Philipp Thomas37be3822015-05-17 20:21:39 -04001664#: e2fsck/problem.c:802
Philipp Thomas77c871a2010-04-19 16:59:02 -04001665msgid "%B (%b) causes symlink to be too big. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001666msgstr "Block #%B (%b) macht den Symlink zu groß. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001667
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001668#. @-expanded: inode %i has INDEX_FL flag set on filesystem without htree support.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001669#: e2fsck/problem.c:807
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001670#, c-format
1671msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001672msgstr ""
1673"Inode %i hat INDEX_FL Flag auf einem Dateisystem ohne HTREE-Unterstützung "
1674"gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001675
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001676#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001677#: e2fsck/problem.c:812
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001678#, c-format
1679msgid "@i %i has INDEX_FL flag set but is not a @d.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001680msgstr ""
1681"Inode %i hat den INDEX_FL-Bitschalter gesetzt, ist aber kein Verzeichnis.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001682
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001683#. @-expanded: HTREE directory inode %i has an invalid root node.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001684#: e2fsck/problem.c:817
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001685#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001686msgid "@h %i has an @n root node.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001687msgstr ""
1688"HTREE-Verzeichnis-Inode %i hat einen unvollständigen Wurzelknoten („root "
1689"node“).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001690
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001691#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001692#: e2fsck/problem.c:822
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001693msgid "@h %i has an unsupported hash version (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001694msgstr ""
1695"HTREE-Verzeichnis-Inode %i hat eine nicht unterstützte Hash-Version (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001696
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001697#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001698#: e2fsck/problem.c:827
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001699#, c-format
1700msgid "@h %i uses an incompatible htree root node flag.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001701msgstr ""
1702"@h %i benutzt einen nicht unterstützten Bitschalter für einen Htree-"
1703"Wurzelknoten.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001704
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001705#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001706#: e2fsck/problem.c:832
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001707msgid "@h %i has a tree depth (%N) which is too big\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001708msgstr "@h %i hat eine zu große Verzeichnistiefe von (%N)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001709
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001710#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
1711#. @-expanded: filesystem metadata.
Philipp Thomas37be3822015-05-17 20:21:39 -04001712#: e2fsck/problem.c:837
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001713msgid ""
1714"Bad @b @i has an indirect @b (%b) that conflicts with\n"
1715"@f metadata. "
1716msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001717"Der Inode für defekte Blöcke hat einen indirekten Block (%b), der mit\n"
1718"den Dateisystem-Metadaten in Konflikt steht. "
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05001719
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001720#. @-expanded: Resize inode (re)creation failed: %m.
Philipp Thomas37be3822015-05-17 20:21:39 -04001721#: e2fsck/problem.c:843
Theodore Ts'obc759702005-05-09 20:40:55 -04001722#, c-format
1723msgid "Resize @i (re)creation failed: %m."
Philipp Thomasab02a742014-07-09 23:13:30 -04001724msgstr "Erzeugung des Vergrößerungs-Inodes scheiterte: %m."
Theodore Ts'obc759702005-05-09 20:40:55 -04001725
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001726#. @-expanded: inode %i has a extra size (%IS) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001727#: e2fsck/problem.c:848
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001728msgid "@i %i has a extra size (%IS) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001729msgstr "Inode %i hat eine ungültige Extragröße (%IS)\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001730
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001731#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001732#: e2fsck/problem.c:853
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001733msgid "@a in @i %i has a namelen (%N) which is @n\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001734msgstr ""
1735"Ein erweitertes Attribut in Inode %i hat eine ungültige „namelen“ von %N.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001736
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001737#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001738#: e2fsck/problem.c:858
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001739msgid "@a in @i %i has a value offset (%N) which is @n\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001740msgstr ""
1741"Ein erweitertes Attribut in Inode %i hat einen ungültigen Werteversatz von "
1742"%N.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001743
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001744#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001745#: e2fsck/problem.c:863
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001746msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001747msgstr ""
1748"Ein erweitertes Attribut in Inode %i hat einen ungültigen Werteblock von %N "
1749"(muss 0 sein).\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04001750
Philipp Thomas77c871a2010-04-19 16:59:02 -04001751#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001752#: e2fsck/problem.c:868
Philipp Thomas77c871a2010-04-19 16:59:02 -04001753msgid "@a in @i %i has a value size (%N) which is @n\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001754msgstr ""
1755"Ein erweitertes Attribut in Inode %i hat eine ungültige Wertegröße von %N.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001756
Philipp Thomas720e6362008-06-21 14:06:00 -04001757#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001758#: e2fsck/problem.c:873
Philipp Thomas720e6362008-06-21 14:06:00 -04001759msgid "@a in @i %i has a hash (%N) which is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001760msgstr "Ein erweitertes Attribut in Inode %i hat den ungültigen Hash %N.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001761
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001762#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001763#: e2fsck/problem.c:878
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001764msgid "@i %i is a %It but it looks like it is really a directory.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001765msgstr ""
1766"Inode %i ist ein %It, aber es sieht so aus, als ob es tatsächlich ein "
1767"Verzeichnis ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001768
Philipp Thomas40771272008-09-07 22:55:25 -04001769#. @-expanded: Error while reading over extent tree in inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001770#: e2fsck/problem.c:883
Philipp Thomas68801282008-07-17 11:47:00 -04001771#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001772msgid "Error while reading over @x tree in @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001773msgstr "Fehler beim Iterieren über den Extent-Baum @x in Inode %i: %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001774
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001775#. @-expanded: Failed to iterate extents in inode %i\n
1776#. @-expanded: \t(op %s, blk %b, lblk %c): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001777#: e2fsck/problem.c:888
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001778msgid ""
1779"Failed to iterate extents in @i %i\n"
1780"\t(op %s, blk %b, lblk %c): %m\n"
1781msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001782"Das Iterieren der Erweiterungen (Extents) in Inode %i scheiterte\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001783"\t(op %s, blk %b, lblk %c): %m\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001784
1785#. @-expanded: inode %i has an invalid extent\n
1786#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001787#: e2fsck/problem.c:894
Philipp Thomas720e6362008-06-21 14:06:00 -04001788msgid ""
1789"@i %i has an @n extent\n"
1790"\t(logical @b %c, @n physical @b %b, len %N)\n"
1791msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001792"Inode %i hat eine @ne Erweiterung\n"
1793"\t(logischer Block %c, @n physischer Block %b, Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001794
1795#. @-expanded: inode %i has an invalid extent\n
1796#. @-expanded: \t(logical block %c, physical block %b, invalid len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001797#: e2fsck/problem.c:899
Philipp Thomas720e6362008-06-21 14:06:00 -04001798msgid ""
1799"@i %i has an @n extent\n"
1800"\t(logical @b %c, physical @b %b, @n len %N)\n"
1801msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001802"Inode %i hat eine ungültige Erweiterung\n"
1803"\t(logischer Block %c, physischer Block %b, unzulässige Länge %N)\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001804
1805#. @-expanded: inode %i has EXTENTS_FL flag set on filesystem without extents support.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001806#: e2fsck/problem.c:904
Philipp Thomas720e6362008-06-21 14:06:00 -04001807#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001808msgid "@i %i has EXTENTS_FL flag set on @f without extents support.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04001809msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001810"Inode %i hat den EXTENTS_FL-Bitschalter gesetzt, obwohl das Dateisystem\n"
1811"Erweiterungen nicht unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001812
1813#. @-expanded: inode %i is in extent format, but superblock is missing EXTENTS feature\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001814#: e2fsck/problem.c:909
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001815#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04001816msgid "@i %i is in extent format, but @S is missing EXTENTS feature\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001817msgstr ""
1818"Inode %i besitzt das Erweiterungsformat, aber dem Superblock fehlt die "
1819"Eigenschaft EXTENTS\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001820
1821#. @-expanded: inode %i missing EXTENT_FL, but is in extents format\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001822#: e2fsck/problem.c:914
Philipp Thomas720e6362008-06-21 14:06:00 -04001823#, c-format
1824msgid "@i %i missing EXTENT_FL, but is in extents format\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001825msgstr ""
1826"Dem Inode %i fehlt EXTENT_FL, er hat aber das Format einer Erweiterung\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04001827
Philipp Thomas37be3822015-05-17 20:21:39 -04001828#: e2fsck/problem.c:919
Philipp Thomas720e6362008-06-21 14:06:00 -04001829#, c-format
1830msgid "Fast symlink %i has EXTENT_FL set. "
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001831msgstr "In schnellem Symlink %i ist EXTENT_FL gesetzt. "
Philipp Thomas720e6362008-06-21 14:06:00 -04001832
1833#. @-expanded: inode %i has out of order extents\n
1834#. @-expanded: \t(invalid logical block %c, physical block %b, len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001835#: e2fsck/problem.c:924
Philipp Thomas720e6362008-06-21 14:06:00 -04001836msgid ""
1837"@i %i has out of order extents\n"
1838"\t(@n logical @b %c, physical @b %b, len %N)\n"
1839msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001840"Inode %i hat unregelmäßige Erweiterungen\n"
1841"\t(ungültiger logischer Block %c, physischer Block %b, Länge %N)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04001842
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001843#. @-expanded: inode %i has an invalid extent node (blk %b, lblk %c)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001844#: e2fsck/problem.c:928
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001845msgid "@i %i has an invalid extent node (blk %b, lblk %c)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001846msgstr "Inode %i hat einen ungültigen Erweiterungs-Knoten (blk %b, lblk %c)\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05001847
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001848#. @-expanded: Error converting subcluster block bitmap: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001849#: e2fsck/problem.c:933
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001850#, c-format
1851msgid "Error converting subcluster @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001852msgstr "Fehler beim Umwandeln der Subcluster-Blockbitmap: %m\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001853
1854#. @-expanded: quota inode is not regular file.
Philipp Thomas37be3822015-05-17 20:21:39 -04001855#: e2fsck/problem.c:938
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001856msgid "@q @i is not regular file. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001857msgstr "Der Quota-Inode ist keine reguläre Datei. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001858
1859#. @-expanded: quota inode is not in use, but contains data.
Philipp Thomas37be3822015-05-17 20:21:39 -04001860#: e2fsck/problem.c:943
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001861msgid "@q @i is not in use, but contains data. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001862msgstr "Quota-Inode wird nicht benutzt, enthält aber Daten. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001863
1864#. @-expanded: quota inode is visible to the user.
Philipp Thomas37be3822015-05-17 20:21:39 -04001865#: e2fsck/problem.c:948
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001866msgid "@q @i is visible to the user. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001867msgstr "Der Quota-Inode ist sichtbar für den Benutzer. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001868
1869#. @-expanded: The bad block inode looks invalid.
Philipp Thomas37be3822015-05-17 20:21:39 -04001870#: e2fsck/problem.c:953
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001871msgid "The bad @b @i looks @n. "
Philipp Thomasab02a742014-07-09 23:13:30 -04001872msgstr "Der Inode für defekte Blöcke sieht ungültig aus. "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04001873
Philipp Thomasedc733d2012-04-22 15:38:42 -04001874#. @-expanded: inode %i has zero length extent\n
1875#. @-expanded: \t(invalid logical block %c, physical block %b)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001876#: e2fsck/problem.c:958
Philipp Thomasedc733d2012-04-22 15:38:42 -04001877msgid ""
1878"@i %i has zero length extent\n"
1879"\t(@n logical @b %c, physical @b %b)\n"
1880msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001881"Inode %i hat eine Erweitertung der Länge Null\n"
1882"\t(ungültiger logischer Block %c, physischer Block %b)\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04001883
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001884#. @-expanded: Interior extent node level %N of inode %i:\n
1885#. @-expanded: Logical start %b does not match logical start %c at next level.
Philipp Thomas37be3822015-05-17 20:21:39 -04001886#: e2fsck/problem.c:965
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001887msgid ""
1888"Interior @x node level %N of @i %i:\n"
1889"Logical start %b does not match logical start %c at next level. "
1890msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001891"Ebene %N des internen Erweiterungsknotens von Inode %i:\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001892"Der logische Start %b passt nicht zum logischen Start %c auf der nächsten "
1893"Ebene."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001894
1895#. @-expanded: inode %i, end of extent exceeds allowed value\n
1896#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001897#: e2fsck/problem.c:971
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001898msgid ""
1899"@i %i, end of extent exceeds allowed value\n"
1900"\t(logical @b %c, physical @b %b, len %N)\n"
1901msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001902"Inode %i, das Ende der Erweiterung ist außerhalb des gültigen Bereichs\n"
1903"\t(logischer Block %c, physischer Block %b, Länge %N)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04001904
Philipp Thomas37be3822015-05-17 20:21:39 -04001905#. @-expanded: directory inode %i block %b should be at block %c.
1906#: e2fsck/problem.c:977
1907msgid "@d @i %i @b %b should be at @b %c. "
1908msgstr "Verzeichnisinode %i Block %b sollte in Block %c sein. "
1909
1910#. @-expanded: directory inode %i has extent marked uninitialized at block %c.
1911#: e2fsck/problem.c:982
1912#, c-format
1913msgid "@d @i %i has @x marked uninitialized at @b %c. "
1914msgstr ""
1915"Verzeichnis-Inode %i hat eine Erweiterung, die als nicht initialisiert\n"
1916"gekennzeichnet ist in Block %c. "
1917
1918#. @-expanded: inode %i logical block %b (physical block %c) violates cluster allocation rules.\n
1919#. @-expanded: Will fix in pass 1B.\n
1920#: e2fsck/problem.c:987
1921msgid ""
1922"@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\n"
1923"Will fix in pass 1B.\n"
1924msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04001925"Die Inode %i, logischer Block %b (physischer Block %c) verletzt die Regeln "
1926"zur\b Anforderung von Cluster-Speicher.\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04001927"Dies wird in Durchgang 1B repariert.\n"
1928
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001929#. @-expanded: \n
1930#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
1931#. @-expanded: Pass 1B: Rescanning for multiply-claimed blocks\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001932#: e2fsck/problem.c:994
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001933msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001934"\n"
1935"Running additional passes to resolve @bs claimed by more than one @i...\n"
1936"Pass 1B: Rescanning for @m @bs\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001937msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001938"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001939"Zusätzliche Läufe werden durchgeführt, um die von mehr als einem Inode\n"
1940"beanspruchten Blöcke zu klären ...\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05001941"Durchgang 1B: Suche nach mehrfach beanspruchten Blöcken\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001942
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001943#. @-expanded: multiply-claimed block(s) in inode %i:
Philipp Thomas37be3822015-05-17 20:21:39 -04001944#: e2fsck/problem.c:1000
Philipp Thomas1e8757d2008-03-18 14:36:12 -04001945#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001946msgid "@m @b(s) in @i %i:"
Philipp Thomasab02a742014-07-09 23:13:30 -04001947msgstr "Mehrfach beanspruchte(r) Block/Blöcke in Inode %i:"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001948
Philipp Thomas37be3822015-05-17 20:21:39 -04001949#: e2fsck/problem.c:1015
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001950#, c-format
1951msgid "Error while scanning inodes (%i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001952msgstr "Fehler beim Prüfen der Inodes (%i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001953
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001954#. @-expanded: error allocating inode bitmap (inode_dup_map): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001955#: e2fsck/problem.c:1020
Philipp Thomasba71e3e2008-03-13 18:21:09 -04001956#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001957msgid "@A @i @B (@i_dup_map): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001958msgstr "Fehler beim Zuweisen der Inode-Bitmap (inode_dup_map): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001959
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001960#. @-expanded: Error while iterating over blocks in inode %i (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001961#: e2fsck/problem.c:1025
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001962#, c-format
1963msgid "Error while iterating over @bs in @i %i (%s): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001964msgstr "Fehler beim Iterieren über die Blöcke in Inode %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001965
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001966#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001967#: e2fsck/problem.c:1030 e2fsck/problem.c:1345
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001968msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001969msgstr ""
1970"Fehler bei der Anpassung des Referenzzählers des Blocks für erweiterte "
1971"Attribute %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001972
Theodore Ts'o6956f612005-12-31 16:46:15 -05001973#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001974#: e2fsck/problem.c:1035
Theodore Ts'o6956f612005-12-31 16:46:15 -05001975msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001976msgstr ""
1977"Durchgang 1C: Verzeichnisse werden nach Inodes mit mehrfach belegten Blöcken "
1978"durchsucht.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05001979
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001980#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001981#: e2fsck/problem.c:1041
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001982msgid "Pass 1D: Reconciling @m @bs\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001983msgstr "Durchgang 1D: Mehrfach belegte Blöcke werden abgeglichen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001984
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001985#. @-expanded: File %Q (inode #%i, mod time %IM) \n
Philipp Thomas77c871a2010-04-19 16:59:02 -04001986#. @-expanded: has %r multiply-claimed block(s), shared with %N file(s):\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001987#: e2fsck/problem.c:1046
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001988msgid ""
1989"File %Q (@i #%i, mod time %IM) \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04001990" has %r @m @b(s), shared with %N file(s):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001991msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04001992"Datei %Q (Inode #%i, Änderungszeit %IM) \n"
Theodore Ts'obd386982015-05-17 20:34:58 -04001993" hat %r mehrfach belegte(n) Block/Blöcke, gemeinsam genutzt mit %N "
1994"Datei(en):\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001995
Theodore Ts'o7ae19832005-06-19 09:45:36 -04001996#. @-expanded: \t%Q (inode #%i, mod time %IM)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04001997#: e2fsck/problem.c:1052
Theodore Ts'oa2328c92002-10-30 23:26:03 -05001998msgid "\t%Q (@i #%i, mod time %IM)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04001999msgstr "\t%Q (Inode #%i, Änderungszeit %IM)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002000
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002001#. @-expanded: \t<filesystem metadata>\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002002#: e2fsck/problem.c:1057
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002003msgid "\t<@f metadata>\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002004msgstr "\t<@f-Metadaten>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002005
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002006#. @-expanded: (There are %N inodes containing multiply-claimed blocks.)\n
2007#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002008#: e2fsck/problem.c:1062
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002009msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002010"(There are %N @is containing @m @bs.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002011"\n"
2012msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002013"(Es gibt %N Inodes, die mehrfach belegte Blöcke enthalten.)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002014"\n"
2015
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002016#. @-expanded: multiply-claimed blocks already reassigned or cloned.\n
2017#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002018#: e2fsck/problem.c:1067
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002019msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002020"@m @bs already reassigned or cloned.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002021"\n"
2022msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002023"Mehrfach belegte Blöcke wurden bereits neu zugeordnet bzw. geklont.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002024"\n"
2025
Philipp Thomas37be3822015-05-17 20:21:39 -04002026#: e2fsck/problem.c:1080
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002027#, c-format
2028msgid "Couldn't clone file: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002029msgstr "Datei kann nicht geklont werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002030
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002031#. @-expanded: Pass 2: Checking directory structure\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002032#: e2fsck/problem.c:1086
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002033msgid "Pass 2: Checking @d structure\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002034msgstr "Durchgang 2: Verzeichnisstruktur wird geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002035
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002036#. @-expanded: invalid inode number for '.' in directory inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002037#: e2fsck/problem.c:1091
Theodore Ts'o7527ef12007-12-05 19:35:20 -05002038#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002039msgid "@n @i number for '.' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002040msgstr "Falsche Inode-Nummer für „.“ in Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002041
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002042#. @-expanded: entry '%Dn' in %p (%i) has invalid inode #: %Di.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002043#: e2fsck/problem.c:1096
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002044msgid "@E has @n @i #: %Di.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002045msgstr "Eintrag hat falsche Inode-Nummer: %Di.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002046
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002047#. @-expanded: entry '%Dn' in %p (%i) has deleted/unused inode %Di.
Philipp Thomas37be3822015-05-17 20:21:39 -04002048#: e2fsck/problem.c:1101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002049msgid "@E has @D/unused @i %Di. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002050msgstr "Eintrag „%Dn“ in %p (%i) hat gelöschten/unbenutzten Inode %Di. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002051
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002052#. @-expanded: entry '%Dn' in %p (%i) is a link to '.'
Philipp Thomas37be3822015-05-17 20:21:39 -04002053#: e2fsck/problem.c:1106
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002054msgid "@E @L to '.' "
Philipp Thomasab02a742014-07-09 23:13:30 -04002055msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf „.“ "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002056
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002057#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002058#: e2fsck/problem.c:1111
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002059msgid "@E points to @i (%Di) located in a bad @b.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002060msgstr ""
2061"Eintrag „%Dn“ in %p (%i) zeigt auf einen Inode (%Di) in einem defekten "
2062"Block.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002063
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002064#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002065#: e2fsck/problem.c:1116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002066msgid "@E @L to @d %P (%Di).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002067msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf das Verzeichnis %P (%Di).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002068
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002069#. @-expanded: entry '%Dn' in %p (%i) is a link to the root inode.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002070#: e2fsck/problem.c:1121
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002071msgid "@E @L to the @r.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002072msgstr "Eintrag „%Dn“ in %p (%i) ist ein Link auf den Root-Inode.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002073
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002074#. @-expanded: entry '%Dn' in %p (%i) has illegal characters in its name.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002075#: e2fsck/problem.c:1126
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002076msgid "@E has illegal characters in its name.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002077msgstr "Eintrag „%Dn“ in %p (%i) hat ein unzulässiges Zeichen im Namen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002078
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002079#. @-expanded: Missing '.' in directory inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002080#: e2fsck/problem.c:1131
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002081#, c-format
2082msgid "Missing '.' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002083msgstr "Fehlende „.“ im Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002084
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002085#. @-expanded: Missing '..' in directory inode %i.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002086#: e2fsck/problem.c:1136
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002087#, c-format
2088msgid "Missing '..' in @d @i %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002089msgstr "Fehlender Eintrag „..“ im Verzeichnis-Inode %i.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002090
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002091#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002092#: e2fsck/problem.c:1141
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002093msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002094msgstr ""
2095"Der erste Eintrag „%Dn“ (Inode=%Di) im Verzeichnis-Inode %i (%p) sollte „.“ "
2096"sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002097
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002098#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002099#: e2fsck/problem.c:1146
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002100msgid "Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002101msgstr ""
2102"Der zweite Eintrag „%Dn“ (Inode=%Di) im Verzeichnis-Inode %i sollte „..“ "
2103"sein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002104
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002105#. @-expanded: i_faddr for inode %i (%Q) is %IF, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002106#: e2fsck/problem.c:1151
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002107msgid "i_faddr @F %IF, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002108msgstr "i_faddr für Inode %i (%Q) ist %IF, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002109
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002110#. @-expanded: i_file_acl for inode %i (%Q) is %If, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002111#: e2fsck/problem.c:1156
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002112msgid "i_file_acl @F %If, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002113msgstr "i_file_acl für Inode %i (%Q) ist %If, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002114
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002115#. @-expanded: i_dir_acl for inode %i (%Q) is %Id, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002116#: e2fsck/problem.c:1161
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002117msgid "i_dir_acl @F %Id, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002118msgstr "i_dir_acl für Inode %i (%Q) ist %Id, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002119
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002120#. @-expanded: i_frag for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002121#: e2fsck/problem.c:1166
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002122msgid "i_frag @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002123msgstr "i_frag für Inode %i (%Q) ist %N, sollte Null sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002124
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002125#. @-expanded: i_fsize for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002126#: e2fsck/problem.c:1171
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002127msgid "i_fsize @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002128msgstr "i_fsize für Inode %i (%Q) ist %N, @s null.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002129
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002130#. @-expanded: inode %i (%Q) has invalid mode (%Im).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002131#: e2fsck/problem.c:1176
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002132msgid "@i %i (%Q) has @n mode (%Im).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002133msgstr "Inode %i (%Q) hat einen ungültigen Modus (%Im).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002134
Philipp Thomas77c871a2010-04-19 16:59:02 -04002135#. @-expanded: directory inode %i, %B, offset %N: directory corrupted\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002136#: e2fsck/problem.c:1181
Philipp Thomas77c871a2010-04-19 16:59:02 -04002137msgid "@d @i %i, %B, offset %N: @d corrupted\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002138msgstr "Verzeichnis-Inode %i, %B, Offset %N: Verzeichnis defekt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002139
Philipp Thomas77c871a2010-04-19 16:59:02 -04002140#. @-expanded: directory inode %i, %B, offset %N: filename too long\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002141#: e2fsck/problem.c:1186
Philipp Thomas77c871a2010-04-19 16:59:02 -04002142msgid "@d @i %i, %B, offset %N: filename too long\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002143msgstr "Verzeichnis-Inode %i, %B, Offset %N: Dateiname zu lang\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002144
Philipp Thomas77c871a2010-04-19 16:59:02 -04002145#. @-expanded: directory inode %i has an unallocated %B.
Philipp Thomas37be3822015-05-17 20:21:39 -04002146#: e2fsck/problem.c:1191
Philipp Thomas77c871a2010-04-19 16:59:02 -04002147msgid "@d @i %i has an unallocated %B. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002148msgstr "Verzeichnis-Inode %i hat einen nicht zugewiesenen %B. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002149
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002150#. @-expanded: '.' directory entry in directory inode %i is not NULL terminated\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002151#: e2fsck/problem.c:1196
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002152#, c-format
2153msgid "'.' @d @e in @d @i %i is not NULL terminated\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002154msgstr ""
2155"Verzeichniseintrag „.“ im Verzeichnis-Inode %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002156
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002157#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002158#: e2fsck/problem.c:1201
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002159#, c-format
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002160msgid "'..' @d @e in @d @i %i is not NULL terminated\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002161msgstr ""
2162"Verzeichniseintrag „..“ im Verzeichnis-Inode %i ist nicht NULL-terminiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002163
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002164#. @-expanded: inode %i (%Q) is an illegal character device.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002165#: e2fsck/problem.c:1206
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002166msgid "@i %i (%Q) is an @I character @v.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002167msgstr "Inode %i (%Q) ist ein ungültiges zeichenorientiertes Gerät.\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 block device.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002170#: e2fsck/problem.c:1211
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002171msgid "@i %i (%Q) is an @I @b @v.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002172msgstr "Inode %i (%Q) ist ein ungültiges blockorientiertes Gerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002173
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002174#. @-expanded: entry '%Dn' in %p (%i) is duplicate '.' entry.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002175#: e2fsck/problem.c:1216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002176msgid "@E is duplicate '.' @e.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002177msgstr "Eintrag „%Dn“ in %p (%i) ist ein doppelter Eintrag für „.“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002178
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002179#. @-expanded: entry '%Dn' in %p (%i) is duplicate '..' entry.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002180#: e2fsck/problem.c:1221
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002181msgid "@E is duplicate '..' @e.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002182msgstr "Eintrag „%Dn“ in %p (%i) ist ein doppelter Eintrag für „..“.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002183
Philipp Thomas37be3822015-05-17 20:21:39 -04002184#: e2fsck/problem.c:1226 e2fsck/problem.c:1526
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002185#, c-format
2186msgid "Internal error: couldn't find dir_info for %i.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002187msgstr "Interner Fehler: dir_info für %i kann nicht gefunden werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002188
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002189#. @-expanded: entry '%Dn' in %p (%i) has rec_len of %Dr, should be %N.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002190#: e2fsck/problem.c:1231
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002191msgid "@E has rec_len of %Dr, @s %N.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002192msgstr "Eintrag „%Dn“ in %p (%i) hat eine rec_len von %Dr, sollte %N sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002193
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002194#. @-expanded: error allocating icount structure: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002195#: e2fsck/problem.c:1236
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002196#, c-format
2197msgid "@A icount structure: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002198msgstr "Fehler beim Zuweisen der icount-Struktur: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002199
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002200#. @-expanded: Error iterating over directory blocks: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002201#: e2fsck/problem.c:1241
Theodore Ts'of9e6df42004-05-04 16:19:13 -04002202#, c-format
Theodore Ts'of592bed2003-07-26 00:51:54 -04002203msgid "Error iterating over @d @bs: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002204msgstr "Fehler beim Durchlaufen der Verzeichnisblöcke: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002205
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002206#. @-expanded: Error reading directory block %b (inode %i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002207#: e2fsck/problem.c:1246
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002208msgid "Error reading @d @b %b (@i %i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002209msgstr "Fehler beim Lesen des Verzeichnisblocks %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002210
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002211#. @-expanded: Error writing directory block %b (inode %i): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002212#: e2fsck/problem.c:1251
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002213msgid "Error writing @d @b %b (@i %i): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002214msgstr "Fehler beim Schreiben des Verzeichnisblocks %b (Inode %i): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002215
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002216#. @-expanded: error allocating new directory block for inode %i (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002217#: e2fsck/problem.c:1256
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002218#, c-format
2219msgid "@A new @d @b for @i %i (%s): %m\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002220msgstr ""
2221"Fehler beim Zuweisen eines neuen Verzeichnisblocks für Inode %i (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002222
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002223#. @-expanded: Error deallocating inode %i: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002224#: e2fsck/problem.c:1261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002225#, c-format
2226msgid "Error deallocating @i %i: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002227msgstr "Fehler bei der Freigabe von Inode %i: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002228
Philipp Thomas40771272008-09-07 22:55:25 -04002229#. @-expanded: directory entry for '.' in %p (%i) is big.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002230#: e2fsck/problem.c:1266
Philipp Thomas40771272008-09-07 22:55:25 -04002231#, c-format
2232msgid "@d @e for '.' in %p (%i) is big.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002233msgstr "Verzeichniseintrag für „.“ in %p (%i) ist groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002234
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002235#. @-expanded: inode %i (%Q) is an illegal FIFO.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002236#: e2fsck/problem.c:1271
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002237msgid "@i %i (%Q) is an @I FIFO.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002238msgstr "Inode %i (%Q) ist eine ungültige FIFO.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002239
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002240#. @-expanded: inode %i (%Q) is an illegal socket.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002241#: e2fsck/problem.c:1276
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002242msgid "@i %i (%Q) is an @I socket.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002243msgstr "Inode %i (%Q) ist ein ungültiger Socket.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002244
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002245#. @-expanded: Setting filetype for entry '%Dn' in %p (%i) to %N.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002246#: e2fsck/problem.c:1281
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002247msgid "Setting filetype for @E to %N.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002248msgstr "Dateitypü für Eintrag „%Dn“ in %p (%i) wird auf %N gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002249
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002250#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002251#: e2fsck/problem.c:1286
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002252msgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002253msgstr ""
2254"Eintrag „%Dn“ in %p (%i) hat einen falschen Dateityp (war %Dt, sollte %N "
2255"sein).\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002256
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002257#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002258#: e2fsck/problem.c:1291
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002259msgid "@E has filetype set.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002260msgstr "Eintrag „%Dn“ in %p (%i) hat Dateityp gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002261
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002262#. @-expanded: entry '%Dn' in %p (%i) has a zero-length name.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002263#: e2fsck/problem.c:1296
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002264msgid "@E has a @z name.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002265msgstr "Eintrag „%Dn“ in %p (%i) hat einen Namen der Länge Null.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002266
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002267#. @-expanded: Symlink %Q (inode #%i) is invalid.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002268#: e2fsck/problem.c:1301
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002269msgid "Symlink %Q (@i #%i) is @n.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002270msgstr "Symlink %Q (Inode #%i) is invalid.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002271
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002272#. @-expanded: extended attribute block for inode %i (%Q) is invalid (%If).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002273#: e2fsck/problem.c:1306
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002274msgid "@a @b @F @n (%If).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002275msgstr "Erweiterte-Attribute-Block für Inode %i (%Q) ist ungültig (%If).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002276
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002277#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002278#: e2fsck/problem.c:1311
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002279msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002280msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002281"Dateisystem enthält große Dateien, aber im Superblock ist\n"
2282"der Bitschalter LARGE_FILE nicht gesetzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002283
Philipp Thomas77c871a2010-04-19 16:59:02 -04002284#. @-expanded: problem in HTREE directory inode %d: %B not referenced\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002285#: e2fsck/problem.c:1316
Philipp Thomas77c871a2010-04-19 16:59:02 -04002286msgid "@p @h %d: %B not referenced\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002287msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B ist nicht referenziert\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002288
Philipp Thomas77c871a2010-04-19 16:59:02 -04002289#. @-expanded: problem in HTREE directory inode %d: %B referenced twice\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002290#: e2fsck/problem.c:1321
Philipp Thomas77c871a2010-04-19 16:59:02 -04002291msgid "@p @h %d: %B referenced twice\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002292msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B doppelt referenziert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002293
Philipp Thomas77c871a2010-04-19 16:59:02 -04002294#. @-expanded: problem in HTREE directory inode %d: %B has bad min hash\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002295#: e2fsck/problem.c:1326
Philipp Thomas77c871a2010-04-19 16:59:02 -04002296msgid "@p @h %d: %B has bad min hash\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002297msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat ungültigen Minimumhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002298
Philipp Thomas77c871a2010-04-19 16:59:02 -04002299#. @-expanded: problem in HTREE directory inode %d: %B has bad max hash\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002300#: e2fsck/problem.c:1331
Philipp Thomas77c871a2010-04-19 16:59:02 -04002301msgid "@p @h %d: %B has bad max hash\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002302msgstr "Problem im HTREE-Verzeichnis-Inode %d: %B hat ungültigen Maximalhash\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002303
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002304#. @-expanded: invalid HTREE directory inode %d (%q).
Philipp Thomas37be3822015-05-17 20:21:39 -04002305#: e2fsck/problem.c:1336
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002306msgid "@n @h %d (%q). "
Philipp Thomasab02a742014-07-09 23:13:30 -04002307msgstr "Ungültiger HTREE-Verzeichnis-Inode %d (%q). "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002308
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002309#. @-expanded: problem in HTREE directory inode %d (%q): bad block number %b.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002310#: e2fsck/problem.c:1340
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002311msgid "@p @h %d (%q): bad @b number %b.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002312msgstr "Problem im HTREE-Verzeichnis-Inode %d (%q): falsche Blocknummer %b.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002313
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002314#. @-expanded: problem in HTREE directory inode %d: root node is invalid\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002315#: e2fsck/problem.c:1350
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002316#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002317msgid "@p @h %d: root node is @n\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002318msgstr "Problem im HTREE-Verzeichnis-Inode %d: Wurzelknoten ist ungültig\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002319
Philipp Thomas77c871a2010-04-19 16:59:02 -04002320#. @-expanded: problem in HTREE directory inode %d: %B has invalid limit (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002321#: e2fsck/problem.c:1355
Philipp Thomas77c871a2010-04-19 16:59:02 -04002322msgid "@p @h %d: %B has @n limit (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002323msgstr ""
2324"Problem im HTREE-Verzeichnis-Inode %d: %B hat eine ungültige Begrenzung "
2325"(%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002326
Philipp Thomas77c871a2010-04-19 16:59:02 -04002327#. @-expanded: problem in HTREE directory inode %d: %B has invalid count (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002328#: e2fsck/problem.c:1360
Philipp Thomas77c871a2010-04-19 16:59:02 -04002329msgid "@p @h %d: %B has @n count (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002330msgstr ""
2331"Problem im HTREE-Verzeichnis-Inode %d: %B hat einen ungültigen Zählerstand "
2332"(%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002333
Philipp Thomas77c871a2010-04-19 16:59:02 -04002334#. @-expanded: problem in HTREE directory inode %d: %B has an unordered hash table\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002335#: e2fsck/problem.c:1365
Philipp Thomas77c871a2010-04-19 16:59:02 -04002336msgid "@p @h %d: %B has an unordered hash table\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002337msgstr ""
2338"Problem im HTREE-Verzeichnis-Inode %d: %B hat eine unsortierte Hashtabelle\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002339
Philipp Thomas77c871a2010-04-19 16:59:02 -04002340#. @-expanded: problem in HTREE directory inode %d: %B has invalid depth (%N)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002341#: e2fsck/problem.c:1370
Philipp Thomas77c871a2010-04-19 16:59:02 -04002342msgid "@p @h %d: %B has @n depth (%N)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002343msgstr ""
2344"Problem im HTREE-Verzeichnis-Inode %d: %B hat eine ungültige Tiefe (%N)\n"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05002345
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002346#. @-expanded: Duplicate entry '%Dn' in %p (%i) found.
Philipp Thomas37be3822015-05-17 20:21:39 -04002347#: e2fsck/problem.c:1375
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002348msgid "Duplicate @E found. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002349msgstr "Doppelter Eintrag „%Dn“ in %p (%i) gefunden. "
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002350
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002351#. @-expanded: entry '%Dn' in %p (%i) has a non-unique filename.\n
2352#. @-expanded: Rename to %s
Philipp Thomas37be3822015-05-17 20:21:39 -04002353#: e2fsck/problem.c:1380
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002354#, no-c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002355msgid ""
2356"@E has a non-unique filename.\n"
2357"Rename to %s"
2358msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002359"Eintrag „%Dn“ in %p (%i) hat keinen eindeutigen Dateinamen.\n"
2360"Wird in %s umbenannt"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002361
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002362#. @-expanded: Duplicate entry '%Dn' found.\n
2363#. @-expanded: \tMarking %p (%i) to be rebuilt.\n
2364#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002365#: e2fsck/problem.c:1385
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002366msgid ""
2367"Duplicate @e '%Dn' found.\n"
2368"\tMarking %p (%i) to be rebuilt.\n"
2369"\n"
2370msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002371"Doppelter Eintrag „%Dn“ gefunden.\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002372"\t%p (%i) wird für die Neuerstellung markiert.\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002373"\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04002374
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002375#. @-expanded: i_blocks_hi for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002376#: e2fsck/problem.c:1390
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002377msgid "i_blocks_hi @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002378msgstr "i_blocks_hi für Inode %i (%Q) %N, sollte Null sein.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04002379
Philipp Thomas720e6362008-06-21 14:06:00 -04002380#. @-expanded: Unexpected block in HTREE directory inode %d (%q).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002381#: e2fsck/problem.c:1395
Philipp Thomas720e6362008-06-21 14:06:00 -04002382msgid "Unexpected @b in @h %d (%q).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002383msgstr "Unerwarteter Block im HTREE-Verzeichnis-Inode %d (%q).\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002384
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002385#. @-expanded: entry '%Dn' in %p (%i) references inode %Di in group %g where _INODE_UNINIT is set.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002386#: e2fsck/problem.c:1399
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002387msgid "@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002388msgstr ""
2389"Eintrag „%Dn“ in %p (%i) verweist auf Inode %Di in Gruppe %g, für die "
2390"_INODE_UNINIT gesetzt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002391
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002392#. @-expanded: entry '%Dn' in %p (%i) references inode %Di found in group %g's unused inodes area.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002393#: e2fsck/problem.c:1404
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002394msgid "@E references @i %Di found in @g %g's unused inodes area.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002395msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04002396"Eintrag „%Dn“ in %p (%i) verweist auf Inode %Di, der im Bereich ungenutzter "
2397"Inodes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002398"von Gruppe %g zu finden ist.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002399
2400#. @-expanded: i_file_acl_hi for inode %i (%Q) is %N, should be zero.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002401#: e2fsck/problem.c:1409
Philipp Thomas77c871a2010-04-19 16:59:02 -04002402msgid "i_file_acl_hi @F %N, @s zero.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002403msgstr "i_file_acl_hi für Inode %i (%Q) ist %N, sollte Null sein.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002404
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002405#. @-expanded: Pass 3: Checking directory connectivity\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002406#: e2fsck/problem.c:1416
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002407msgid "Pass 3: Checking @d connectivity\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002408msgstr "Durchgang 3: Verzeichnisverknüpfungen werden geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002409
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002410#. @-expanded: root inode not allocated.
Philipp Thomas37be3822015-05-17 20:21:39 -04002411#: e2fsck/problem.c:1421
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002412msgid "@r not allocated. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002413msgstr "Root-Inode nicht zugeordnet. "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002414
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002415#. @-expanded: No room in lost+found directory.
Philipp Thomas37be3822015-05-17 20:21:39 -04002416#: e2fsck/problem.c:1426
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002417msgid "No room in @l @d. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002418msgstr "Kein Platz im Verzeichnis „lost+found“. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002419
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002420#. @-expanded: Unconnected directory inode %i (%p)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002421#: e2fsck/problem.c:1431
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002422#, c-format
2423msgid "Unconnected @d @i %i (%p)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002424msgstr "Nicht verbundener Verzeichnis-Inode %i (%p)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002425
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002426#. @-expanded: /lost+found not found.
Philipp Thomas37be3822015-05-17 20:21:39 -04002427#: e2fsck/problem.c:1436
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002428msgid "/@l not found. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002429msgstr "/lost+found nicht gefunden. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002430
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002431#. @-expanded: '..' in %Q (%i) is %P (%j), should be %q (%d).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002432#: e2fsck/problem.c:1441
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002433msgid "'..' in %Q (%i) is %P (%j), @s %q (%d).\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002434msgstr "„..“ in %Q (%i) ist %P (%j), sollte %q (%d) sein.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002435
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002436#. @-expanded: Bad or non-existent /lost+found. Cannot reconnect.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002437#: e2fsck/problem.c:1446
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002438msgid "Bad or non-existent /@l. Cannot reconnect.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002439msgstr ""
2440"Verzeichnis /lost+found ist falsch oder fehlt. Wiederverbinden nicht "
2441"möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002442
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002443#. @-expanded: Could not expand /lost+found: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002444#: e2fsck/problem.c:1451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002445#, c-format
2446msgid "Could not expand /@l: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002447msgstr "Erweitern von /lost+found nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002448
Philipp Thomas37be3822015-05-17 20:21:39 -04002449#: e2fsck/problem.c:1456
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002450#, c-format
2451msgid "Could not reconnect %i: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002452msgstr "Wiederverbinden von %i nicht möglich: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002453
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002454#. @-expanded: Error while trying to find /lost+found: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002455#: e2fsck/problem.c:1461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002456#, c-format
2457msgid "Error while trying to find /@l: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002458msgstr "Fehler während der Suche nach /lost+found: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002459
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002460#. @-expanded: ext2fs_new_block: %m while trying to create /lost+found directory\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002461#: e2fsck/problem.c:1466
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002462#, c-format
2463msgid "ext2fs_new_@b: %m while trying to create /@l @d\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002464msgstr ""
2465"ext2fs_new_@b: %m während des Versuches, das Verzeichnis /lost+found zu "
2466"erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002467
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002468#. @-expanded: ext2fs_new_inode: %m while trying to create /lost+found directory\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002469#: e2fsck/problem.c:1471
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002470#, c-format
2471msgid "ext2fs_new_@i: %m while trying to create /@l @d\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002472msgstr ""
2473"ext2fs_new_@i: %m während des Versuches, das Verzeichnis /lost+found zu "
2474"erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002475
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002476#. @-expanded: ext2fs_new_dir_block: %m while creating new directory block\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002477#: e2fsck/problem.c:1476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002478#, c-format
2479msgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002480msgstr ""
2481"ext2fs_new_dir_@b: %m während des Versuches, das Verzeichnis /lost+found zu "
2482"erzeugen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002483
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002484#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002485#: e2fsck/problem.c:1481
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002486#, c-format
2487msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002488msgstr ""
2489"ext2fs_write_dir_@b: %m während des Schreibens des Verzeichnisblocks für /"
2490"lost+found\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002491
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002492#. @-expanded: Error while adjusting inode count on inode %i\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002493#: e2fsck/problem.c:1486
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002494#, c-format
2495msgid "Error while adjusting @i count on @i %i\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002496msgstr "Fehler während des Anpassens der Inode-Anzahl auf Inode %i\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002497
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002498#. @-expanded: Couldn't fix parent of inode %i: %m\n
2499#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002500#: e2fsck/problem.c:1491
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002501#, c-format
2502msgid ""
2503"Couldn't fix parent of @i %i: %m\n"
2504"\n"
2505msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002506"Eigentümer von Inode %i konnte nicht repariert werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002507"\n"
2508
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002509#. @-expanded: Couldn't fix parent of inode %i: Couldn't find parent directory entry\n
2510#. @-expanded: \n
Philipp Thomas37be3822015-05-17 20:21:39 -04002511#: e2fsck/problem.c:1496
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002512#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002513msgid ""
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002514"Couldn't fix parent of @i %i: Couldn't find parent @d @e\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002515"\n"
2516msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002517"Eigentümer von Inode %i konnte nicht repariert werden: \n"
2518"Verzeichniseintrag des Eigentümers wurde nicht gefunden.\n"
2519"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002520
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002521#. @-expanded: Error creating root directory (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002522#: e2fsck/problem.c:1506
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002523#, c-format
2524msgid "Error creating root @d (%s): %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002525msgstr "Fehler beim Erzeugen des Wurzelverzeichnisses (%s): %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002526
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002527#. @-expanded: Error creating /lost+found directory (%s): %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002528#: e2fsck/problem.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002529#, c-format
2530msgid "Error creating /@l @d (%s): %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002531msgstr "Fehler beim Erzeugen des Verzeichnisses /lost+found (%s): %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002532
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002533#. @-expanded: root inode is not a directory; aborting.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002534#: e2fsck/problem.c:1516
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002535msgid "@r is not a @d; aborting.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002536msgstr "Der Wurzel-Inode ist kein Verzeichnis; Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002537
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002538#. @-expanded: Cannot proceed without a root inode.\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002539#: e2fsck/problem.c:1521
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002540msgid "Cannot proceed without a @r.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002541msgstr "Ohne Wurzel-Inode ist weiteres Arbeiten nicht möglich.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002542
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002543#. @-expanded: /lost+found is not a directory (ino=%i)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002544#: e2fsck/problem.c:1531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002545#, c-format
2546msgid "/@l is not a @d (ino=%i)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002547msgstr "/lost+found ist kein Verzeichnis (ino=%i)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002548
Philipp Thomas37be3822015-05-17 20:21:39 -04002549#: e2fsck/problem.c:1538
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002550msgid "Pass 3A: Optimizing directories\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002551msgstr "Durchgang 3A: Verzeichnisse werden optimiert\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002552
Philipp Thomas37be3822015-05-17 20:21:39 -04002553#: e2fsck/problem.c:1543
Philipp Thomas77c871a2010-04-19 16:59:02 -04002554#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002555msgid "Failed to create dirs_to_hash iterator: %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002556msgstr "dirs_to_hash Iterator konnte nicht erzeugt werden: %m\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05002557
Philipp Thomas37be3822015-05-17 20:21:39 -04002558#: e2fsck/problem.c:1548
Theodore Ts'o945ffb92009-01-26 20:43:10 -05002559msgid "Failed to optimize directory %q (%d): %m\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002560msgstr "Verzeichnis %q (%d) konnte nicht optimiert werden: %m\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002561
Philipp Thomas37be3822015-05-17 20:21:39 -04002562#: e2fsck/problem.c:1553
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002563msgid "Optimizing directories: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002564msgstr "Verzeichnisse werden optimiert: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002565
Philipp Thomas37be3822015-05-17 20:21:39 -04002566#: e2fsck/problem.c:1570
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002567msgid "Pass 4: Checking reference counts\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002568msgstr "Durchgang 4: Referenzzähler werden überprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002569
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002570#. @-expanded: unattached zero-length inode %i.
Philipp Thomas37be3822015-05-17 20:21:39 -04002571#: e2fsck/problem.c:1575
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002572#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002573msgid "@u @z @i %i. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002574msgstr "Nicht verbundener Inode der Länge Null %i. "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002575
2576#. @-expanded: unattached inode %i\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002577#: e2fsck/problem.c:1580
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002578#, c-format
2579msgid "@u @i %i\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002580msgstr "Nicht verbundener Inode %i\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002581
2582#. @-expanded: inode %i ref count is %Il, should be %N.
Philipp Thomas37be3822015-05-17 20:21:39 -04002583#: e2fsck/problem.c:1585
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002584msgid "@i %i ref count is %Il, @s %N. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002585msgstr "Der Referenzzähler von Inode %i ist %Il, sollte aber %N sein. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002586
Philipp Thomasab02a742014-07-09 23:13:30 -04002587# So etwas sollte in einer ernstzunehmenden Software nicht erscheinen,
2588# selbst wenn es (derber) Humor ist.
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002589#. @-expanded: WARNING: PROGRAMMING BUG IN E2FSCK!\n
2590#. @-expanded: \tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n
2591#. @-expanded: inode_link_info[%i] is %N, inode.i_links_count is %Il. They should be the same!\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002592#: e2fsck/problem.c:1589
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002593msgid ""
2594"WARNING: PROGRAMMING BUG IN E2FSCK!\n"
2595"\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002596"@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 -05002597msgstr ""
2598"WARNUNG: PROGRAMMIERFEHLER IN E2FSCK!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002599"\tODER JEMAND PRÜFT EIN EINGEHÄNGTES (AKTIVES) DATEISYSTEM.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002600"@i_link_info[%i] ist %N, @i.i_links_count ist %Il. Sie sollten identisch "
2601"sein!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002602
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002603#. @-expanded: Pass 5: Checking group summary information\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002604#: e2fsck/problem.c:1599
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002605msgid "Pass 5: Checking @g summary information\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002606msgstr "Durchgang 5: Zusammengefasste Gruppeninformation wird geprüft\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002607
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002608#. @-expanded: Padding at end of inode bitmap is not set.
Philipp Thomas37be3822015-05-17 20:21:39 -04002609#: e2fsck/problem.c:1604
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002610msgid "Padding at end of @i @B is not set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002611msgstr "Auffüllbyte am Ende der Inode-Bitmap ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002612
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002613#. @-expanded: Padding at end of block bitmap is not set.
Philipp Thomas37be3822015-05-17 20:21:39 -04002614#: e2fsck/problem.c:1609
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002615msgid "Padding at end of @b @B is not set. "
Philipp Thomasab02a742014-07-09 23:13:30 -04002616msgstr "Auffüllbyte am Ende der Inode-Bitmap ist nicht gesetzt. "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002617
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002618#. @-expanded: block bitmap differences:
Philipp Thomas37be3822015-05-17 20:21:39 -04002619#: e2fsck/problem.c:1614
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002620msgid "@b @B differences: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002621msgstr "Unterschiede in der Block-Bitmap: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002622
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002623#. @-expanded: inode bitmap differences:
Philipp Thomas37be3822015-05-17 20:21:39 -04002624#: e2fsck/problem.c:1634
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002625msgid "@i @B differences: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002626msgstr "Unterschiede in der Inode-Bitmap: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002627
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002628#. @-expanded: Free inodes count wrong for group #%g (%i, counted=%j).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002629#: e2fsck/problem.c:1654
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002630msgid "Free @is count wrong for @g #%g (%i, counted=%j).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002631msgstr "Die Anzahl freier Inodes für Gruppe #%g ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002632
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002633#. @-expanded: Directories count wrong for group #%g (%i, counted=%j).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002634#: e2fsck/problem.c:1659
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002635msgid "Directories count wrong for @g #%g (%i, counted=%j).\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002636msgstr ""
2637"Die Anzahl der Verzeichnisse für Gruppe #%g ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002638
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002639#. @-expanded: Free inodes count wrong (%i, counted=%j).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002640#: e2fsck/problem.c:1664
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002641msgid "Free @is count wrong (%i, counted=%j).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002642msgstr "Die Anzahl freier Inodes ist falsch (%i, gezählt=%j).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002643
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002644#. @-expanded: Free blocks count wrong for group #%g (%b, counted=%c).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002645#: e2fsck/problem.c:1669
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002646msgid "Free @bs count wrong for @g #%g (%b, counted=%c).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002647msgstr "Die Anzahl freier Blöcke in Gruppe #%g ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002648
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002649#. @-expanded: Free blocks count wrong (%b, counted=%c).\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002650#: e2fsck/problem.c:1674
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002651msgid "Free @bs count wrong (%b, counted=%c).\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002652msgstr "Die Anzahl freier Blöcke ist falsch (%b, gezählt=%c).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002653
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002654#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
2655#. @-expanded: endpoints (%i, %j)\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002656#: e2fsck/problem.c:1679
Theodore Ts'obd386982015-05-17 20:34:58 -04002657msgid ""
2658"PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't match calculated @B "
2659"endpoints (%i, %j)\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002660msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04002661"PROGRAMMIERFEHLER: Dateisystem (#%N) Bitmap-Endpunkte (%b, %c) stimmenen "
2662"nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002663"mit den berechneten Bitmap-Endpunkten (%i, %j) überein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002664
Philipp Thomas37be3822015-05-17 20:21:39 -04002665#: e2fsck/problem.c:1685
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002666msgid "Internal error: fudging end of bitmap (%N)\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002667msgstr "Interner Fehler: das Ende der Bitmap (%N) wird erraten\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002668
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002669#. @-expanded: Error copying in replacement inode bitmap: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002670#: e2fsck/problem.c:1690
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002671#, c-format
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002672msgid "Error copying in replacement @i @B: %m\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002673msgstr "Fehler beim Hineinkopieren der Inode-Bitmap: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002674
2675#. @-expanded: Error copying in replacement block bitmap: %m\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002676#: e2fsck/problem.c:1695
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002677#, c-format
2678msgid "Error copying in replacement @b @B: %m\n"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002679msgstr "Fehler beim Hineinkopieren der Ersatz-Blockbitmap: %m\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04002680
Philipp Thomas720e6362008-06-21 14:06:00 -04002681#. @-expanded: group %g block(s) in use but group is marked BLOCK_UNINIT\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002682#: e2fsck/problem.c:1720
Philipp Thomas720e6362008-06-21 14:06:00 -04002683#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04002684msgid "@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002685msgstr ""
2686"Blöcke von Gruppe %g sind in Benutzung, obwohl die Gruppe als BLOCK_UNINIT "
2687"markiert ist\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04002688
2689#. @-expanded: group %g inode(s) in use but group is marked INODE_UNINIT\n
Philipp Thomas37be3822015-05-17 20:21:39 -04002690#: e2fsck/problem.c:1725
Theodore Ts'o057a1592010-06-07 12:24:21 -04002691#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04002692msgid "@g %g @i(s) in use but @g is marked INODE_UNINIT\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002693msgstr ""
2694"Die Inodes der Gruppe %g sind in Benutzung, obwohl die Gruppe als "
2695"INODE_UNINIT markiert ist\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04002696
Philipp Thomas77c871a2010-04-19 16:59:02 -04002697#. @-expanded: Recreate journal
Philipp Thomas37be3822015-05-17 20:21:39 -04002698#: e2fsck/problem.c:1732
Philipp Thomas77c871a2010-04-19 16:59:02 -04002699msgid "Recreate @j"
Philipp Thomasab02a742014-07-09 23:13:30 -04002700msgstr "Journal wird wiederhergestellt"
Philipp Thomas77c871a2010-04-19 16:59:02 -04002701
Philipp Thomas37be3822015-05-17 20:21:39 -04002702#: e2fsck/problem.c:1737
Eric Sandeen032eafe2012-07-28 17:48:36 -04002703msgid "Update quota info for quota type %N"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05002704msgstr "Quota-Info für Typ %N wird aktualisiert"
Eric Sandeen032eafe2012-07-28 17:48:36 -04002705
Philipp Thomas37be3822015-05-17 20:21:39 -04002706#. @-expanded: Error setting block group checksum info: %m\n
2707#: e2fsck/problem.c:1742
2708#, c-format
2709msgid "Error setting @b @g checksum info: %m\n"
2710msgstr "beim Setzen der Blockgruppen-Prüfsummeninfo: %m\n"
2711
2712#: e2fsck/problem.c:1747
2713#, c-format
2714msgid "Error writing file system info: %m\n"
2715msgstr "Fehler beim Lesen de Der Dateisysteminfo: %m\n"
2716
2717#: e2fsck/problem.c:1752
2718#, c-format
2719msgid "Error flushing writes to storage device: %m\n"
2720msgstr "Fehler beim Schreiben der gepufferten Daten: %m\n"
2721
2722#: e2fsck/problem.c:1871
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002723#, c-format
2724msgid "Unhandled error code (0x%x)!\n"
2725msgstr "Unbenutzter Fehlercode (0x%x)!\n"
2726
Philipp Thomas37be3822015-05-17 20:21:39 -04002727#: e2fsck/problem.c:1996 e2fsck/problem.c:2000
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002728msgid "IGNORED"
2729msgstr "IGNORIERT"
2730
Eric Sandeen032eafe2012-07-28 17:48:36 -04002731#: e2fsck/scantest.c:79
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002732#, c-format
2733msgid "Memory used: %d, elapsed time: %6.3f/%6.3f/%6.3f\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002734msgstr "Benutzter Speicher: %d, vergangende Zeit: %6.3f/%6.3f/%6.3f\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002735
Eric Sandeen032eafe2012-07-28 17:48:36 -04002736#: e2fsck/scantest.c:98
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002737#, c-format
2738msgid "size of inode=%d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002739msgstr "Größe des Inodes=%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002740
Eric Sandeen032eafe2012-07-28 17:48:36 -04002741#: e2fsck/scantest.c:119
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002742msgid "while starting inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -04002743msgstr "beim Starten der Inode-Prüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002744
Eric Sandeen032eafe2012-07-28 17:48:36 -04002745#: e2fsck/scantest.c:130
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002746msgid "while doing inode scan"
Philipp Thomasab02a742014-07-09 23:13:30 -04002747msgstr "während der Inode-Prüfung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002748
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002749#: e2fsck/super.c:190
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002750#, c-format
2751msgid "while calling ext2fs_block_iterate for inode %d"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002752msgstr "während des Aufrufs von ext2fs_block_iterate für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002753
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002754#: e2fsck/super.c:213
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002755#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002756msgid "while calling ext2fs_adjust_ea_refcount2 for inode %d"
2757msgstr "während des Aufrufs von ext2fs_adjust_ea_refcount2 für Inode %d"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002758
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002759#: e2fsck/super.c:274
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002760msgid "Truncating"
Philipp Thomasab02a742014-07-09 23:13:30 -04002761msgstr "Wird gekürzt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002762
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002763#: e2fsck/super.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002764msgid "Clearing"
Philipp Thomasab02a742014-07-09 23:13:30 -04002765msgstr "Wird bereinigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002766
Eric Sandeen032eafe2012-07-28 17:48:36 -04002767#: e2fsck/unix.c:74
Philipp Thomas68801282008-07-17 11:47:00 -04002768#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002769msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04002770"Usage: %s [-panyrcdfvtDFV] [-b superblock] [-B blocksize]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002771"\t\t[-I inode_buffer_blocks] [-P process_inode_size]\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002772"\t\t[-l|-L bad_blocks_file] [-C fd] [-j external_journal]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002773"\t\t[-E extended-options] device\n"
2774msgstr ""
Philipp Thomas68801282008-07-17 11:47:00 -04002775"Aufruf: %s [-panyrcdfvtDFV] [-b Superblock] [-B Blockgröße]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04002776"\t\t[-I Inode_Puffer_Blöcke] [-P Prozess_Inodegröße]\n"
2777"\t\t[-l|-L Bad_Blocks_Datei] [-C Dateideskriptor] [-j externes_Journal]\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002778"\t\t[-E erweiterte_Optionen] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002779
Eric Sandeen032eafe2012-07-28 17:48:36 -04002780#: e2fsck/unix.c:80
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002781msgid ""
2782"\n"
2783"Emergency help:\n"
2784" -p Automatic repair (no questions)\n"
2785" -n Make no changes to the filesystem\n"
2786" -y Assume \"yes\" to all questions\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04002787" -c Check for bad blocks and add them to the badblock "
2788"list\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002789" -f Force checking even if filesystem is marked clean\n"
2790msgstr ""
2791"\n"
Philipp Thomas18eaec22011-10-02 22:50:38 -04002792"Notfallhilfe:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002793" -p automatische Reparatur (keine Fragen)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002794" -n keine Veränderungen am Dateisystem vornehmen\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002795" -y Alle Fragen mit „Ja” benatworten\n"
2796" -c Nach defekten Blöcken suchen und diese zur\n"
2797" Liste der defekten Blöcke hinzufügen\n"
2798" -f Die Überprüfung erzwingen, auch wenn alles i.O. erscheint\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002799
Eric Sandeen032eafe2012-07-28 17:48:36 -04002800#: e2fsck/unix.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002801msgid ""
2802" -v Be verbose\n"
2803" -b superblock Use alternative superblock\n"
2804" -B blocksize Force blocksize when looking for superblock\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04002805" -j external_journal Set location of the external journal\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002806" -l bad_blocks_file Add to badblocks list\n"
2807" -L bad_blocks_file Set badblocks list\n"
2808msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002809" -v Ausführliche Ausgaben\n"
2810" -b Superblock Superblockkopie verwenden\n"
2811" -B Blockgröße Blockgröße beim Suchen des Superblocks erzwingen\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04002812" -j externes-Journal Angabe des Speicherortes des externen Jounals\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002813" -l bad_blocks_file Zur Liste der defekten Blöcke hinzufügen\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002814" -L bad_blocks_file Liste der defekten Blöcke definieren\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002815
Philipp Thomasd0275172013-01-15 23:30:35 -05002816#: e2fsck/unix.c:131
Philipp Thomas1e8757d2008-03-18 14:36:12 -04002817#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002818msgid "%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks\n"
2819msgstr "%s: %u/%u Dateien (%0d.%d%% nicht zusammenhängend), %llu/%llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002820
Philipp Thomasd0275172013-01-15 23:30:35 -05002821#: e2fsck/unix.c:157
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002822#, c-format
2823msgid ""
2824"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002825"%12u inode used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002826msgid_plural ""
2827"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002828"%12u inodes used (%2.2f%%, out of %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002829msgstr[0] ""
2830"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002831"%12u Inode ist in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002832msgstr[1] ""
2833"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002834"%12u Inodes sind in Benutzung (%2.2f%% von %u)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002835
Philipp Thomasd0275172013-01-15 23:30:35 -05002836#: e2fsck/unix.c:161
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002837#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002838msgid "%12u non-contiguous file (%0d.%d%%)\n"
2839msgid_plural "%12u non-contiguous files (%0d.%d%%)\n"
2840msgstr[0] "%12u nicht zusammenhängende Datei (%0d.%d%%)\n"
2841msgstr[1] "%12u nicht zusammenhängende Dateien (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002842
Philipp Thomasd0275172013-01-15 23:30:35 -05002843#: e2fsck/unix.c:166
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002844#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002845msgid "%12u non-contiguous directory (%0d.%d%%)\n"
2846msgid_plural "%12u non-contiguous directories (%0d.%d%%)\n"
2847msgstr[0] "%12u nicht zusammenhängendes Verzeichnis (%0d.%d%%)\n"
2848msgstr[1] "%12u nicht zusammenhängende Verzeichnisse (%0d.%d%%)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002849
Eric Sandeen032eafe2012-07-28 17:48:36 -04002850#: e2fsck/unix.c:171
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002851#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002852msgid " # of inodes with ind/dind/tind blocks: %u/%u/%u\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002853msgstr " # von Inodes mit ind/dind/tind Blöcken: %u/%u/%u\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002854
Philipp Thomasd0275172013-01-15 23:30:35 -05002855#: e2fsck/unix.c:179
2856msgid " Extent depth histogram: "
Philipp Thomasab02a742014-07-09 23:13:30 -04002857msgstr " Histogramm der Tiefe von Erweiterungen: "
Philipp Thomasd0275172013-01-15 23:30:35 -05002858
2859#: e2fsck/unix.c:188
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002860#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002861msgid "%12llu block used (%2.2f%%, out of %llu)\n"
2862msgid_plural "%12llu blocks used (%2.2f%%, out of %llu)\n"
2863msgstr[0] "%12llu Block wird benutzt (%2.2f%% von %llu)\n"
2864msgstr[1] "%12llu Blöcke werden benutzt (%2.2f%% von %llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002865
Philipp Thomasd0275172013-01-15 23:30:35 -05002866#: e2fsck/unix.c:192
2867#, c-format
2868msgid "%12u bad block\n"
2869msgid_plural "%12u bad blocks\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002870msgstr[0] "%12u defekter Block\n"
2871msgstr[1] "%12u defekte Blöcke\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002872
2873#: e2fsck/unix.c:194
2874#, c-format
2875msgid "%12u large file\n"
2876msgid_plural "%12u large files\n"
2877msgstr[0] "%12u große Datei\n"
2878msgstr[1] "%12u große Dateien\n"
2879
2880#: e2fsck/unix.c:196
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002881#, c-format
2882msgid ""
2883"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002884"%12u regular file\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002885msgid_plural ""
2886"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002887"%12u regular files\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002888msgstr[0] ""
2889"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002890"%12u reguläre Datei\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002891msgstr[1] ""
2892"\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05002893"%12u reguläre Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002894
Philipp Thomasd0275172013-01-15 23:30:35 -05002895#: e2fsck/unix.c:198
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002896#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002897msgid "%12u directory\n"
2898msgid_plural "%12u directories\n"
2899msgstr[0] "%12u Verzeichnis\n"
2900msgstr[1] "%12u Verzeichnisse\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002901
Philipp Thomasd0275172013-01-15 23:30:35 -05002902#: e2fsck/unix.c:200
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002903#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002904msgid "%12u character device file\n"
2905msgid_plural "%12u character device files\n"
2906msgstr[0] "%12u zeichenorientierte Gerätedatei\n"
2907msgstr[1] "%12u zeichenorientierte Gerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002908
Philipp Thomasd0275172013-01-15 23:30:35 -05002909#: e2fsck/unix.c:203
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002910#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002911msgid "%12u block device file\n"
2912msgid_plural "%12u block device files\n"
2913msgstr[0] "%12u Blockgerätedatei\n"
2914msgstr[1] "%12u Blockgerätedateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002915
Philipp Thomasd0275172013-01-15 23:30:35 -05002916#: e2fsck/unix.c:205
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002917#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002918msgid "%12u fifo\n"
2919msgid_plural "%12u fifos\n"
2920msgstr[0] "%12u Fifo\n"
2921msgstr[1] "%12u Fifos\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002922
Philipp Thomasd0275172013-01-15 23:30:35 -05002923#: e2fsck/unix.c:207
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002924#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002925msgid "%12u link\n"
2926msgid_plural "%12u links\n"
2927msgstr[0] "%12u Verknüpfung\n"
2928msgstr[1] "%12u Verknüpfungen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002929
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002930#: e2fsck/unix.c:209
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002931#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002932msgid "%12u symbolic link"
2933msgid_plural "%12u symbolic links"
2934msgstr[0] "%12u symbolische Verknüpfung"
2935msgstr[1] "%12u symbolische Verknüpfungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002936
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002937#: e2fsck/unix.c:211
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002938#, c-format
2939msgid " (%u fast symbolic link)\n"
2940msgid_plural " (%u fast symbolic links)\n"
2941msgstr[0] " (%u schnelle symbolische Verknüpfung)\n"
2942msgstr[1] " (%u schnelle symbolische Verknüpfungen)\n"
2943
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002944#: e2fsck/unix.c:215
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002945#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002946msgid "%12u socket\n"
2947msgid_plural "%12u sockets\n"
2948msgstr[0] "%12u Socket\n"
2949msgstr[1] "%12u Sockets\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002950
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002951#: e2fsck/unix.c:219
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002952#, c-format
Philipp Thomasd0275172013-01-15 23:30:35 -05002953msgid "%12u file\n"
2954msgid_plural "%12u files\n"
2955msgstr[0] "%12u Datei\n"
2956msgstr[1] "%12u Dateien\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002957
Theodore Ts'obd386982015-05-17 20:34:58 -04002958#: e2fsck/unix.c:232 misc/badblocks.c:993 misc/tune2fs.c:2122 misc/util.c:316
2959#: resize/main.c:261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002960#, c-format
2961msgid "while determining whether %s is mounted."
Philipp Thomasba71e3e2008-03-13 18:21:09 -04002962msgstr "bei der Prüfung, ob %s eingehängt ist."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002963
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002964#: e2fsck/unix.c:253
Philipp Thomasab02a742014-07-09 23:13:30 -04002965#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002966msgid "Warning! %s is mounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002967msgstr "Warnung! %s ist eingehängt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002968
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002969#: e2fsck/unix.c:256
Philipp Thomasab02a742014-07-09 23:13:30 -04002970#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002971msgid "Warning! %s is in use.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002972msgstr "Warnung! %s wird verwendet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002973
Theodore Ts'o196b59c2014-05-18 21:47:32 -04002974#: e2fsck/unix.c:262
Philipp Thomasab02a742014-07-09 23:13:30 -04002975#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002976msgid "%s is mounted.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002977msgstr "%s ist eingehängt.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002978
2979#: e2fsck/unix.c:264
Philipp Thomasab02a742014-07-09 23:13:30 -04002980#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002981msgid "%s is in use.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04002982msgstr "%s wird verwendet.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002983
2984#: e2fsck/unix.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002985msgid ""
2986"Cannot continue, aborting.\n"
2987"\n"
2988msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04002989"Fortsetzung nicht möglich, wird abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002990"\n"
2991
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04002992#: e2fsck/unix.c:268
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002993msgid ""
2994"\n"
2995"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04002996"WARNING!!! The filesystem is mounted. If you continue you ***WILL***\n"
2997"cause ***SEVERE*** filesystem damage.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05002998"\n"
2999msgstr ""
3000"\n"
3001"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003002"WARNUNG!!! Das Dateisystem ist eingehängt. Wenn Sie fortfahren, "
3003"***WERDEN***\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003004"Sie ***SCHWERWIEGENDE*** Schäden am Dateisystem verursachen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003005"\n"
3006
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003007#: e2fsck/unix.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003008msgid "Do you really want to continue"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003009msgstr "Wirklich fortfahren"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003010
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003011#: e2fsck/unix.c:275
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003012msgid "check aborted.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003013msgstr "Prüfung abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003014
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003015#: e2fsck/unix.c:368
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003016msgid " contains a file system with errors"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003017msgstr " enthält ein fehlerhaftes Dateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003018
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003019#: e2fsck/unix.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003020msgid " was not cleanly unmounted"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003021msgstr " wurde nicht ordnungsgemäß ausgehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003022
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003023#: e2fsck/unix.c:372
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003024msgid " primary superblock features different from backup"
Theodore Ts'obd386982015-05-17 20:34:58 -04003025msgstr ""
3026"Eigenschaften des primären Superblocks unterscheiden sich von der "
3027"Datensicherung"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003028
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003029#: e2fsck/unix.c:376
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003030#, c-format
3031msgid " has been mounted %u times without being checked"
Philipp Thomasab02a742014-07-09 23:13:30 -04003032msgstr " wurde %u-mal ohne Überprüfung eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003033
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003034#: e2fsck/unix.c:383
Theodore Ts'o057a1592010-06-07 12:24:21 -04003035msgid " has filesystem last checked time in the future"
Theodore Ts'obd386982015-05-17 20:34:58 -04003036msgstr ""
3037" hat einen in der Zukunft liegenden Zeitpunkt der letzten Püfung des "
3038"Dateisystems"
Theodore Ts'o057a1592010-06-07 12:24:21 -04003039
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003040#: e2fsck/unix.c:389
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003041#, c-format
3042msgid " has gone %u days without being checked"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003043msgstr " wurde %u Tage ohne Überprüfung genutzt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003044
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003045#: e2fsck/unix.c:398
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003046msgid ", check forced.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003047msgstr ", Prüfung erzwungen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003048
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003049#: e2fsck/unix.c:431
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003050#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003051msgid "%s: clean, %u/%u files, %llu/%llu blocks"
3052msgstr "%s: sauber, %u/%u Dateien, %llu/%llu Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003053
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003054#: e2fsck/unix.c:451
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003055msgid " (check deferred; on battery)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003056msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003057
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003058#: e2fsck/unix.c:454
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003059msgid " (check after next mount)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003060msgstr " (Prüfung nach nächstem Einhängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003061
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003062#: e2fsck/unix.c:456
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003063#, c-format
3064msgid " (check in %ld mounts)"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003065msgstr " (Prüfung nach %ld Einhängevorgängen)"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003066
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003067#: e2fsck/unix.c:606
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003068#, c-format
3069msgid "ERROR: Couldn't open /dev/null (%s)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003070msgstr "Fehler: /dev/null (%s) kann nicht geöffnet werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003071
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003072#: e2fsck/unix.c:675
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003073msgid "Invalid EA version.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003074msgstr "Ungültige EA-Version.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003075
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003076#: e2fsck/unix.c:702
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003077#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04003078msgid "Unknown extended option: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003079msgstr "Unbekannte erweiterte Option: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003080
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003081#: e2fsck/unix.c:727
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003082#, c-format
3083msgid ""
3084"Syntax error in e2fsck config file (%s, line #%d)\n"
3085"\t%s\n"
3086msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003087"Syntaxfehler in der Konfigurationsdatei von e2fsck (%s, Zeile %d)\n"
3088"\t%s\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003089
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003090#: e2fsck/unix.c:797
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003091#, c-format
3092msgid "Error validating file descriptor %d: %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003093msgstr "Fehler bei Überprüfung des Datei-Deskriptors %d: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003094
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003095#: e2fsck/unix.c:801
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003096msgid "Invalid completion information file descriptor"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003097msgstr "Ungültiger „completion information“-Datei-Deskriptor"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003098
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003099#: e2fsck/unix.c:816
Theodore Ts'o6956f612005-12-31 16:46:15 -05003100msgid "Only one of the options -p/-a, -n or -y may be specified."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003101msgstr "Nur eine der Optionen -p/-a, -n oder -y darf angegeben werden."
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003102
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003103#: e2fsck/unix.c:837
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003104#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003105msgid "The -t option is not supported on this version of e2fsck.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003106msgstr "Die Option -t wird von dieser e2fsck-Version nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003107
Theodore Ts'obd386982015-05-17 20:34:58 -04003108#: e2fsck/unix.c:868 e2fsck/unix.c:942 misc/tune2fs.c:879 misc/tune2fs.c:1174
3109#: misc/tune2fs.c:1192
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003110#, c-format
3111msgid "Unable to resolve '%s'"
Philipp Thomasab02a742014-07-09 23:13:30 -04003112msgstr "Nicht möglich, „%s“ aufzulösen"
Theodore Ts'o7a1b3322003-12-24 14:24:02 -05003113
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003114#: e2fsck/unix.c:921
Philipp Thomas3e914b52011-01-24 15:03:41 -05003115msgid "The -n and -D options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04003116msgstr "Die Optionen -n und -D schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05003117
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003118#: e2fsck/unix.c:926
Philipp Thomas3e914b52011-01-24 15:03:41 -05003119msgid "The -n and -c options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04003120msgstr "Die Optionen -n und -c schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05003121
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003122#: e2fsck/unix.c:931
Philipp Thomas3e914b52011-01-24 15:03:41 -05003123msgid "The -n and -l/-L options are incompatible."
Philipp Thomasab02a742014-07-09 23:13:30 -04003124msgstr "Die Optionen -n und -l/-L schließen sich gegenseitig aus."
Philipp Thomas3e914b52011-01-24 15:03:41 -05003125
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003126#: e2fsck/unix.c:985
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003127msgid "The -c and the -l/-L options may not be both used at the same time.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003128msgstr ""
3129"Die Optionen -c und -l/-L dürfen nicht gleichzeitig verwendet werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003130
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003131#: e2fsck/unix.c:1032
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003132#, c-format
3133msgid ""
3134"E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
3135"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003136msgstr "2FSCK_JBD_DEBUG „%s“ ist keine Ganzzahl\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003137
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003138#: e2fsck/unix.c:1041
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003139#, c-format
3140msgid ""
3141"\n"
3142"Invalid non-numeric argument to -%c (\"%s\")\n"
3143"\n"
3144msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003145"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003146"Ungültiges nicht-numerisches Argument für -%c („%s“)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003147"\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003148
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003149#: e2fsck/unix.c:1132
Philipp Thomasedc733d2012-04-22 15:38:42 -04003150#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04003151msgid ""
3152"MMP interval is %u seconds and total wait time is %u seconds. Please "
3153"wait...\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003154msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003155"MMP-Intervall ist %u Sekunden und die gesamte Wartezeit ist %u Sekunden.\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003156"Bitte warten...\n"
3157
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003158#: e2fsck/unix.c:1149 e2fsck/unix.c:1154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003159msgid "while checking MMP block"
3160msgstr "beim Prüfen des MMP-Blocks"
3161
Theodore Ts'obd386982015-05-17 20:34:58 -04003162#: e2fsck/unix.c:1156 misc/tune2fs.c:2049
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003163msgid ""
3164"If you are sure the filesystem is not in use on any node, run:\n"
3165"'tune2fs -f -E clear_mmp {device}'\n"
3166msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003167"Wenn Sie sicher sind, dass das Dateisystem auf keinem Knoten benutzt wird,\n"
3168"führen Sie bitte Folgendes aus:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003169"„tune2fs -f -E clear_mmp {device}“\n"
3170
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003171#: e2fsck/unix.c:1207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003172msgid "Error: ext2fs library version out of date!\n"
3173msgstr "Fehler: ext2fs-Bibliotheks-Version ist zu alt!\n"
3174
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003175#: e2fsck/unix.c:1214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003176msgid "while trying to initialize program"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003177msgstr "bei der Programminitialisierung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003178
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003179#: e2fsck/unix.c:1237
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003180#, c-format
3181msgid "\tUsing %s, %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003182msgstr "\t%s wird verwendet, %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003183
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003184#: e2fsck/unix.c:1249
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003185msgid "need terminal for interactive repairs"
Philipp Thomasab02a742014-07-09 23:13:30 -04003186msgstr "Ein Terminal wird für interaktive Reparaturen benötigt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003187
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003188#: e2fsck/unix.c:1303
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003189#, c-format
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003190msgid "%s: %s trying backup blocks...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003191msgstr "%s: %s Datensicherungs-Blöcke werden versucht ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003192
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003193#: e2fsck/unix.c:1305
Theodore Ts'o7527ef12007-12-05 19:35:20 -05003194msgid "Superblock invalid,"
Philipp Thomasab02a742014-07-09 23:13:30 -04003195msgstr "Superblock ungültig,"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003196
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003197#: e2fsck/unix.c:1306
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003198msgid "Group descriptors look bad..."
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003199msgstr "Gruppen-Deskriptoren scheinen defekt zu sein..."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003200
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003201#: e2fsck/unix.c:1316
Philipp Thomasedc733d2012-04-22 15:38:42 -04003202#, c-format
3203msgid "%s: %s while using the backup blocks"
Philipp Thomasab02a742014-07-09 23:13:30 -04003204msgstr "%s: %s beim Benutzen der Datensicherungs-Blöcke"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003205
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003206#: e2fsck/unix.c:1320
Philipp Thomas77c871a2010-04-19 16:59:02 -04003207#, c-format
3208msgid "%s: going back to original superblock\n"
3209msgstr "%s: es wird zum originalen Superblock zurück gekehrt\n"
3210
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003211#: e2fsck/unix.c:1349
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003212msgid ""
3213"The filesystem revision is apparently too high for this version of e2fsck.\n"
3214"(Or the filesystem superblock is corrupt)\n"
3215"\n"
3216msgstr ""
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003217"Diese Dateisystem-Revision ist offensichtlich zu neu für diese Version \n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003218"von e2fsck (oder der Dateisystem-Superblock ist defekt).\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003219"\n"
3220
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003221#: e2fsck/unix.c:1356
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003222msgid "Could this be a zero-length partition?\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003223msgstr "Könnte es eine Partion der Länge Null sein?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003224
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003225#: e2fsck/unix.c:1358
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003226#, c-format
3227msgid "You must have %s access to the filesystem or be root\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003228msgstr "Sie benötigen %s- oder root-Rechte für das Dateisystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003229
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003230#: e2fsck/unix.c:1364
Eric Sandeen032eafe2012-07-28 17:48:36 -04003231msgid "Possibly non-existent or swap device?\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003232msgstr ""
3233"Möglicherweise ist die Partition nicht vorhanden oder eine Swap-Partition?\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003234
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003235#: e2fsck/unix.c:1366
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003236msgid "Filesystem mounted or opened exclusively by another program?\n"
3237msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003238"Ist das Dateisystem eingehängt oder exklusiv von einem anderen Programm\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003239"geöffnet worden?\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003240
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003241#: e2fsck/unix.c:1370
Philipp Thomas3e914b52011-01-24 15:03:41 -05003242msgid "Possibly non-existent device?\n"
3243msgstr "Ist das Gerät möglicherweise nicht vorhanden?\n"
3244
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003245#: e2fsck/unix.c:1373
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003246msgid ""
3247"Disk write-protected; use the -n option to do a read-only\n"
3248"check of the device.\n"
3249msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003250"Laufwerk ist schreibgeschützt, nutzen Sie die Option -n,\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003251"um es im Nur-Lesen-Modus zu prüfen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003252
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003253#: e2fsck/unix.c:1437
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003254msgid "Get a newer version of e2fsck!"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003255msgstr "Neuere Version von e2fsck benötigt!"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003256
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003257#: e2fsck/unix.c:1480
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003258#, c-format
3259msgid "while checking ext3 journal for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003260msgstr "während der Prüfung des ext3-Journals für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003261
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003262#: e2fsck/unix.c:1492
Theodore Ts'obd386982015-05-17 20:34:58 -04003263msgid ""
3264"Warning: skipping journal recovery because doing a read-only filesystem "
3265"check.\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003266msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04003267"Warnung: Journal-Wiederherstellung wird übersprungen, da sich das "
3268"Dateisystem\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003269"im Nur-Lesen-Modus befindet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003270
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003271#: e2fsck/unix.c:1504
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003272#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003273msgid "unable to set superblock flags on %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003274msgstr "Superblock-Flags konnten auf %s nicht gesetzt werden\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04003275
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003276#: e2fsck/unix.c:1511
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003277#, c-format
3278msgid "while recovering ext3 journal of %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003279msgstr "bei der Wiederherstellung des ext3-Journals von %s"
3280
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003281#: e2fsck/unix.c:1534
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003282#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003283msgid "%s has unsupported feature(s):"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003284msgstr "%s besitzt nicht unterstützte Eigenschaft(en):"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003285
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003286#: e2fsck/unix.c:1549
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003287#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003288msgid "%s: warning: compression support is experimental.\n"
3289msgstr "%s: Warnung: Die Kompressionsunterstützung ist experimentell.\n"
3290
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003291#: e2fsck/unix.c:1555
Philipp Thomasedc733d2012-04-22 15:38:42 -04003292#, c-format
3293msgid ""
3294"%s: e2fsck not compiled with HTREE support,\n"
3295"\tbut filesystem %s has HTREE directories.\n"
3296msgstr ""
3297"%s: e2fsck wurde ohne Unterstützung für HTREE kompiliert,\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003298"\taber das Dateisystem %s besitzt HTREE-Verzeichnisse.\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04003299
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003300#: e2fsck/unix.c:1607
Philipp Thomasedc733d2012-04-22 15:38:42 -04003301#, c-format
3302msgid "%s: %s while reading bad blocks inode\n"
3303msgstr "%s: %s beim Lesen des Bad-Block-Inodes\n"
3304
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003305#: e2fsck/unix.c:1610
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003306msgid "This doesn't bode well, but we'll try to go on...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003307msgstr "Das verheißt nichts Gutes, aber es wird trotzdem versucht ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003308
Philipp Thomas37be3822015-05-17 20:21:39 -04003309#: e2fsck/unix.c:1652
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003310#, c-format
3311msgid "Creating journal (%d blocks): "
Philipp Thomasab02a742014-07-09 23:13:30 -04003312msgstr "Journal wird erstellt (%d Blöcke): "
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003313
Philipp Thomas37be3822015-05-17 20:21:39 -04003314#: e2fsck/unix.c:1662
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003315msgid " Done.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003316msgstr " Erledigt.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003317
Philipp Thomas37be3822015-05-17 20:21:39 -04003318#: e2fsck/unix.c:1664
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003319msgid ""
3320"\n"
3321"*** journal has been re-created - filesystem is now ext3 again ***\n"
3322msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003323"\n"
3324"*** Journal wurde wiederhergestellt - Dateisystem ist nun wieder ext3 ***\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003325
Philipp Thomas37be3822015-05-17 20:21:39 -04003326#: e2fsck/unix.c:1688
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003327msgid "Restarting e2fsck from the beginning...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003328msgstr "e2fsck wird neu gestartet ...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003329
Philipp Thomas37be3822015-05-17 20:21:39 -04003330#: e2fsck/unix.c:1692
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003331msgid "while resetting context"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003332msgstr "beim Rücksetzen des Kontexts"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003333
Philipp Thomas37be3822015-05-17 20:21:39 -04003334#: e2fsck/unix.c:1699
3335msgid "aborted"
3336msgstr "abgebrochen"
3337
3338#: e2fsck/unix.c:1706
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003339#, c-format
3340msgid "%s: e2fsck canceled.\n"
Philipp Thomascfbdca12011-10-05 02:04:08 -04003341msgstr "%s: e2fsck abgebrochen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003342
Philipp Thomas37be3822015-05-17 20:21:39 -04003343#: e2fsck/unix.c:1741 e2fsck/util.c:67
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003344#, c-format
3345msgid ""
3346"\n"
3347"%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
3348msgstr ""
3349"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003350"%s: ***** DATEISYSTEM WURDE VERÄNDERT *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003351
Philipp Thomas37be3822015-05-17 20:21:39 -04003352#: e2fsck/unix.c:1745
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003353#, c-format
3354msgid "%s: ***** REBOOT LINUX *****\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003355msgstr "%s: ***** LINUX MUSS NEU GESTARTET WERDEN *****\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003356
Philipp Thomas37be3822015-05-17 20:21:39 -04003357#: e2fsck/unix.c:1753 e2fsck/util.c:73
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003358#, c-format
3359msgid ""
3360"\n"
3361"%s: ********** WARNING: Filesystem still has errors **********\n"
3362"\n"
3363msgstr ""
3364"\n"
3365"%s: ********** WARNUNG: Noch Fehler im Dateisystem **********\n"
3366"\n"
3367
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003368#: e2fsck/util.c:190 misc/util.c:86
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003369msgid "yY"
Makoto Dei748cc432008-04-21 16:49:48 +09003370msgstr "jJ"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003371
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003372#: e2fsck/util.c:191
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003373msgid "nN"
3374msgstr "nN"
3375
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003376#: e2fsck/util.c:205
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003377msgid "<y>"
3378msgstr "<j>"
3379
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003380#: e2fsck/util.c:207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003381msgid "<n>"
3382msgstr "<n>"
3383
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003384#: e2fsck/util.c:209
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003385msgid " (y/n)"
3386msgstr " (j/n)"
3387
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003388#: e2fsck/util.c:223
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003389msgid "cancelled!\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003390msgstr "abgebrochen!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003391
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003392#: e2fsck/util.c:238
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003393msgid "yes\n"
3394msgstr "ja\n"
3395
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003396#: e2fsck/util.c:240
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003397msgid "no\n"
3398msgstr "nein\n"
3399
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003400#: e2fsck/util.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003401#, c-format
3402msgid ""
3403"%s? no\n"
3404"\n"
3405msgstr ""
3406"%s? nein\n"
3407"\n"
3408
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003409#: e2fsck/util.c:254
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003410#, c-format
3411msgid ""
3412"%s? yes\n"
3413"\n"
3414msgstr ""
3415"%s? ja\n"
3416"\n"
3417
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003418#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003419msgid "yes"
3420msgstr "ja"
3421
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003422#: e2fsck/util.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003423msgid "no"
3424msgstr "nein"
3425
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003426#: e2fsck/util.c:273
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003427#, c-format
3428msgid "e2fsck_read_bitmaps: illegal bitmap block(s) for %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003429msgstr "e2fsck_read_bitmaps: ungültiger Bitmpa-Block(-Blöcke) für %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003430
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003431#: e2fsck/util.c:278
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003432msgid "reading inode and block bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04003433msgstr "Inode und Block-Bitmaps werden gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003434
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003435#: e2fsck/util.c:286
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003436#, c-format
3437msgid "while retrying to read bitmaps for %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003438msgstr "während des wiederholten Versuches, Bitmaps für %s einzulesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003439
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003440#: e2fsck/util.c:298
Philipp Thomas40771272008-09-07 22:55:25 -04003441msgid "writing block and inode bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04003442msgstr "Block- und Inode-Bitmaps werden geschrieben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003443
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003444#: e2fsck/util.c:303
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003445#, c-format
Philipp Thomas40771272008-09-07 22:55:25 -04003446msgid "while rewriting block and inode bitmaps for %s"
Theodore Ts'obd386982015-05-17 20:34:58 -04003447msgstr ""
3448"während des wiederholten Versuches, Block- und Inode-Bitmaps für %s zu "
3449"schreiben."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003450
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003451#: e2fsck/util.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003452#, c-format
3453msgid ""
3454"\n"
3455"\n"
3456"%s: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.\n"
3457"\t(i.e., without -a or -p options)\n"
3458msgstr ""
3459"\n"
3460"\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003461"%s: UNERWARTETE INKONSISTENZ; fsck MANUELL AUSFÜHREN\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003462"\t(d.h. ohne die Optionen -a oder -p)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003463
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003464#: e2fsck/util.c:396
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003465#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003466msgid "Memory used: %luk/%luk (%luk/%luk), "
3467msgstr "Benutzter Speicher: %luk/%luk (%luk/%luk), "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003468
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003469#: e2fsck/util.c:400
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003470#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003471msgid "Memory used: %lu, "
3472msgstr "Benutzter Speicher: %lu, "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003473
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003474#: e2fsck/util.c:407
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003475#, c-format
3476msgid "time: %5.2f/%5.2f/%5.2f\n"
3477msgstr "Zeit: %5.2f/%5.2f/%5.2f\n"
3478
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003479#: e2fsck/util.c:412
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003480#, c-format
3481msgid "elapsed time: %6.3f\n"
3482msgstr "abgelaufende Zeit: %6.3f\n"
3483
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003484#: e2fsck/util.c:447 e2fsck/util.c:461
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003485#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003486msgid "while reading inode %lu in %s"
3487msgstr "beim Lesen von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003488
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003489#: e2fsck/util.c:475 e2fsck/util.c:488
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003490#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003491msgid "while writing inode %lu in %s"
3492msgstr "beim Schreiben von Inode %lu in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003493
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003494#: e2fsck/util.c:637
Philipp Thomas720e6362008-06-21 14:06:00 -04003495msgid "while allocating zeroizing buffer"
Philipp Thomasab02a742014-07-09 23:13:30 -04003496msgstr "beim Reservieren eines Puffers zum Nullen"
Philipp Thomas720e6362008-06-21 14:06:00 -04003497
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003498#: e2fsck/util.c:785
Theodore Ts'obd386982015-05-17 20:34:58 -04003499msgid ""
3500"UNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is "
3501"running.\n"
3502msgstr ""
3503"UNERWARTETE INKONSISTENZ: das Dateisystem wird verändert, während fsck "
3504"läuft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003505
Theodore Ts'obd386982015-05-17 20:34:58 -04003506#: misc/badblocks.c:72
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003507msgid "done \n"
3508msgstr "erledigt \n"
3509
Theodore Ts'obd386982015-05-17 20:34:58 -04003510#: misc/badblocks.c:97
Philipp Thomas68801282008-07-17 11:47:00 -04003511#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003512msgid ""
3513"Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003514" [-c blocks_at_once] [-d delay_factor_between_reads] [-e "
3515"max_bad_blocks]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003516" [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
3517" device [last_block [first_block]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003518msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003519"Aufruf: %s [-b Blockgröße] [-i Eingabedatei] [-o Ausgabedatei] [-svwnf]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003520" [-c Blöcke_auf_einmal] [-d "
3521"Verzögerungsfaktor_zwischen_Lesedurchgängen]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003522" [-e maximale_defekte_Blöcke] [-p Anzahl_Durchgänge]\n"
Philipp Thomas40771272008-09-07 22:55:25 -04003523" [-t Testmuster [-t Testmuster [...]]]\n"
3524" Gerät [letzter_Block [Startblock]]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003525
Theodore Ts'obd386982015-05-17 20:34:58 -04003526#: misc/badblocks.c:108
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003527#, c-format
3528msgid ""
3529"%s: The -n and -w options are mutually exclusive.\n"
3530"\n"
3531msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003532"%s: Die Optionen -n und -w schließen sich gegenseitig aus.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003533"\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003534
Theodore Ts'obd386982015-05-17 20:34:58 -04003535#: misc/badblocks.c:223
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003536#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003537msgid "%6.2f%% done, %s elapsed. (%d/%d/%d errors)"
3538msgstr "%6.2f%% erledigt, %s verstrichen. (%d/%d/%d Fehler)"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05003539
Theodore Ts'obd386982015-05-17 20:34:58 -04003540#: misc/badblocks.c:328
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003541msgid "Testing with random pattern: "
Philipp Thomas37be3822015-05-17 20:21:39 -04003542msgstr "Es wird mit zufälligen Mustern getestet: "
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003543
Theodore Ts'obd386982015-05-17 20:34:58 -04003544#: misc/badblocks.c:346
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003545msgid "Testing with pattern 0x"
Philipp Thomas37be3822015-05-17 20:21:39 -04003546msgstr "Es wird getestet Mit Muster 0x"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003547
Theodore Ts'obd386982015-05-17 20:34:58 -04003548#: misc/badblocks.c:378 misc/badblocks.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003549msgid "during seek"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003550msgstr "beim Suchen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003551
Theodore Ts'obd386982015-05-17 20:34:58 -04003552#: misc/badblocks.c:389
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003553#, c-format
3554msgid "Weird value (%ld) in do_read\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003555msgstr "Merkwürdiger Wert (%ld) in do_read\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003556
Theodore Ts'obd386982015-05-17 20:34:58 -04003557#: misc/badblocks.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003558msgid "during ext2fs_sync_device"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003559msgstr "während ext2fs_sync_device"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003560
Theodore Ts'obd386982015-05-17 20:34:58 -04003561#: misc/badblocks.c:496 misc/badblocks.c:758
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003562msgid "while beginning bad block list iteration"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003563msgstr "beim Beginn des „Bad Block“-Listendurchlaufs"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003564
Theodore Ts'obd386982015-05-17 20:34:58 -04003565#: misc/badblocks.c:511 misc/badblocks.c:611 misc/badblocks.c:769
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003566msgid "while allocating buffers"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003567msgstr "beim Zuweisen von Puffern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003568
Theodore Ts'obd386982015-05-17 20:34:58 -04003569#: misc/badblocks.c:515
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003570#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003571msgid "Checking blocks %lu to %lu\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003572msgstr "Es wird von Block %lu bis %lu geprüft\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003573
Theodore Ts'obd386982015-05-17 20:34:58 -04003574#: misc/badblocks.c:520
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003575msgid "Checking for bad blocks in read-only mode\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003576msgstr "Es wird nach defekten Blöcken im Nur-Lesen-Modus gesucht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003577
Theodore Ts'obd386982015-05-17 20:34:58 -04003578#: misc/badblocks.c:529
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003579msgid "Checking for bad blocks (read-only test): "
Philipp Thomas37be3822015-05-17 20:21:39 -04003580msgstr "Es wird nach defekten Blöcken gsucht (Nur-Lesen-Modus):"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003581
Theodore Ts'obd386982015-05-17 20:34:58 -04003582#: misc/badblocks.c:536 misc/badblocks.c:643 misc/badblocks.c:685
3583#: misc/badblocks.c:832
Philipp Thomas720e6362008-06-21 14:06:00 -04003584msgid "Too many bad blocks, aborting test\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003585msgstr "Zu viele defekte Blöcke, Test wird abgebrochen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003586
Theodore Ts'obd386982015-05-17 20:34:58 -04003587#: misc/badblocks.c:618
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003588msgid "Checking for bad blocks in read-write mode\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003589msgstr "Es wird nach defekten Blöcken gesucht (Lesen+Schreiben-Modus)\n"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003590
Theodore Ts'obd386982015-05-17 20:34:58 -04003591#: misc/badblocks.c:620 misc/badblocks.c:782
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003592#, c-format
3593msgid "From block %lu to %lu\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003594msgstr "Von Block %lu bis %lu\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003595
Theodore Ts'obd386982015-05-17 20:34:58 -04003596#: misc/badblocks.c:675
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003597msgid "Reading and comparing: "
3598msgstr "Lesen und Vergleichen:"
3599
Theodore Ts'obd386982015-05-17 20:34:58 -04003600#: misc/badblocks.c:781
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003601msgid "Checking for bad blocks in non-destructive read-write mode\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003602msgstr ""
3603"Es wird nach defekten Blöcken im zerstörungsfreien Lesen+Schreiben-Modus "
3604"gesucht\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003605
Theodore Ts'obd386982015-05-17 20:34:58 -04003606#: misc/badblocks.c:787
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003607msgid "Checking for bad blocks (non-destructive read-write test)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003608msgstr ""
3609"Es wird nach defekten Blöcken gesucht (zerstörungsfreier Lesen+Schreiben-"
3610"Modus)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003611
Theodore Ts'obd386982015-05-17 20:34:58 -04003612#: misc/badblocks.c:794
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003613msgid ""
3614"\n"
3615"Interrupt caught, cleaning up\n"
3616msgstr ""
3617"\n"
Philipp Thomas37be3822015-05-17 20:21:39 -04003618"Unterbrechung empfangen, es wird aufgeräumt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003619
Theodore Ts'obd386982015-05-17 20:34:58 -04003620#: misc/badblocks.c:877
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003621#, c-format
3622msgid "during test data write, block %lu"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003623msgstr "beim Schreiben der Test-Daten; Block %lu"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003624
Theodore Ts'obd386982015-05-17 20:34:58 -04003625#: misc/badblocks.c:998 misc/util.c:321
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003626#, c-format
3627msgid "%s is mounted; "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003628msgstr "%s ist eingehängt; "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003629
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003630#: misc/badblocks.c:1000
Theodore Ts'obd386982015-05-17 20:34:58 -04003631msgid "badblocks forced anyway. Hope /etc/mtab is incorrect.\n"
3632msgstr ""
3633"Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
3634
3635#: misc/badblocks.c:1005
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003636msgid "it's not safe to run badblocks!\n"
3637msgstr "es ist zu unsicher, Badblocks zu starten!\n"
3638
Theodore Ts'obd386982015-05-17 20:34:58 -04003639#: misc/badblocks.c:1010 misc/util.c:332
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003640#, c-format
3641msgid "%s is apparently in use by the system; "
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003642msgstr "%s wird offensichtlich vom System genutzt; "
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003643
Theodore Ts'obd386982015-05-17 20:34:58 -04003644#: misc/badblocks.c:1013
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003645msgid "badblocks forced anyway.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003646msgstr ""
3647"Badblocks wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04003648
Theodore Ts'obd386982015-05-17 20:34:58 -04003649#: misc/badblocks.c:1033
Philipp Thomas68801282008-07-17 11:47:00 -04003650#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04003651msgid "invalid %s - %s"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003652msgstr "ungültige %s - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04003653
Theodore Ts'obd386982015-05-17 20:34:58 -04003654#: misc/badblocks.c:1127
3655#, c-format
3656msgid "Too big max bad blocks count %u - maximum is %u"
3657msgstr ""
3658
3659#: misc/badblocks.c:1154
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003660#, c-format
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003661msgid "can't allocate memory for test_pattern - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04003662msgstr "Speicher für Testmuster kann nicht reserviert werden - %s"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003663
Theodore Ts'obd386982015-05-17 20:34:58 -04003664#: misc/badblocks.c:1184
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003665msgid "Maximum of one test_pattern may be specified in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003666msgstr "Es darf im Nur-Lesen-Modus nur ein Testmuster angegeben werden"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003667
Theodore Ts'obd386982015-05-17 20:34:58 -04003668#: misc/badblocks.c:1190
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003669msgid "Random test_pattern is not allowed in read-only mode"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003670msgstr "Zufälliges Testmuster ist im Nur-Lesen-Modus nicht erlaubt"
Theodore Ts'o96e6f5d2003-05-21 18:26:31 -04003671
Theodore Ts'obd386982015-05-17 20:34:58 -04003672#: misc/badblocks.c:1204
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003673msgid ""
3674"Couldn't determine device size; you must specify\n"
3675"the size manually\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003676msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04003677"Größe des Gerätes ist nicht feststellbar.\n"
3678"Sie müssen sie manuell angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003679
Theodore Ts'obd386982015-05-17 20:34:58 -04003680#: misc/badblocks.c:1210
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003681msgid "while trying to determine device size"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003682msgstr "beim Versuch, die Gerätegröße festzustellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003683
Theodore Ts'obd386982015-05-17 20:34:58 -04003684#: misc/badblocks.c:1215
Philipp Thomas68801282008-07-17 11:47:00 -04003685msgid "last block"
3686msgstr "letzter Block"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003687
Theodore Ts'obd386982015-05-17 20:34:58 -04003688#: misc/badblocks.c:1221
Philipp Thomas68801282008-07-17 11:47:00 -04003689msgid "first block"
3690msgstr "erster Block"
3691
Theodore Ts'obd386982015-05-17 20:34:58 -04003692#: misc/badblocks.c:1224
Philipp Thomasb93349a2014-05-31 13:32:39 -04003693#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003694msgid "invalid starting block (%llu): must be less than %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003695msgstr "Ungültiger Startblock (%llu): er muss kleiner als %llu sein"
Philipp Thomas68801282008-07-17 11:47:00 -04003696
Theodore Ts'obd386982015-05-17 20:34:58 -04003697#: misc/badblocks.c:1231
Philipp Thomasb93349a2014-05-31 13:32:39 -04003698#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003699msgid "invalid end block (%llu): must be 32-bit value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04003700msgstr "Ungültiger Endblock (%llu): er muss ein 32-Bit Wert sein"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003701
Theodore Ts'obd386982015-05-17 20:34:58 -04003702#: misc/badblocks.c:1287
Theodore Ts'o197abba2005-06-20 18:00:23 -04003703msgid "while creating in-memory bad blocks list"
Philipp Thomasab02a742014-07-09 23:13:30 -04003704msgstr "beim Erstellen der Bad-Block-Liste im Speicher"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003705
Theodore Ts'obd386982015-05-17 20:34:58 -04003706#: misc/badblocks.c:1296
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003707msgid "input file - bad format"
Philipp Thomasab02a742014-07-09 23:13:30 -04003708msgstr "die Eingabedatei hat ein ungültiges Format"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003709
Theodore Ts'obd386982015-05-17 20:34:58 -04003710#: misc/badblocks.c:1304 misc/badblocks.c:1313
Theodore Ts'o197abba2005-06-20 18:00:23 -04003711msgid "while adding to in-memory bad block list"
Philipp Thomasab02a742014-07-09 23:13:30 -04003712msgstr "beim Hinzufügen zur Bad-Block-Liste im Speicher"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003713
Theodore Ts'obd386982015-05-17 20:34:58 -04003714#: misc/badblocks.c:1338
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003715#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003716msgid "Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"
3717msgstr "Durchgang beendet, %u defekte Blöcke gefunden. (%d/%d/%d Fehler)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003718
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003719#: misc/chattr.c:86
Philipp Thomasab02a742014-07-09 23:13:30 -04003720#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003721msgid "Usage: %s [-RVf] [-+=aAcCdDeijsStTu] [-v version] files...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003722msgstr "Aufruf: %s [-RVf] [-+=AaCcDdeijsStTu] [-v Version] Dateien...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003723
Philipp Thomasd0275172013-01-15 23:30:35 -05003724#: misc/chattr.c:155
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003725#, c-format
3726msgid "bad version - %s\n"
3727msgstr "falsche Version - %s\n"
3728
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003729#: misc/chattr.c:201 misc/lsattr.c:116
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003730#, c-format
3731msgid "while trying to stat %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003732msgstr "beim Auslesen des Status von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003733
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003734#: misc/chattr.c:208
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003735#, c-format
3736msgid "while reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003737msgstr "beim Lesens der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003738
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003739#: misc/chattr.c:213 misc/chattr.c:225
Philipp Thomas77c871a2010-04-19 16:59:02 -04003740#, c-format
3741msgid "Flags of %s set as "
3742msgstr "Flags von %s wie folgt gesetzt: "
3743
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003744#: misc/chattr.c:234
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003745#, c-format
3746msgid "while setting flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003747msgstr "beim Setzen der Flags in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003748
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003749#: misc/chattr.c:242
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003750#, c-format
3751msgid "Version of %s set as %lu\n"
3752msgstr "Version von %s gesetzt auf %lu\n"
3753
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003754#: misc/chattr.c:246
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003755#, c-format
3756msgid "while setting version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003757msgstr "beim Setzen der Version in %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003758
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003759#: misc/chattr.c:267
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003760msgid "Couldn't allocate path variable in chattr_dir_proc"
Philipp Thomasab02a742014-07-09 23:13:30 -04003761msgstr "Pfad-Variable in chattr_dir_proc konnte nicht reserviert werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003762
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003763#: misc/chattr.c:307
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003764msgid "= is incompatible with - and +\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003765msgstr "= ist inkompatibel zu - und +\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003766
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003767#: misc/chattr.c:315
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003768msgid "Must use '-v', =, - or +\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003769msgstr "„-v“, =, - oder + verwenden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003770
Eric Sandeen032eafe2012-07-28 17:48:36 -04003771#: misc/dumpe2fs.c:55
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003772#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04003773msgid "Usage: %s [-bfhixV] [-o superblock=<num>] [-o blocksize=<num>] device\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003774msgstr ""
3775"Aufruf: %s [-bfhixV] [-o superblock=<Nummer>] [-o blocksize=<Nummer>] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003776
Eric Sandeen032eafe2012-07-28 17:48:36 -04003777#: misc/dumpe2fs.c:159
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003778msgid "blocks"
3779msgstr "Blöcke"
3780
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003781#: misc/dumpe2fs.c:169
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003782msgid "clusters"
3783msgstr "Cluster"
3784
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003785#: misc/dumpe2fs.c:197
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003786#, c-format
3787msgid "Group %lu: (Blocks "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003788msgstr "Gruppe %lu: (Blöcke "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003789
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003790#: misc/dumpe2fs.c:205
Philipp Thomas720e6362008-06-21 14:06:00 -04003791#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003792msgid " Checksum 0x%04x"
Philipp Thomasab02a742014-07-09 23:13:30 -04003793msgstr " Prüfsumme 0x%04x"
Philipp Thomas720e6362008-06-21 14:06:00 -04003794
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003795#: misc/dumpe2fs.c:207
Theodore Ts'of9e6df42004-05-04 16:19:13 -04003796#, c-format
Philipp Thomasedc733d2012-04-22 15:38:42 -04003797msgid " (EXPECTED 0x%04x)"
3798msgstr " (0x%04x ERWARTET)"
3799
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003800#: misc/dumpe2fs.c:208
Philipp Thomasedc733d2012-04-22 15:38:42 -04003801#, c-format
3802msgid ", unused inodes %u\n"
3803msgstr ", ungenutzte Inodes %u\n"
3804
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003805#: misc/dumpe2fs.c:213
Philipp Thomasedc733d2012-04-22 15:38:42 -04003806#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003807msgid " %s superblock at "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003808msgstr " %s Superblock in "
3809
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003810#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003811msgid "Primary"
Philipp Thomasab02a742014-07-09 23:13:30 -04003812msgstr "Primär"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003813
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003814#: misc/dumpe2fs.c:214
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003815msgid "Backup"
Philipp Thomasab02a742014-07-09 23:13:30 -04003816msgstr "Datensicherung"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003817
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003818#: misc/dumpe2fs.c:218
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003819msgid ", Group descriptors at "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003820msgstr ", Gruppendeskriptoren in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003821
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003822#: misc/dumpe2fs.c:222
Theodore Ts'obc759702005-05-09 20:40:55 -04003823msgid ""
3824"\n"
3825" Reserved GDT blocks at "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003826msgstr ""
3827"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003828" reservierte GDT-Blöcke bei "
Theodore Ts'obc759702005-05-09 20:40:55 -04003829
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003830#: misc/dumpe2fs.c:229
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003831msgid " Group descriptor at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003832msgstr " Gruppendeskriptor in "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003833
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003834#: misc/dumpe2fs.c:235
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003835msgid " Block bitmap at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003836msgstr " Block-Bitmap in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003837
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003838#: misc/dumpe2fs.c:239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003839msgid ", Inode bitmap at "
Philipp Thomasab02a742014-07-09 23:13:30 -04003840msgstr ", Inode-Bitmap in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003841
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003842#: misc/dumpe2fs.c:243
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003843msgid ""
3844"\n"
3845" Inode table at "
3846msgstr ""
3847"\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003848" Inode-Tabelle in "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003849
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003850#: misc/dumpe2fs.c:249
Philipp Thomas68801282008-07-17 11:47:00 -04003851#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003852msgid ""
3853"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003854" %u free %s, %u free inodes, %u directories%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003855msgstr ""
3856"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003857" %u freie %s, %u freie Inodes, %u Verzeichnisse%s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003858
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003859#: misc/dumpe2fs.c:256
Philipp Thomas720e6362008-06-21 14:06:00 -04003860#, c-format
3861msgid ", %u unused inodes\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04003862msgstr ", %u ungenutzte Inodes\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04003863
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003864#: misc/dumpe2fs.c:259
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003865msgid " Free blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04003866msgstr " Freie Blöcke: "
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003867
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003868#: misc/dumpe2fs.c:274
Theodore Ts'o0c897a92002-11-09 12:01:18 -05003869msgid " Free inodes: "
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003870msgstr " Freie Inodes: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003871
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003872#: misc/dumpe2fs.c:310
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003873msgid "while printing bad block list"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003874msgstr "beim Ausgeben der „Bad Block“-Liste"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003875
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003876#: misc/dumpe2fs.c:316
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003877#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003878msgid "Bad blocks: %u"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003879msgstr "Bad Blocks: %u"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003880
Theodore Ts'obd386982015-05-17 20:34:58 -04003881#: misc/dumpe2fs.c:345 misc/tune2fs.c:347
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003882msgid "while reading journal inode"
3883msgstr "beim Lesen des Journal-Inodes"
3884
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003885#: misc/dumpe2fs.c:351
Philipp Thomas77c871a2010-04-19 16:59:02 -04003886msgid "while opening journal inode"
3887msgstr "beim Lesen des Journal-Inodes"
3888
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003889#: misc/dumpe2fs.c:357
Philipp Thomas77c871a2010-04-19 16:59:02 -04003890msgid "while reading journal super block"
3891msgstr "beim Lesen des Journal-Superblocks"
3892
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003893#: misc/dumpe2fs.c:364
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003894msgid "Journal superblock magic number invalid!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003895msgstr "Die magische Zahl im Journal-Superblock ist ungültig!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003896
3897#: misc/dumpe2fs.c:367
Philipp Thomas77c871a2010-04-19 16:59:02 -04003898msgid "Journal features: "
3899msgstr "Jounaleigenschaften: "
3900
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003901#: misc/dumpe2fs.c:380
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003902msgid "Journal size: "
Philipp Thomasab02a742014-07-09 23:13:30 -04003903msgstr "Journalgröße: "
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003904
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003905#: misc/dumpe2fs.c:391
Philipp Thomas77c871a2010-04-19 16:59:02 -04003906#, c-format
3907msgid ""
3908"Journal length: %u\n"
3909"Journal sequence: 0x%08x\n"
3910"Journal start: %u\n"
3911msgstr ""
3912"Journal-Länge: %u\n"
3913"Journal-Sequenz: 0x%08x\n"
3914"Journal-Start: %u\n"
3915
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003916#: misc/dumpe2fs.c:398
Philipp Thomasd0275172013-01-15 23:30:35 -05003917#, c-format
Eric Sandeen032eafe2012-07-28 17:48:36 -04003918msgid "Journal errno: %d\n"
Philipp Thomasd0275172013-01-15 23:30:35 -05003919msgstr "Jounal-Fehlernummer: %d\n"
Eric Sandeen032eafe2012-07-28 17:48:36 -04003920
Philipp Thomas37be3822015-05-17 20:21:39 -04003921#: misc/dumpe2fs.c:415 misc/tune2fs.c:196
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003922msgid "while reading journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05003923msgstr "beim Lesen des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003924
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003925#: misc/dumpe2fs.c:423
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003926msgid "Couldn't find journal superblock magic numbers"
Theodore Ts'obd386982015-05-17 20:34:58 -04003927msgstr ""
3928"Die magische Nummer des Journal-Superblocks konnte nicht gefunden werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003929
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003930#: misc/dumpe2fs.c:427
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003931#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003932msgid ""
3933"\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003934"Journal block size: %u\n"
3935"Journal length: %u\n"
3936"Journal first block: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003937"Journal sequence: 0x%08x\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05003938"Journal start: %u\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04003939"Journal number of users: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003940msgstr ""
3941"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003942"Journal-Blockgröße: %u\n"
3943"Journal-Länge: %u\n"
3944"Journal-Startblock: %u\n"
3945"Journal-Sequenz: 0x%08x\n"
3946"Journal-Start: %u\n"
3947"Journal-Benutzeranzahl: %u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003948
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003949#: misc/dumpe2fs.c:440
Theodore Ts'o197abba2005-06-20 18:00:23 -04003950#, c-format
3951msgid "Journal users: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003952msgstr "Jounalbenutzer: %s\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04003953
Theodore Ts'obd386982015-05-17 20:34:58 -04003954#: misc/dumpe2fs.c:456 misc/mke2fs.c:743 misc/tune2fs.c:1211
Theodore Ts'o8f741372008-02-28 21:47:05 -05003955msgid "Couldn't allocate memory to parse options!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04003956msgstr ""
3957"Speicher zum Verarbeiten der Optionen konnte nicht reserviert werden!\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003958
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003959#: misc/dumpe2fs.c:482
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003960#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003961msgid "Invalid superblock parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003962msgstr "Ungültiger Superblock-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003963
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003964#: misc/dumpe2fs.c:497
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003965#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003966msgid "Invalid blocksize parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003967msgstr "Ungültiger Blockgrößen-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003968
Theodore Ts'o196b59c2014-05-18 21:47:32 -04003969#: misc/dumpe2fs.c:508
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003970#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05003971msgid ""
3972"\n"
3973"Bad extended option(s) specified: %s\n"
3974"\n"
3975"Extended options are separated by commas, and may take an argument which\n"
3976"\tis set off by an equals ('=') sign.\n"
3977"\n"
3978"Valid extended options are:\n"
3979"\tsuperblock=<superblock number>\n"
3980"\tblocksize=<blocksize>\n"
3981msgstr ""
3982"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003983"Falsche erweiterte Optionen angegeben: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003984"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003985"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04003986"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003987"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04003988"Gültige erweiterte Optionen sind:\n"
3989"\tsuperblock=<Nummer des Spuperblocks>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003990"\tblocksize=<Blockgröße>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05003991"\n"
3992
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04003993#: misc/dumpe2fs.c:568 misc/mke2fs.c:1734
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003994#, c-format
3995msgid "\tUsing %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04003996msgstr "\t%s wird benutzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05003997
Theodore Ts'obd386982015-05-17 20:34:58 -04003998#: misc/dumpe2fs.c:606 misc/e2image.c:1582 misc/tune2fs.c:2060
3999#: resize/main.c:319
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004000msgid "Couldn't find valid filesystem superblock.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004001msgstr "Es kann kein gültiger Dateisystem-Superblock gefunden werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004002
Philipp Thomas37be3822015-05-17 20:21:39 -04004003#: misc/dumpe2fs.c:634
Theodore Ts'of9e6df42004-05-04 16:19:13 -04004004#, c-format
Theodore Ts'o0c897a92002-11-09 12:01:18 -05004005msgid ""
4006"\n"
4007"%s: %s: error reading bitmaps: %s\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004008msgstr ""
4009"\n"
4010"%s: %s: Fehler beim Lesen von Bitmaps: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004011
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004012#: misc/e2image.c:101
Philipp Thomasb93349a2014-05-31 13:32:39 -04004013#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004014msgid "Usage: %s [ -r|Q ] [ -fr ] device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004015msgstr "Aufruf: %s [-r|Q ] [ -fr ] Gerätedatei Abbild-Datei\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004016
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004017#: misc/e2image.c:103
Philipp Thomasb93349a2014-05-31 13:32:39 -04004018#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004019msgid " %s -I device image-file\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004020msgstr " %s [-I] Gerätedatei Abbild-Datei\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004021
4022#: misc/e2image.c:104
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004023#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04004024msgid ""
4025" %s -ra [ -cfnp ] [ -o src_offset ] [ -O dest_offset ] src_fs "
4026"[ dest_fs ]\n"
4027msgstr ""
4028" %s -ra [ -cfnp ] [ -o Quelloffset ] [ -O Zieloffset ] Quell_Fs "
4029"[ Ziel_fs ]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004030
4031#: misc/e2image.c:169 misc/e2image.c:576 misc/e2image.c:582
4032#: misc/e2image.c:1178
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004033msgid "while allocating buffer"
4034msgstr "beim Zuweisen von Puffern"
4035
4036#: misc/e2image.c:174
Philipp Thomasb93349a2014-05-31 13:32:39 -04004037#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004038msgid "Writing block %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004039msgstr "Block %llu wird geschrieben\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004040
4041#: misc/e2image.c:188
Philipp Thomasb93349a2014-05-31 13:32:39 -04004042#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004043msgid "error writing block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004044msgstr "Schreibfehler - Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004045
4046#: misc/e2image.c:191
4047msgid "error in generic_write()"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004048msgstr "Fehler in generic_write()"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004049
4050#: misc/e2image.c:208
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004051msgid "Error: header size is bigger than wrt_size\n"
4052msgstr "Fehler: Größe des Headers übersteigt wrt_size\n"
4053
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004054#: misc/e2image.c:213
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004055msgid "Couldn't allocate header buffer\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004056msgstr "Header-Puffer konnte nicht zugewiesen werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004057
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004058#: misc/e2image.c:241
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004059msgid "while writing superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004060msgstr "beim Schreiben des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004061
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004062#: misc/e2image.c:250
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004063msgid "while writing inode table"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004064msgstr "beim Schreiben der Inode-Tabelle"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004065
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004066#: misc/e2image.c:258
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004067msgid "while writing block bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004068msgstr "beim Schreiben der Block-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004069
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004070#: misc/e2image.c:266
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004071msgid "while writing inode bitmap"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004072msgstr "beim Schreiben der Inode-Bitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004073
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004074#: misc/e2image.c:502
Philipp Thomasb93349a2014-05-31 13:32:39 -04004075#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004076msgid "Corrupt directory block %llu: bad rec_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004077msgstr "Defekter Verzeichnisblock %llu: ungültige rec_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004078
4079#: misc/e2image.c:514
Philipp Thomasb93349a2014-05-31 13:32:39 -04004080#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004081msgid "Corrupt directory block %llu: bad name_len (%d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004082msgstr "Defekter Verzeichnisblock %llu: ungültige name_len (%d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004083
4084#: misc/e2image.c:555
Philipp Thomasb93349a2014-05-31 13:32:39 -04004085#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004086msgid "%llu / %llu blocks (%d%%)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004087msgstr "%llu / %llu Blöcke (%d%%)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004088
4089#: misc/e2image.c:586 misc/e2image.c:626
4090msgid "Copying "
Philipp Thomasb93349a2014-05-31 13:32:39 -04004091msgstr "Kopieren "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004092
4093#: misc/e2image.c:623
Theodore Ts'obd386982015-05-17 20:34:58 -04004094msgid ""
4095"Stopping now will destroy the filesystem, interrupt again if you are sure\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004096msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004097"Jetzt anzuhalten würde das Dateisystem zerstören. Wenn Sie sicher sind,\n"
4098"unterbrechen Sie noch einmal.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004099
4100#: misc/e2image.c:649
4101#, c-format
4102msgid " %s remaining at %.2f MB/s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004103msgstr " %s bleibt bei %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004104
4105#: misc/e2image.c:661 misc/e2image.c:1188
Philipp Thomasb93349a2014-05-31 13:32:39 -04004106#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004107msgid "error reading block %llu"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004108msgstr "Fehler beim Lesen von Block %llu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004109
4110#: misc/e2image.c:715
4111#, c-format
4112msgid "Copied %llu / %llu blocks (%d%%) in %s "
Philipp Thomasb93349a2014-05-31 13:32:39 -04004113msgstr "%llu / %llu Blöcke (%d%%) wurden in %s kopiert "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004114
4115#: misc/e2image.c:719
4116#, c-format
4117msgid "at %.2f MB/s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004118msgstr "bei %.2f MB/s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004119
4120#: misc/e2image.c:755
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004121msgid "while allocating l1 table"
Philipp Thomasab02a742014-07-09 23:13:30 -04004122msgstr "beim Anfordern von Speicher für die l1-Tabelle"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004123
4124#: misc/e2image.c:800
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004125msgid "while allocating l2 cache"
Philipp Thomasab02a742014-07-09 23:13:30 -04004126msgstr "beim Anfordern von Speicher für den l2-Zwischenspeicher"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004127
4128#: misc/e2image.c:823
Theodore Ts'obd386982015-05-17 20:34:58 -04004129msgid ""
4130"Warning: There are still tables in the cache while putting the cache, data "
4131"will be lost so the image may not be valid.\n"
4132msgstr ""
4133"Warnung: Beim Schreiben des Zwischenspeichers befinden sich immer noch "
4134"Tabellen in ihm. Damit gehen Daten verloren und das Abbild ist eventuell "
4135"ungültig.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004136
4137#: misc/e2image.c:1145
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004138msgid "while allocating ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004139msgstr "beim Reservieren von Speicher für ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004140
4141#: misc/e2image.c:1152
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004142msgid "while initializing ext2_qcow2_image"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004143msgstr "beim Initialisieren des ext2_qcow2_image"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004144
4145#: misc/e2image.c:1211 misc/e2image.c:1229
4146msgid "Programming error: multiple sequential refcount blocks created!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004147msgstr ""
4148"Programmierfehler: mehrere sequenzielle Refcount-Blöcke wurden erzeugt!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004149
4150#: misc/e2image.c:1269
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004151msgid "while allocating block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004152msgstr "beim Reservieren von Speicher für die Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004153
4154#: misc/e2image.c:1278
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004155msgid "while allocating scramble block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004156msgstr "beim Reservieren von Speicher für die verwürfelte Block-Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004157
4158#: misc/e2image.c:1285
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004159msgid "Scanning inodes...\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004160msgstr "Inodes werden eingelesen …\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004161
4162#: misc/e2image.c:1297
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004163msgid "Can't allocate block buffer"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004164msgstr "Es konnte kein Blockpuffer reserviert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004165
4166#: misc/e2image.c:1336 misc/e2image.c:1350
Philipp Thomasb93349a2014-05-31 13:32:39 -04004167#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004168msgid "while iterating over inode %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004169msgstr "beim Iterieren über Inode %u"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004170
4171#: misc/e2image.c:1381
4172msgid "Raw and qcow2 images cannot be installed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004173msgstr "Rohe und Qcow2-Abbilder können nicht installiert werden"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004174
4175#: misc/e2image.c:1403
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004176msgid "error reading bitmaps"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004177msgstr "Fehler beim Lesen der Bitmaps"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004178
4179#: misc/e2image.c:1415
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004180msgid "while opening device file"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004181msgstr "beim Öffnen der Gerätedatei"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004182
4183#: misc/e2image.c:1426
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004184msgid "while restoring the image table"
4185msgstr "beim Schreiben der Inode-Tabelle"
4186
4187#: misc/e2image.c:1523
4188msgid "-a option can only be used with raw or QCOW2 images."
Philipp Thomasab02a742014-07-09 23:13:30 -04004189msgstr "Die Option „-a“ kann nur bei Roh- oder QCOW2-Abbildern benutzt werden."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004190
4191#: misc/e2image.c:1529
4192msgid "Offsets are only allowed with raw images."
Philipp Thomasb93349a2014-05-31 13:32:39 -04004193msgstr "Offsets sind nur bei Roh-Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004194
4195#: misc/e2image.c:1534
4196msgid "Move mode is only allowed with raw images."
Philipp Thomasab02a742014-07-09 23:13:30 -04004197msgstr "Verschieben ist nur bei Roh- Abbildern erlaubt."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004198
4199#: misc/e2image.c:1539
4200msgid "Move mode requires all data mode."
Philipp Thomasab02a742014-07-09 23:13:30 -04004201msgstr "Der Verschiebemodus erfordert den „Alle Daten“-Modus."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004202
4203#: misc/e2image.c:1549
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004204msgid "checking if mounted"
Philipp Thomasab02a742014-07-09 23:13:30 -04004205msgstr "Prüfung, ob eingehängt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004206
4207#: misc/e2image.c:1556
4208msgid ""
4209"\n"
4210"Running e2image on a R/W mounted filesystem can result in an\n"
4211"inconsistent image which will not be useful for debugging purposes.\n"
4212"Use -f option if you really want to do that.\n"
4213msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04004214"\n"
4215"Das Starten von E2image auf einem schreib- und lesbar eingehängten\n"
4216"Dateisystem kann zu einem unvollständigen Abbild führen, welches\n"
4217"unbrauchbar für die Fehlersuche wäre. Verwenden Sie die Option -f, wenn\n"
4218"Sie das wirklich machen wollen.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004219
4220#: misc/e2image.c:1608
4221msgid "QCOW2 image can not be written to the stdout!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004222msgstr ""
4223"Das QCOW2-Abbild kann nicht auf die Standardausgabe geschrieben werden!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004224
4225#: misc/e2image.c:1614
4226msgid "Can not stat output\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004227msgstr "Der Status der Ausgabe lässt sich nicht feststellen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004228
4229#: misc/e2image.c:1624
4230#, c-format
4231msgid "Image (%s) is compressed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004232msgstr "Das Abbild (%s) ist komprimiert\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004233
4234#: misc/e2image.c:1627
4235#, c-format
4236msgid "Image (%s) is encrypted\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004237msgstr "Das Abbild (%s) ist verschlüsselt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004238
4239#: misc/e2image.c:1630
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004240#, c-format
4241msgid "while trying to convert qcow2 image (%s) into raw image (%s)"
Theodore Ts'obd386982015-05-17 20:34:58 -04004242msgstr ""
4243"beim Versuch, das Qcow2-Abbild (%s) in ein Roh-Abbild (%s) zu konvertieren"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004244
4245#: misc/e2image.c:1639
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004246msgid "The -c option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004247msgstr "Die Option „-c“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004248
4249#: misc/e2image.c:1644
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004250msgid "The -c option not supported when writing to stdout\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004251msgstr ""
4252"Die Option „-c“ wird beim Schreiben auf die Standardausgabe nicht "
4253"unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004254
4255#: misc/e2image.c:1651
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004256msgid "while allocating check_buf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004257msgstr "beim Anfordern des Prüfpuffers"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004258
4259#: misc/e2image.c:1657
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004260msgid "The -p option only supported in raw mode\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004261msgstr "Die Option „-p“ wird nur im Roh-Modus unterstützt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004262
4263#: misc/e2image.c:1667
4264#, c-format
4265msgid "%d blocks already contained the data to be copied\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004266msgstr "%d Blöcke enthielten bereits die zu kopierenden Daten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004267
4268#: misc/e2label.c:58
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004269#, c-format
4270msgid "e2label: cannot open %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004271msgstr "e2label: %s kann nicht geöffnet werden.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004272
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004273#: misc/e2label.c:63
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004274#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004275msgid "e2label: cannot seek to superblock\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004276msgstr "e2label: Springen zum Superblock nicht möglich\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004277
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004278#: misc/e2label.c:68
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004279#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004280msgid "e2label: error reading superblock\n"
4281msgstr "e2label: Lesefehler im Superblock\n"
4282
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004283#: misc/e2label.c:72
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004284#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004285msgid "e2label: not an ext2 filesystem\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004286msgstr "e2label: Kein ext2-Dateisystem\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004287
Theodore Ts'obd386982015-05-17 20:34:58 -04004288#: misc/e2label.c:97 misc/tune2fs.c:2225
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004289#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004290msgid "Warning: label too long, truncating.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004291msgstr "Warnung: Name zu lang, wird gekürzt.\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004292
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004293#: misc/e2label.c:100
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004294#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004295msgid "e2label: cannot seek to superblock again\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004296msgstr "e2label: Erneutes Springen zum Superblock nicht möglich\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004297
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004298#: misc/e2label.c:105
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004299#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004300msgid "e2label: error writing superblock\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004301msgstr "e2label: Fehler beim Schreiben des Superblocks\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004302
Theodore Ts'obd386982015-05-17 20:34:58 -04004303#: misc/e2label.c:117 misc/tune2fs.c:871
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05004304#, c-format
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004305msgid "Usage: e2label device [newlabel]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004306msgstr "Aufruf: e2label Gerät [neuer_Name]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004307
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004308#: misc/e2undo.c:36
Philipp Thomas720e6362008-06-21 14:06:00 -04004309#, c-format
4310msgid "Usage: %s <transaction file> <filesystem>\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004311msgstr "Aufruf: %s <Transaktionsdatei> <Dateisystem>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004312
Philipp Thomas40771272008-09-07 22:55:25 -04004313#: misc/e2undo.c:52
Philipp Thomas720e6362008-06-21 14:06:00 -04004314msgid "Failed to read the file system data \n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004315msgstr "Die Dateisystemdaten konnten nicht gelesen werden \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004316
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004317#: misc/e2undo.c:62 misc/e2undo.c:83 misc/e2undo.c:108 misc/e2undo.c:206
Philipp Thomas720e6362008-06-21 14:06:00 -04004318#, c-format
4319msgid "Failed tdb_fetch %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004320msgstr "tdb_fetch von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004321
Philipp Thomas40771272008-09-07 22:55:25 -04004322#: misc/e2undo.c:70
Philipp Thomas720e6362008-06-21 14:06:00 -04004323#, c-format
4324msgid "The file system Mount time didn't match %u\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004325msgstr "Die Zeit des letzten Einhängens des Dateisystems war nicht %u\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004326
Philipp Thomas40771272008-09-07 22:55:25 -04004327#: misc/e2undo.c:89
Philipp Thomas720e6362008-06-21 14:06:00 -04004328msgid "The file system UUID didn't match \n"
Philipp Thomas68801282008-07-17 11:47:00 -04004329msgstr "Die UUID des Dateisystems stimmte nicht überein \n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004330
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004331#: misc/e2undo.c:163
Philipp Thomas68801282008-07-17 11:47:00 -04004332#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004333msgid "Failed tdb_open %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004334msgstr "tdb_open von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004335
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004336#: misc/e2undo.c:169
Philipp Thomas68801282008-07-17 11:47:00 -04004337#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004338msgid "Error while determining whether %s is mounted.\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004339msgstr "Fehler beim Überprüfen, ob %s eingehängt ist.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004340
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004341#: misc/e2undo.c:175
Philipp Thomas40771272008-09-07 22:55:25 -04004342msgid "e2undo should only be run on unmounted file system\n"
4343msgstr "e2undo sollte nur auf nicht-eingehängten Dateisystemen laufen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004344
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004345#: misc/e2undo.c:184
Philipp Thomas68801282008-07-17 11:47:00 -04004346#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04004347msgid "Failed to open %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04004348msgstr "%s konnte nicht geöffnet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004349
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004350#: misc/e2undo.c:210
Philipp Thomas720e6362008-06-21 14:06:00 -04004351#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004352msgid "Replayed transaction of size %zd at location %llu\n"
4353msgstr "Zurückgespielte Transaktion der Größe %zd an Position %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004354
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004355#: misc/e2undo.c:216
Philipp Thomas720e6362008-06-21 14:06:00 -04004356#, c-format
4357msgid "Failed write %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004358msgstr "Schreiben von %s ist fehlgeschlagen\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004359
Eric Sandeen032eafe2012-07-28 17:48:36 -04004360#: misc/fsck.c:343
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004361#, c-format
4362msgid "WARNING: couldn't open %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004363msgstr "WARNUNG: %s konnte nicht geöffnet werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004364
Eric Sandeen032eafe2012-07-28 17:48:36 -04004365#: misc/fsck.c:353
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004366#, c-format
4367msgid "WARNING: bad format on line %d of %s\n"
4368msgstr "WARNUNG: falsches Format in Zeile %d von %s\n"
4369
Eric Sandeen032eafe2012-07-28 17:48:36 -04004370#: misc/fsck.c:370
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004371msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004372"WARNING: Your /etc/fstab does not contain the fsck passno\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004373"\tfield. I will kludge around things for you, but you\n"
4374"\tshould fix your /etc/fstab file as soon as you can.\n"
4375"\n"
4376msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004377"WARNUNG: Ihre /etc/fstab enthält keine Angabe darüber, wann\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004378"\tdas Dateisystem geprüft werden soll. Dies wird\n"
4379"\tignoriert, aber Sie sollten Ihre /etc/fstab so schnell\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004380"\twie möglich korrigieren.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004381"\n"
4382
Eric Sandeen032eafe2012-07-28 17:48:36 -04004383#: misc/fsck.c:478
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004384#, c-format
4385msgid "fsck: %s: not found\n"
4386msgstr "fsck: %s: nicht gefunden\n"
4387
Eric Sandeen032eafe2012-07-28 17:48:36 -04004388#: misc/fsck.c:594
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004389#, c-format
4390msgid "%s: wait: No more child process?!?\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004391msgstr "%s: wait: kein Kindprozess mehr?!?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004392
Eric Sandeen032eafe2012-07-28 17:48:36 -04004393#: misc/fsck.c:616
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004394#, c-format
4395msgid "Warning... %s for device %s exited with signal %d.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004396msgstr "Warnung... %s für Gerät %s wurde mit Signal %d beendet.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004397
Eric Sandeen032eafe2012-07-28 17:48:36 -04004398#: misc/fsck.c:622
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004399#, c-format
4400msgid "%s %s: status is %x, should never happen.\n"
4401msgstr "%s %s: Status ist %x, sollte nie vorkommen.\n"
4402
Eric Sandeen032eafe2012-07-28 17:48:36 -04004403#: misc/fsck.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004404#, c-format
4405msgid "Finished with %s (exit status %d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004406msgstr "Beendet mit %s (Exit-Status %d)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004407
Eric Sandeen032eafe2012-07-28 17:48:36 -04004408#: misc/fsck.c:721
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004409#, c-format
4410msgid "%s: Error %d while executing fsck.%s for %s\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004411msgstr "%s: Fehler %d bei Ausführung von fsck.%s für %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004412
Eric Sandeen032eafe2012-07-28 17:48:36 -04004413#: misc/fsck.c:742
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004414msgid ""
4415"Either all or none of the filesystem types passed to -t must be prefixed\n"
4416"with 'no' or '!'.\n"
4417msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004418"Bei -t müssen entweder allen oder keinem Dateisystem ein „no“ bzw. „!“\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004419"vorangestellt werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004420
Eric Sandeen032eafe2012-07-28 17:48:36 -04004421#: misc/fsck.c:761
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004422msgid "Couldn't allocate memory for filesystem types\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004423msgstr "Speicher für Dateisystemtypen kann nicht reserviert werden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004424
Eric Sandeen032eafe2012-07-28 17:48:36 -04004425#: misc/fsck.c:884
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004426#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04004427msgid ""
4428"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass "
4429"number\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004430msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004431"%s: Ungültige Zeile in /etc/fstab wird übersprungen: bind mount mit\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004432" Durchgangsnummer für fsck, die nicht Null ist\n"
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004433
Eric Sandeen032eafe2012-07-28 17:48:36 -04004434#: misc/fsck.c:911
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004435#, c-format
4436msgid "fsck: cannot check %s: fsck.%s not found\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004437msgstr "fsck: %s kann nicht überprüft werden: fsck.%s nicht gefunden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004438
Eric Sandeen032eafe2012-07-28 17:48:36 -04004439#: misc/fsck.c:967
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004440msgid "Checking all file systems.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004441msgstr "Alle Dateisysteme werden überprüft.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004442
Eric Sandeen032eafe2012-07-28 17:48:36 -04004443#: misc/fsck.c:1058
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004444#, c-format
4445msgid "--waiting-- (pass %d)\n"
4446msgstr "--warten-- (Durchgang %d)\n"
4447
Eric Sandeen032eafe2012-07-28 17:48:36 -04004448#: misc/fsck.c:1078
Theodore Ts'obd386982015-05-17 20:34:58 -04004449msgid ""
4450"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"
4451msgstr ""
4452"Aufruf: fsck [-AMNPRTV] [ -C [ fd ] ] [-t Datesystemtyp] [FS-Optionen] "
4453"[Dateisystem...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004454
Eric Sandeen032eafe2012-07-28 17:48:36 -04004455#: misc/fsck.c:1120
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004456#, c-format
4457msgid "%s: too many devices\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004458msgstr "%s: zu viele Geräte\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004459
Eric Sandeen032eafe2012-07-28 17:48:36 -04004460#: misc/fsck.c:1153 misc/fsck.c:1239
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004461#, c-format
4462msgid "%s: too many arguments\n"
4463msgstr "%s: zu viele Argumente\n"
4464
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004465#: misc/lsattr.c:74
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004466#, c-format
4467msgid "Usage: %s [-RVadlv] [files...]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004468msgstr "Aufruf: %s [-RVadlv] [Dateien...]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004469
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004470#: misc/lsattr.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004471#, c-format
4472msgid "While reading flags on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004473msgstr "Beim Lesen der Flags von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004474
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004475#: misc/lsattr.c:91
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004476#, c-format
4477msgid "While reading version on %s"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004478msgstr "Beim Lesen der Version von %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004479
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004480#: misc/mke2fs.c:123
Philipp Thomas77c871a2010-04-19 16:59:02 -04004481#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004482msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004483"Usage: %s [-c|-l filename] [-b block-size] [-C cluster-size]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004484"\t[-i bytes-per-inode] [-I inode-size] [-J journal-options]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004485"\t[-G flex-group-size] [-N number-of-inodes]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004486"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004487"\t[-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004488"\t[-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004489"\t[-t fs-type] [-T usage-type ] [-U UUID] [-jnqvDFKSV] device [blocks-"
4490"count]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004491msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004492"Aufruf: %s [-c|-l Dateiname] [-b Blockgröße] [-C Clustergröße]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004493"\t[-i Bytes-pro-Inode] [-I Inode-Größe] [-J Journal-Optionen]\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004494"\t[-G Größe_der_Metagruppe] [-N Anzahl_der_Inodes]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004495"\t[-m Reservierte-Blöcke-Prozentsatz] [-o Erzeuger-OS]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004496"\t[-g Blöcke-pro-Gruppe] [-L Volume-Label]\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04004497"\t[-M letztes-eingehängtes-Verzeichnis] [-O Eigenschaft[,...]]\n"
4498"\t[-r fs-Revision] [-E erweiterte-Option[,...]]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004499"\t[-t Dateisystemtyp] [-T Verwendungs-Typ ] [-U UUID] [-jnqvDFKSV]\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004500"\tGerät [Block-Anzahl]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004501
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004502#: misc/mke2fs.c:252
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004503#, c-format
4504msgid "Running command: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004505msgstr "Befehl wird ausgeführt: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004506
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004507#: misc/mke2fs.c:256
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004508#, c-format
4509msgid "while trying to run '%s'"
4510msgstr "während des Versuchs, „%s“ auszuführen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004511
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004512#: misc/mke2fs.c:263
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004513msgid "while processing list of bad blocks from program"
4514msgstr "beim Auswerten der „Bad Block“-Liste vom Programm"
4515
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004516#: misc/mke2fs.c:290
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004517#, c-format
4518msgid "Block %d in primary superblock/group descriptor area bad.\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004519msgstr "Block %d im primären Superblock/Gruppendeskriptorbereich defekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004520
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004521#: misc/mke2fs.c:292
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004522#, c-format
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004523msgid "Blocks %u through %u must be good in order to build a filesystem.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004524msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004525"Die Blöcke %u bis einschließlich %u müssen in Ordnung sein, um ein\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004526"\tDateisystem zu erstellen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004527
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004528#: misc/mke2fs.c:295
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004529msgid "Aborting....\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004530msgstr "Abbruch...\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004531
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004532#: misc/mke2fs.c:315
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004533#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004534msgid ""
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004535"Warning: the backup superblock/group descriptors at block %u contain\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004536"\tbad blocks.\n"
4537"\n"
4538msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004539"Warnung: Die Sicherung des Superblocks bzw. Gruppendeskriptors in Block %u\n"
4540"\tenthält defekte Blöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004541"\n"
4542
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004543#: misc/mke2fs.c:334
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004544msgid "while marking bad blocks as used"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004545msgstr "beim Markieren von defekten Blöcken als „belegt“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004546
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004547#: misc/mke2fs.c:386
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004548msgid "Writing inode tables: "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004549msgstr "Inode-Tabellen werden geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004550
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004551#: misc/mke2fs.c:407
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004552#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004553msgid ""
4554"\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004555"Could not write %d blocks in inode table starting at %llu: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004556msgstr ""
4557"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004558"%d Blöcke konnten nicht in die Inoden-Tabellen beginnend bei %llu "
4559"geschrieben werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004560
Philipp Thomas37be3822015-05-17 20:21:39 -04004561#: misc/mke2fs.c:421 misc/mke2fs.c:2479 misc/mke2fs.c:2764
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004562msgid "done \n"
4563msgstr "erledigt \n"
4564
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004565#: misc/mke2fs.c:432
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004566msgid "while creating root dir"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004567msgstr "beim Erstellen des Wurzelverzeichnisses"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004568
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004569#: misc/mke2fs.c:439
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004570msgid "while reading root inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04004571msgstr "beim Lesen des Root-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004572
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004573#: misc/mke2fs.c:451
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004574msgid "while setting root inode ownership"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004575msgstr "beim Setzen des Root-Inode-Eigentümers"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004576
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004577#: misc/mke2fs.c:469
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004578msgid "while creating /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004579msgstr "beim Erstellen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004580
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004581#: misc/mke2fs.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004582msgid "while looking up /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004583msgstr "beim Suchen von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004584
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004585#: misc/mke2fs.c:489
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004586msgid "while expanding /lost+found"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004587msgstr "beim Expandieren von /lost+found"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004588
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004589#: misc/mke2fs.c:504
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004590msgid "while setting bad block inode"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004591msgstr "beim Setzen des „Bad Block“-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004592
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004593#: misc/mke2fs.c:531
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004594#, c-format
4595msgid "Out of memory erasing sectors %d-%d\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004596msgstr "Speicher voll beim Löschen der Sektoren %d-%d\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004597
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004598#: misc/mke2fs.c:541
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004599#, c-format
4600msgid "Warning: could not read block 0: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004601msgstr "Warnung: Block %s konnte nicht gelesen werden\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004602
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004603#: misc/mke2fs.c:557
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004604#, c-format
4605msgid "Warning: could not erase sector %d: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004606msgstr "Warnung: Sektor %d konnte nicht gelöscht werden: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004607
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004608#: misc/mke2fs.c:573
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004609msgid "while initializing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004610msgstr "beim Initialisieren des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004611
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004612#: misc/mke2fs.c:581
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004613msgid "Zeroing journal device: "
Philipp Thomasab02a742014-07-09 23:13:30 -04004614msgstr "Journal-Gerät wird mit Nullen überschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004615
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004616#: misc/mke2fs.c:593
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004617#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004618msgid "while zeroing journal device (block %llu, count %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04004619msgstr "beim Überschreiben des Journal-Gerätes mit Nullen (Block %llu, Nr. %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004620
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004621#: misc/mke2fs.c:611
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004622msgid "while writing journal superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004623msgstr "beim Schreiben des Journal-Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004624
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004625#: misc/mke2fs.c:626
Philipp Thomasb93349a2014-05-31 13:32:39 -04004626#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004627msgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004628msgstr "Ein Dateisystems mit %llu (%dk) Blöcken und %u Inodes wird erzeugt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004629
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004630#: misc/mke2fs.c:634
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004631#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004632msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004633"warning: %llu blocks unused.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004634"\n"
4635msgstr ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004636"Warnung: %llu Blöcke unbenutzt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004637"\n"
4638
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004639#: misc/mke2fs.c:639
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004640#, c-format
4641msgid "Filesystem label=%s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004642msgstr "Dateisystembezeichnung=%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004643
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004644#: misc/mke2fs.c:642
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004645#, c-format
4646msgid "OS type: %s\n"
4647msgstr "OS-Typ: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004648
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004649#: misc/mke2fs.c:644
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004650#, c-format
4651msgid "Block size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004652msgstr "Blockgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004653
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004654#: misc/mke2fs.c:648
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004655#, c-format
4656msgid "Cluster size=%u (log=%u)\n"
4657msgstr "Clustergröße=%u (log=%u)\n"
4658
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004659#: misc/mke2fs.c:652
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004660#, c-format
4661msgid "Fragment size=%u (log=%u)\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004662msgstr "Fragmentgröße=%u (log=%u)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004663
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004664#: misc/mke2fs.c:654
Philipp Thomas77c871a2010-04-19 16:59:02 -04004665#, c-format
4666msgid "Stride=%u blocks, Stripe width=%u blocks\n"
4667msgstr "Stride=%u Blöcke, Stripebreite=%u Blöcke\n"
4668
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004669#: misc/mke2fs.c:656
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004670#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004671msgid "%u inodes, %llu blocks\n"
4672msgstr "%u Inodes, %llu Blöcke\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004673
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004674#: misc/mke2fs.c:658
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004675#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004676msgid "%llu blocks (%2.2f%%) reserved for the super user\n"
4677msgstr "%llu Blöcke (%2.2f%%) reserviert für den Superuser\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004678
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004679#: misc/mke2fs.c:661
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004680#, c-format
4681msgid "First data block=%u\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004682msgstr "Erster Datenblock=%u\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004683
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004684#: misc/mke2fs.c:663
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004685#, c-format
4686msgid "Root directory owner=%u:%u\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004687msgstr "Eigentümer des Wurzelverzeichnisses=%u:%u\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004688
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004689#: misc/mke2fs.c:665
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004690#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004691msgid "Maximum filesystem blocks=%lu\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004692msgstr "Maximale Dateisystem-Blöcke=%lu\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004693
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004694#: misc/mke2fs.c:669
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004695#, c-format
4696msgid "%u block groups\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004697msgstr "%u Blockgruppen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004698
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004699#: misc/mke2fs.c:671
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004700#, c-format
4701msgid "%u block group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004702msgstr "%u Blockgruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004703
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004704#: misc/mke2fs.c:674
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004705#, c-format
4706msgid "%u blocks per group, %u clusters per group\n"
4707msgstr "%u Blöcke pro Gruppe, %u Cluster pro Gruppe\n"
4708
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004709#: misc/mke2fs.c:677
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004710#, c-format
4711msgid "%u blocks per group, %u fragments per group\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004712msgstr "%u Blöcke pro Gruppe, %u Fragmente pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004713
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004714#: misc/mke2fs.c:679
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004715#, c-format
4716msgid "%u inodes per group\n"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05004717msgstr "%u Inodes pro Gruppe\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004718
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004719#: misc/mke2fs.c:688
Philipp Thomasb93349a2014-05-31 13:32:39 -04004720#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004721msgid "Filesystem UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004722msgstr "UUID des Dateisystems: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004723
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004724#: misc/mke2fs.c:689
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004725msgid "Superblock backups stored on blocks: "
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004726msgstr "Superblock-Sicherungskopien gespeichert in den Blöcken: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004727
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004728#: misc/mke2fs.c:766
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004729#, c-format
4730msgid "%s requires '-O 64bit'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004731msgstr "%s erfordert „-O 64Bit“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004732
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004733#: misc/mke2fs.c:772
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004734#, c-format
4735msgid "'%s' must be before 'resize=%u'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004736msgstr "„%s“ muss vor „resize=%u“ kommen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004737
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004738#: misc/mke2fs.c:785
Philipp Thomasb93349a2014-05-31 13:32:39 -04004739#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004740msgid "Invalid desc_size: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004741msgstr "Unzulässige desc_size: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004742
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004743#: misc/mke2fs.c:798
Philipp Thomasb93349a2014-05-31 13:32:39 -04004744#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004745msgid "Invalid offset: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004746msgstr "Unzulässiger Offset: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004747
Theodore Ts'obd386982015-05-17 20:34:58 -04004748#: misc/mke2fs.c:812 misc/tune2fs.c:1239
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004749#, c-format
4750msgid "Invalid mmp_update_interval: %s\n"
4751msgstr "Ungültiges mmp_update_interval: %s\n"
4752
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004753#: misc/mke2fs.c:826
Philipp Thomasab02a742014-07-09 23:13:30 -04004754#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004755msgid "Invalid # of backup superblocks: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004756msgstr "Ungültige Anzahl von Ersatz-Superblöcken: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004757
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004758#: misc/mke2fs.c:848
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004759#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004760msgid "Invalid stride parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004761msgstr "Ungültiger „stride“-Parameter: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004762
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004763#: misc/mke2fs.c:863
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004764#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05004765msgid "Invalid stripe-width parameter: %s\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004766msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004767
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004768#: misc/mke2fs.c:886
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004769#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04004770msgid "Invalid resize parameter: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004771msgstr "Ungültiger „resize“-Parameter: %s\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004772
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004773#: misc/mke2fs.c:893
Theodore Ts'obc759702005-05-09 20:40:55 -04004774msgid "The resize maximum must be greater than the filesystem size.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004775msgstr ""
4776"Das Maximum der Vergrößerung muss oberhalb als der Dateisystem-Größe "
4777"liegen.\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004778
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004779#: misc/mke2fs.c:917
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004780msgid "On-line resizing not supported with revision 0 filesystems\n"
4781msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004782"Online-Größenänderungen werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004783"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04004784
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004785#: misc/mke2fs.c:944 misc/mke2fs.c:953
Philipp Thomasb93349a2014-05-31 13:32:39 -04004786#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004787msgid "Invalid root_owner: '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004788msgstr "Ungültiger Eigentümer der Wurzel: „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004789
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004790#: misc/mke2fs.c:978
Philipp Thomasedc733d2012-04-22 15:38:42 -04004791#, c-format
4792msgid "Invalid quotatype parameter: %s\n"
4793msgstr "Ungültiger Quotatyp-Parameter: %s\n"
4794
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004795#: misc/mke2fs.c:989
Philipp Thomasb93349a2014-05-31 13:32:39 -04004796#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004797msgid ""
4798"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004799"Bad option(s) specified: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004800"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004801"Extended options are separated by commas, and may take an argument which\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004802"\tis set off by an equals ('=') sign.\n"
4803"\n"
Theodore Ts'o197abba2005-06-20 18:00:23 -04004804"Valid extended options are:\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004805"\tmmp_update_interval=<interval>\n"
4806"\tnum_backup_sb=<0|1|2>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004807"\tstride=<RAID per-disk data chunk in blocks>\n"
4808"\tstripe-width=<RAID stride * data disks in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004809"\toffset=<offset to create the file system>\n"
Theodore Ts'obc759702005-05-09 20:40:55 -04004810"\tresize=<resize maximum size in blocks>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004811"\tpacked_meta_blocks=<0 to disable, 1 to enable>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004812"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004813"\tlazy_journal_init=<0 to disable, 1 to enable>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004814"\troot_uid=<uid of root directory>\n"
4815"\troot_gid=<gid of root directory>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05004816"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004817"\tdiscard\n"
4818"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004819"\tquotatype=<usr OR grp>\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04004820"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004821msgstr ""
4822"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004823"Ungültige Option(en) angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004824"\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004825"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004826"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004827"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004828"Gültige erweiterte Optionen sind:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004829"\tmmp_update_interval=<Intervall>\n"
4830"\tnum_backup_sb=<0|1|2>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004831"\tstride=<RAID-Segmentgröße in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004832"\tstripe-width=<RAID Stride * Datenplatten in Blöcken>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004833"\toffset=<Offset für das Dateisystem>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004834"\tresize=<Obergrenze für Größenänderung in Blöcken>\n"
4835"\tpacked_meta_blocks=<0 deaktiviert, 1 aktiviert>\n"
4836"\tlazy_itable_init=<0 für deaktiviert, 1 für aktiviert>\n"
4837"\tlazy_journal_init=<0 für deaktiviert, 1 für aktiviert>\n"
4838"\troot_uid=<UID des Wurzelverzeichnisses>\n"
4839"\troot_gid=<GID des Wurzelverzeichnisses>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004840"\ttest_fs\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004841"\tdiscard\n"
4842"\tnodiscard\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04004843"\tquotatype=<usr ODER grp>\n"
Philipp Thomas9564ee52008-08-22 03:22:50 -04004844"\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004845
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004846#: misc/mke2fs.c:1015
Theodore Ts'o8f741372008-02-28 21:47:05 -05004847#, c-format
4848msgid ""
4849"\n"
4850"Warning: RAID stripe-width %u not an even multiple of stride %u.\n"
4851"\n"
4852msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004853"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004854"Warnung: Die Stripebreite %u des RAIDs ist kein Vielfaches des Strides %u.\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004855"\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05004856
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004857#: misc/mke2fs.c:1055
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004858#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004859msgid ""
4860"Syntax error in mke2fs config file (%s, line #%d)\n"
4861"\t%s\n"
4862msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04004863"Syntaxfehler in der Konfigurationsdatei von mke2fs (%s, Zeile #%d)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04004864"\t%s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004865
Theodore Ts'obd386982015-05-17 20:34:58 -04004866#: misc/mke2fs.c:1068 misc/tune2fs.c:449
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004867#, c-format
4868msgid "Invalid filesystem option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004869msgstr "Ungültige Dateisystem-Option angegeben: %s\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05004870
Theodore Ts'obd386982015-05-17 20:34:58 -04004871#: misc/mke2fs.c:1080 misc/tune2fs.c:390
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004872#, c-format
4873msgid "Invalid mount option set: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004874msgstr "Ungültige Option für das Einhängen angegeben: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004875
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004876#: misc/mke2fs.c:1220
Philipp Thomas40771272008-09-07 22:55:25 -04004877#, c-format
4878msgid ""
4879"\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004880"Your mke2fs.conf file does not define the %s filesystem type.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004881msgstr ""
4882"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004883"Ihre Datei mke2fs.conf definiert den Typ des Dateisystems %s nicht.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004884
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004885#: misc/mke2fs.c:1224
Philipp Thomas40771272008-09-07 22:55:25 -04004886msgid ""
4887"You probably need to install an updated mke2fs.conf file.\n"
4888"\n"
4889msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04004890"Sie müssen wahrscheinlich eine aktualisierte Version der Datei "
4891"installieren.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04004892"\n"
4893
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004894#: misc/mke2fs.c:1228
Philipp Thomas3e914b52011-01-24 15:03:41 -05004895msgid "Aborting...\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004896msgstr "Abbruch…\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004897
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004898#: misc/mke2fs.c:1269
Philipp Thomas3e914b52011-01-24 15:03:41 -05004899#, c-format
4900msgid ""
4901"\n"
4902"Warning: the fs_type %s is not defined in mke2fs.conf\n"
4903"\n"
4904msgstr ""
4905"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004906"Warnung: der Dateisystemtyp %s ist in mke2fs.conf nicht definiert\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05004907"\n"
4908
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004909#: misc/mke2fs.c:1449
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004910msgid "Couldn't allocate memory for new PATH.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004911msgstr "Es konnte kein Speicher für den neuen PFAD reserviert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004912
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004913#: misc/mke2fs.c:1490
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004914#, c-format
4915msgid "Couldn't init profile successfully (error: %ld).\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04004916msgstr "Das Profil konnte nicht erfolgreich initialisiert werden: %ld).\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004917
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004918#: misc/mke2fs.c:1523
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004919#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004920msgid "invalid block size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004921msgstr "ungültige Blockgröße - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004922
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004923#: misc/mke2fs.c:1527
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004924#, c-format
4925msgid "Warning: blocksize %d not usable on most systems.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04004926msgstr ""
4927"Warnung: Eine Blockgröße von %d ist auf den meisten System unbrauchbar.\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004928
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004929#: misc/mke2fs.c:1543
Theodore Ts'o7527ef12007-12-05 19:35:20 -05004930#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04004931msgid "invalid cluster size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004932msgstr "ungültige Clustergröße - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004933
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004934#: misc/mke2fs.c:1553
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004935msgid "'-R' is deprecated, use '-E' instead"
Philipp Thomasab02a742014-07-09 23:13:30 -04004936msgstr "„-R“ ist veraltet, bitte verwenden Sie stattdessen „-E“"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004937
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004938#: misc/mke2fs.c:1565
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004939msgid "Illegal number for blocks per group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004940msgstr "Die Zahl der Blöcke pro Gruppe ist unzulässig"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004941
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004942#: misc/mke2fs.c:1570
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004943msgid "blocks per group must be multiple of 8"
Philipp Thomasab02a742014-07-09 23:13:30 -04004944msgstr "Die Anzahl der Blöcke pro Gruppe muss ein Vielfaches von 8 sein"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004945
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004946#: misc/mke2fs.c:1578
Philipp Thomas720e6362008-06-21 14:06:00 -04004947msgid "Illegal number for flex_bg size"
Philipp Thomasab02a742014-07-09 23:13:30 -04004948msgstr "Der Wert für die Größe von flex_bg ist unzulässig"
Philipp Thomas720e6362008-06-21 14:06:00 -04004949
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004950#: misc/mke2fs.c:1584
Philipp Thomas720e6362008-06-21 14:06:00 -04004951msgid "flex_bg size must be a power of 2"
Philipp Thomasab02a742014-07-09 23:13:30 -04004952msgstr "Die Größe von flex_bg muss eine Potenz von 2 sein"
Philipp Thomas720e6362008-06-21 14:06:00 -04004953
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004954#: misc/mke2fs.c:1589
Philipp Thomasab02a742014-07-09 23:13:30 -04004955#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004956msgid "flex_bg size (%lu) must be less than or equal to 2^31"
Philipp Thomasab02a742014-07-09 23:13:30 -04004957msgstr "Die Größe von flex_bg (%lu) muss gleich oder weniger als 2^31 sein"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004958
4959#: misc/mke2fs.c:1600
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004960#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004961msgid "invalid inode ratio %s (min %d/max %d)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004962msgstr "Unzulässige Inode-Rate %s (min %d/max %d)"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004963
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004964#: misc/mke2fs.c:1610
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004965#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004966msgid "invalid inode size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04004967msgstr "ungültige Inode-Größe - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004968
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004969#: misc/mke2fs.c:1623
Theodore Ts'obd386982015-05-17 20:34:58 -04004970msgid ""
4971"Warning: -K option is deprecated and should not be used anymore. Use '-E "
4972"nodiscard' extended option instead!\n"
4973msgstr ""
4974"Warnung: Die Option -K wird bald nicht mehr unterstüzt. Verwenden Sie "
4975"stattdessen die Erweiterungsoption „-E nodiscard“!\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004976
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004977#: misc/mke2fs.c:1634
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004978msgid "in malloc for bad_blocks_filename"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004979msgstr "in malloc für bad_blocks_filename"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004980
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004981#: misc/mke2fs.c:1647
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004982#, c-format
4983msgid "invalid reserved blocks percent - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004984msgstr "Ungültiger Wert für die prozentuale Anzahl reservierter Blöcke - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004985
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004986#: misc/mke2fs.c:1662
Philipp Thomasba71e3e2008-03-13 18:21:09 -04004987#, c-format
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004988msgid "bad num inodes - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004989msgstr "ungültige Anzahl von Inodes - %s"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05004990
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004991#: misc/mke2fs.c:1679
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004992#, c-format
4993msgid "bad revision level - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04004994msgstr "ungültige Version - %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04004995
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004996#: misc/mke2fs.c:1684
Philipp Thomasab02a742014-07-09 23:13:30 -04004997#, c-format
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04004998msgid "while trying to create revision %d"
Philipp Thomasab02a742014-07-09 23:13:30 -04004999msgstr "beim Versuch, Revision %d zu erzeugen"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005000
5001#: misc/mke2fs.c:1698
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005002msgid "The -t option may only be used once"
Philipp Thomasab02a742014-07-09 23:13:30 -04005003msgstr "Die Option „-t“ darf nur einmal angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005004
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005005#: misc/mke2fs.c:1706
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005006msgid "The -T option may only be used once"
Philipp Thomasab02a742014-07-09 23:13:30 -04005007msgstr "Die Option „-T“ darf nur einmal angegeben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005008
Philipp Thomas37be3822015-05-17 20:21:39 -04005009#: misc/mke2fs.c:1759 misc/mke2fs.c:2845
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005010#, c-format
5011msgid "while trying to open journal device %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005012msgstr "beim Versuch, das Journalgerät %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005013
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005014#: misc/mke2fs.c:1765
Theodore Ts'oa04eba32003-05-03 16:35:17 -04005015#, c-format
Theodore Ts'oddc32a02003-05-03 18:45:55 -04005016msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005017msgstr ""
5018"Die Blockgröße des Journalgeräts (%d) ist kleiner als die minimale "
5019"Blockgröße %d\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04005020
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005021#: misc/mke2fs.c:1771
Philipp Thomas68801282008-07-17 11:47:00 -04005022#, c-format
5023msgid "Using journal device's blocksize: %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005024msgstr "Die Blockgröße des Journalgerätes wird verwendet: %d\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005025
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005026#: misc/mke2fs.c:1782
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005027#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005028msgid "invalid blocks '%s' on device '%s'"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005029msgstr "ungültiger Block „%s“ auf Gerät „%s“"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005030
Philipp Thomas37be3822015-05-17 20:21:39 -04005031#: misc/mke2fs.c:1804
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005032msgid "filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04005033msgstr "Dateisystem"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005034
Theodore Ts'obd386982015-05-17 20:34:58 -04005035#: misc/mke2fs.c:1817 resize/main.c:395
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005036msgid "while trying to determine filesystem size"
Philipp Thomasab02a742014-07-09 23:13:30 -04005037msgstr "beim Versuch, die Größe des Dateisystems zu bestimmen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005038
Philipp Thomas37be3822015-05-17 20:21:39 -04005039#: misc/mke2fs.c:1823
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005040msgid ""
5041"Couldn't determine device size; you must specify\n"
5042"the size of the filesystem\n"
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04005043msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005044"Die Größe des Gerätes ist nicht feststellbar. Sie müssen die Größe\n"
5045"des Dateisystems manuell angeben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005046
Philipp Thomas37be3822015-05-17 20:21:39 -04005047#: misc/mke2fs.c:1830
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005048msgid ""
5049"Device size reported to be zero. Invalid partition specified, or\n"
5050"\tpartition table wasn't reread after running fdisk, due to\n"
5051"\ta modified partition being busy and in use. You may need to reboot\n"
5052"\tto re-read your partition table.\n"
5053msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005054"Als Größe des Geräts wird Null zurück geliefert. Entweder wurde eine\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005055"\tungültige Partition angegeben oder die Partitionstabelle wurde nach\n"
5056"\teinem Lauf von fdisk nicht neu eingelesen, weil die modifizierte\n"
5057"\tPartition vewendet wurde. Sie müssen unter Umständen den Rechner neu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005058"\tstarten, damit die Partitionstabelle neu eingelesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005059
Philipp Thomas37be3822015-05-17 20:21:39 -04005060#: misc/mke2fs.c:1847
Theodore Ts'oa04eba32003-05-03 16:35:17 -04005061msgid "Filesystem larger than apparent device size."
Philipp Thomasab02a742014-07-09 23:13:30 -04005062msgstr "Das Dateisystem ist größer als als die Partition."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005063
Philipp Thomas37be3822015-05-17 20:21:39 -04005064#: misc/mke2fs.c:1867
Philipp Thomas720e6362008-06-21 14:06:00 -04005065msgid "Failed to parse fs types list\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005066msgstr "Die Liste der Dateisystemtypen konnte nicht verarbeitet werden\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005067
Philipp Thomas37be3822015-05-17 20:21:39 -04005068#: misc/mke2fs.c:1908
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005069msgid "while trying to determine hardware sector size"
Philipp Thomasab02a742014-07-09 23:13:30 -04005070msgstr "beim Versuch, die Hardware-Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005071
Philipp Thomas37be3822015-05-17 20:21:39 -04005072#: misc/mke2fs.c:1914
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005073msgid "while trying to determine physical sector size"
Philipp Thomasab02a742014-07-09 23:13:30 -04005074msgstr "beim Versuch, die physische Sektorgröße festzustellen"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005075
Philipp Thomas37be3822015-05-17 20:21:39 -04005076#: misc/mke2fs.c:1946
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005077msgid "while setting blocksize; too small for device\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005078msgstr "beim Setzen der Blockgröße: zu klein für das Gerät\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005079
Philipp Thomas37be3822015-05-17 20:21:39 -04005080#: misc/mke2fs.c:1951
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005081#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04005082msgid ""
5083"Warning: specified blocksize %d is less than device physical sectorsize %d\n"
5084msgstr ""
5085"Warnung: die angegebene Blockgröße %d ist kleiner als die physische "
5086"Sektorgröße %d\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005087
Philipp Thomas37be3822015-05-17 20:21:39 -04005088#: misc/mke2fs.c:1975
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005089#, c-format
5090msgid ""
5091"%s: Size of device (0x%llx blocks) %s too big to be expressed\n"
5092"\tin 32 bits using a blocksize of %d.\n"
5093msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005094"%1$s: Die Größe des Gerätes %3$s (0x%2$llx Blöcke) kann bei einer "
5095"Blockgröße\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005096"\tvon %4$d kann mit 32 Bits nicht dargestellt werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005097
Philipp Thomas37be3822015-05-17 20:21:39 -04005098#: misc/mke2fs.c:1991
Philipp Thomas68801282008-07-17 11:47:00 -04005099msgid "fs_types for mke2fs.conf resolution: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005100msgstr "Dateisystemtypen für das Aufschlüsseln von mke2fs.conf: "
Philipp Thomas68801282008-07-17 11:47:00 -04005101
Philipp Thomas37be3822015-05-17 20:21:39 -04005102#: misc/mke2fs.c:1998
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05005103msgid "Filesystem features not supported with revision 0 filesystems\n"
5104msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005105"Eigenschaften von Dateisystemen werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005106"\tunterstützt\n"
Theodore Ts'o1cbf8282006-03-29 20:39:40 -05005107
Philipp Thomas37be3822015-05-17 20:21:39 -04005108#: misc/mke2fs.c:2006
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005109msgid "Sparse superblocks not supported with revision 0 filesystems\n"
5110msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005111"Sparse-Superblöcke werden bei Revison-0-Dateisystemen nicht\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005112"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005113
Philipp Thomas37be3822015-05-17 20:21:39 -04005114#: misc/mke2fs.c:2018
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005115msgid "Journals not supported with revision 0 filesystems\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005116msgstr ""
5117"Journale werden bei Revison-0-Dateisystemen nicht\n"
5118"\tunterstützt\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005119
Philipp Thomas37be3822015-05-17 20:21:39 -04005120#: misc/mke2fs.c:2032
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005121#, c-format
5122msgid "invalid reserved blocks percent - %lf"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005123msgstr "Ungültiger Werte für Prozent reservierter Blöcke - %lf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005124
Philipp Thomas37be3822015-05-17 20:21:39 -04005125#: misc/mke2fs.c:2049
Theodore Ts'obd386982015-05-17 20:34:58 -04005126msgid ""
5127"Extents MUST be enabled for a 64-bit filesystem. Pass -O extents to "
5128"rectify.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005129msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005130"Erweiterungen MÜSSEN für 64-Bit-Dateisysteme aktiviert werden.\n"
5131"\tGeben Sie „-O extents“ an, um dies zu tun.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005132
Philipp Thomas37be3822015-05-17 20:21:39 -04005133#: misc/mke2fs.c:2069
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005134msgid "The cluster size may not be smaller than the block size.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005135msgstr "Die Clustergröße darf nicht kleiner als die Blockgröße sein.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005136
Philipp Thomas37be3822015-05-17 20:21:39 -04005137#: misc/mke2fs.c:2075
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005138msgid "specifying a cluster size requires the bigalloc feature"
Philipp Thomasab02a742014-07-09 23:13:30 -04005139msgstr "Die Angabe einer Clustergröße erfordert die Eigenschaft „bigalloc“."
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005140
Philipp Thomas37be3822015-05-17 20:21:39 -04005141#: misc/mke2fs.c:2094
Philipp Thomas720e6362008-06-21 14:06:00 -04005142#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005143msgid "warning: Unable to get device geometry for %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005144msgstr "Warnung: Die Geometrie des Gerätes „%s“ kann nicht bestimmt werden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005145
Philipp Thomas37be3822015-05-17 20:21:39 -04005146#: misc/mke2fs.c:2097
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005147#, c-format
5148msgid "%s alignment is offset by %lu bytes.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005149msgstr "Die Ausrichtung von %s ist um %lu Bytes versetzt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005150
Philipp Thomas37be3822015-05-17 20:21:39 -04005151#: misc/mke2fs.c:2099
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005152#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04005153msgid ""
5154"This may result in very poor performance, (re)-partitioning suggested.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005155msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005156"Dies könnte in sehr schlechter Leistung resultieren. Eine "
5157"Neupartitionierung\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005158"ist angeraten.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005159
Philipp Thomas37be3822015-05-17 20:21:39 -04005160#: misc/mke2fs.c:2120
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005161#, c-format
5162msgid "%d-byte blocks too big for system (max %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04005163msgstr "Blöcke mit %d Bytes sind zu groß für das Gerät (max %d)"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005164
Philipp Thomas37be3822015-05-17 20:21:39 -04005165#: misc/mke2fs.c:2124
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005166#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04005167msgid ""
5168"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005169msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005170"Warnung: Blöcke mit %d Bytes sind zu groß für das Gerät (max %d)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005171"\t Weiterverarbeitung wurde erzwungen\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005172
Philipp Thomas37be3822015-05-17 20:21:39 -04005173#: misc/mke2fs.c:2180
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005174msgid "Can't support bigalloc feature without extents feature"
Philipp Thomasab02a742014-07-09 23:13:30 -04005175msgstr "„Bigalloc“ ist nur mit „Extents“ möglich"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005176
Philipp Thomas37be3822015-05-17 20:21:39 -04005177#: misc/mke2fs.c:2187
Philipp Thomas720e6362008-06-21 14:06:00 -04005178msgid ""
5179"The resize_inode and meta_bg features are not compatible.\n"
5180"They can not be both enabled simultaneously.\n"
5181msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005182"resize_inode und meta_bg sind nicht kompatibel und können\n"
5183"daher nicht gleichzeitig aktiviert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005184
Philipp Thomas37be3822015-05-17 20:21:39 -04005185#: misc/mke2fs.c:2196
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005186msgid ""
5187"\n"
5188"Warning: the bigalloc feature is still under development\n"
5189"See https://ext4.wiki.kernel.org/index.php/Bigalloc for more information\n"
5190"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005191msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005192"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005193"Warnung: „bigalloc“ befindet sich noch in Entwicklung.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005194"Lesen Sie https://ext4.wiki.kernel.org/index.php/Bigalloc für weitere\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005195"Informationen.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005196"\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005197
Philipp Thomas37be3822015-05-17 20:21:39 -04005198#: misc/mke2fs.c:2207
Theodore Ts'obc759702005-05-09 20:40:55 -04005199msgid "reserved online resize blocks not supported on non-sparse filesystem"
5200msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005201"Reservierte Blöcke für die Online-Größenänderung werden auf Nicht-Sparse-\n"
5202"Dateisystemen nicht unterstützt."
Theodore Ts'obc759702005-05-09 20:40:55 -04005203
Philipp Thomas37be3822015-05-17 20:21:39 -04005204#: misc/mke2fs.c:2216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005205msgid "blocks per group count out of range"
Philipp Thomasab02a742014-07-09 23:13:30 -04005206msgstr "Die Anzahl der Blöcke pro Gruppe ist außerhalb des gültigen Bereichs."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005207
Philipp Thomas37be3822015-05-17 20:21:39 -04005208#: misc/mke2fs.c:2240
Philipp Thomas720e6362008-06-21 14:06:00 -04005209msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
Theodore Ts'obd386982015-05-17 20:34:58 -04005210msgstr ""
5211"Flex_bg ist nicht aktiviert, daher darf dafür auch keine Größe angegeben "
5212"werden."
Theodore Ts'o6956f612005-12-31 16:46:15 -05005213
Philipp Thomas37be3822015-05-17 20:21:39 -04005214#: misc/mke2fs.c:2252
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005215#, c-format
Theodore Ts'o197abba2005-06-20 18:00:23 -04005216msgid "invalid inode size %d (min %d/max %d)"
Philipp Thomasab02a742014-07-09 23:13:30 -04005217msgstr "unzulässige Inode-Größe %d (min %d/max %d)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005218
Philipp Thomas37be3822015-05-17 20:21:39 -04005219#: misc/mke2fs.c:2270
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005220#, c-format
5221msgid "too many inodes (%llu), raise inode ratio?"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005222msgstr "zu wenige Inodes (%llu), Anzahl erhöhen?"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005223
Philipp Thomas37be3822015-05-17 20:21:39 -04005224#: misc/mke2fs.c:2277
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005225#, c-format
5226msgid "too many inodes (%llu), specify < 2^32 inodes"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005227msgstr "zu viele Inodes (%llu), geben Sie weniger als 2^32 Inodes an"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005228
Philipp Thomas37be3822015-05-17 20:21:39 -04005229#: misc/mke2fs.c:2291
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005230#, c-format
5231msgid ""
5232"inode_size (%u) * inodes_count (%u) too big for a\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005233"\tfilesystem with %llu blocks, specify higher inode_ratio (-i)\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005234"\tor lower inode count (-N).\n"
5235msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005236"inode_size (%u) * inodes_count (%u) ist zu groß für ein\n"
5237"\tDateisystem mit %llu Blöcken, geben Sie ein höheres inode_ratio (-i)\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005238"\tan oder eine niedrigere Anzahl Inodes (-N) an.\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04005239
Philipp Thomas37be3822015-05-17 20:21:39 -04005240#: misc/mke2fs.c:2418
Philipp Thomas720e6362008-06-21 14:06:00 -04005241#, c-format
5242msgid ""
5243"Overwriting existing filesystem; this can be undone using the command:\n"
5244" e2undo %s %s\n"
5245"\n"
5246msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005247"Das bestehende Dateisystem wird überschrieben, dies kann mittels des "
5248"Befehls\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005249"„e2undo %s %s“ rückgängig gemacht werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005250
Philipp Thomas37be3822015-05-17 20:21:39 -04005251#: misc/mke2fs.c:2432
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005252msgid "while trying to setup undo file\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005253msgstr ""
5254"beim Versuch, die Datei mit den Daten zur Rückgängigmachung anzulegen\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005255
Philipp Thomas37be3822015-05-17 20:21:39 -04005256#: misc/mke2fs.c:2458
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005257msgid "Discarding device blocks: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005258msgstr "Geräteblöcke werden verworfen: "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005259
Philipp Thomas37be3822015-05-17 20:21:39 -04005260#: misc/mke2fs.c:2474
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005261msgid "failed - "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005262msgstr "gescheitert - "
Philipp Thomas77c871a2010-04-19 16:59:02 -04005263
Philipp Thomas37be3822015-05-17 20:21:39 -04005264#: misc/mke2fs.c:2596
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005265msgid "while setting up superblock"
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005266msgstr "beim Erstellen des Superblocks"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005267
Philipp Thomas37be3822015-05-17 20:21:39 -04005268#: misc/mke2fs.c:2612
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005269msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
5270msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005271"Verwerfen war erfolgreich und wird Nullen zurück liefern - daher wird\n"
5272"das Löschen der Inode-Tabelle übersprungen\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005273
Philipp Thomas37be3822015-05-17 20:21:39 -04005274#: misc/mke2fs.c:2700
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005275#, c-format
5276msgid "unknown os - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005277msgstr "unbekanntes Betriebssystem - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005278
Philipp Thomas37be3822015-05-17 20:21:39 -04005279#: misc/mke2fs.c:2752
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005280msgid "Allocating group tables: "
Philipp Thomasab02a742014-07-09 23:13:30 -04005281msgstr "beim Anfordern von Speicher für die Gruppentabellen: "
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005282
Philipp Thomas37be3822015-05-17 20:21:39 -04005283#: misc/mke2fs.c:2760
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005284msgid "while trying to allocate filesystem tables"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005285msgstr "beim Anfordern von Speicher für die Dateisystemtabellen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005286
Philipp Thomas37be3822015-05-17 20:21:39 -04005287#: misc/mke2fs.c:2769
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005288msgid ""
5289"\n"
5290"\twhile converting subcluster bitmap"
5291msgstr ""
5292"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005293"\tbeim Konvertieren der Subclusterbitmap"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005294
Philipp Thomas37be3822015-05-17 20:21:39 -04005295#: misc/mke2fs.c:2812
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005296#, c-format
5297msgid "while zeroing block %llu at end of filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04005298msgstr "beim Nullen von Block %llu am Ende des Dateisystems"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005299
Philipp Thomas37be3822015-05-17 20:21:39 -04005300#: misc/mke2fs.c:2826
Theodore Ts'obc759702005-05-09 20:40:55 -04005301msgid "while reserving blocks for online resize"
Philipp Thomasab02a742014-07-09 23:13:30 -04005302msgstr "beim Reservieren von Blöcken für die Online-Größenänderung"
Theodore Ts'obc759702005-05-09 20:40:55 -04005303
Theodore Ts'obd386982015-05-17 20:34:58 -04005304#: misc/mke2fs.c:2838 misc/tune2fs.c:712
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005305msgid "journal"
5306msgstr "Journal"
5307
Philipp Thomas37be3822015-05-17 20:21:39 -04005308#: misc/mke2fs.c:2850
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005309#, c-format
5310msgid "Adding journal to device %s: "
Philipp Thomasab02a742014-07-09 23:13:30 -04005311msgstr "Ein Journal wird auf Gerät %s hinzugefügt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005312
Philipp Thomas37be3822015-05-17 20:21:39 -04005313#: misc/mke2fs.c:2857
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005314#, c-format
5315msgid ""
5316"\n"
5317"\twhile trying to add journal to device %s"
5318msgstr ""
5319"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005320"\tbeim Versuch, ein Journal auf Gerät %s hinzuzufügen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005321
Theodore Ts'obd386982015-05-17 20:34:58 -04005322#: misc/mke2fs.c:2862 misc/mke2fs.c:2893 misc/tune2fs.c:741 misc/tune2fs.c:760
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005323msgid "done\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005324msgstr "erledgt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005325
Philipp Thomas37be3822015-05-17 20:21:39 -04005326#: misc/mke2fs.c:2869
Philipp Thomas77c871a2010-04-19 16:59:02 -04005327msgid "Skipping journal creation in super-only mode\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005328msgstr "Die Erzeugung eines Journals wird im Nur-Super-Modus übersprungen\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005329
Philipp Thomas37be3822015-05-17 20:21:39 -04005330#: misc/mke2fs.c:2880
Philipp Thomas68801282008-07-17 11:47:00 -04005331#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005332msgid "Creating journal (%u blocks): "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005333msgstr "Das Journal (%u Blöcke) wird angelegt: "
Philipp Thomas720e6362008-06-21 14:06:00 -04005334
Philipp Thomas37be3822015-05-17 20:21:39 -04005335#: misc/mke2fs.c:2889
Philipp Thomasedc733d2012-04-22 15:38:42 -04005336msgid ""
5337"\n"
5338"\twhile trying to create journal"
5339msgstr ""
5340"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005341"\tbeim Anlegen des Journals"
Philipp Thomasedc733d2012-04-22 15:38:42 -04005342
Theodore Ts'obd386982015-05-17 20:34:58 -04005343#: misc/mke2fs.c:2901 misc/tune2fs.c:516
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005344msgid ""
5345"\n"
5346"Error while enabling multiple mount protection feature."
5347msgstr ""
5348"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005349"Fehler beim Aktivieren des Schutzes gegen mehrfaches Einhängen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005350
Philipp Thomas37be3822015-05-17 20:21:39 -04005351#: misc/mke2fs.c:2906
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005352#, c-format
5353msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005354msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005355"Der Schutz gegen mehrfaches Einhängen wurde aktiviert mit einem\n"
5356"Aktualisierungsintervall von %d Sekunden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005357
Philipp Thomas37be3822015-05-17 20:21:39 -04005358#: misc/mke2fs.c:2923
Theodore Ts'o196a8a62003-11-21 12:46:04 -05005359msgid "Writing superblocks and filesystem accounting information: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005360msgstr ""
5361"Die Superblöcke und die Informationen über die Dateisystemnutzung werden\n"
5362"geschrieben: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005363
Philipp Thomas37be3822015-05-17 20:21:39 -04005364#: misc/mke2fs.c:2930
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005365msgid ""
5366"\n"
5367"Warning, had trouble writing out superblocks."
5368msgstr ""
5369"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005370"Es gab Schwierigkeiten beim Schreiben der Superblöcke."
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005371
Philipp Thomas37be3822015-05-17 20:21:39 -04005372#: misc/mke2fs.c:2932
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005373msgid ""
5374"done\n"
5375"\n"
5376msgstr ""
5377"erledigt\n"
5378"\n"
5379
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005380#: misc/mklost+found.c:50
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005381msgid "Usage: mklost+found\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005382msgstr "Aufruf: mklost+found\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005383
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005384#: misc/partinfo.c:41
Philipp Thomasa700f512008-08-29 08:49:57 -04005385#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005386msgid ""
5387"Usage: %s device...\n"
5388"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005389"Prints out the partition information for each given device.\n"
5390"For example: %s /dev/hda\n"
5391"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005392msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005393"Aufruf: %s Gerät…\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005394"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005395"Gibt Informationen über die Partitionierung jedes angegebenen Geräts aus.\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005396"Zum Beispiel: %s /dev/hda\n"
5397"\n"
5398
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005399#: misc/partinfo.c:51
Philipp Thomas40771272008-09-07 22:55:25 -04005400#, c-format
5401msgid "Cannot open %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005402msgstr "%s kann nicht geöffnet werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005403
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005404#: misc/partinfo.c:57
Philipp Thomas40771272008-09-07 22:55:25 -04005405#, c-format
5406msgid "Cannot get geometry of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005407msgstr "Die Geometrie von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005408
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005409#: misc/partinfo.c:65
Philipp Thomas40771272008-09-07 22:55:25 -04005410#, c-format
5411msgid "Cannot get size of %s: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005412msgstr "Die Größe von %s kann nicht ermittelt werden: %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005413
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005414#: misc/partinfo.c:71
Philipp Thomas40771272008-09-07 22:55:25 -04005415#, c-format
5416msgid "%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005417msgstr "%s: h=%3d s=%3d c=%4d Start=%8d Größe=%8lu Ende=%8d\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005418
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005419#: misc/tune2fs.c:112
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005420msgid "Please run e2fsck on the filesystem.\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005421msgstr "Bitte lassen Sie e2fsck dieses Dateisystem überprüfen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005422
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005423#: misc/tune2fs.c:121
Philipp Thomasb93349a2014-05-31 13:32:39 -04005424#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005425msgid ""
Theodore Ts'o197abba2005-06-20 18:00:23 -04005426"Usage: %s [-c max_mounts_count] [-e errors_behavior] [-g group]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005427"\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005428"\t[-m reserved_blocks_percent] [-o [^]mount_options[,...]] [-p "
5429"mmp_update_interval]\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005430"\t[-r reserved_blocks_count] [-u user] [-C mount_count] [-L volume_label]\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005431"\t[-M last_mounted_dir] [-O [^]feature[,...]]\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005432"\t[-Q quota_options]\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005433"\t[-E extended-option[,...]] [-T last_check_time] [-U UUID]\n"
5434"\t[ -I new_inode_size ] device\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005435msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005436"Aufruf: %s [-c max_Anzahl_Einhängungen] [-e Fehlerverhalten] [-g Gruppe]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005437"\t[-i Intervall[d|m|w]] [-j] [-J Journal_Optionen] [-l]\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005438"\t[-m reservierte_Blöcke_Prozent] [-o [^]Einhängeoptionen[,...]] [-p "
5439"mmp_Aktualisierungsintervall]\n"
5440"\t[-r Anzahl_reservierter_Blöcke] [-u Benutzer] [-C Anzahl_Einhängungen] [-L "
5441"Volume_Kennung]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005442"\t[-M letztes_eingehängtes_Verzeichnis] [-O [^]Eigenschaft[,...]]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005443"\t[-Q Quota-Optionen]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005444"\t[-E erweiterte_Optionen[,...]] [-T Zeitpunkt_letzter_Prüfung] [-U UUID]\n"
5445"\t[ -I neue_Inodegröße ] Gerät\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005446
Philipp Thomas37be3822015-05-17 20:21:39 -04005447#: misc/tune2fs.c:203
5448msgid "Journal superblock not found!\n"
5449msgstr "Der Journal-Superblock wurde nicht gefunden!\n"
5450
5451#: misc/tune2fs.c:261
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005452msgid "while trying to open external journal"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005453msgstr "beim Versuch, das externe Journal zu öffnen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005454
Theodore Ts'obd386982015-05-17 20:34:58 -04005455#: misc/tune2fs.c:267 misc/tune2fs.c:1963
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005456#, c-format
5457msgid "%s is not a journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005458msgstr "%s ist kein Journalgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005459
Theodore Ts'obd386982015-05-17 20:34:58 -04005460#: misc/tune2fs.c:277 misc/tune2fs.c:1974
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005461msgid "Filesystem's UUID not found on journal device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005462msgstr "Die UUID des Dateisystems wurde auf dem Journalgerät nicht gefunden.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005463
Philipp Thomas37be3822015-05-17 20:21:39 -04005464#: misc/tune2fs.c:301
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005465msgid ""
5466"Cannot locate journal device. It was NOT removed\n"
5467"Use -f option to remove missing journal device.\n"
5468msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005469"Das Journalgerät wurde nicht gefunden. Es wurde NICHT entfernt\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005470"Bitte benutzen Sie die Option „-f“, um das fehlende Gerät zu entfernen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005471
Theodore Ts'obd386982015-05-17 20:34:58 -04005472#: misc/tune2fs.c:310
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005473msgid "Journal removed\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005474msgstr "Das Journal wurde entfernt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005475
Theodore Ts'obd386982015-05-17 20:34:58 -04005476#: misc/tune2fs.c:354
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005477msgid "while reading bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04005478msgstr "beim Lesen der Bitmaps"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005479
Theodore Ts'obd386982015-05-17 20:34:58 -04005480#: misc/tune2fs.c:362
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005481msgid "while clearing journal inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04005482msgstr "beim Zurücksetzen der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005483
Theodore Ts'obd386982015-05-17 20:34:58 -04005484#: misc/tune2fs.c:373
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005485msgid "while writing journal inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04005486msgstr "beim Schreiben der Journal-Inodes"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005487
Theodore Ts'obd386982015-05-17 20:34:58 -04005488#: misc/tune2fs.c:405 misc/tune2fs.c:418
Philipp Thomas3e914b52011-01-24 15:03:41 -05005489msgid "(and reboot afterwards!)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005490msgstr "(und starten Sie danach das System neu)\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05005491
Theodore Ts'obd386982015-05-17 20:34:58 -04005492#: misc/tune2fs.c:452
Theodore Ts'o8f741372008-02-28 21:47:05 -05005493#, c-format
5494msgid "Clearing filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005495msgstr "Das Deaktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005496
Theodore Ts'obd386982015-05-17 20:34:58 -04005497#: misc/tune2fs.c:458
Philipp Thomas67671422008-05-14 18:42:45 -04005498#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005499msgid "Setting filesystem feature '%s' not supported.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005500msgstr "Das Aktivieren von „%s“ wird nicht unterstützt.\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005501
Theodore Ts'obd386982015-05-17 20:34:58 -04005502#: misc/tune2fs.c:467
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005503msgid ""
Philipp Thomas68801282008-07-17 11:47:00 -04005504"The has_journal feature may only be cleared when the filesystem is\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005505"unmounted or mounted read-only.\n"
5506msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005507"Has_journal kann nur zurückgesetzt werden, wenn das Dateisystem nicht\n"
5508"oder nur-lesbar eingehängt ist.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005509
Theodore Ts'obd386982015-05-17 20:34:58 -04005510#: misc/tune2fs.c:476
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005511msgid ""
5512"The needs_recovery flag is set. Please run e2fsck before clearing\n"
5513"the has_journal flag.\n"
5514msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005515"needs_recovery ist gesetzt. Bitte führen Sie e2fsck aus, bevor Sie\n"
5516"has_journal zurück setzen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005517
Theodore Ts'obd386982015-05-17 20:34:58 -04005518#: misc/tune2fs.c:495
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005519msgid ""
5520"Setting filesystem feature 'sparse_super' not supported\n"
5521"for filesystems with the meta_bg feature enabled.\n"
5522msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005523"Das Setzen von „sparse_super“ wird auf Dateisystemen mit aktiviertem\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005524"„meta_bg“ nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005525
Theodore Ts'obd386982015-05-17 20:34:58 -04005526#: misc/tune2fs.c:508
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005527msgid ""
5528"The multiple mount protection feature can't\n"
5529"be set if the filesystem is mounted or\n"
5530"read-only.\n"
5531msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005532"Der Schutz vor mehrfachem Einhängen kann nur aktiviert werden, wenn das\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005533"Dateisystem nicht oder nur-lesbar eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005534
Theodore Ts'obd386982015-05-17 20:34:58 -04005535#: misc/tune2fs.c:526
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005536#, c-format
5537msgid "Multiple mount protection has been enabled with update interval %ds.\n"
5538msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04005539"Der Schutz vor mehrfachem Einhängen wurde mit einem "
5540"Aktualisierungsintervall\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005541"von %d Sekunden aktiviert.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005542
Theodore Ts'obd386982015-05-17 20:34:58 -04005543#: misc/tune2fs.c:535
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005544msgid ""
5545"The multiple mount protection feature cannot\n"
5546"be disabled if the filesystem is readonly.\n"
5547msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005548"Der Schutz vor mehrfachem Einhängen kann nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005549"deaktiviert werden, wenn das Dateisystem nur-lesbar\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005550"eingehängt ist.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005551
Theodore Ts'obd386982015-05-17 20:34:58 -04005552#: misc/tune2fs.c:543
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005553msgid "Error while reading bitmaps\n"
5554msgstr "Fehler beim Lesen der Bitmaps\n"
5555
Theodore Ts'obd386982015-05-17 20:34:58 -04005556#: misc/tune2fs.c:552
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005557#, c-format
5558msgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005559msgstr ""
5560"Die magische Zahl im MMP-Block passt nicht. Erwartet: %x, gefunden: %x\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005561
Theodore Ts'obd386982015-05-17 20:34:58 -04005562#: misc/tune2fs.c:557
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005563msgid "while reading MMP block."
Philipp Thomasb93349a2014-05-31 13:32:39 -04005564msgstr "beim Lesen des MMP-Blocks."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005565
Theodore Ts'obd386982015-05-17 20:34:58 -04005566#: misc/tune2fs.c:589
Philipp Thomas720e6362008-06-21 14:06:00 -04005567msgid ""
5568"Clearing the flex_bg flag would cause the the filesystem to be\n"
5569"inconsistent.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005570msgstr ""
5571"Das Deaktivieren von flex_bg würde das Dateisystem inkonsistent machen.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005572
Theodore Ts'obd386982015-05-17 20:34:58 -04005573#: misc/tune2fs.c:600
Philipp Thomas68801282008-07-17 11:47:00 -04005574msgid ""
5575"The huge_file feature may only be cleared when the filesystem is\n"
5576"unmounted or mounted read-only.\n"
5577msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005578"huge_file kann nur aktiviert werden, wenn das Dateisystem nicht\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005579"oder nur-lesbar eingehängt ist.\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005580
Theodore Ts'obd386982015-05-17 20:34:58 -04005581#: misc/tune2fs.c:660
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005582msgid ""
5583"\n"
5584"Warning: '^quota' option overrides '-Q'arguments.\n"
5585msgstr ""
5586"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005587"Warnung: die Option „^quota“ hat Vorrang vor „-Q“-Argumenten.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005588
Theodore Ts'obd386982015-05-17 20:34:58 -04005589#: misc/tune2fs.c:705
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005590msgid "The filesystem already has a journal.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005591msgstr "Das Dateisystem hat bereits ein Journal.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005592
Theodore Ts'obd386982015-05-17 20:34:58 -04005593#: misc/tune2fs.c:725
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005594#, c-format
5595msgid ""
5596"\n"
5597"\twhile trying to open journal on %s\n"
5598msgstr ""
5599"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005600"\tbeim Versuch, das Journal auf %s zu öffnen\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005601
Theodore Ts'obd386982015-05-17 20:34:58 -04005602#: misc/tune2fs.c:729
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005603#, c-format
5604msgid "Creating journal on device %s: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005605msgstr "Journal wird erzeugt auf Gerät %s: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005606
Theodore Ts'obd386982015-05-17 20:34:58 -04005607#: misc/tune2fs.c:737
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005608#, c-format
5609msgid "while adding filesystem to journal on %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005610msgstr "beim Hinzufügen des Dateisystems zum Journal auf %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005611
Theodore Ts'obd386982015-05-17 20:34:58 -04005612#: misc/tune2fs.c:743
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005613msgid "Creating journal inode: "
Philipp Thomasb93349a2014-05-31 13:32:39 -04005614msgstr "Journal-Inodes werden erzeugt: "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005615
Theodore Ts'obd386982015-05-17 20:34:58 -04005616#: misc/tune2fs.c:757
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005617msgid ""
5618"\n"
5619"\twhile trying to create journal file"
5620msgstr ""
5621"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005622"\tbeim Versuch, die Journaldatei zu erzeugen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005623
Theodore Ts'obd386982015-05-17 20:34:58 -04005624#: misc/tune2fs.c:832
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005625msgid "Couldn't allocate memory to parse quota options!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005626msgstr ""
5627"Speicher zum Einlesen der Quota-Optionen konnte nicht reserviert werden!\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005628
Theodore Ts'obd386982015-05-17 20:34:58 -04005629#: misc/tune2fs.c:854
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005630msgid ""
5631"\n"
5632"Bad quota options specified.\n"
5633"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005634"Following valid quota options are available (pass by separating with "
5635"comma):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005636"\t[^]usrquota\n"
5637"\t[^]grpquota\n"
5638"\n"
5639"\n"
5640msgstr ""
5641"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005642"Es wurden ungültige Quotaoptionen angegeben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005643"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005644"Die folgenden gültigen Quotaoptionen sind verfügbar (durch Kommata getrennt\n"
5645"angeben):\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005646"\t[^]usrquota\n"
5647"\t[^]grpquota\n"
5648"\n"
5649"\n"
5650
Theodore Ts'obd386982015-05-17 20:34:58 -04005651#: misc/tune2fs.c:914
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005652#, c-format
5653msgid "Couldn't parse date/time specifier: %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005654msgstr "Die Angabe von Zeit/Datum war unverständlich: %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005655
Theodore Ts'obd386982015-05-17 20:34:58 -04005656#: misc/tune2fs.c:942 misc/tune2fs.c:955
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005657#, c-format
5658msgid "bad mounts count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005659msgstr "ungültge Anzahl Einhängungen - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005660
Theodore Ts'obd386982015-05-17 20:34:58 -04005661#: misc/tune2fs.c:971
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005662#, c-format
5663msgid "bad error behavior - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005664msgstr "ungültiges Verhalten im Fehlerfall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005665
Theodore Ts'obd386982015-05-17 20:34:58 -04005666#: misc/tune2fs.c:998
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005667#, c-format
5668msgid "bad gid/group name - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005669msgstr "ungültige Gruppen-ID/Gruppe - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005670
Theodore Ts'obd386982015-05-17 20:34:58 -04005671#: misc/tune2fs.c:1031
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005672#, c-format
5673msgid "bad interval - %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04005674msgstr "ungültiges Intervall - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005675
Theodore Ts'obd386982015-05-17 20:34:58 -04005676#: misc/tune2fs.c:1060
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005677#, c-format
5678msgid "bad reserved block ratio - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005679msgstr "ungültiges Verhältnis reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005680
Theodore Ts'obd386982015-05-17 20:34:58 -04005681#: misc/tune2fs.c:1075
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005682msgid "-o may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005683msgstr "-o darf nur einmal angegeben werden"
Theodore Ts'o0c897a92002-11-09 12:01:18 -05005684
Theodore Ts'obd386982015-05-17 20:34:58 -04005685#: misc/tune2fs.c:1084
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005686msgid "-O may only be specified once"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005687msgstr "-O darf nur einmal angegeben werden"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005688
Theodore Ts'obd386982015-05-17 20:34:58 -04005689#: misc/tune2fs.c:1101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005690#, c-format
5691msgid "bad reserved blocks count - %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005692msgstr "ungültige Anzahl reservierter Blöcke - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005693
Theodore Ts'obd386982015-05-17 20:34:58 -04005694#: misc/tune2fs.c:1130
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005695#, c-format
5696msgid "bad uid/user name - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005697msgstr "falsche Benutzer-ID/Benutzername - %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005698
Theodore Ts'obd386982015-05-17 20:34:58 -04005699#: misc/tune2fs.c:1147
Philipp Thomas68801282008-07-17 11:47:00 -04005700#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005701msgid "bad inode size - %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005702msgstr "ungültige Inode-Größe - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005703
Theodore Ts'obd386982015-05-17 20:34:58 -04005704#: misc/tune2fs.c:1154
Philipp Thomas720e6362008-06-21 14:06:00 -04005705#, c-format
5706msgid "Inode size must be a power of two- %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04005707msgstr "Die Inode-Größe muss eine Zweierpotenz sein - %s"
Philipp Thomas720e6362008-06-21 14:06:00 -04005708
Theodore Ts'obd386982015-05-17 20:34:58 -04005709#: misc/tune2fs.c:1248
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005710#, c-format
5711msgid "mmp_update_interval too big: %lu\n"
5712msgstr "mmp_update_interval ist zu groß: %lu\n"
5713
Theodore Ts'obd386982015-05-17 20:34:58 -04005714#: misc/tune2fs.c:1253
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005715#, c-format
5716msgid "Setting multiple mount protection update interval to %lu second\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005717msgid_plural ""
5718"Setting multiple mount protection update interval to %lu seconds\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005719msgstr[0] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005720"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5721"wird auf %lu Sekunde gesetzt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005722msgstr[1] ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005723"Das Aktualisierungsintervall des Schutzes vor mehrfachem Einhängen\n"
5724"wird auf %lu Sekunden gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005725
Theodore Ts'obd386982015-05-17 20:34:58 -04005726#: misc/tune2fs.c:1276
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005727#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005728msgid "Invalid RAID stride: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005729msgstr "Ungültiger RAID-Stride: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005730
Theodore Ts'obd386982015-05-17 20:34:58 -04005731#: misc/tune2fs.c:1291
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005732#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05005733msgid "Invalid RAID stripe-width: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005734msgstr "Ungültiger Stripebreite-Parameter: %s\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005735
Theodore Ts'obd386982015-05-17 20:34:58 -04005736#: misc/tune2fs.c:1306
Philipp Thomas40771272008-09-07 22:55:25 -04005737#, c-format
5738msgid "Invalid hash algorithm: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005739msgstr "Ungültiger Hash-Algorithmus: %s\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005740
Theodore Ts'obd386982015-05-17 20:34:58 -04005741#: misc/tune2fs.c:1312
Philipp Thomas40771272008-09-07 22:55:25 -04005742#, c-format
5743msgid "Setting default hash algorithm to %s (%d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005744msgstr "Der Standard-Hash-Algorithmus wird auf %s (%d) gesetzt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005745
Theodore Ts'obd386982015-05-17 20:34:58 -04005746#: misc/tune2fs.c:1331
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005747msgid ""
5748"\n"
5749"Bad options specified.\n"
5750"\n"
5751"Extended options are separated by commas, and may take an argument which\n"
5752"\tis set off by an equals ('=') sign.\n"
5753"\n"
5754"Valid extended options are:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005755"\tclear_mmp\n"
5756"\thash_alg=<hash algorithm>\n"
5757"\tmount_opts=<extended default mount options>\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05005758"\tstride=<RAID per-disk chunk size in blocks>\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005759"\tstripe_width=<RAID stride*data disks in blocks>\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005760"\ttest_fs\n"
5761"\t^test_fs\n"
5762msgstr ""
5763"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005764"Falsche erweiterte Optionen angegeben.\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005765"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005766"Erweiterte Optionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005767"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005768"\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005769"Gültige erweiterte Optionen sind:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005770"\tclear_mmp\n"
5771"\thash_alg=<Hashalgorithmus>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005772"\tmount_opts=<erweiterte Standardeinhängoptionen>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005773"\tstride=<RAID-Blockgröße pro PLatte in Blöcken\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005774"\tstripe_width=<RAID Stride*Datenplatten in Blöcken>\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005775"\ttest_fs\n"
5776"\t^test_fs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005777"\n"
Theodore Ts'of1d5fce2008-02-09 23:19:35 -05005778
Theodore Ts'obd386982015-05-17 20:34:58 -04005779#: misc/tune2fs.c:1798
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005780msgid "Failed to read inode bitmap\n"
5781msgstr "Die Inode-Bitmap konnte nicht gelesen werden\n"
5782
Theodore Ts'obd386982015-05-17 20:34:58 -04005783#: misc/tune2fs.c:1803
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005784msgid "Failed to read block bitmap\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005785msgstr "Die Block-Bitmap konnte nicht gelesen werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005786
Theodore Ts'obd386982015-05-17 20:34:58 -04005787#: misc/tune2fs.c:1820 resize/resize2fs.c:931
Philipp Thomas720e6362008-06-21 14:06:00 -04005788msgid "blocks to be moved"
5789msgstr "zu verschiebende Blöcke"
5790
Theodore Ts'obd386982015-05-17 20:34:58 -04005791#: misc/tune2fs.c:1823
Philipp Thomas77c871a2010-04-19 16:59:02 -04005792msgid "Failed to allocate block bitmap when increasing inode size\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005793msgstr ""
5794"Beim Erhöhen der Inode-Größe konnte keine Blockbitmap reserviert werden\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005795
Theodore Ts'obd386982015-05-17 20:34:58 -04005796#: misc/tune2fs.c:1829
Philipp Thomas77c871a2010-04-19 16:59:02 -04005797msgid "Not enough space to increase inode size \n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005798msgstr "Der Platz reicht nicht aus für eine Erhöhung der Inode-Größe \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005799
Theodore Ts'obd386982015-05-17 20:34:58 -04005800#: misc/tune2fs.c:1834
Philipp Thomas77c871a2010-04-19 16:59:02 -04005801msgid "Failed to relocate blocks during inode resize \n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005802msgstr ""
5803"Das Verschieben von Blöcken während der Größenänderung der Inodes "
5804"scheiterte \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005805
Theodore Ts'obd386982015-05-17 20:34:58 -04005806#: misc/tune2fs.c:1866
Philipp Thomas77c871a2010-04-19 16:59:02 -04005807msgid ""
5808"Error in resizing the inode size.\n"
5809"Run e2undo to undo the file system changes. \n"
5810msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005811"Fehler beim Ändern der Inode-Größe.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005812"Starten Sie e2undo, um die Änderungen am Dateisystem rückgängig zu machen. \n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04005813
Theodore Ts'obd386982015-05-17 20:34:58 -04005814#: misc/tune2fs.c:1893
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005815msgid "Couldn't allocate memory for tdb filename\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005816msgstr "Es kann kein Speicher für den Tdb-Dateinamen reserviert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005817
Theodore Ts'obd386982015-05-17 20:34:58 -04005818#: misc/tune2fs.c:1914
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005819#, c-format
5820msgid "while trying to delete %s"
5821msgstr "beim Versuch, %s zu löschen"
5822
Theodore Ts'obd386982015-05-17 20:34:58 -04005823#: misc/tune2fs.c:1922
Philipp Thomas77c871a2010-04-19 16:59:02 -04005824#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005825msgid ""
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005826"To undo the tune2fs operation please run the command\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005827" e2undo %s %s\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005828"\n"
5829msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005830"Um die durch Tune2fs gemachten Änderungen rückgängig zu machen, starten Sie\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005831"bitte\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005832" e2undo %s %s\n"
Philipp Thomas68801282008-07-17 11:47:00 -04005833"\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005834
Theodore Ts'obd386982015-05-17 20:34:58 -04005835#: misc/tune2fs.c:2056
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005836#, c-format
5837msgid ""
5838"MMP block magic is bad. Try to fix it by running:\n"
5839"'e2fsck -f %s'\n"
5840msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005841"Die magische Zahl des MMP-Blocks ist ungültig. Versuchen Sie, dies durch\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005842"„e2fsck -f %s“\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005843"zu beheben.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005844
Theodore Ts'obd386982015-05-17 20:34:58 -04005845#: misc/tune2fs.c:2074
Philipp Thomas40771272008-09-07 22:55:25 -04005846#, c-format
Philipp Thomas77c871a2010-04-19 16:59:02 -04005847msgid "The inode size is already %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005848msgstr "Die Inode-Größe ist bereits %lu\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005849
Theodore Ts'obd386982015-05-17 20:34:58 -04005850#: misc/tune2fs.c:2081
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005851msgid "Shrinking inode size is not supported\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005852msgstr "Das Verringern der Inode-Größe wird nicht unterstützt\n"
Philipp Thomas40771272008-09-07 22:55:25 -04005853
Theodore Ts'obd386982015-05-17 20:34:58 -04005854#: misc/tune2fs.c:2086
Philipp Thomasb93349a2014-05-31 13:32:39 -04005855#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005856msgid "Invalid inode size %lu (max %d)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005857msgstr "Unzulässige Inode-Größe: %lu (max %d)\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005858
Theodore Ts'obd386982015-05-17 20:34:58 -04005859#: misc/tune2fs.c:2133
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005860#, c-format
5861msgid "Setting maximal mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005862msgstr "Die maximale Anzahl von Einhängungen wird auf %d gesezt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005863
Theodore Ts'obd386982015-05-17 20:34:58 -04005864#: misc/tune2fs.c:2139
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005865#, c-format
5866msgid "Setting current mount count to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005867msgstr "Die Anzahl der Einhängungen wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005868
Theodore Ts'obd386982015-05-17 20:34:58 -04005869#: misc/tune2fs.c:2144
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005870#, c-format
5871msgid "Setting error behavior to %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005872msgstr "Das Fehlerverhalten wird auf %d gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005873
Theodore Ts'obd386982015-05-17 20:34:58 -04005874#: misc/tune2fs.c:2149
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005875#, c-format
5876msgid "Setting reserved blocks gid to %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005877msgstr "Die Gruppen-ID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005878
Theodore Ts'obd386982015-05-17 20:34:58 -04005879#: misc/tune2fs.c:2154
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005880#, c-format
5881msgid "interval between checks is too big (%lu)"
Philipp Thomasab02a742014-07-09 23:13:30 -04005882msgstr "Der Abstand zwischen zwei Prüfläufen ist zu groß (%lu)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005883
Theodore Ts'obd386982015-05-17 20:34:58 -04005884#: misc/tune2fs.c:2161
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005885#, c-format
Theodore Ts'obc759702005-05-09 20:40:55 -04005886msgid "Setting interval between checks to %lu seconds\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005887msgstr "Der Abstand zwischen den Prüfläufen wird auf %lu Sekunden gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005888
Theodore Ts'obd386982015-05-17 20:34:58 -04005889#: misc/tune2fs.c:2168
Theodore Ts'o7527ef12007-12-05 19:35:20 -05005890#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005891msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005892msgstr ""
5893"Der prozentuelle Anteil reservierter Blöcke wird auf %g%% (%llu Blöcke) "
5894"gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005895
Theodore Ts'obd386982015-05-17 20:34:58 -04005896#: misc/tune2fs.c:2174
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005897#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005898msgid "reserved blocks count is too big (%llu)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005899msgstr "Die Anzahl reservierter Blöcke ist zu groß (%llu)"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005900
Theodore Ts'obd386982015-05-17 20:34:58 -04005901#: misc/tune2fs.c:2181
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005902#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005903msgid "Setting reserved blocks count to %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005904msgstr "Die Anzahl reservierter Blöcke wird auf %llu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005905
Theodore Ts'obd386982015-05-17 20:34:58 -04005906#: misc/tune2fs.c:2187
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005907msgid ""
5908"\n"
5909"The filesystem already has sparse superblocks.\n"
5910msgstr ""
5911"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005912"Das Dateisystem hat bereits Sparse-Superblöcke.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005913
Theodore Ts'obd386982015-05-17 20:34:58 -04005914#: misc/tune2fs.c:2191
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005915msgid ""
5916"\n"
5917"Setting the sparse superblock flag not supported\n"
5918"for filesystems with the meta_bg feature enabled.\n"
5919msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04005920"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005921"Das Aktivieren von Sparse-Superblöcken wird auf Dateisystemen mit "
5922"aktivierter\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005923"Eigenschaft meta_bg nicht unterstützt.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005924
Theodore Ts'obd386982015-05-17 20:34:58 -04005925#: misc/tune2fs.c:2202
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005926#, c-format
5927msgid ""
5928"\n"
5929"Sparse superblock flag set. %s"
5930msgstr ""
5931"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005932"Kennung „Sparse-Superblöcke“ ist gesetzt. %s"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005933
Theodore Ts'obd386982015-05-17 20:34:58 -04005934#: misc/tune2fs.c:2207
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005935msgid ""
5936"\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005937"Clearing the sparse superblock flag not supported.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005938msgstr ""
Philipp Thomas1e8757d2008-03-18 14:36:12 -04005939"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005940"Das Zurücksetzen der Kennung „Sparse-Superblöcke“ wird nicht unterstützt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005941
Theodore Ts'obd386982015-05-17 20:34:58 -04005942#: misc/tune2fs.c:2215
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005943#, c-format
5944msgid "Setting time filesystem last checked to %s\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005945msgstr ""
5946"Der Zeitpunkt der letzten Prüfung des Dateisystems wird auf %s gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005947
Theodore Ts'obd386982015-05-17 20:34:58 -04005948#: misc/tune2fs.c:2221
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005949#, c-format
5950msgid "Setting reserved blocks uid to %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005951msgstr "Die Benutzer-ID reservierter Blöcke wird auf %lu gesetzt\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005952
Theodore Ts'obd386982015-05-17 20:34:58 -04005953#: misc/tune2fs.c:2253
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005954msgid "Error in using clear_mmp. It must be used with -f\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005955msgstr ""
5956"Fehler bei der Verwendung von clear_mmp. Es muss zusammen mit -f benutzt "
5957"werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005958
Theodore Ts'obd386982015-05-17 20:34:58 -04005959#: misc/tune2fs.c:2271
5960msgid ""
5961"The quota feature may only be changed when the filesystem is unmounted.\n"
5962msgstr ""
5963"Quotas können nur bei nicht eingehängten Dateisystemen geändert werden.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005964
Theodore Ts'obd386982015-05-17 20:34:58 -04005965#: misc/tune2fs.c:2292
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005966msgid "The UUID may only be changed when the filesystem is unmounted.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005967msgstr ""
5968"Die UUID kann nur bei nicht eingehängtem Dateisystem geändert werden.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04005969
Theodore Ts'obd386982015-05-17 20:34:58 -04005970#: misc/tune2fs.c:2322
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005971msgid "Invalid UUID format\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005972msgstr "Ungültiges UUID-Format\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05005973
Theodore Ts'obd386982015-05-17 20:34:58 -04005974#: misc/tune2fs.c:2337
Philipp Thomas37be3822015-05-17 20:21:39 -04005975msgid "Need to update journal superblock.\n"
5976msgstr "Der Journal-Superblock muss aktualisiert werden.\n"
5977
Theodore Ts'obd386982015-05-17 20:34:58 -04005978#: misc/tune2fs.c:2358
Philipp Thomas720e6362008-06-21 14:06:00 -04005979msgid "The inode size may only be changed when the filesystem is unmounted.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04005980msgstr ""
5981"Die Inode-Größe kann nur bei ausgehängtem Dateisystem geändert werden.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005982
Theodore Ts'obd386982015-05-17 20:34:58 -04005983#: misc/tune2fs.c:2366
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005984msgid ""
5985"Changing the inode size not supported for filesystems with the flex_bg\n"
5986"feature enabled.\n"
5987msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04005988"Das Ändern der Inode-Größe auf Dateisystemen mit aktiviertem flex_bg\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04005989"wird nicht unterstützt.\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05005990
Theodore Ts'obd386982015-05-17 20:34:58 -04005991#: misc/tune2fs.c:2379
Philipp Thomas68801282008-07-17 11:47:00 -04005992#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04005993msgid "Setting inode size %lu\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005994msgstr "Die Inode-Größe wird auf %lu gesetzt\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04005995
Theodore Ts'obd386982015-05-17 20:34:58 -04005996#: misc/tune2fs.c:2382
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005997msgid "Failed to change inode size\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04005998msgstr "Die Inode-Größe konnte nicht geändert werden\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04005999
Theodore Ts'obd386982015-05-17 20:34:58 -04006000#: misc/tune2fs.c:2393
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006001#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05006002msgid "Setting stride size to %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006003msgstr "Die Stride-Größe wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05006004
Theodore Ts'obd386982015-05-17 20:34:58 -04006005#: misc/tune2fs.c:2398
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006006#, c-format
Theodore Ts'o8f741372008-02-28 21:47:05 -05006007msgid "Setting stripe width to %d\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006008msgstr "Die Stripebreite wird auf %d gesetzt\n"
Theodore Ts'o8f741372008-02-28 21:47:05 -05006009
Theodore Ts'obd386982015-05-17 20:34:58 -04006010#: misc/tune2fs.c:2405
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006011#, c-format
6012msgid "Setting extended default mount options to '%s'\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006013msgstr "Die erweiterten Standard-Einhängeoptionen werden auf „%s“ gesetzt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006014
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006015#: misc/util.c:93
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006016msgid "<proceeding>\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006017msgstr "<Verarbeitung läuft\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006018
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006019#: misc/util.c:97
Philipp Thomasb93349a2014-05-31 13:32:39 -04006020#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006021msgid "Proceed anyway (or wait %d seconds) ? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04006022msgstr "Trotzdem fortfahren (oder %d Sekunden warten) ? (j,n) "
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006023
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006024#: misc/util.c:101
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006025msgid "Proceed anyway? (y,n) "
Philipp Thomasb93349a2014-05-31 13:32:39 -04006026msgstr "Trotzdem fortfahren? (j,n) "
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006027
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006028#: misc/util.c:132
Philipp Thomasb93349a2014-05-31 13:32:39 -04006029#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006030msgid "\tlast mounted on %s on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006031msgstr "\tzuletzt auf %s auf %s eingehängt"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006032
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006033#: misc/util.c:135
Philipp Thomasb93349a2014-05-31 13:32:39 -04006034#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006035msgid "\tlast mounted on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006036msgstr "\tzuletzt auf %s eingehängt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006037
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006038#: misc/util.c:138
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006039#, c-format
6040msgid "\tcreated on %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006041msgstr "\tauf %s erzeugt"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006042
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006043#: misc/util.c:141
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006044#, c-format
6045msgid "\tlast modified on %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04006046msgstr "\tzuletzt geändert %s"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006047
Theodore Ts'ocd75fb02014-07-05 23:44:28 -04006048#: misc/util.c:175
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006049#, c-format
6050msgid "Found a %s partition table in %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006051msgstr "In %2$s wurde eine %1$s-Partitionstabelle gefunden\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006052
Philipp Thomas37be3822015-05-17 20:21:39 -04006053#: misc/util.c:202
6054#, c-format
6055msgid "The file %s does not exist and no size was specified.\n"
6056msgstr "Die Datei %s existiert nicht und es wurde keine Größe angegeben.\n"
6057
6058#: misc/util.c:210
Philipp Thomasb93349a2014-05-31 13:32:39 -04006059#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006060msgid "Creating regular file %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006061msgstr "Die reguläre Datei %s wird angelegt\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006062
Philipp Thomas37be3822015-05-17 20:21:39 -04006063#: misc/util.c:213
Philipp Thomasb93349a2014-05-31 13:32:39 -04006064#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006065msgid "Could not open %s: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006066msgstr "%s kann nicht geöffnet werden: %s\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006067
Philipp Thomas37be3822015-05-17 20:21:39 -04006068#: misc/util.c:216
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006069msgid ""
6070"\n"
6071"The device apparently does not exist; did you specify it correctly?\n"
6072msgstr ""
6073"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006074"Das Gerät existiert offensichtlich nicht; haben Sie es korrekt angegeben?\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006075
Philipp Thomas37be3822015-05-17 20:21:39 -04006076#: misc/util.c:238
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006077#, c-format
6078msgid "%s is not a block special device.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006079msgstr "%s ist kein spezielles Blockgerät.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006080
Philipp Thomas37be3822015-05-17 20:21:39 -04006081#: misc/util.c:260
Philipp Thomasb93349a2014-05-31 13:32:39 -04006082#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006083msgid "%s contains a %s file system labelled '%s'\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006084msgstr "%s hat ein %s-Dateisystem mit Namen „%s“\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006085
Philipp Thomas37be3822015-05-17 20:21:39 -04006086#: misc/util.c:263
Philipp Thomasb93349a2014-05-31 13:32:39 -04006087#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006088msgid "%s contains a %s file system\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006089msgstr "%s hat ein %s-Dateisystem\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006090
Philipp Thomas37be3822015-05-17 20:21:39 -04006091#: misc/util.c:300
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006092#, c-format
6093msgid "%s is entire device, not just one partition!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006094msgstr "%s ist das ganze Gerät und nicht nur eine einzelne Partition!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006095
Philipp Thomas37be3822015-05-17 20:21:39 -04006096#: misc/util.c:323
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006097msgid "mke2fs forced anyway. Hope /etc/mtab is incorrect.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006098msgstr ""
6099"mke2fs wird trotzdem erzwungen. Hoffentlich ist /etc/mtab nicht korrekt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006100
Philipp Thomas37be3822015-05-17 20:21:39 -04006101#: misc/util.c:328
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006102#, c-format
6103msgid "will not make a %s here!\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006104msgstr "%s wird hier nicht angelegt!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006105
Philipp Thomas37be3822015-05-17 20:21:39 -04006106#: misc/util.c:335
Theodore Ts'o7ae19832005-06-19 09:45:36 -04006107msgid "mke2fs forced anyway.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006108msgstr "mke2fs wird trotzdem erzwungen.\n"
Theodore Ts'o7ae19832005-06-19 09:45:36 -04006109
Philipp Thomas37be3822015-05-17 20:21:39 -04006110#: misc/util.c:351
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006111msgid "Couldn't allocate memory to parse journal options!\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006112msgstr ""
6113"Es konnte kein Speicher zum Einlesen der Journaloptionen reserviert werden!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006114
Philipp Thomas37be3822015-05-17 20:21:39 -04006115#: misc/util.c:376
Philipp Thomas3e914b52011-01-24 15:03:41 -05006116#, c-format
Theodore Ts'o057a1592010-06-07 12:24:21 -04006117msgid ""
6118"\n"
6119"Could not find journal device matching %s\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05006120msgstr ""
6121"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006122"Ein zu %s passendes Journalgerät konnte nicht gefunden werden\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04006123
Philipp Thomas37be3822015-05-17 20:21:39 -04006124#: misc/util.c:403
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006125msgid ""
6126"\n"
6127"Bad journal options specified.\n"
6128"\n"
6129"Journal options are separated by commas, and may take an argument which\n"
6130"\tis set off by an equals ('=') sign.\n"
6131"\n"
Theodore Ts'oddc32a02003-05-03 18:45:55 -04006132"Valid journal options are:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006133"\tsize=<journal size in megabytes>\n"
6134"\tdevice=<journal device>\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006135"\tlocation=<journal location>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006136"\n"
Philipp Thomas40771272008-09-07 22:55:25 -04006137"The journal size must be between 1024 and 10240000 filesystem blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006138"\n"
6139msgstr ""
6140"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006141"Falsche Journaloptionen angegeben:\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006142"\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006143"Journaloptionen werden durch Kommata getrennt. Manche erwarten ein\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006144"\tArgument, welches mit Gleichheitszeichen („=“) zugewiesen wird.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006145"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006146"Gültige Journaloptionen sind:\n"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006147"\tsize=<Journalgröße in Megabytes>\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006148"\tdevice=<Journalgerät>\n"
6149"\tlocation=<Position des Journals>\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006150"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006151"Die Größe des Journals muss zwischen 1024 und 10240000 Dateisystemblöcken\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006152"\tliegen.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006153"\n"
6154
Philipp Thomas37be3822015-05-17 20:21:39 -04006155#: misc/util.c:434
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006156msgid ""
6157"\n"
6158"Filesystem too small for a journal\n"
6159msgstr ""
6160"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006161"Das Dateisystem ist für ein Journal zu klein\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006162
Philipp Thomas37be3822015-05-17 20:21:39 -04006163#: misc/util.c:441
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006164#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006165msgid ""
6166"\n"
6167"The requested journal size is %d blocks; it must be\n"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006168"between 1024 and 10240000 blocks. Aborting.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006169msgstr ""
6170"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006171"Die gewünschte Journalgröße ist %d Blöcke; sie muss\n"
6172"zwischen 1024 und 10240000 Blöcken liegen. Abbruch.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006173
Philipp Thomas37be3822015-05-17 20:21:39 -04006174#: misc/util.c:449
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006175msgid ""
6176"\n"
6177"Journal size too big for filesystem.\n"
6178msgstr ""
6179"\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006180"Das Journal ist für dieses Dateisystem zu groß.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006181
Philipp Thomas37be3822015-05-17 20:21:39 -04006182#: misc/util.c:463
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006183#, c-format
6184msgid ""
6185"This filesystem will be automatically checked every %d mounts or\n"
6186"%g days, whichever comes first. Use tune2fs -c or -i to override.\n"
6187msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006188"Dieses Dateisystem wird automatisch alle %d Einhängungen oder\n"
6189"%g Tage überprüft, was immer zuerst kommt.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006190
Philipp Thomas37be3822015-05-17 20:21:39 -04006191#: misc/uuidd.c:49
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006192#, c-format
6193msgid "Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006194msgstr "Aufruf: %s [-d] [-p Prozess-ID-Datei] [-s Socketpfad] [-T Timeout]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006195
Philipp Thomas37be3822015-05-17 20:21:39 -04006196#: misc/uuidd.c:51
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006197#, c-format
6198msgid " %s [-r|t] [-n num] [-s socketpath]\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006199msgstr " %s [-r|t] [-n Anzahl] [-s Socketpfad]\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006200
Philipp Thomas37be3822015-05-17 20:21:39 -04006201#: misc/uuidd.c:53
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006202#, c-format
6203msgid " %s -k\n"
6204msgstr " %s -k\n"
6205
Philipp Thomas37be3822015-05-17 20:21:39 -04006206#: misc/uuidd.c:155
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006207msgid "bad arguments"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006208msgstr "ungültige Argumente"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006209
Philipp Thomas37be3822015-05-17 20:21:39 -04006210#: misc/uuidd.c:173
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006211msgid "connect"
6212msgstr "verbinden"
6213
Philipp Thomas37be3822015-05-17 20:21:39 -04006214#: misc/uuidd.c:192
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006215msgid "write"
6216msgstr "schreiben"
6217
Philipp Thomas37be3822015-05-17 20:21:39 -04006218#: misc/uuidd.c:200
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006219msgid "read count"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006220msgstr "Lesezähler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006221
Philipp Thomas37be3822015-05-17 20:21:39 -04006222#: misc/uuidd.c:206
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006223msgid "bad response length"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006224msgstr "ungültige Länge der Antwort"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006225
Philipp Thomas37be3822015-05-17 20:21:39 -04006226#: misc/uuidd.c:271
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006227#, c-format
6228msgid "uuidd daemon already running at pid %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006229msgstr "der uuidd-Dämon läft bereits mit Prozess-ID %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006230
Philipp Thomas37be3822015-05-17 20:21:39 -04006231#: misc/uuidd.c:279
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006232#, c-format
6233msgid "Couldn't create unix stream socket: %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04006234msgstr "Es konnte kein Unix-Stream-Socket erzeugt werden: %s"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006235
Philipp Thomas37be3822015-05-17 20:21:39 -04006236#: misc/uuidd.c:308
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006237#, c-format
6238msgid "Couldn't bind unix socket %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006239msgstr "Es konnte nicht mit Unix-Socket %s verbunden werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006240
Philipp Thomas37be3822015-05-17 20:21:39 -04006241#: misc/uuidd.c:316
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006242#, c-format
6243msgid "Couldn't listen on unix socket %s: %s\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006244msgstr "Lauschen auf Unix-Socket %s war nicht möglich: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006245
Philipp Thomas37be3822015-05-17 20:21:39 -04006246#: misc/uuidd.c:354
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006247#, c-format
6248msgid "Error reading from client, len = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006249msgstr "Fehler beim Lesen vom Client, Länge = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006250
Philipp Thomas37be3822015-05-17 20:21:39 -04006251#: misc/uuidd.c:362
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006252#, c-format
6253msgid "operation %d, incoming num = %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006254msgstr "Operation %d, eingehende Nummer = %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006255
Philipp Thomas37be3822015-05-17 20:21:39 -04006256#: misc/uuidd.c:381
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006257#, c-format
6258msgid "Generated time UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006259msgstr "Zeit-UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006260
Philipp Thomas37be3822015-05-17 20:21:39 -04006261#: misc/uuidd.c:391
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006262#, c-format
6263msgid "Generated random UUID: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006264msgstr "Zufällige UUID erzeugt: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006265
Philipp Thomas37be3822015-05-17 20:21:39 -04006266#: misc/uuidd.c:400
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006267#, c-format
6268msgid "Generated time UUID %s and subsequent UUID\n"
6269msgid_plural "Generated time UUID %s and %d subsequent UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006270msgstr[0] "Zeit-UUID %s und die folgende UUID erzeugt\n"
6271msgstr[1] "Zeit-UUID %s und die folgenden %d UUIDs erzeugt\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006272
Philipp Thomas37be3822015-05-17 20:21:39 -04006273#: misc/uuidd.c:421
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006274#, c-format
6275msgid "Generated %d UUID's:\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006276msgstr "%d UUIDs erzeugt:\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006277
Philipp Thomas37be3822015-05-17 20:21:39 -04006278#: misc/uuidd.c:433
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006279#, c-format
6280msgid "Invalid operation %d\n"
6281msgstr "Ungültige Operation %d\n"
6282
Philipp Thomas37be3822015-05-17 20:21:39 -04006283#: misc/uuidd.c:477 misc/uuidd.c:499
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006284#, c-format
6285msgid "Bad number: %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006286msgstr "Ungültige Nummer: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006287
Philipp Thomas37be3822015-05-17 20:21:39 -04006288#: misc/uuidd.c:534 misc/uuidd.c:563
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006289#, c-format
6290msgid "Error calling uuidd daemon (%s): %s\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006291msgstr "Fehler beim Aufruf des Uuid-Dämons (%s): %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006292
Philipp Thomas37be3822015-05-17 20:21:39 -04006293#: misc/uuidd.c:544
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006294#, c-format
6295msgid "%s and subsequent UUID\n"
6296msgid_plural "%s and subsequent %d UUIDs\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006297msgstr[0] "%s und die folgende UUID\n"
6298msgstr[1] "%s und die folgenden %d UUIDs\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006299
Philipp Thomas37be3822015-05-17 20:21:39 -04006300#: misc/uuidd.c:548
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006301msgid "List of UUID's:\n"
6302msgstr "Liste der UUIDs:\n"
6303
Philipp Thomas37be3822015-05-17 20:21:39 -04006304#: misc/uuidd.c:569
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006305#, c-format
6306msgid "Unexpected reply length from server %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006307msgstr "Unerwartete Antwortlänge von Server %d\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006308
Philipp Thomas37be3822015-05-17 20:21:39 -04006309#: misc/uuidd.c:586
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006310#, c-format
6311msgid "Couldn't kill uuidd running at pid %d: %s\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006312msgstr ""
6313"Der mit Prozess-ID %d laufende uuidd konnte nicht abgeschossen werden: %s\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006314
Philipp Thomas37be3822015-05-17 20:21:39 -04006315#: misc/uuidd.c:592
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006316#, c-format
6317msgid "Killed uuidd running at pid %d\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006318msgstr "Der mit PID %d laufende uuidd wurde abgeschossen\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006319
6320#: misc/uuidgen.c:32
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006321#, c-format
6322msgid "Usage: %s [-r] [-t]\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006323msgstr "Aufruf: %s [-r] [-t]\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006324
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006325#: resize/extent.c:202
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006326msgid "# Extent dump:\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006327msgstr "# Dump der Erweiterung:\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006328
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006329#: resize/extent.c:203
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006330#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006331msgid "#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006332msgstr "#\tAnz=%llu, Größe=%llu, Cursor=%llu, Sortiert=%llu\n"
Theodore Ts'oa04eba32003-05-03 16:35:17 -04006333
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006334#: resize/main.c:44
Philipp Thomas68801282008-07-17 11:47:00 -04006335#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006336msgid ""
Philipp Thomas720e6362008-06-21 14:06:00 -04006337"Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] device [new_size]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006338"\n"
6339msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006340"Aufruf: %s [-d debug_flags] [-f] [-F] [-M] [-P] [-p] Gerät [neue_Größe]\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006341"\n"
6342
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006343#: resize/main.c:66
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006344msgid "Extending the inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006345msgstr "Die Inode-Tabelle wird erweitert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006346
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006347#: resize/main.c:69
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006348msgid "Relocating blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006349msgstr "Blöcke werden verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006350
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006351#: resize/main.c:72
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006352msgid "Scanning inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006353msgstr "Die Inode-Tabelle wird gelesen"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006354
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006355#: resize/main.c:75
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006356msgid "Updating inode references"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006357msgstr "Die Inode-Referenzen werden aktualisiert"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006358
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006359#: resize/main.c:78
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006360msgid "Moving inode table"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006361msgstr "Die Inode-Tabelle wird verschoben"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006362
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006363#: resize/main.c:81
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006364msgid "Unknown pass?!?"
6365msgstr "Unbekannter Durchgang?!?"
6366
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006367#: resize/main.c:84
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006368#, c-format
6369msgid "Begin pass %d (max = %lu)\n"
Philipp Thomas1e8757d2008-03-18 14:36:12 -04006370msgstr "Start von Durchgang %d (max = %lu)\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006371
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006372#: resize/main.c:155
6373msgid ""
6374"\n"
6375"Resizing bigalloc file systems has not been fully tested. Proceed at\n"
6376"your own risk! Use the force option if you want to go ahead anyway.\n"
6377"\n"
6378msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006379"\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006380"Die Größenveränderung von Bigalloc-Dateisystemen wurde noch nicht "
6381"vollständig\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006382"geprüft. Deswegen handeln Sie auf eigene Gefahr!. Verwenden Sie die Option\n"
6383"„force“, wenn Sie trotzdem fortfahren wollen.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006384
Theodore Ts'obd386982015-05-17 20:34:58 -04006385#: resize/main.c:273
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006386#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006387msgid "while opening %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006388msgstr "beim Öffnen von %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006389
Theodore Ts'obd386982015-05-17 20:34:58 -04006390#: resize/main.c:281
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006391#, c-format
Theodore Ts'o6956f612005-12-31 16:46:15 -05006392msgid "while getting stat information for %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006393msgstr "beim Abfragen der Statusinformation für %s"
Theodore Ts'o6956f612005-12-31 16:46:15 -05006394
Theodore Ts'obd386982015-05-17 20:34:58 -04006395#: resize/main.c:349
Theodore Ts'o057a1592010-06-07 12:24:21 -04006396#, c-format
6397msgid ""
6398"Please run 'e2fsck -f %s' first.\n"
6399"\n"
6400msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006401"Bitte lassen Sie zuerst „e2fsck -f %s“ laufen.\n"
Theodore Ts'o057a1592010-06-07 12:24:21 -04006402"\n"
6403
Theodore Ts'obd386982015-05-17 20:34:58 -04006404#: resize/main.c:368
Philipp Thomas720e6362008-06-21 14:06:00 -04006405#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006406msgid "Estimated minimum size of the filesystem: %llu\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006407msgstr "Geschätzte minimale Größe des Dateisystems: %llu\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006408
Theodore Ts'obd386982015-05-17 20:34:58 -04006409#: resize/main.c:405
Philipp Thomas77c871a2010-04-19 16:59:02 -04006410#, c-format
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006411msgid "Invalid new size: %s\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006412msgstr "Unzulässige neue Größe: %s\n"
Theodore Ts'o945ffb92009-01-26 20:43:10 -05006413
Theodore Ts'obd386982015-05-17 20:34:58 -04006414#: resize/main.c:421
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006415msgid "New size too large to be expressed in 32 bits\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006416msgstr "Die neue Größe lässt sich nicht mehr mit 32 Bits ausdrücken\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006417
Theodore Ts'obd386982015-05-17 20:34:58 -04006418#: resize/main.c:429
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006419#, c-format
6420msgid "New size smaller than minimum (%llu)\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006421msgstr "Die neue Größe ist kleiner als das Minimum (%llu)\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006422
Theodore Ts'obd386982015-05-17 20:34:58 -04006423#: resize/main.c:435
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006424msgid "Invalid stride length"
Philipp Thomasab02a742014-07-09 23:13:30 -04006425msgstr "Ungültige „Stride“-Länge"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006426
Theodore Ts'obd386982015-05-17 20:34:58 -04006427#: resize/main.c:459
Philipp Thomasa4edef12011-01-26 18:54:24 -05006428#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006429msgid ""
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006430"The containing partition (or device) is only %llu (%dk) blocks.\n"
6431"You requested a new size of %llu blocks.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006432"\n"
6433msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006434"Die sie enthaltende Partition (oder Gerät) ist nur %llu (%dk) Blöcke groß.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006435"Sie wollen %llu Blöcke haben.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006436
Theodore Ts'obd386982015-05-17 20:34:58 -04006437#: resize/main.c:466
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006438#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006439msgid ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006440"The filesystem is already %llu (%dk) blocks long. Nothing to do!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006441"\n"
6442msgstr ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006443"Das Dateisystem ist bereits %llu (%dk) Blöcke lang. Nichts zu tun!\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006444"\n"
6445
Theodore Ts'obd386982015-05-17 20:34:58 -04006446#: resize/main.c:476
Philipp Thomas77c871a2010-04-19 16:59:02 -04006447#, c-format
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006448msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04006449msgstr ""
6450"Die Größe des Dateisystems auf %s wird auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006451
Theodore Ts'obd386982015-05-17 20:34:58 -04006452#: resize/main.c:485
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006453#, c-format
6454msgid "while trying to resize %s"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006455msgstr "beim Versuch, die Größe von %s zu ändern"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006456
Theodore Ts'obd386982015-05-17 20:34:58 -04006457#: resize/main.c:488
Philipp Thomas77c871a2010-04-19 16:59:02 -04006458#, c-format
6459msgid ""
6460"Please run 'e2fsck -fy %s' to fix the filesystem\n"
6461"after the aborted resize operation.\n"
6462msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006463"Bitte lassen Sie „e2fsck -fy %s“ laufen, um das\n"
6464"Dateisystem nach der abgebrochenen Größenänderung\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006465"zu reparieren.\n"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006466
Theodore Ts'obd386982015-05-17 20:34:58 -04006467#: resize/main.c:494
Theodore Ts'o7527ef12007-12-05 19:35:20 -05006468#, c-format
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006469msgid ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006470"The filesystem on %s is now %llu (%dk) blocks long.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006471"\n"
6472msgstr ""
Philipp Thomas37be3822015-05-17 20:21:39 -04006473"Das Dateisystem auf %s is nun %llu (%dk) Blöcke lang.\n"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006474"\n"
6475
Theodore Ts'obd386982015-05-17 20:34:58 -04006476#: resize/main.c:509
Philipp Thomas77c871a2010-04-19 16:59:02 -04006477#, c-format
6478msgid "while trying to truncate %s"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006479msgstr "beim Versuch, %s abzuschneiden"
Philipp Thomas77c871a2010-04-19 16:59:02 -04006480
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006481#: resize/online.c:82
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006482msgid "kernel does not support online resize with sparse_super2"
Theodore Ts'obd386982015-05-17 20:34:58 -04006483msgstr ""
6484"Der Kernel unterstützt die Online-Größenänderung mit sparse_super2 nicht"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006485
6486#: resize/online.c:87
Philipp Thomas720e6362008-06-21 14:06:00 -04006487#, c-format
6488msgid "Filesystem at %s is mounted on %s; on-line resizing required\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006489msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006490"Dateisystem bei %s ist auf %s eingehängt; Online-Größenänderung ist\n"
6491"erforderlich\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006492
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006493#: resize/online.c:91
Philipp Thomas3e914b52011-01-24 15:03:41 -05006494msgid "On-line shrinking not supported"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006495msgstr "Online-Schrumpfen wird nicht unterstützt"
Philipp Thomas720e6362008-06-21 14:06:00 -04006496
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006497#: resize/online.c:116
Philipp Thomas720e6362008-06-21 14:06:00 -04006498msgid "Filesystem does not support online resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006499msgstr "Das Dateisystem unterstützt die Online-Größenänderung nicht"
Philipp Thomas720e6362008-06-21 14:06:00 -04006500
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006501#: resize/online.c:125
Philipp Thomasd0275172013-01-15 23:30:35 -05006502msgid "Not enough reserved gdt blocks for resizing"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006503msgstr "Nicht genug reservierte GDT-Blöcke für die Größenänderung"
Philipp Thomasd0275172013-01-15 23:30:35 -05006504
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006505#: resize/online.c:132
Philipp Thomasd0275172013-01-15 23:30:35 -05006506msgid "Kernel does not support resizing a file system this large"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006507msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04006508"Der Kernel unterstützt die Online-Größenänderungen eines so großen\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006509"Dateisystems nicht"
Philipp Thomasd0275172013-01-15 23:30:35 -05006510
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006511#: resize/online.c:140
Philipp Thomas68801282008-07-17 11:47:00 -04006512#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006513msgid "while trying to open mountpoint %s"
Philipp Thomasab02a742014-07-09 23:13:30 -04006514msgstr "beim Versuch, den Einhängepunkt %s zu öffnen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006515
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006516#: resize/online.c:145
Philipp Thomasb93349a2014-05-31 13:32:39 -04006517#, c-format
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006518msgid "Old resize interface requested.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006519msgstr "Die alte Schnittstelle für Größenänderung wurde angefordert.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006520
6521#: resize/online.c:164 resize/online.c:181
Philipp Thomas720e6362008-06-21 14:06:00 -04006522msgid "Permission denied to resize filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006523msgstr "Die Erlaubnis zum Ändern der Dateisystemgröße wurde verweigert."
Philipp Thomas720e6362008-06-21 14:06:00 -04006524
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006525#: resize/online.c:167 resize/online.c:187
Philipp Thomas720e6362008-06-21 14:06:00 -04006526msgid "While checking for on-line resizing support"
Philipp Thomasab02a742014-07-09 23:13:30 -04006527msgstr "Beim Überprüfen der Unterstützung für Online-Größenänderung"
Philipp Thomas720e6362008-06-21 14:06:00 -04006528
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006529#: resize/online.c:184
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006530msgid "Kernel does not support online resizing"
Philipp Thomasab02a742014-07-09 23:13:30 -04006531msgstr "Der Kernel bietet keine Unterstützung für eine Online-Größenänderung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006532
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006533#: resize/online.c:223
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006534#, c-format
6535msgid "Performing an on-line resize of %s to %llu (%dk) blocks.\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006536msgstr "Die Größe von %s wird gerade online auf %llu (%dk) Blöcke geändert.\n"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006537
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006538#: resize/online.c:233
Philipp Thomas720e6362008-06-21 14:06:00 -04006539msgid "While trying to extend the last group"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006540msgstr "beim Versuch, die letzte Gruppe zu erweitern"
Philipp Thomas720e6362008-06-21 14:06:00 -04006541
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006542#: resize/online.c:287
Philipp Thomas68801282008-07-17 11:47:00 -04006543#, c-format
Philipp Thomas720e6362008-06-21 14:06:00 -04006544msgid "While trying to add group #%d"
Philipp Thomasab02a742014-07-09 23:13:30 -04006545msgstr "beim Versuch, die Gruppe #%d hinzuzufügen"
Philipp Thomas720e6362008-06-21 14:06:00 -04006546
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006547#: resize/online.c:298
Philipp Thomasa700f512008-08-29 08:49:57 -04006548#, c-format
Theodore Ts'obd386982015-05-17 20:34:58 -04006549msgid ""
6550"Filesystem at %s is mounted on %s, and on-line resizing is not supported on "
6551"this system.\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006552msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006553"Das Dateisystem bei %s ist auf %s eingehängt und die Änderung der Größe im\n"
6554"laufenden System wird auf diesem System nicht unterstützt.\n"
Philipp Thomas720e6362008-06-21 14:06:00 -04006555
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006556#: resize/resize2fs.c:402
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006557#, c-format
6558msgid "inodes (%llu) must be less than %u"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006559msgstr "Die Inodes (%llu) müssen unter %u liegen"
Theodore Ts'o851bcf32007-07-08 12:09:40 -04006560
Philipp Thomas37be3822015-05-17 20:21:39 -04006561#: resize/resize2fs.c:691
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006562msgid "reserved blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006563msgstr "reservierte Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006564
Philipp Thomas37be3822015-05-17 20:21:39 -04006565#: resize/resize2fs.c:936
Theodore Ts'obc759702005-05-09 20:40:55 -04006566msgid "meta-data blocks"
Philipp Thomasba71e3e2008-03-13 18:21:09 -04006567msgstr "Metadaten-Blöcke"
Theodore Ts'oa2328c92002-10-30 23:26:03 -05006568
Philipp Thomas37be3822015-05-17 20:21:39 -04006569#: resize/resize2fs.c:1039 resize/resize2fs.c:1836
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006570msgid "new meta blocks"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006571msgstr "neue Metadaten-Blöcke"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006572
Theodore Ts'obd386982015-05-17 20:34:58 -04006573#: resize/resize2fs.c:2056
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006574msgid "Should never happen! No sb in last super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006575msgstr "Dies sollte nie geschehen! Kein sb im letzten super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006576
Theodore Ts'obd386982015-05-17 20:34:58 -04006577#: resize/resize2fs.c:2061
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006578msgid "Should never happen! Unexpected old_desc in super_sparse bg?\n"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006579msgstr "Dies sollte nie geschehen! Unerwartete old_desc in super_sparse bg?\n"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006580
Theodore Ts'obd386982015-05-17 20:34:58 -04006581#: resize/resize2fs.c:2139
Theodore Ts'obc759702005-05-09 20:40:55 -04006582msgid "Should never happen: resize inode corrupt!\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006583msgstr "Dies sollte nie geschehen: Der Größenänderungs-Inode ist defekt!\n"
Philipp Thomas3e914b52011-01-24 15:03:41 -05006584
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006585#: lib/ext2fs/ext2_err.c:11
Philipp Thomas37be3822015-05-17 20:21:39 -04006586msgid "EXT2FS Library version 1.42.12"
6587msgstr "EXT2FS-Bibliothek, Version 1.42.12"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006588
6589#: lib/ext2fs/ext2_err.c:12
6590msgid "Wrong magic number for ext2_filsys structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006591msgstr "Falsche magische Zahl für eine ext2_filesys-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006592
6593#: lib/ext2fs/ext2_err.c:13
6594msgid "Wrong magic number for badblocks_list structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006595msgstr "Falsche magische Zahl für eine badblocks_list-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006596
6597#: lib/ext2fs/ext2_err.c:14
6598msgid "Wrong magic number for badblocks_iterate structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006599msgstr "Falsche magische Zahl für eine badblocks_iterate-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006600
6601#: lib/ext2fs/ext2_err.c:15
6602msgid "Wrong magic number for inode_scan structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006603msgstr "Falsche magische Zahl für eine inode_scan-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006604
6605#: lib/ext2fs/ext2_err.c:16
6606msgid "Wrong magic number for io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006607msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006608
6609#: lib/ext2fs/ext2_err.c:17
6610msgid "Wrong magic number for unix io_channel structure"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006611msgstr "Falsche magische Zahl für eine Unix io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006612
6613#: lib/ext2fs/ext2_err.c:18
6614msgid "Wrong magic number for io_manager structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006615msgstr "Falsche magische Zahl für eine io_manager-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006616
6617#: lib/ext2fs/ext2_err.c:19
6618msgid "Wrong magic number for block_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006619msgstr "Falsche magische Zahl für eine block_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006620
6621#: lib/ext2fs/ext2_err.c:20
6622msgid "Wrong magic number for inode_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006623msgstr "Falsche magische Zahl für eine inode_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006624
6625#: lib/ext2fs/ext2_err.c:21
6626msgid "Wrong magic number for generic_bitmap structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006627msgstr "Falsche magische Zahl für eine generic_bitmap-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006628
6629#: lib/ext2fs/ext2_err.c:22
6630msgid "Wrong magic number for test io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006631msgstr "Falsche magische Zahl für eine test-io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006632
6633#: lib/ext2fs/ext2_err.c:23
6634msgid "Wrong magic number for directory block list structure"
Theodore Ts'obd386982015-05-17 20:34:58 -04006635msgstr ""
6636"Falsche magische Zahl für eine Struktur für die Liste der Verzeichnisblöcke"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006637
6638#: lib/ext2fs/ext2_err.c:24
6639msgid "Wrong magic number for icount structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006640msgstr "Falsche magische Zahl für eine icount-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006641
6642#: lib/ext2fs/ext2_err.c:25
6643msgid "Wrong magic number for Powerquest io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006644msgstr "Falsche magische Zahl für eine io_channel-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006645
6646#: lib/ext2fs/ext2_err.c:26
6647msgid "Wrong magic number for ext2 file structure"
Philipp Thomasab02a742014-07-09 23:13:30 -04006648msgstr "Falsche magische Zahl für eine Ext2-Datei-Struktur"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006649
6650#: lib/ext2fs/ext2_err.c:27
6651msgid "Wrong magic number for Ext2 Image Header"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006652msgstr "Falsche magische Zahl für einen Ext2-Abbild-Kopf"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006653
6654#: lib/ext2fs/ext2_err.c:28
6655msgid "Wrong magic number for inode io_channel structure"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006656msgstr "Falsche magische Zahl für eine Struktur des Inode-io_channels"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006657
6658#: lib/ext2fs/ext2_err.c:29
6659msgid "Wrong magic number for ext4 extent handle"
Philipp Thomasab02a742014-07-09 23:13:30 -04006660msgstr "Falsche magische Zahl für eine Ext4-Erweiterungshandle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006661
6662#: lib/ext2fs/ext2_err.c:30
6663msgid "Bad magic number in super-block"
6664msgstr "Ungültige magische Zahl im Superblock"
6665
6666#: lib/ext2fs/ext2_err.c:31
6667msgid "Filesystem revision too high"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006668msgstr "Die Dateisystemversion ist zu hoch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006669
6670#: lib/ext2fs/ext2_err.c:32
6671msgid "Attempt to write to filesystem opened read-only"
Theodore Ts'obd386982015-05-17 20:34:58 -04006672msgstr ""
6673"Dies ist ein Versuch, auf ein nur-lesbar geöffnetes Dateisystem zu schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006674
6675#: lib/ext2fs/ext2_err.c:33
6676msgid "Can't read group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006677msgstr "Die Gruppendeskriptoren konnten nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006678
6679#: lib/ext2fs/ext2_err.c:34
6680msgid "Can't write group descriptors"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006681msgstr "Die Gruppendeskriptoren konnten nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006682
6683#: lib/ext2fs/ext2_err.c:35
6684msgid "Corrupt group descriptor: bad block for block bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006685msgstr "Defekter Gruppendeskriptor: defekter Block für die Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006686
6687#: lib/ext2fs/ext2_err.c:36
6688msgid "Corrupt group descriptor: bad block for inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006689msgstr "Defekter Gruppendeskriptor: defekter Block für die Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006690
6691#: lib/ext2fs/ext2_err.c:37
6692msgid "Corrupt group descriptor: bad block for inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006693msgstr "Defekter Gruppendeskriptor: defekter Block für die Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006694
6695#: lib/ext2fs/ext2_err.c:38
6696msgid "Can't write an inode bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006697msgstr "Eine Inode-Bitmap konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006698
6699#: lib/ext2fs/ext2_err.c:39
6700msgid "Can't read an inode bitmap"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006701msgstr "Eine Inode-Bitmap konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006702
6703#: lib/ext2fs/ext2_err.c:40
Darrick J. Wong580d8a02013-10-07 09:20:28 -04006704msgid "Can't write a block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006705msgstr "Eine Block-Bitmap konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006706
6707#: lib/ext2fs/ext2_err.c:41
Darrick J. Wongba0230f2013-12-12 12:41:58 -05006708msgid "Can't read a block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04006709msgstr "Eine Block-Bitmap konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006710
6711#: lib/ext2fs/ext2_err.c:42
6712msgid "Can't write an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006713msgstr "Eine Inode-Tabelle konnte nicht geschrieben werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006714
6715#: lib/ext2fs/ext2_err.c:43
6716msgid "Can't read an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006717msgstr "Eine Inode-Tabelle konnte nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006718
6719#: lib/ext2fs/ext2_err.c:44
6720msgid "Can't read next inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04006721msgstr "Der nächste Inode kann nicht gelesen werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006722
6723#: lib/ext2fs/ext2_err.c:45
6724msgid "Filesystem has unexpected block size"
6725msgstr "Das Dateisystem hat eine unerwartete Blockgröße"
6726
6727#: lib/ext2fs/ext2_err.c:46
6728msgid "EXT2 directory corrupted"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006729msgstr "Das Ext2-Verzeichnis ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006730
6731#: lib/ext2fs/ext2_err.c:47
6732msgid "Attempt to read block from filesystem resulted in short read"
Theodore Ts'obd386982015-05-17 20:34:58 -04006733msgstr ""
6734"Der Versuch, einen Block vom Dateisystem zu lesen, endete in kurzem Lesen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006735
6736#: lib/ext2fs/ext2_err.c:48
6737msgid "Attempt to write block to filesystem resulted in short write"
Theodore Ts'obd386982015-05-17 20:34:58 -04006738msgstr ""
6739"Der Versuch, einen Block auf das Dateisystem zu schreiben, endete in kurzem "
6740"Schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006741
6742#: lib/ext2fs/ext2_err.c:49
6743msgid "No free space in the directory"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006744msgstr "Kein freier Platz im Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006745
6746#: lib/ext2fs/ext2_err.c:50
6747msgid "Inode bitmap not loaded"
Philipp Thomasab02a742014-07-09 23:13:30 -04006748msgstr "die Inode-Bitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006749
6750#: lib/ext2fs/ext2_err.c:51
6751msgid "Block bitmap not loaded"
Philipp Thomasab02a742014-07-09 23:13:30 -04006752msgstr "die Block-Bitmap wurde nicht geladen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006753
6754#: lib/ext2fs/ext2_err.c:52
6755msgid "Illegal inode number"
Philipp Thomasab02a742014-07-09 23:13:30 -04006756msgstr "Ungültige Inode-Nummer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006757
6758#: lib/ext2fs/ext2_err.c:53
6759msgid "Illegal block number"
Philipp Thomasab02a742014-07-09 23:13:30 -04006760msgstr "Ungültige Blockzahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006761
6762#: lib/ext2fs/ext2_err.c:54
6763msgid "Internal error in ext2fs_expand_dir"
6764msgstr "Interner Fehler in ext2fs_expand_dir"
6765
6766#: lib/ext2fs/ext2_err.c:55
6767msgid "Not enough space to build proposed filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006768msgstr "Nicht genug Platz, um das vorgeschlagene Dateisystem zu bauen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006769
6770#: lib/ext2fs/ext2_err.c:56
6771msgid "Illegal block number passed to ext2fs_mark_block_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006772msgstr ""
6773"Es wurde eine ungültige Blocknummer an ext2fs_mark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006774
6775#: lib/ext2fs/ext2_err.c:57
6776msgid "Illegal block number passed to ext2fs_unmark_block_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006777msgstr ""
6778"Es wurde eine ungültige Blocknummer an ext2fs_unmark_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006779
6780#: lib/ext2fs/ext2_err.c:58
6781msgid "Illegal block number passed to ext2fs_test_block_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006782msgstr ""
6783"Es wurde eine ungültige Blocknummer an ext2fs_test_block_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006784
6785#: lib/ext2fs/ext2_err.c:59
6786msgid "Illegal inode number passed to ext2fs_mark_inode_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006787msgstr ""
6788"Es wurde eine ungültige Inode-Nummer an ext2fs_mark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006789
6790#: lib/ext2fs/ext2_err.c:60
6791msgid "Illegal inode number passed to ext2fs_unmark_inode_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006792msgstr ""
6793"Es wurde eine ungültige Inode-Nummer an ext2fs_unmark_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006794
6795#: lib/ext2fs/ext2_err.c:61
6796msgid "Illegal inode number passed to ext2fs_test_inode_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006797msgstr ""
6798"Es wurde eine ungültige Inode-Nummer an ext2fs_test_inode_bitmap übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006799
6800#: lib/ext2fs/ext2_err.c:62
6801msgid "Attempt to fudge end of block bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006802msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006803"Es wird versucht, das Ende der Block-Bitmap jenseits des wirklichen Endes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006804"zu platzieren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006805
6806#: lib/ext2fs/ext2_err.c:63
6807msgid "Attempt to fudge end of inode bitmap past the real end"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04006808msgstr ""
Philipp Thomasb93349a2014-05-31 13:32:39 -04006809"Es wird versucht, das Ende der Inode-Bitmap jenseits des wirklichen Endes\n"
Philipp Thomasab02a742014-07-09 23:13:30 -04006810"zu platzieren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006811
6812#: lib/ext2fs/ext2_err.c:64
6813msgid "Illegal indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006814msgstr "Es wurde ein ungültiger indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006815
6816#: lib/ext2fs/ext2_err.c:65
6817msgid "Illegal doubly indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006818msgstr "Es wurde ein ungültiger doppelt indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006819
6820#: lib/ext2fs/ext2_err.c:66
6821msgid "Illegal triply indirect block found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006822msgstr "Es wurde ein ungültiger dreifach indirekter Block gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006823
6824#: lib/ext2fs/ext2_err.c:67
6825msgid "Block bitmaps are not the same"
Philipp Thomasab02a742014-07-09 23:13:30 -04006826msgstr "Die Block-Bitmaps sind nicht identisch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006827
6828#: lib/ext2fs/ext2_err.c:68
6829msgid "Inode bitmaps are not the same"
Philipp Thomasab02a742014-07-09 23:13:30 -04006830msgstr "Die Inode-Bitmaps sind nicht identisch"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006831
6832#: lib/ext2fs/ext2_err.c:69
6833msgid "Illegal or malformed device name"
Philipp Thomasab02a742014-07-09 23:13:30 -04006834msgstr "Ungültiger oder fehlerhafter Gerätename"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006835
6836#: lib/ext2fs/ext2_err.c:70
6837msgid "A block group is missing an inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006838msgstr "Einer Blockgruppe fehlt eine Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006839
6840#: lib/ext2fs/ext2_err.c:71
6841msgid "The ext2 superblock is corrupt"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006842msgstr "Der Ext2-Superblock ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006843
6844#: lib/ext2fs/ext2_err.c:72
6845msgid "Illegal generic bit number passed to ext2fs_mark_generic_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006846msgstr ""
6847"Eine unzulässige generische Bitnummer wurde an ext2fs_mark_generic_bitmap "
6848"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006849
6850#: lib/ext2fs/ext2_err.c:73
6851msgid "Illegal generic bit number passed to ext2fs_unmark_generic_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006852msgstr ""
6853"Eine unzulässige generische Bitnummer wurde an ext2fs_unmark_generic_bitmap "
6854"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006855
6856#: lib/ext2fs/ext2_err.c:74
6857msgid "Illegal generic bit number passed to ext2fs_test_generic_bitmap"
Theodore Ts'obd386982015-05-17 20:34:58 -04006858msgstr ""
6859"Eine unzulässige generische Bitnummer wurde an ext2fs_test_generic_bitmap "
6860"übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006861
6862#: lib/ext2fs/ext2_err.c:75
6863msgid "Too many symbolic links encountered."
Philipp Thomasab02a742014-07-09 23:13:30 -04006864msgstr "Es wurden zu viele symbolische Verknüpfungen gefunden."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006865
6866#: lib/ext2fs/ext2_err.c:76
6867msgid "The callback function will not handle this case"
Philipp Thomasab02a742014-07-09 23:13:30 -04006868msgstr "Die Callback-Funktion kann diesen Fall nicht handhaben."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006869
6870#: lib/ext2fs/ext2_err.c:77
6871msgid "The inode is from a bad block in the inode table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006872msgstr "Der Inode kommt von einem beschädigten Block in der Inode-Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006873
6874#: lib/ext2fs/ext2_err.c:78
6875msgid "Filesystem has unsupported feature(s)"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006876msgstr "Das Dateisystem besitzt nicht unterstützte Eigenschaft(en)"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006877
6878#: lib/ext2fs/ext2_err.c:79
6879msgid "Filesystem has unsupported read-only feature(s)"
Philipp Thomasab02a742014-07-09 23:13:30 -04006880msgstr "Das Dateisystem besitzt nicht unterstützte Nur-Lesen-Eigenschaft(en):"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006881
6882#: lib/ext2fs/ext2_err.c:80
6883msgid "IO Channel failed to seek on read or write"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006884msgstr "Der EA-Kanal hat nicht positioniert beim Lesen oder Schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006885
6886#: lib/ext2fs/ext2_err.c:81
6887msgid "Memory allocation failed"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006888msgstr "Die Reservierung von Speicher schlug fehl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006889
6890#: lib/ext2fs/ext2_err.c:82
6891msgid "Invalid argument passed to ext2 library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006892msgstr "Ein ungültiges Argument wurde an die Ext2-Bibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006893
6894#: lib/ext2fs/ext2_err.c:83
6895msgid "Could not allocate block in ext2 filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006896msgstr "Im Ext2-Dateisystem konnte kein Block angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006897
6898#: lib/ext2fs/ext2_err.c:84
6899msgid "Could not allocate inode in ext2 filesystem"
Philipp Thomasab02a742014-07-09 23:13:30 -04006900msgstr "Im Ext2-Dateisystem konnte kein Inode angefordert werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006901
6902#: lib/ext2fs/ext2_err.c:85
6903msgid "Ext2 inode is not a directory"
Philipp Thomasab02a742014-07-09 23:13:30 -04006904msgstr "Der Ext2-Inode weist nicht auf ein Verzeichnis"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006905
6906#: lib/ext2fs/ext2_err.c:86
6907msgid "Too many references in table"
Philipp Thomasab02a742014-07-09 23:13:30 -04006908msgstr "Zu viele Referenzen in der Tabelle"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006909
6910#: lib/ext2fs/ext2_err.c:87
6911msgid "File not found by ext2_lookup"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006912msgstr "Die Datei wurde von ext2_lookup nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006913
6914#: lib/ext2fs/ext2_err.c:88
6915msgid "File open read-only"
Philipp Thomasab02a742014-07-09 23:13:30 -04006916msgstr "Die Datei wurde nur-lesbar geöffnet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006917
6918#: lib/ext2fs/ext2_err.c:89
6919msgid "Ext2 directory block not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006920msgstr "Der Verzeichnisblock des ext2-Dateisystems wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006921
6922#: lib/ext2fs/ext2_err.c:90
6923msgid "Ext2 directory already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006924msgstr "Das Ext2-Verzeichnis existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006925
6926#: lib/ext2fs/ext2_err.c:91
6927msgid "Unimplemented ext2 library function"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006928msgstr "Nicht implementierte Ext2-Bibliotheksfunktion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006929
6930#: lib/ext2fs/ext2_err.c:92
6931msgid "User cancel requested"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006932msgstr "Der Benutzer hat abgebrochen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006933
6934#: lib/ext2fs/ext2_err.c:93
6935msgid "Ext2 file too big"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006936msgstr "Die Ext2-Datei ist zu groß"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006937
6938#: lib/ext2fs/ext2_err.c:94
6939msgid "Supplied journal device not a block device"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006940msgstr "Das angegebene Journalgerät ist kein blockorientiertes Gerät"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006941
6942#: lib/ext2fs/ext2_err.c:95
6943msgid "Journal superblock not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006944msgstr "Der Journal-Superblock wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006945
6946#: lib/ext2fs/ext2_err.c:96
6947msgid "Journal must be at least 1024 blocks"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006948msgstr "Das Journal muß mindestens 1024 Blöcke groß sein"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006949
6950#: lib/ext2fs/ext2_err.c:97
6951msgid "Unsupported journal version"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006952msgstr "Nicht unterstützte Journalversion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006953
6954#: lib/ext2fs/ext2_err.c:98
6955msgid "Error loading external journal"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006956msgstr "Fehler beim Laden des externen Journals"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006957
6958#: lib/ext2fs/ext2_err.c:99
6959msgid "Journal not found"
Philipp Thomasab02a742014-07-09 23:13:30 -04006960msgstr "Das Journal wurde nicht gefunden."
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006961
6962#: lib/ext2fs/ext2_err.c:100
6963msgid "Directory hash unsupported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006964msgstr "Verzeichnishashes werden nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006965
6966#: lib/ext2fs/ext2_err.c:101
6967msgid "Illegal extended attribute block number"
Philipp Thomasb93349a2014-05-31 13:32:39 -04006968msgstr "Die Nummer des Blocks für erweiterte Attribute ist unzulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006969
6970#: lib/ext2fs/ext2_err.c:102
6971msgid "Cannot create filesystem with requested number of inodes"
Theodore Ts'obd386982015-05-17 20:34:58 -04006972msgstr ""
6973"Ein Dateisystem mit der gewünschten Anzahl Inodes kann nicht erzeugt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006974
6975#: lib/ext2fs/ext2_err.c:103
6976msgid "E2image snapshot not in use"
Philipp Thomasab02a742014-07-09 23:13:30 -04006977msgstr "Der E2image-Schnappschuss wird nicht verwendet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006978
6979#: lib/ext2fs/ext2_err.c:104
6980msgid "Too many reserved group descriptor blocks"
Philipp Thomasab02a742014-07-09 23:13:30 -04006981msgstr "Zu viele reservierte Blöcke für Gruppen-Deskriptoren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006982
6983#: lib/ext2fs/ext2_err.c:105
6984msgid "Resize inode is corrupt"
Philipp Thomasab02a742014-07-09 23:13:30 -04006985msgstr "Der Größenänderungs-Inode ist defekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006986
6987#: lib/ext2fs/ext2_err.c:106
6988msgid "Tried to set block bmap with missing indirect block"
Theodore Ts'obd386982015-05-17 20:34:58 -04006989msgstr ""
6990"Es wurde versucht, eine Block-Bitmap mit fehlendem indirektem Block zu "
6991"schreiben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006992
6993#: lib/ext2fs/ext2_err.c:107
6994msgid "TDB: Success"
Philipp Thomas9bf41072014-07-05 23:18:04 -04006995msgstr "TDB: Erfolg"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04006996
6997#: lib/ext2fs/ext2_err.c:108
6998msgid "TDB: Corrupt database"
Philipp Thomasab02a742014-07-09 23:13:30 -04006999msgstr "TDB: Datenbank ist beschädigt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007000
7001#: lib/ext2fs/ext2_err.c:109
7002msgid "TDB: IO Error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007003msgstr "TDB: EA-Fehler"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007004
7005#: lib/ext2fs/ext2_err.c:110
7006msgid "TDB: Locking error"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007007msgstr "TDB: Fehler beim Sperren"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007008
7009#: lib/ext2fs/ext2_err.c:111
7010msgid "TDB: Out of memory"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007011msgstr "TDB: Hauptspeicher erschöpft"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007012
7013#: lib/ext2fs/ext2_err.c:112
7014msgid "TDB: Record exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007015msgstr "TDB: Datensatz existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007016
7017#: lib/ext2fs/ext2_err.c:113
7018msgid "TDB: Lock exists on other keys"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007019msgstr "TDB: Die Sperre existiert schon auf anderen Schlüsseln"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007020
7021#: lib/ext2fs/ext2_err.c:114
7022msgid "TDB: Invalid parameter"
7023msgstr "TDB: Ungültiger Parameter"
7024
7025#: lib/ext2fs/ext2_err.c:115
7026msgid "TDB: Record does not exist"
Philipp Thomasab02a742014-07-09 23:13:30 -04007027msgstr "TDB: Der Datensatz existiert nicht"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007028
7029#: lib/ext2fs/ext2_err.c:116
7030msgid "TDB: Write not permitted"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007031msgstr "TDB: Schreiben ist nicht zulässig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007032
7033#: lib/ext2fs/ext2_err.c:117
7034msgid "Ext2fs directory block list is empty"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007035msgstr "Die Liste der Ext2fs-Verzeichnisblöcke ist leer"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007036
7037#: lib/ext2fs/ext2_err.c:118
7038msgid "Attempt to modify a block mapping via a read-only block iterator"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007039msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04007040"Es wird versucht, eine Blockzuweisung über einen nur-lesbaren Blockiterator "
7041"zu\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007042"ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007043
7044#: lib/ext2fs/ext2_err.c:119
7045msgid "Wrong magic number for ext4 extent saved path"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007046msgstr "Falsche magische Zahl für einen gespeicherten Pfad zu ext4-Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007047
7048#: lib/ext2fs/ext2_err.c:120
7049msgid "Wrong magic number for 64-bit generic bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007050msgstr "Falsche magische Zahl für eine generische 64-Bit-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007051
7052#: lib/ext2fs/ext2_err.c:121
7053msgid "Wrong magic number for 64-bit block bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007054msgstr "Falsche magische Zahl für eine 64-Bit-Block-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007055
7056#: lib/ext2fs/ext2_err.c:122
7057msgid "Wrong magic number for 64-bit inode bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007058msgstr "Falsche magische Zahl für eine 64-Bit-Inode-Bitmap"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007059
7060#: lib/ext2fs/ext2_err.c:123
7061msgid "Wrong magic number --- RESERVED_13"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007062msgstr "Falsche magische Zahl --- RESERVED_13"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007063
7064#: lib/ext2fs/ext2_err.c:124
7065msgid "Wrong magic number --- RESERVED_14"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007066msgstr "Falsche magische Zahl --- RESERVED_14"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007067
7068#: lib/ext2fs/ext2_err.c:125
7069msgid "Wrong magic number --- RESERVED_15"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007070msgstr "Falsche magische Zahl --- RESERVED_15"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007071
7072#: lib/ext2fs/ext2_err.c:126
7073msgid "Wrong magic number --- RESERVED_16"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007074msgstr "Falsche magische Zahl --- RESERVED_16"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007075
7076#: lib/ext2fs/ext2_err.c:127
7077msgid "Wrong magic number --- RESERVED_17"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007078msgstr "Falsche magische Zahl --- RESERVED_17"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007079
7080#: lib/ext2fs/ext2_err.c:128
7081msgid "Wrong magic number --- RESERVED_18"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007082msgstr "Falsche magische Zahl --- RESERVED_18"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007083
7084#: lib/ext2fs/ext2_err.c:129
7085msgid "Wrong magic number --- RESERVED_19"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007086msgstr "Falsche magische Zahl --- RESERVED_19"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007087
7088#: lib/ext2fs/ext2_err.c:130
7089msgid "Corrupt extent header"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007090msgstr "Defekter Kopf einer Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007091
7092#: lib/ext2fs/ext2_err.c:131
7093msgid "Corrupt extent index"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007094msgstr "Beschädigter Erweiterungsindex"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007095
7096#: lib/ext2fs/ext2_err.c:132
7097msgid "Corrupt extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007098msgstr "Beschädigte Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007099
7100#: lib/ext2fs/ext2_err.c:133
7101msgid "No free space in extent map"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007102msgstr "Es ist kein freier Platz in der Karte der Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007103
7104#: lib/ext2fs/ext2_err.c:134
7105msgid "Inode does not use extents"
Philipp Thomasab02a742014-07-09 23:13:30 -04007106msgstr "Der Inode verwendet keine Erweiterungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007107
7108#: lib/ext2fs/ext2_err.c:135
7109msgid "No 'next' extent"
7110msgstr "Keine „nächste“ Erweiterung"
7111
7112#: lib/ext2fs/ext2_err.c:136
7113msgid "No 'previous' extent"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007114msgstr "Keine „vorherige“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007115
7116#: lib/ext2fs/ext2_err.c:137
7117msgid "No 'up' extent"
Philipp Thomasab02a742014-07-09 23:13:30 -04007118msgstr "Keine „obere“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007119
7120#: lib/ext2fs/ext2_err.c:138
7121msgid "No 'down' extent"
Philipp Thomasab02a742014-07-09 23:13:30 -04007122msgstr "Keine „untere“ Erweiterung"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007123
7124#: lib/ext2fs/ext2_err.c:139
7125msgid "No current node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007126msgstr "Kein aktueller Knoten"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007127
7128#: lib/ext2fs/ext2_err.c:140
7129msgid "Ext2fs operation not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007130msgstr "Diese Ext2fs-Operation wird nicht unterstẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007131
7132#: lib/ext2fs/ext2_err.c:141
7133msgid "No room to insert extent in node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007134msgstr "Es gibt keinen Platz, um die Erweiterung in den Knoten einzufügen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007135
7136#: lib/ext2fs/ext2_err.c:142
7137msgid "Splitting would result in empty node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007138msgstr "Die Aufteilung würde zu einem leeren Knoten führen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007139
7140#: lib/ext2fs/ext2_err.c:143
7141msgid "Extent not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007142msgstr "Die Erweiterung wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007143
7144#: lib/ext2fs/ext2_err.c:144
7145msgid "Operation not supported for inodes containing extents"
Philipp Thomasab02a742014-07-09 23:13:30 -04007146msgstr "Die Operation wird für Inodes mit Erweiterungen nicht unterstüẗzt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007147
7148#: lib/ext2fs/ext2_err.c:145
7149msgid "Extent length is invalid"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007150msgstr "Die Länge der Erweiterung in ungültig"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007151
7152#: lib/ext2fs/ext2_err.c:146
7153msgid "I/O Channel does not support 64-bit block numbers"
Philipp Thomasab02a742014-07-09 23:13:30 -04007154msgstr "Der EA-Kanal unterstützt keine 64-Bit-Blocknummern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007155
7156#: lib/ext2fs/ext2_err.c:147
7157msgid "Can't check if filesystem is mounted due to missing mtab file"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007158msgstr ""
Theodore Ts'obd386982015-05-17 20:34:58 -04007159"Wegen des Fehlens von /etc/mtab kann nicht geprüft werden, ob das "
7160"Dateisystem\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007161"eingehängt ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007162
7163#: lib/ext2fs/ext2_err.c:148
7164msgid "Filesystem too large to use legacy bitmaps"
Philipp Thomasab02a742014-07-09 23:13:30 -04007165msgstr "Das Dateisystem ist zu groß, um die veralteten Bitmaps zu verwenden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007166
7167#: lib/ext2fs/ext2_err.c:149
7168msgid "MMP: invalid magic number"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007169msgstr "MMP: fehlende magische Zahl"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007170
7171#: lib/ext2fs/ext2_err.c:150
7172msgid "MMP: device currently active"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007173msgstr "MMP: das Gerät ist derzeit aktiv"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007174
7175#: lib/ext2fs/ext2_err.c:151
7176msgid "MMP: fsck being run"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007177msgstr "MMP: fsck läuft derzeit"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007178
7179#: lib/ext2fs/ext2_err.c:152
7180msgid "MMP: block number beyond filesystem range"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007181msgstr "MMP: die Blocknummer ist jenseits der Dateisystemgrenzen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007182
7183#: lib/ext2fs/ext2_err.c:153
7184msgid "MMP: undergoing an unknown operation"
Philipp Thomasab02a742014-07-09 23:13:30 -04007185msgstr "MMP: eine unbekannte Operation wird durchgeführt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007186
7187#: lib/ext2fs/ext2_err.c:154
7188msgid "MMP: filesystem still in use"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007189msgstr "MMP: das Dateisystem wird immer noch verwendet"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007190
7191#: lib/ext2fs/ext2_err.c:155
7192msgid "MMP: open with O_DIRECT failed"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007193msgstr "MMP: öffnen mit O_DIRECT ist gescheitert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007194
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007195#: lib/ext2fs/ext2_err.c:156
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007196msgid "Block group descriptor size incorrect"
Philipp Thomasab02a742014-07-09 23:13:30 -04007197msgstr "Die Größe des „Blockgruppen-Deskriptors“ ist unzulässig"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007198
7199#: lib/ext2fs/ext2_err.c:157
7200msgid "Inode checksum does not match inode"
Philipp Thomasab02a742014-07-09 23:13:30 -04007201msgstr "Die Prüfsumme des Inodes passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007202
7203#: lib/ext2fs/ext2_err.c:158
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007204msgid "Inode bitmap checksum does not match bitmap"
Philipp Thomasab02a742014-07-09 23:13:30 -04007205msgstr "Die Prüfsumme der Inode-Bitmap passt nicht zur Bitmap"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007206
7207#: lib/ext2fs/ext2_err.c:159
7208msgid "Extent block checksum does not match extent block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007209msgstr "Die Prüfsumme des Erweiterungsblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007210
7211#: lib/ext2fs/ext2_err.c:160
7212msgid "Directory block does not have space for checksum"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007213msgstr "Der Verzeichnisblock hat keinen Platz für eine Prüfsumme"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007214
7215#: lib/ext2fs/ext2_err.c:161
7216msgid "Directory block checksum does not match directory block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007217msgstr "Die Prüfsumme des Verzeichnisblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007218
7219#: lib/ext2fs/ext2_err.c:162
7220msgid "Extended attribute block checksum does not match block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007221msgstr "Die Prüfsumme des Blocks für erweiterte Attribute passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007222
7223#: lib/ext2fs/ext2_err.c:163
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007224msgid "Superblock checksum does not match superblock"
Philipp Thomasab02a742014-07-09 23:13:30 -04007225msgstr "Die Prüfsumme des Superblocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007226
7227#: lib/ext2fs/ext2_err.c:164
7228msgid "Unknown checksum algorithm"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007229msgstr "Unbekannter Prüfsummenalgorithmus"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007230
7231#: lib/ext2fs/ext2_err.c:165
7232msgid "MMP block checksum does not match MMP block"
Philipp Thomasab02a742014-07-09 23:13:30 -04007233msgstr "Die Prüfsumme des MMP-Blocks passt nicht dazu"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007234
7235#: lib/ext2fs/ext2_err.c:166
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007236msgid "Ext2 file already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007237msgstr "Die Ext2-Datei existiert bereits"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007238
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007239#: e2fsck/prof_err.c:11
7240msgid "Profile version 0.0"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007241msgstr "Profilversion 0.0"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007242
7243#: e2fsck/prof_err.c:12
7244msgid "Bad magic value in profile_node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007245msgstr "Ungültige magische Zahl im profile_node"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007246
7247#: e2fsck/prof_err.c:13
7248msgid "Profile section not found"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007249msgstr "die Profilsektion wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007250
7251#: e2fsck/prof_err.c:14
7252msgid "Profile relation not found"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007253msgstr "Zusammenhang des Profils wurde nicht gefunden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007254
7255#: e2fsck/prof_err.c:15
7256msgid "Attempt to add a relation to node which is not a section"
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007257msgstr ""
Philipp Thomasab02a742014-07-09 23:13:30 -04007258"Dies ist ein Versuch, einen Bezug zu einem Knoten hinzuzufügen, der keine\n"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007259"Sektion ist"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007260
7261#: e2fsck/prof_err.c:16
7262msgid "A profile section header has a non-zero value"
Philipp Thomasab02a742014-07-09 23:13:30 -04007263msgstr "Der Header der Profilsektion hat einen von Null verschiedenen Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007264
7265#: e2fsck/prof_err.c:17
7266msgid "Bad linked list in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007267msgstr "Ungültige verkettete Liste in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007268
7269#: e2fsck/prof_err.c:18
7270msgid "Bad group level in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007271msgstr "Ungültige Gruppenebene in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007272
7273#: e2fsck/prof_err.c:19
7274msgid "Bad parent pointer in profile structures"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007275msgstr "Ungültiger Zeiger auf die Eltern in den Profilstrukturen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007276
7277#: e2fsck/prof_err.c:20
7278msgid "Bad magic value in profile iterator"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007279msgstr "Ungültige magische Zahl im Profiliterator"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007280
7281#: e2fsck/prof_err.c:21
7282msgid "Can't set value on section node"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007283msgstr "In dem Sektionsknoten kann der Wert nicht gesetzt werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007284
7285#: e2fsck/prof_err.c:22
7286msgid "Invalid argument passed to profile library"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007287msgstr "Es wurde ein unzulässiges Argument an die Profilbibliothek übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007288
7289#: e2fsck/prof_err.c:23
7290msgid "Attempt to modify read-only profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007291msgstr "Es wird versucht, ein nur lesbares Profil zu ändern"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007292
7293#: e2fsck/prof_err.c:24
7294msgid "Profile section header not at top level"
Philipp Thomasab02a742014-07-09 23:13:30 -04007295msgstr "Der Header der Profilsektion ist nicht auf der obersten Ebene"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007296
7297#: e2fsck/prof_err.c:25
7298msgid "Syntax error in profile section header"
Philipp Thomasab02a742014-07-09 23:13:30 -04007299msgstr "Syntaxfehler im Header der Profilsektion"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007300
7301#: e2fsck/prof_err.c:26
7302msgid "Syntax error in profile relation"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007303msgstr "Syntaxfehler in den Profilbeziehungen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007304
7305#: e2fsck/prof_err.c:27
7306msgid "Extra closing brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007307msgstr "Überzählige schließende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007308
7309#: e2fsck/prof_err.c:28
7310msgid "Missing open brace in profile"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007311msgstr "Fehlende öffnende Klammer im Profil"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007312
7313#: e2fsck/prof_err.c:29
7314msgid "Bad magic value in profile_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007315msgstr "Ungültige magische Zahl im profile_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007316
7317#: e2fsck/prof_err.c:30
7318msgid "Bad magic value in profile_section_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007319msgstr "Unbekannte magische Zahl im section_t des Profils"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007320
7321#: e2fsck/prof_err.c:31
7322msgid "Iteration through all top level section not supported"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007323msgstr "Iteration durch alle Toplevel-Sektionen wird nicht unterstützt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007324
7325#: e2fsck/prof_err.c:32
7326msgid "Invalid profile_section object"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007327msgstr "Ungültiges profile_section-Objekt"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007328
7329#: e2fsck/prof_err.c:33
7330msgid "No more sections"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007331msgstr "Keine weiteren Sektionen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007332
7333#: e2fsck/prof_err.c:34
7334msgid "Bad nameset passed to query routine"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007335msgstr "Ungültige Namen an die Abfrageroutine übergeben"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007336
7337#: e2fsck/prof_err.c:35
7338msgid "No profile file open"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007339msgstr "Es ist keine Profildatei offen"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007340
7341#: e2fsck/prof_err.c:36
7342msgid "Bad magic value in profile_file_t"
Philipp Thomasab02a742014-07-09 23:13:30 -04007343msgstr "Ungültige magische Zahl im profile_file_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007344
7345#: e2fsck/prof_err.c:37
7346msgid "Couldn't open profile file"
Philipp Thomas1bdc4f32013-01-27 22:44:56 -05007347msgstr "Die Profildatei konnte nicht geöffnet werden"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007348
7349#: e2fsck/prof_err.c:38
7350msgid "Section already exists"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007351msgstr "Die Sektion existiert bereits"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007352
7353#: e2fsck/prof_err.c:39
7354msgid "Invalid boolean value"
Philipp Thomasab02a742014-07-09 23:13:30 -04007355msgstr "Ungültiger boolescher Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007356
7357#: e2fsck/prof_err.c:40
7358msgid "Invalid integer value"
Philipp Thomasb93349a2014-05-31 13:32:39 -04007359msgstr "Ungültiger ganzzahliger Wert"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007360
7361#: e2fsck/prof_err.c:41
7362msgid "Bad magic value in profile_file_data_t"
Philipp Thomas9bf41072014-07-05 23:18:04 -04007363msgstr "Ungültige magische Zahl im profile_file_data_t"
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007364
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007365#~ msgid "Clearing extent flag not supported on %s"
7366#~ msgstr ""
7367#~ "Das Zurücksetzen des Kennzeichens für „Erweiterung“ wird auf %s\n"
7368#~ "\tnicht unterstützt"
7369
Theodore Ts'o196b59c2014-05-18 21:47:32 -04007370#~ msgid ""
7371#~ "%s: The combination of flex_bg and\n"
7372#~ "\t!resize_inode features is not supported by resize2fs.\n"
7373#~ msgstr ""
7374#~ "%s: Die Kombination der Eigenschaften flex_bg und\n"
7375#~ "t!resize_inode wird von resize2fs nicht unterestützt.\n"
7376
Philipp Thomasedc733d2012-04-22 15:38:42 -04007377#~ msgid "@i %i should not have EOFBLOCKS_FL set (size %Is, lblk %r)\n"
Theodore Ts'obd386982015-05-17 20:34:58 -04007378#~ msgstr ""
7379#~ " in @i %i sollte EOFBLOCKS_FL nicht gesetzt sein (Größe %Is, lblk %r)\n"
Philipp Thomasedc733d2012-04-22 15:38:42 -04007380
7381#~ msgid "Couldn't determine journal size"
7382#~ msgstr "Konnte die Größe des Dateisystems nicht ermitteln"
7383
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007384#~ msgid "#\t\t %llu -> %llu (%llu)\n"
7385#~ msgstr "#\t\t %llu -> %llu (%llu)\n"
7386
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007387#~ msgid "short write (only %d bytes) for writing image header"
7388#~ msgstr "short write (only %d bytes) for writing image header"
7389
Philipp Thomas294dd5a2011-10-16 21:53:39 -04007390#~ msgid "Warning: fragments not supported. Ignoring -f option\n"
7391#~ msgstr "Warnung: Fragmente werden nicht unterstützt. Ignoriere -f Option\n"
7392
7393#~ msgid "Calling BLKDISCARD from %llu to %llu "
7394#~ msgstr "Der Aufruf von BLKDISCARD für den Bereich von %llu bis %llu war "
7395
7396#~ msgid "succeeded.\n"
7397#~ msgstr "erfolgreich.\n"