# translation of block-module.po to german
# Translation of block-module.po to German.
# $Id: block-module.po,v 1.7 2004/12/31 16:25:29 timcn Exp $
# Uwe Hermann <uwe@hermann-uwe.de>, 2004.
# michael <micha@conrad.ath.cx>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: block-module\n"
"POT-Creation-Date: 2004-10-18 22:36+0000\n"
"PO-Revision-Date: 2005-02-22 16:05+0100\n"
"Last-Translator: michael <micha@conrad.ath.cx>\n"
"Language-Team: german\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.9\n"

#: modules/block.module:15
msgid ""
"\n"
"<p>Blocks are the boxes visible in the sidebar(s) of your web site. These are usually generated automatically by modules (e.g. recent forum topics), but you can also create your own blocks.</p>\n"
"<p>The sidebar each block appears in depends on both which theme you're using (some are left-only, some right, some both), and on the settings in block management.</p><p>Whether a block is visible in the first place depends on four things:</p><ul><li>It must have its \"enabled\" box checked in block management.</li><li>If it has its \"custom\" box checked in block management, the user must have chosen to display it in their user preferences.</li><li>If the \"path\" field in block management is set, the visitor must be on a page that matches the path specification (more on this later).</li><li>If the block has its throttle box checked, the user will only see the block if the site throttle level is low.</li></ul>\n"
"<p>The block management screen also lets you specify the vertical sort-order of the blocks within a sidebar. You do this by assigning a <strong>weight</strong> to each block. Lighter blocks (smaller weight) \"float up\" towards the top of the sidebar. Heavier ones \"sink down\" towards the bottom of it.</p>\n"
"<p>The path setting lets you define the pages on which a specific block is visible. If you leave the path blank it will appear on all pages. The path uses a regular expression syntax so remember to escape special characters! The path expression is matched against the relative URL of a Drupal page, e.g. <code>book</code>, <code>node/12</code>, <code>admin</code>.</p>\n"
"<p>In case you do not know what a regular expression is, you should read about them in the PHP manual. The chapter to look at is the one on <a href=\"%pcre\">Perl-Compatible Regular Expressions (PCRE)</a>.</p>\n"
"<p>However, for basic tasks it is sufficient to look at the following examples:</p>\n"
"<p>If the block should only show up on blog pages, use &lt;^blog&gt;.  To display on all node views use &lt;^node&gt;.  The angular brackets are used as delimiters of the regular expression.  To show up on either forum or book pages use &lt;^(forum|book)&gt;.  The round brackets form a group of expressions, divided by the | character. It matches if any of the expressions in it match.  A more complicated example is &lt;^node/add/(story|blog|image)&gt;. Blocks which have their paths set to this expression will show up on story, block, or image composition pages.  If you want to show a block an all pages, but not the search page, use &lt;^(?!search)&gt;.</p>\n"
"<h3>Administrator Defined Blocks</h3>\n"
"<p>An administrator defined block contains content supplied by you (as opposed to being generated automatically by a module). Each admin-defined block consists of a title, a description, and a body which can be as long as you wish. The Drupal engine will 'render' the content of the block.</p>"
msgstr ""
"\n"
"<p>Blöcke sind die sichtbaren Rahmen in den seitlichen Leisten Ihrer Website.  Sie werden normalerweise automatisch generiert ( neueste Forumeinträge ), können aber auch von Ihnen selbst erstellt werden.</p>\n"
"<p> In welcher seitlichen Leiste jeder Block angezeigt wird, ist davon abhängig welche Vorlage Sie verwenden. Einige erscheinen links, rechts, oder auf beiden Seiten. Außerdem wird die Darstellung von den Vorgaben die Sie in der Blöckeverwaltung einstellen beinflusst..</p><p> Ob ein Block dargestellt wird, ist von vier Parameteren abhängig: </p><ul><li> Die \"Aktiviert\" Checkbox im Blockmanagement muß eingeschaltet sein.</li><li>Wenn die \"Custom\" Checkbox im Blockmanagement aktiviert ist, muß der Anwender die Blockanzeige in seinen eigenen Einstellungen aktiviert haben. </li><li>Wenn das  \"Pfad\" -Feld im Blockmanagement gesetzt ist, muß ein Anwender sich auf einer Seite befinden, auf welche dieser Pfad zutrifft.  Mehr hierzu später. </li><li>Wenn das Feld \"Auslastung\" des Blocks gesetzt ist, wird dem Anwender der Block nur bei niedrigen Auslastungvorgaben angezeigt.</li></ul>\n"
"<p>Das Blockmanagement ermöglicht Ihnen auch die vertikale Sortierung der Blöcke innerhalb der Seitenleisten zu beinflußen. Sie erreichen dies durch eine <strong>Gewichtung für jeden Block</strong>. Niedrige Gewichtung für einen Block führt dazu, das der Block innerhalb der Seitenleiste nach oben wandert, höhere Gewichtung führt zum Wandern nach Unten.</p>\n"
"<p>Die Pfadenstellung dient dazu festzulegen auf welchen Seiten ein Block angezeigt werden soll. Keine Eintragung führt dazu das der Block auf allen Seiten angezeigt wird. Die Pfadeingabe verwendet das Standardeingabeformat. Stellen Sie hierbei sicher Standardausdrücke zu verwenden, da der Pfad gegen die relative URL einer Drupalseite geprüft wird z. B. . <code>book</code>, <code>node/12</code>, <code>admin</code>.</p>\n"
"<p> Sollten Sie nicht wissen, was Standardausdrücke sind, so lesen Sie bitte im PHP-Handbuch nach. Das Kapitel hierfür findet sich unter<a href=\"%pcre\">Perl-Compatible Regular Expressions (PCRE)</a>.</p>\n"
"<p>Für einfache Aufgaben dienen die nachfolgenden Beispiele:</p>\n"
"<p>Wenn der Block nur auf blog-Seiten erscheinen soll,verwenden Sie &lt;^blog&gt;. Um auf allen Knoten zu erscheinen verwenden Sie &lt;^node&gt;.  Das\"^\" Zeichen wird als Abgrenzung gegenüber Standardausdrücken verwendet. Um auf allen Foren- oder Buchseiten angezeigt zu werden, verwenden Sie &lt;^(forum|book)&gt;. Die runden Klammern bilden einen Gruppe von Ausdrücken (Verkettung), die durch das | Zeichen getrennt sind. Die Prüfung trifft zu wenn einer oder beide Werte gefunden werden. Ein schwierigeres Beispiel ist folgendes &lt;^node/add/(story|blog|image)&gt;. Blöcke die einen Pfad zu diesem Ausdruck gesetzt haben, werden auf den Seiten story, blog oder Image angezeigt. Wenn ein Block auf allen Seiten, aber nicht auf der Suche-Seite angezeigt werden soll, verwenden Sie folgenden Ausdruck&lt;^(?!search)&gt;.</p>\n"
"<h3>Durch Administrator definierte Blöcke</h3>\n"
"<p>Ein durch den Administrator definierter Block verwendet Inhalte die durch den Administrator zur Verfügung gestellt werden (im Gegensatz zu durch ein Modul automatisch generierten Blöcken). Jeder durch den Administrator definierter Block besteht aus einem Titel, einer Bezeichnung und einem Textkörper welcher beliebig groß sein kann. Die Drupal engine renderd den Inhalt des Blocks.</p>"

