summaryrefslogtreecommitdiff
path: root/doc/de
diff options
context:
space:
mode:
Diffstat (limited to 'doc/de')
-rw-r--r--doc/de/config.xml4
-rw-r--r--doc/de/key_functions.xml8
-rw-r--r--doc/de/weechat.de.xml122
-rw-r--r--doc/de/weechat_commands.xml28
4 files changed, 76 insertions, 86 deletions
diff --git a/doc/de/config.xml b/doc/de/config.xml
index 10126db33..51c02a8eb 100644
--- a/doc/de/config.xml
+++ b/doc/de/config.xml
@@ -304,7 +304,7 @@
<entry>Farbe</entry>
<entry>Curses- oder Gtk-Farben</entry>
<entry>'lightmagenta'</entry>
- <entry>Color for '+' when scrolling topic</entry>
+ <entry>Farbe des '+' beim Scrolling des Topics</entry>
</row>
<row>
<entry><option>col_title_bg</option></entry>
@@ -906,7 +906,7 @@
<entry>Ganzzahl</entry>
<entry>zwischen 0 und 5</entry>
<entry>2</entry>
- <entry>Anti-flood: # seconds between two user messages (0 = no anti-flood)</entry>
+ <entry>Anti-flood: # Sekunden zwischen zwei Benutzernachrichten (0 = kein anti-flood)</entry>
</row>
<row>
<entry><option>irc_fifo_pipe</option></entry>
diff --git a/doc/de/key_functions.xml b/doc/de/key_functions.xml
index 5e3ffdf6d..acc3cd39d 100644
--- a/doc/de/key_functions.xml
+++ b/doc/de/key_functions.xml
@@ -119,11 +119,11 @@
</row>
<row>
<entry><literal>scroll_topic_left</literal></entry>
- <entry>scroll left topic</entry>
+ <entry>Topic nach links scrollen</entry>
</row>
<row>
<entry><literal>scroll_topic_right</literal></entry>
- <entry>scroll right topic</entry>
+ <entry>Topic nach rechts scrollen</entry>
</row>
<row>
<entry><literal>nick_beginning</literal></entry>
@@ -199,9 +199,9 @@
</row>
<row>
<entry><literal>insert</literal></entry>
- <entry>insert a string in command line</entry>
+ <entry>füge eine Zeichenkette in der Befehlszeile ein</entry>
</row>
<row>
<entry><literal>search_text</literal></entry>
- <entry>search text in buffer history</entry>
+ <entry>suche Text im Pufferverlauf</entry>
</row>
diff --git a/doc/de/weechat.de.xml b/doc/de/weechat.de.xml
index 20fea8368..911922f98 100644
--- a/doc/de/weechat.de.xml
+++ b/doc/de/weechat.de.xml
@@ -48,7 +48,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
&date.xml;
<copyright>
- <year>2006</year>
+ <year>2007</year>
<holder>Sébastien Helleu</holder>
</copyright>
@@ -515,9 +515,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
<row>
<entry>Strg + R</entry>
<entry>
- <!-- TRANSLATION NEEDED -->
- Search for text in buffer history
- (two times: search exact text)
+ Suche nach Text im Pufferverlauf
+ (zwei Mal: suche nach dem genauen Text)
</entry>
</row>
<row>
@@ -573,16 +572,14 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
<entry>Eingabe / Strg + J / Strg + M</entry>
<entry>
Führe ein Kommando aus oder sende eine Nachricht
- <!-- TRANSLATION NEEDED -->
- (in search mode: stop search)
+ (im Suchmodus: Suche anhalten)
</entry>
</row>
<row>
<entry>Hoch / Runter</entry>
<entry>
Rufe das letzte Kommando/die letzte Nachricht wieder auf
- <!-- TRANSLATION NEEDED -->
- (in search mode: search up/down)
+ (im Suchmodus: suche rückwärts/vorwärts)
</entry>
</row>
<row>
@@ -2061,10 +2058,9 @@ plugin->log (plugin, "freenode", "#weechat", "test");
</listitem>
<listitem>
<para>
- <!-- TRANSLATION NEEDED -->
- <literal>PLUGIN_RC_OK_WITH_HIGHLIGHT</literal>: function
- successfully completed and make "highlight" on received
- message
+ <literal>PLUGIN_RC_OK_WITH_HIGHLIGHT</literal>: Funktion
+ erfolgreich vervollständigt und eine Hervorhebung bei den
+ empfangenen Nachrichten eingebaut
</para>
</listitem>
</itemizedlist>
@@ -2531,12 +2527,11 @@ keyb_handler = plugin->keyboard_handler_add (plugin, &amp;my_keyb);
</para>
</section>
- <!-- TRANSLATION NEEDED -->
<section id="secAPI_event_handler_add">
<title>event_handler_add</title>
<para>
- Prototype:
+ Prototyp:
<command>
t_plugin_handler *event_handler_add (t_weechat_plugin
*plugin, char *event, t_plugin_handler_func *function,
@@ -2544,35 +2539,35 @@ keyb_handler = plugin->keyboard_handler_add (plugin, &amp;my_keyb);
</command>
</para>
<para>
- Add an event handler, called when an event happens.
+ Fügt einen Ereignishandler hinzu, der aufgerufen wird, wenn ein Ereignis eintritt.
</para>
<para>
- Arguments:
+ Argumente:
<itemizedlist>
<listitem>
<para>
- <option>plugin</option>: pointer to plugin structure
+ <option>plugin</option>: Zeiger auf Plugin-Strukture
</para>
</listitem>
<listitem>
<para>
- <option>event</option> : event, see table below:
+ <option>event</option> : Ereignis, siehe folgende Tabelle:
<informaltable colsep="0" frame="none">
<tgroup cols="2">
<thead>
<row>
- <entry>Event</entry>
- <entry>Description</entry>
+ <entry>Ereignis</entry>
+ <entry>Beschreibung</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>buffer_open</literal></entry>
- <entry>a buffer was open</entry>
+ <entry>ein Puffer wurde geöffnet</entry>
</row>
<row>
<entry><literal>buffer_close</literal></entry>
- <entry>a buffer was closed</entry>
+ <entry>ein Puffer wurde geschlossen</entry>
</row>
</tbody>
</tgroup>
@@ -2581,10 +2576,10 @@ keyb_handler = plugin->keyboard_handler_add (plugin, &amp;my_keyb);
</listitem>
<listitem>
<para>
- <option>function</option>: function called
+ <option>function</option>: aufgerufene Funktion
</para>
<para>
- It uses following prototype:
+ Es wird folgender Prototyp verwendet:
<command>
int my_function (t_weechat_plugin *plugin,
int argc, char **argv,
@@ -2592,45 +2587,44 @@ keyb_handler = plugin->keyboard_handler_add (plugin, &amp;my_keyb);
</command>
</para>
<para>
- Argument argc is set to 1, argv[0] is number of buffer
- open/closed.
+ Argument argc wird auf 1 gesetzt, argv[0] ist die Nummer des Puffers, der
+ geöffnet oder geschlossen wird.
</para>
</listitem>
<listitem>
<para>
- <option>handler_args</option>: arguments given to function
- when called
+ <option>handler_args</option>: Argument, die an die aufgerufene
+ Funktion übergeben werden
</para>
</listitem>
<listitem>
<para>
- <option>handler_pointer</option>: pointer given to function
- when called
+ <option>handler_pointer</option>: Pointer, der an die aufgerufene
+ Funktion übergeben werden
</para>
</listitem>
</itemizedlist>
</para>
<para>
- Return value: pointer to new event handler.
+ Rückgabewert: Pointer auf den neuen Ereignishandler.
</para>
<para>
- Note: function called has to return one of following values:
+ Anmerkung: die aufgerufene Function muss einen der folgenden Werte zurückgeben:
<itemizedlist>
<listitem>
<para>
- <literal>PLUGIN_RC_KO</literal>: function failed
+ <literal>PLUGIN_RC_KO</literal>: Funktion fehlgeschlagen
</para>
</listitem>
<listitem>
<para>
- <literal>PLUGIN_RC_OK</literal>: function successfully
- completed
+ <literal>PLUGIN_RC_OK</literal>: Funktion erfolgreich beendet
</para>
</listitem>
</itemizedlist>
</para>
<para>
- Example:
+ Beispiel:
<screen>
int my_event (t_weechat_plugin *plugin, int argc, char **argv,
char *handler_args, void *handler_pointer)
@@ -5464,10 +5458,9 @@ end
</listitem>
<listitem>
<para>
- <!-- TRANSLATION NEEDED -->
- <literal>PLUGIN_RC_OK_WITH_HIGHLIGHT</literal>: function
- successfully completed and make "highlight" on received
- message
+ <literal>PLUGIN_RC_OK_WITH_HIGHLIGHT</literal>: Funktion
+ erfolgreich vervollständigt und eine Hervorhebung bei den
+ empfangenen Nachrichten eingebaut
</para>
</listitem>
</itemizedlist>
@@ -5813,58 +5806,57 @@ end
</para>
</section>
- <!-- TRANSLATION NEEDED -->
<section id="secScript_add_event_handler">
<title>add_event_handler</title>
<para>
- Perl prototype:
+ Perl-Prototyp:
<command>
weechat::add_event_handler(event, function);
</command>
</para>
<para>
- Python prototype:
+ Python-Prototyp:
<command>
weechat.add_event_handler(event, function)
</command>
</para>
<para>
- Ruby prototype:
+ Ruby-Prototyp:
<command>
Weechat.add_event_handler(event, function)
</command>
</para>
<para>
- Lua prototype:
+ Lua-Prototyp:
<command>
weechat.add_event_handler(event, function)
</command>
</para>
<para>
- Add an event handler, called when an event happens.
+ Fügt einen Ereignis-Handler hinzu, der beim Auftreten eines Ereignisses aufgerufen wird.
</para>
<para>
- Arguments:
+ Argumente:
<itemizedlist>
<listitem>
<para>
- <option>event</option> : event
+ <option>event</option> : Ereignis
(see <xref linkend="secAPI_event_handler_add" />)
</para>
</listitem>
<listitem>
<para>
- <option>function</option>: function called
+ <option>function</option>: aufgerufene Funktion
</para>
</listitem>
</itemizedlist>
</para>
<para>
- Return value: 1 if success, 0 if an error occurred.
+ Rückgabewerte: 1 bei Erfolg, 0 bei aufgetretenen Fehlern
</para>
<para>
- Examples:
+ Beispiele:
<screen>
# perl
weechat::add_event_handler("buffer_open", "my_event");
@@ -5896,17 +5888,16 @@ end
</screen>
</para>
<para>
- Note: function called has to return one of following values:
+ Bemerkung: aufgerufene Funktion muss einen der folgenden Werte zurückgeben:
<itemizedlist>
<listitem>
<para>
- <literal>PLUGIN_RC_KO</literal>: function failed
+ <literal>PLUGIN_RC_KO</literal>: Funktion fehlgeschlagen
</para>
</listitem>
<listitem>
<para>
- <literal>PLUGIN_RC_OK</literal>: function successfully
- completed
+ <literal>PLUGIN_RC_OK</literal>: Funktion erfolgreich beendet
</para>
</listitem>
</itemizedlist>
@@ -6081,7 +6072,7 @@ weechat.remove_timer_handler("my_timer")
</itemizedlist>
</para>
<para>
- Rückgabewert: 1 bei Erfolg, 0 wenn ein Fehler aufgetreten ist.
+ Rückgabewerte: 1 bei Erfolg, 0 wenn ein Fehler aufgetreten ist.
</para>
<para>
Beispiele:
@@ -6101,52 +6092,51 @@ weechat.remove_keyboard_handler("my_keyboard")
</para>
</section>
- <!-- TRANSLATION NEEDED -->
<section id="secScrip_remove_event_handler">
<title>remove_event_handler</title>
<para>
- Perl prototype:
+ Perl-Prototyp:
<command>
weechat::remove_event_handler(function);
</command>
</para>
<para>
- Python prototype:
+ Python-Prototyp:
<command>
weechat.remove_event_handler(function)
</command>
</para>
<para>
- Ruby prototype:
+ Ruby-Prototyp:
<command>
Weechat.remove_event_handler(function)
</command>
</para>
<para>
- Lua prototype:
+ Lua-Prototyp:
<command>
weechat.remove_event_handler(function)
</command>
</para>
<para>
- Remove an event handler.
+ Entfernt einen Ereignis-Handler.
</para>
<para>
- Arguments:
+ Argumente:
<itemizedlist>
<listitem>
<para>
- <option>function</option>: function
+ <option>function</option>: Funktion
</para>
</listitem>
</itemizedlist>
</para>
<para>
- Return value: 1 if success, 0 if an error occurred.
+ Rückgabewerte: 1 bei Erfolg, 0 wenn ein Fehler aufgetreten ist.
</para>
<para>
- Examples:
+ Beispiele:
<screen>
# perl
weechat::remove_event_handler("my_event");
diff --git a/doc/de/weechat_commands.xml b/doc/de/weechat_commands.xml
index 40faa583a..eb8cd7299 100644
--- a/doc/de/weechat_commands.xml
+++ b/doc/de/weechat_commands.xml
@@ -9,13 +9,13 @@
<programlisting>
einen Alias für einen Befehl anlegen
-alias_name: name of alias
- command: command name (WeeChat or IRC command, many commands can be separated by semicolons)
- arguments: arguments for command
+Aliasname: Name des Alias
+ Befehl: Befehlsname (WeeChat- oder IRC-Befehl ohne führenden '/', mehrere Befehle können durch Semikola getrennt werden)
+Argumente: Argumente für den Befehl
</programlisting>
-<command>is replaced by all arguments.</command>
-<programlisting>Variables $nick, $channel and $server are replaced by current nick/channel/server.
+<command>wird durch alle Argumente ersetzt.</command>
+<programlisting>Die Variablen $nick, $channel and $server werden durch den aktuellen Nick/Channel oder Server ersetzt.
</programlisting>
<command>buffer [Aktion [Argumente] | Nummer | [[Server] [Channel]]]</command>
@@ -41,12 +41,12 @@ Befehl: auszuführender Befehl (falls nicht vorhanden wird automatisch ein '/' vo
</programlisting>
-<command>clear [-all | number]</command>
+<command>clear [-all | Nummer]</command>
<programlisting>
Fenster leeren
- -all: clear all buffers
-number: clear buffer by number
+ -all: lösche alle Puffer
+Nummer: lösche den Puffer mit der angegebenen Nummer
</programlisting>
<command>connect [Servername]</command>
@@ -110,15 +110,15 @@ Bei jedem Argument steht '*' für 'alle'.
Ohne Argumente listet /ignore alle definierten /ignore-Regeln auf.
</programlisting>
-<command>key [key [function/command]] [unbind key] [functions] [call function ["args"]] [reset -yes]</command>
+<command>key [Taste [Funktion/Befehl]] [unbind Taste] [functions] [call Funktion ["Argumente"]] [reset -yes] </command>
<programlisting>
belegen/freigeben von Tasten
- key: display or bind this key to an internal function or a command (beginning by "/")
- unbind: unbind a key
-functions: list internal functions for key bindings
- call: call a function by name (with optional arguments)
- reset: restore bindings to the default values and delete ALL personal bindings (use carefully!)
+ Taste: diese Taste anzeigen oder mit einer internen Funktion oder einem Befehl, beginnend mit "/", belegen
+ unbind: Tastenbelegung aufheben
+functions: interne Funktionen für Tastenbelegungen auflisten
+ call: rufe eine Funktion über ihren Namen auf (mit optionalen Argumenten)
+ reset: Standardbelegung wiederherstellen und entferne ALLE eigenen Belegungen (Vorsicht!)
</programlisting>
<command>plugin [list [Name]] | [listfull [Name]] | [load Dateiname] | [autoload] | [reload [Name]] | [unload [Name]]</command>