#: modules/block.module:26
msgid "Controls the boxes that are displayed around the main content."
msgstr "Legt fest, welche Blöcke um den Hauptinhalt angezeigt werden."

#: modules/block.module:28
msgid "Blocks are the boxes in the left- and right- side bars of the web site, depending on the chosen theme.  They are made available active modules or created manually. The \"enabled\" checkbox sets the default status of the block. Only enabled blocks are shown. When the \"custom\" checkbox is checked, your users can show or hide the block using their account settings. In that case, the 'enabled' checkbox signifies the block's default status. You can assign the block's placement by giving it a region and a weight. The region specifies which side of the page the block is on, and the weight sorts blocks within a region. Lighter (smaller weight value) blocks \"float up\" towards the top of the page. The path setting lets you define which pages you want a block to be shown on.  Blocks can automatically be temporarily disabled to reduce server load when your site becomes extremely busy by checking throttle.  The auto-throttle functionality must be enabled on the <a href=\"%throttle\">throttle configuration page</a> after having enabled the throttle module."
msgstr "Blöcke sind die sichtbaren Rahmen in den seitlichen Leisten Ihrer Website.  Sie werden normalerweise automatisch generiert ( neueste Forumeinträge), können aber auch von Ihnen selbst erstellt werden. Die \"Aktiviert\" Checkbox setzt das Standardverhalten des Blockes. Nur aktivierte Blöcke werden angezeigt. Wenn die \"custom\" Checkbox aktiviert ist, können die Anwender die Anzeige innerhalb Ihrer Anwendereinstellungen ein- oder ausschalten. In diesem Fall setzt die \"Aktiviert\" Checkbox die Standardvorgabe, also Anzeigen. Sie können die Position der Blöcke innerhalb einer Seitenleiste durch Vorgabe einer Region und einer Gewichtung beinflußen . Die Region definiert auf welcher Seite der Block innerhalb der Seite dargestellt wird, die Gewichtung beinflußt die vertikale Position innerhalb einer Region. Niedrige Gewichtung für einen Block führt dazu, das der Block innerhalb der Seitenleiste nach oben wandert. Höhere Gewichtung führt zum Wandern nach Unten.  Mit der Pfadangabe beinflußen sie, auf welchen Seiten der Block dargestellt werden soll. Blöcke können durch Verwendung des Drosselung-Moduls automatisch temporär deaktiviert werden, wenn Ihr Server hohe Zugriffszahlen aufweist. Die automatische Auslastung muß über das Menü<a href=\"%throttle\">Auslastung Einstellungen</a> aktiviert werden, nachdem das Drosselung-Modul aktiviert wurde."

#: modules/block.module:30
msgid "Here you can create a new block. Once you have created this block you must make it active and give it a place on the page using <a href=\"%overview\">blocks</a>. The title is used when displaying the block. The description is used in the \"block\" column on the <a href=\"%overview\">blocks</a> page."
msgstr "Hier kann ein neuer Block erstellt werden. Nachdem der Block erstellt wurde, muss er auf der <a href=\"%overview\">Übersichtsseite</a> aktiviert werden Platz zugewiesen bekommen. Der Titel wird dem Benutzer angezeigt. Die Beschreibung wird in der „Block“-Spalte auf der <a href=\"%overview\">Übersichtsseite</a> benutzt."

#: modules/block.module:60
#: ;178
msgid "edit block"
msgstr "Block bearbeiten"

#: modules/block.module:102
msgid "the block settings have been updated."
msgstr "Die Blockeinstellungen wurden aktualisiert."

#: modules/block.module:174
msgid "Block"
msgstr "Block"

#: modules/block.module:174
msgid "Custom"
msgstr "Benutzerdefiniert"

#: modules/block.module:174
msgid "Region"
msgstr "Bereich"

#: modules/block.module:184
msgid "left"
msgstr "links"

#: modules/block.module:184
msgid "right"
msgstr "rechts"

#: modules/block.module:188
#: ;276
msgid "Save blocks"
msgstr "Blöcke speichern"

#: modules/block.module:207
#: ;246
msgid "Save block"
msgstr "Block speichern"

#: modules/block.module:212
#: ;248
msgid "Delete block"
msgstr "Block löschen"

#: modules/block.module:213
msgid "Are you sure you want to delete the block %name?"
msgstr "Soll der Block „%name“ wirklich gelöscht werden?"

#: modules/block.module:220
msgid "The block has been deleted."
msgstr "Der Block wurde gelöscht."

#: modules/block.module:237
msgid "Block title"
msgstr "Blocktitel"

#: modules/block.module:237
msgid "The title of the block as shown to the user."
msgstr "Der Titel des Blocks, so wie er dem Benutzer angezeigt wird."

#: modules/block.module:239
msgid "Block body"
msgstr "Blockinhalt"

#: modules/block.module:239
msgid "The content of the block as shown to the user."
msgstr "Der Inhalt des Blocks, so wie er dem Benutzer angezeigt wird."

#: modules/block.module:240
msgid "Block description"
msgstr "Blockbeschreibung"

#: modules/block.module:240
msgid "A brief description of your block.  Used on the <a href=\"%overview\">block overview page</a>."
msgstr "Eine kurze Beschreibung des Blocks. Wird auf der <a href=\"%overview\">Blockübersichtsseite</a> benutzt."

#: modules/block.module:261
msgid "The block has been updated."
msgstr "Der Block wurde aktualisiert."

#: modules/block.module:265
msgid "The new block has been added."
msgstr "Der neue Block wurde hinzugefügt."

#: modules/block.module:304
msgid "Block configuration"
msgstr "Blockkonfiguration"

#: modules/block.module:45
msgid "administer blocks"
msgstr "Blöcke verwalten"

#: modules/block.module:0
msgid "block"
msgstr "Block"

