summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/de/autogen/plugin_api/completions.txt2
-rw-r--r--doc/de/autogen/plugin_api/infos.txt6
-rw-r--r--doc/de/autogen/user/exec_commands.txt74
-rw-r--r--doc/de/autogen/user/exec_options.txt8
-rw-r--r--doc/de/autogen/user/guile_commands.txt8
-rw-r--r--doc/de/autogen/user/lua_commands.txt8
-rw-r--r--doc/de/autogen/user/perl_commands.txt8
-rw-r--r--doc/de/autogen/user/python_commands.txt8
-rw-r--r--doc/de/autogen/user/ruby_commands.txt8
-rw-r--r--doc/de/autogen/user/tcl_commands.txt8
-rw-r--r--doc/de/autogen/user/weechat_commands.txt36
-rw-r--r--doc/de/autogen/user/weechat_options.txt4
-rw-r--r--doc/en/autogen/user/exec_commands.txt2
-rw-r--r--doc/it/autogen/user/exec_commands.txt2
-rw-r--r--doc/ja/autogen/user/exec_commands.txt2
-rw-r--r--doc/pl/autogen/user/exec_commands.txt2
-rw-r--r--po/cs.po4
-rw-r--r--po/de.po40
-rw-r--r--po/es.po4
-rw-r--r--po/fr.po6
-rw-r--r--po/hu.po4
-rw-r--r--po/it.po4
-rw-r--r--po/ja.po4
-rw-r--r--po/pl.po4
-rw-r--r--po/pt_BR.po4
-rw-r--r--po/ru.po4
-rw-r--r--po/tr.po4
-rw-r--r--po/weechat.pot4
-rw-r--r--src/plugins/exec/exec-command.c2
29 files changed, 137 insertions, 137 deletions
diff --git a/doc/de/autogen/plugin_api/completions.txt b/doc/de/autogen/plugin_api/completions.txt
index ac361764e..fe4c466cf 100644
--- a/doc/de/autogen/plugin_api/completions.txt
+++ b/doc/de/autogen/plugin_api/completions.txt
@@ -10,7 +10,7 @@
| aspell | aspell_langs | Liste aller Sprachen die durch Aspell unterstützt werden
-| exec | exec_commands_ids | ids (numbers and names) of executed commands
+| exec | exec_commands_ids | IDs (Nummern und Namen) von ausgeführten Befehlen
| guile | guile_script | Liste der Skripten
diff --git a/doc/de/autogen/plugin_api/infos.txt b/doc/de/autogen/plugin_api/infos.txt
index 2812b65d7..dc27ae97e 100644
--- a/doc/de/autogen/plugin_api/infos.txt
+++ b/doc/de/autogen/plugin_api/infos.txt
@@ -32,11 +32,11 @@
| weechat | charset_terminal | Terminal Zeichensatz | -
-| weechat | color_ansi_regex | POSIX extended regular expression to search ANSI escape codes | -
+| weechat | color_ansi_regex | erweiterte reguläre POSIX Ausdrücke um ANSI Escapesequenz zu suchen | -
-| weechat | color_rgb2term | RGB color converted to terminal color (0-255) | rgb,limit (limit is optional and is set to 256 by default)
+| weechat | color_rgb2term | RGB Farbe wurde umgewandelt in Terminalfarbe (0-255) | RGB,limit (Obergrenze ist optional und ist Standardmäßig 256)
-| weechat | color_term2rgb | terminal color (0-255) converted to RGB color | color (terminal color: 0-255)
+| weechat | color_term2rgb | Terminalfarbe (0-255) wurde umgewandelt in RGB Farbe | Farben (Terminalfarben: 0-255)
| weechat | cursor_mode | 1, falls Cursor-Modus aktiviert ist | -
diff --git a/doc/de/autogen/user/exec_commands.txt b/doc/de/autogen/user/exec_commands.txt
index 3134547d5..5fa812f6f 100644
--- a/doc/de/autogen/user/exec_commands.txt
+++ b/doc/de/autogen/user/exec_commands.txt
@@ -1,5 +1,5 @@
[[command_exec_exec]]
-[command]*`exec`* execute external commands::
+[command]*`exec`* führe externe Befehle aus::
----
/exec -list
@@ -12,42 +12,42 @@
-set <id> <property> <value>
-del <id>|-all [<id>...]
- -list: list commands
- -sh: use the shell to execute the command (default)
- -nosh: do not use the shell to execute the command (required if the command has some unsafe data, for example the content of a message from another user)
- -bg: run process in background: do not display process output neither return code (not compatible with options -o/-n)
- -nobg: catch process output and display return code (default)
- -stdin: create a pipe for sending data to the process (with /exec -in/-inclose)
--nostdin: do not create a pipe for stdin (default)
- -buffer: display/send output of command on this buffer (if the buffer is not found, a new buffer with name "exec.exec.xxx" is created)
- -l: display locally output of command on buffer (default)
- -o: send output of command to the buffer (not compatible with option -bg)
- -n: display output of command in a new buffer (not compatible with option -bg)
- -sw: switch to the output buffer (default)
- -nosw: don't switch to the output buffer
- -ln: display line numbers (default in new buffer only)
- -noln: don't display line numbers
- -color: action on ANSI colors in output:
- ansi: keep ANSI codes as-is
- decode: convert ANSI colors to WeeChat/IRC (default)
- strip: remove ANSI colors
- -rc: display return code (default)
- -norc: don't display return code
--timeout: set a timeout for the command (in seconds)
- -name: set a name for the command (to name it later with /exec)
- command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output
- id: command identifier: either its number or name (if set with "-name xxx")
- -in: send text on standard input of process
--inclose: same a -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
- -signal: send a signal to the process; the signal can be an integer or one of these names: hup, int, quit, kill, term, usr1, usr2
- -kill: alias of "-signal <id> kill"
--killall: kill all running processes
- -set: set a hook property (see function hook_set in plugin API reference)
-property: hook property
- value: new value for hook property
- -del: delete a terminated command
- -all: delete all terminated commands
+ -list: zeigt laufende Befehle an
+ -sh: die shell wird verwendet um Befehle auszuführen (Standardverhalten)
+ -nosh: die shell wird nicht verwendet um Befehle auszuführen (wird benötigt, falls der Befehl mit sensiblen Daten hantiert. Zum Beispiel der Inhalt einer Nachricht eines anderen Users)
+ -bg: führt Prozess im Hintergrund aus: gibt weder eine Prozessausgabe noch einen Rückgabewert aus (nicht kompatibel mit Optionen -o/-n)
+ -nobg: gibt Prozessausgabe und Rückgabewert aus (Standardverhalten)
+ -stdin: erstellt eine PIPE um Daten zu dem Prozess zu senden (mittels /exec -in/-inclose)
+-nostdin: es wird keine PIPE für stdin erstellt (Standardverhalten)
+ -buffer: zeigt/sendet Ausgabe des Befehls an diesen Buffer (wird der angegebene Buffer nicht gefunden wird ein neuer Bufger mit dem Namen "exec.exec.xxx" erstellt)
+ -l: gibt die Ausgabe des Befehls lokal im Buffer aus (Standardverhalten)
+ -o: gibt die Ausgabe des Befehls im Buffer aus (nicht kompatibel mit Option -bg)
+ -n: gibt die Ausgabe des Befehls in einem neuen Buffer aus (nicht kompatibel mit Option -bg)
+ -sw: es wird zum Ausgabebuffer gewechselt (Standardverhalten)
+ -nosw: es wird nicht zum Ausgabebuffer gewechselt
+ -ln: legt eine Zeilennummerierung an (Standardverhalten, nur für neue Buffer)
+ -noln: es wird keine Zeilennummerierung angezeigt
+ -color: es wird eine der folgenden Aktionen bei ANSI Zeichenkodierungen in der Ausgabe durchgeführt:
+ ansi: ANSI-Kodierung wird beibehalten
+ decode: konvertiert ANSI-Farben zu WeeChat/IRC Farben(Standardverhalten)
+ strip: ANSI-Farben werden entfernt
+ -rc: der Rückgabewert wird ausgegeben (Standardverhalten)
+ -norc: der Rückgabewert wird unterdrückt
+-timeout: gibt eine Zeitbeschränkung für den auszuführenden Befehl an (in Sekunden)
+ -name: dem Befehl wird ein Name zugewiesen (um den Befehl später mittels /exec zu nutzen)
+ command: Befehl der ausgeführt werden soll; beginnt der Befehl mit "url:", wird die shell deaktiviert und der Inhalt der URL wird heruntergeladen und im Buffer ausgegeben
+ id: identifiziert eindeutig einen Befehl: entweder durch eine Nummer oder einen Namen (sofern ein Name mittels "-name xxx" zugewiesen wurde)
+ -in: sendet Text an die Standardeingabe des Prozesses
+-inclose: wie -in aber stdin wird danach geschlossen (und der Text ist optional: ohne Text wird stdin umgehend geschlossen
+ -signal: schickt ein Signal an den Prozess; das Signal kann entweder ein Integerwert oder eines der folgenden Schlüsselworte sein: hup, int, quit, kill, term, usr1, usr2
+ -kill: Alias für "-signal <id> kill"
+-killall: beendet alle laufenden Prozesse
+ -set: nutzt eine Hook-Fähigkeit (siehe Funktion hook_set in Anleitung für API Erweiterung)
+property: Hook-Fähigkeit
+ value: neuer Wert für Hook-Fähigkeit
+ -del: entfernt einen beendeten Befehl
+ -all: entfernt alle beendeten Befehle
-Default options can be set in the option exec.command.default_options.
+Standardoptionen können in der Option exec.command.default_options bestimmt werden.
----
diff --git a/doc/de/autogen/user/exec_options.txt b/doc/de/autogen/user/exec_options.txt
index c7d75c760..b199c8ed7 100644
--- a/doc/de/autogen/user/exec_options.txt
+++ b/doc/de/autogen/user/exec_options.txt
@@ -1,20 +1,20 @@
* [[option_exec.color.flag_finished]] *exec.color.flag_finished*
-** Beschreibung: `text color for a finished command flag in list of commands`
+** Beschreibung: `Textfarbe des Statusindikator (in der Auflistung der Befehle) für beendete Befehle`
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen (Standardwert: `lightred`)
* [[option_exec.color.flag_running]] *exec.color.flag_running*
-** Beschreibung: `text color for a running command flag in list of commands`
+** Beschreibung: `Textfarbe des Statusindikator (in der Auflistung der Befehle) für Befehle die zur Zeit ausgeführt werden`
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen (Standardwert: `lightgreen`)
* [[option_exec.command.default_options]] *exec.command.default_options*
-** Beschreibung: `default options for command /exec (see /help exec); example: "-nosh -bg" to run all commands in background (no output), and without using the shell`
+** Beschreibung: `Standardoptionen für den Befehl /exec (siehe /help exec); Beispiele: "-nosh -bg" führt alle Befehle im Hintergrund aus (keine Textausgabe) und ohne das die shell genutzt wird`
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette (Standardwert: `""`)
* [[option_exec.command.purge_delay]] *exec.command.purge_delay*
-** Beschreibung: `delay for purging finished commands (in seconds, 0 = purge commands immediately, -1 = never purge)`
+** Beschreibung: `Wartezeit bis nicht mehr ausgeführte Befehle gelöscht werden (in Sekunden, 0 = lösche Befehle unmittelbar, -1 = niemals löschen)`
** Typ: integer
** Werte: -1 .. 25920000 (Standardwert: `0`)
diff --git a/doc/de/autogen/user/guile_commands.txt b/doc/de/autogen/user/guile_commands.txt
index d6c259d18..cb70eba0c 100644
--- a/doc/de/autogen/user/guile_commands.txt
+++ b/doc/de/autogen/user/guile_commands.txt
@@ -1,5 +1,5 @@
[[command_guile_guile]]
-[command]*`guile`* auflisten/installieren/deinstallieren von Skripten::
+[command]*`guile`* auflisten/installieren/beenden von Skripten::
----
/guile list|listfull [<name>]
@@ -10,9 +10,9 @@
list: installierte Skripten werden aufgelistet
listfull: detaillierte Auflistung aller installierten Skripten
load: installiert ein Skript
-autoload: installiert automatisch alle Skripten aus dem "autoload" Verzeichnis
- reload: ein Skript wird erneut installiert (wird kein Name angegeben, dann werden alle Skripten entfernt und erneut installiert)
- unload: deinstalliert ein Skript (wird kein Name angegeben, dann werden alle Skripten deinstalliert)
+autoload: startet automatisch alle Skripten aus dem "autoload" Verzeichnis
+ reload: ein Skript wird erneut gestartet (wird kein Name angegeben, dann werden alle Skripten beendet und erneut gestartet)
+ unload: beendet ein Skript (wird kein Name angegeben, dann werden alle Skripten beendet)
filename: Skript (Datei) welches geladen werden soll
name: Name eines Skriptes (der Name der in der "register" Funktion der Skript-API genutzt wird)
-q: unterdrückter Modus: Es werden keine Nachrichten ausgegeben
diff --git a/doc/de/autogen/user/lua_commands.txt b/doc/de/autogen/user/lua_commands.txt
index 90f506d97..ba4c8c38e 100644
--- a/doc/de/autogen/user/lua_commands.txt
+++ b/doc/de/autogen/user/lua_commands.txt
@@ -1,5 +1,5 @@
[[command_lua_lua]]
-[command]*`lua`* auflisten/installieren/deinstallieren von Skripten::
+[command]*`lua`* auflisten/installieren/beenden von Skripten::
----
/lua list|listfull [<name>]
@@ -10,9 +10,9 @@
list: installierte Skripten werden aufgelistet
listfull: detaillierte Auflistung aller installierten Skripten
load: installiert ein Skript
-autoload: installiert automatisch alle Skripten aus dem "autoload" Verzeichnis
- reload: ein Skript wird erneut installiert (wird kein Name angegeben, dann werden alle Skripten entfernt und erneut installiert)
- unload: deinstalliert ein Skript (wird kein Name angegeben, dann werden alle Skripten deinstalliert)
+autoload: startet automatisch alle Skripten aus dem "autoload" Verzeichnis
+ reload: ein Skript wird erneut gestartet (wird kein Name angegeben, dann werden alle Skripten beendet und erneut gestartet)
+ unload: beendet ein Skript (wird kein Name angegeben, dann werden alle Skripten beendet)
filename: Skript (Datei) welches geladen werden soll
name: Name eines Skriptes (der Name der in der "register" Funktion der Skript-API genutzt wird)
-q: unterdrückter Modus: Es werden keine Nachrichten ausgegeben
diff --git a/doc/de/autogen/user/perl_commands.txt b/doc/de/autogen/user/perl_commands.txt
index 351948225..76840c0e5 100644
--- a/doc/de/autogen/user/perl_commands.txt
+++ b/doc/de/autogen/user/perl_commands.txt
@@ -1,5 +1,5 @@
[[command_perl_perl]]
-[command]*`perl`* auflisten/installieren/deinstallieren von Skripten::
+[command]*`perl`* auflisten/installieren/beenden von Skripten::
----
/perl list|listfull [<name>]
@@ -10,9 +10,9 @@
list: installierte Skripten werden aufgelistet
listfull: detaillierte Auflistung aller installierten Skripten
load: installiert ein Skript
-autoload: installiert automatisch alle Skripten aus dem "autoload" Verzeichnis
- reload: ein Skript wird erneut installiert (wird kein Name angegeben, dann werden alle Skripten entfernt und erneut installiert)
- unload: deinstalliert ein Skript (wird kein Name angegeben, dann werden alle Skripten deinstalliert)
+autoload: startet automatisch alle Skripten aus dem "autoload" Verzeichnis
+ reload: ein Skript wird erneut gestartet (wird kein Name angegeben, dann werden alle Skripten beendet und erneut gestartet)
+ unload: beendet ein Skript (wird kein Name angegeben, dann werden alle Skripten beendet)
filename: Skript (Datei) welches geladen werden soll
name: Name eines Skriptes (der Name der in der "register" Funktion der Skript-API genutzt wird)
-q: unterdrückter Modus: Es werden keine Nachrichten ausgegeben
diff --git a/doc/de/autogen/user/python_commands.txt b/doc/de/autogen/user/python_commands.txt
index bbe779912..2a7e00a9d 100644
--- a/doc/de/autogen/user/python_commands.txt
+++ b/doc/de/autogen/user/python_commands.txt
@@ -1,5 +1,5 @@
[[command_python_python]]
-[command]*`python`* auflisten/installieren/deinstallieren von Skripten::
+[command]*`python`* auflisten/installieren/beenden von Skripten::
----
/python list|listfull [<name>]
@@ -10,9 +10,9 @@
list: installierte Skripten werden aufgelistet
listfull: detaillierte Auflistung aller installierten Skripten
load: installiert ein Skript
-autoload: installiert automatisch alle Skripten aus dem "autoload" Verzeichnis
- reload: ein Skript wird erneut installiert (wird kein Name angegeben, dann werden alle Skripten entfernt und erneut installiert)
- unload: deinstalliert ein Skript (wird kein Name angegeben, dann werden alle Skripten deinstalliert)
+autoload: startet automatisch alle Skripten aus dem "autoload" Verzeichnis
+ reload: ein Skript wird erneut gestartet (wird kein Name angegeben, dann werden alle Skripten beendet und erneut gestartet)
+ unload: beendet ein Skript (wird kein Name angegeben, dann werden alle Skripten beendet)
filename: Skript (Datei) welches geladen werden soll
name: Name eines Skriptes (der Name der in der "register" Funktion der Skript-API genutzt wird)
-q: unterdrückter Modus: Es werden keine Nachrichten ausgegeben
diff --git a/doc/de/autogen/user/ruby_commands.txt b/doc/de/autogen/user/ruby_commands.txt
index 9962ee989..be9d97efb 100644
--- a/doc/de/autogen/user/ruby_commands.txt
+++ b/doc/de/autogen/user/ruby_commands.txt
@@ -1,5 +1,5 @@
[[command_ruby_ruby]]
-[command]*`ruby`* auflisten/installieren/deinstallieren von Skripten::
+[command]*`ruby`* auflisten/installieren/beenden von Skripten::
----
/ruby list|listfull [<name>]
@@ -10,9 +10,9 @@
list: installierte Skripten werden aufgelistet
listfull: detaillierte Auflistung aller installierten Skripten
load: installiert ein Skript
-autoload: installiert automatisch alle Skripten aus dem "autoload" Verzeichnis
- reload: ein Skript wird erneut installiert (wird kein Name angegeben, dann werden alle Skripten entfernt und erneut installiert)
- unload: deinstalliert ein Skript (wird kein Name angegeben, dann werden alle Skripten deinstalliert)
+autoload: startet automatisch alle Skripten aus dem "autoload" Verzeichnis
+ reload: ein Skript wird erneut gestartet (wird kein Name angegeben, dann werden alle Skripten beendet und erneut gestartet)
+ unload: beendet ein Skript (wird kein Name angegeben, dann werden alle Skripten beendet)
filename: Skript (Datei) welches geladen werden soll
name: Name eines Skriptes (der Name der in der "register" Funktion der Skript-API genutzt wird)
-q: unterdrückter Modus: Es werden keine Nachrichten ausgegeben
diff --git a/doc/de/autogen/user/tcl_commands.txt b/doc/de/autogen/user/tcl_commands.txt
index 33c08a97e..248e2ccf0 100644
--- a/doc/de/autogen/user/tcl_commands.txt
+++ b/doc/de/autogen/user/tcl_commands.txt
@@ -1,5 +1,5 @@
[[command_tcl_tcl]]
-[command]*`tcl`* auflisten/installieren/deinstallieren von Skripten::
+[command]*`tcl`* auflisten/installieren/beenden von Skripten::
----
/tcl list|listfull [<name>]
@@ -10,9 +10,9 @@
list: installierte Skripten werden aufgelistet
listfull: detaillierte Auflistung aller installierten Skripten
load: installiert ein Skript
-autoload: installiert automatisch alle Skripten aus dem "autoload" Verzeichnis
- reload: ein Skript wird erneut installiert (wird kein Name angegeben, dann werden alle Skripten entfernt und erneut installiert)
- unload: deinstalliert ein Skript (wird kein Name angegeben, dann werden alle Skripten deinstalliert)
+autoload: startet automatisch alle Skripten aus dem "autoload" Verzeichnis
+ reload: ein Skript wird erneut gestartet (wird kein Name angegeben, dann werden alle Skripten beendet und erneut gestartet)
+ unload: beendet ein Skript (wird kein Name angegeben, dann werden alle Skripten beendet)
filename: Skript (Datei) welches geladen werden soll
name: Name eines Skriptes (der Name der in der "register" Funktion der Skript-API genutzt wird)
-q: unterdrückter Modus: Es werden keine Nachrichten ausgegeben
diff --git a/doc/de/autogen/user/weechat_commands.txt b/doc/de/autogen/user/weechat_commands.txt
index 6bd9617d1..4acc591f5 100644
--- a/doc/de/autogen/user/weechat_commands.txt
+++ b/doc/de/autogen/user/weechat_commands.txt
@@ -135,22 +135,22 @@ Beispiele:
rgb2term <rgb> [<limit>]
-o
- alias: add an alias for a color
- unalias: delete an alias
- color: color number (greater than or equal to 0, max depends on terminal, commonly 63 or 255)
- name: alias name for color (for example: "orange")
- reset: reset all color pairs (required when no more color pairs are available if automatic reset is disabled, see option weechat.look.color_pairs_auto_reset)
-term2rgb: convert a terminal color (0-255) to RGB color
-rgb2term: convert a RGB color to terminal color (0-255)
- limit: number of colors to use in terminal table (starting from 0); default is 256
- -o: send terminal/colors info to current buffer as input
-
-Without argument, this command displays colors in a new buffer.
-
-Examples:
- add alias "orange" for color 214:
+ alias: weist einer Farbzahl einen Namen zu
+unalias: entfernt einen Namen
+ color: Farbnummer (>= 0, maximale Anzahl ist abhängig vom Terminal, üblicherweise 63 oder 255 Farben)
+ name: Aliasname für eine Farbe (zum Beispiel: "orange")
+ reset: setzt alle Farbpaarungen zurück (nützlich falls keine Farbpaarung mehr verfügbar sein sollte und die automatische Reset-Option deaktiviert ist, siehe Option: weechat.look.color_pairs_auto_reset)
+term2rgb: konvertiert eine Terminalfarbe (0-255) in eine RGB Farbe
+rgb2term: konvertiert eine RGB Farbe in eine Terminalfarbe (0-255)
+ limit: Anzahl an Farben die aus der Terminalpalette genutzt werden sollen (beginnend von 0); Standardwert: 256
+ -o: sendet Terminal-/Farbinformationen in den aktuellen Buffer
+
+Ohne Angabe von Argumenten wird in einem separaten Buffer die darstellbare Farbpalette angezeigt.
+
+Beispiele:
+ der Farbe 214 wird das Alias "orange" zugeordnet:
/color alias 214 orange
- delete color 214:
+ löscht die Farbe 214:
/color unalias 214
----
@@ -550,7 +550,7 @@ Beispiele:
----
[[command_weechat_plugin]]
-[command]*`plugin`* Erweiterungen verwalten (auflisten/installieren/deinstallieren)::
+[command]*`plugin`* Erweiterungen verwalten (auflisten/installieren/beenden)::
----
/plugin list|listfull [<name>]
@@ -563,8 +563,8 @@ Beispiele:
listfull: detaillierte Auflistung aller installierten Erweiterungen
load: installiert eine Erweiterung
autoload: installiert automatisch alle Erweiterungen aus dem System- oder Benutzerverzeichnis
- reload: installiert eine Erweiterung erneut (falls kein Name angegeben wird, werden alle Erweiterungen entfernt und neu installiert)
- unload: deinstalliere eine oder alle Erweiterungen (wird kein Name angegeben dann werden alle Erweiterung entfernt)
+ reload: startet eine Erweiterung erneut (falls kein Name angegeben wird, werden alle Erweiterungen beendet und neu gestartet)
+ unload: beendet eine oder alle Erweiterungen (wird kein Name angegeben dann werden alle Erweiterung beendet)
filename: Erweiterung (Datei) welche installiert werden soll
name: Name einer Erweiterung
arguments: Argumente die der Erweiterung beim installieren übergeben werden sollen
diff --git a/doc/de/autogen/user/weechat_options.txt b/doc/de/autogen/user/weechat_options.txt
index 139ad381c..644b97bd2 100644
--- a/doc/de/autogen/user/weechat_options.txt
+++ b/doc/de/autogen/user/weechat_options.txt
@@ -559,7 +559,7 @@
** Werte: beliebige Zeichenkette (Standardwert: `""`)
* [[option_weechat.look.hotlist_add_conditions]] *weechat.look.hotlist_add_conditions*
-** Beschreibung: `Bedingungen um einen Buffer in die Hotlist einzutragen (sofern der Notify-Level für den Buffer korrekt ist); es können folgende Bedingungen genutzt werden: "window" (zur Zeit genutzter Window-Pointer), "buffer" (Buffer-Pointer welcher zur Hotlist hinzugefügt werden soll), "priority" (0 = niedrig, 1 = Nachricht, 2 = Privat, 3 = Highlight); standardmäßig wird ein Buffer in die Hotlist eingetragen falls man abwesend it, oder falls der Buffer nicht auf dem Bildschirm sichtbar ist (er wird nicht in einem Fenster dargestellt)`
+** Beschreibung: `Bedingungen um einen Buffer in die Hotlist einzutragen (sofern der Notify-Level für den Buffer korrekt ist); es können folgende Bedingungen genutzt werden: "window" (zur Zeit genutzter Window-Pointer), "buffer" (Buffer-Pointer welcher zur Hotlist hinzugefügt werden soll), "priority" (0 = niedrig, 1 = Nachricht, 2 = Privat, 3 = Highlight); standardmäßig wird ein Buffer in die Hotlist eingetragen falls man abwesend sein sollte oder falls der Buffer nicht auf dem Bildschirm sichtbar ist (Buffer wird nicht in einem Fenster dargestellt)`
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette (Standardwert: `"${away} || ${buffer.num_displayed} == 0"`)
@@ -919,7 +919,7 @@
** Werte: beliebige Zeichenkette (Standardwert: `"%h/plugins"`)
* [[option_weechat.plugin.save_config_on_unload]] *weechat.plugin.save_config_on_unload*
-** Beschreibung: `speichert Konfigurationen, falls Erweiterungen deinstalliert werden`
+** Beschreibung: `speichert Konfigurationen, falls Erweiterungen beendet werden`
** Typ: boolesch
** Werte: on, off (Standardwert: `on`)
diff --git a/doc/en/autogen/user/exec_commands.txt b/doc/en/autogen/user/exec_commands.txt
index 3134547d5..6f29d8555 100644
--- a/doc/en/autogen/user/exec_commands.txt
+++ b/doc/en/autogen/user/exec_commands.txt
@@ -38,7 +38,7 @@
command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output
id: command identifier: either its number or name (if set with "-name xxx")
-in: send text on standard input of process
--inclose: same a -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
+-inclose: same as -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
-signal: send a signal to the process; the signal can be an integer or one of these names: hup, int, quit, kill, term, usr1, usr2
-kill: alias of "-signal <id> kill"
-killall: kill all running processes
diff --git a/doc/it/autogen/user/exec_commands.txt b/doc/it/autogen/user/exec_commands.txt
index 3134547d5..6f29d8555 100644
--- a/doc/it/autogen/user/exec_commands.txt
+++ b/doc/it/autogen/user/exec_commands.txt
@@ -38,7 +38,7 @@
command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output
id: command identifier: either its number or name (if set with "-name xxx")
-in: send text on standard input of process
--inclose: same a -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
+-inclose: same as -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
-signal: send a signal to the process; the signal can be an integer or one of these names: hup, int, quit, kill, term, usr1, usr2
-kill: alias of "-signal <id> kill"
-killall: kill all running processes
diff --git a/doc/ja/autogen/user/exec_commands.txt b/doc/ja/autogen/user/exec_commands.txt
index 3134547d5..6f29d8555 100644
--- a/doc/ja/autogen/user/exec_commands.txt
+++ b/doc/ja/autogen/user/exec_commands.txt
@@ -38,7 +38,7 @@
command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output
id: command identifier: either its number or name (if set with "-name xxx")
-in: send text on standard input of process
--inclose: same a -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
+-inclose: same as -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
-signal: send a signal to the process; the signal can be an integer or one of these names: hup, int, quit, kill, term, usr1, usr2
-kill: alias of "-signal <id> kill"
-killall: kill all running processes
diff --git a/doc/pl/autogen/user/exec_commands.txt b/doc/pl/autogen/user/exec_commands.txt
index 3134547d5..6f29d8555 100644
--- a/doc/pl/autogen/user/exec_commands.txt
+++ b/doc/pl/autogen/user/exec_commands.txt
@@ -38,7 +38,7 @@
command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output
id: command identifier: either its number or name (if set with "-name xxx")
-in: send text on standard input of process
--inclose: same a -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
+-inclose: same as -in, but stdin is closed after (and text is optional: without text, the stdin is just closed)
-signal: send a signal to the process; the signal can be an integer or one of these names: hup, int, quit, kill, term, usr1, usr2
-kill: alias of "-signal <id> kill"
-killall: kill all running processes
diff --git a/po/cs.po b/po/cs.po
index 898eb1d5d..581b30123 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:06+0100\n"
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -4664,7 +4664,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/de.po b/po/de.po
index aeab42e3d..e9befe208 100644
--- a/po/de.po
+++ b/po/de.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
-"PO-Revision-Date: 2014-03-15 19:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
+"PO-Revision-Date: 2014-03-15 19:21+0100\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <weechatter@arcor.de>\n"
"Language: de_DE\n"
@@ -45,11 +45,11 @@ msgid "max chars"
msgstr "maximale Zeichenanzahl"
msgid ""
-"a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)"
-"green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal "
-"color number or an alias; attributes are allowed before color (for text "
-"color only, not background): \"*\" for bold, \"!\" for reverse, \"/\" for "
-"italic, \"_\" for underline"
+"a WeeChat color name (default, black, (dark)gray, white, (light)red, "
+"(light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a "
+"terminal color number or an alias; attributes are allowed before color (for "
+"text color only, not background): \"*\" for bold, \"!\" for reverse, \"/\" "
+"for italic, \"_\" for underline"
msgstr ""
"ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, "
"(light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine "
@@ -1262,7 +1262,7 @@ msgstr ""
"mehr verfügbar sein sollte und die automatische Reset-Option deaktiviert "
"ist, siehe Option: weechat.look.color_pairs_auto_reset)\n"
"term2rgb: konvertiert eine Terminalfarbe (0-255) in eine RGB Farbe\n"
-"rgb2term: konvertiert eine RGB Farbe in eine Terminalfarbe (0-255) \n"
+"rgb2term: konvertiert eine RGB Farbe in eine Terminalfarbe (0-255)\n"
" limit: Anzahl an Farben die aus der Terminalpalette genutzt werden sollen "
"(beginnend von 0); Standardwert: 256\n"
" -o: sendet Terminal-/Farbinformationen in den aktuellen Buffer\n"
@@ -5153,9 +5153,9 @@ msgid ""
"suggestions in all languages)"
msgstr ""
"legt die Anzahl an Vorschlägen, für ein falsch geschriebenes Wort, fest. Die "
-"Vorschläge werden mittels der Bar-Item \"aspell_suggest\", für die jeweilige"
-"(n) Sprache(n), die für den Buffer augewählt wurden, angezeigt (-1 = "
-"deaktiviert die Funktion, 0 = zeigt alle verfügbaren Vorschläge, für alle "
+"Vorschläge werden mittels der Bar-Item \"aspell_suggest\", für die "
+"jeweilige(n) Sprache(n), die für den Buffer augewählt wurden, angezeigt (-1 "
+"= deaktiviert die Funktion, 0 = zeigt alle verfügbaren Vorschläge, für alle "
"ausgewählten Sprachen, an)"
msgid ""
@@ -5374,7 +5374,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
@@ -5418,8 +5418,8 @@ msgstr ""
" -color: es wird eine der folgenden Aktionen bei ANSI Zeichenkodierungen in "
"der Ausgabe durchgeführt:\n"
" ansi: ANSI-Kodierung wird beibehalten\n"
-" decode: konvertiert ANSI-Farben zu WeeChat/IRC Farben"
-"(Standardverhalten)\n"
+" decode: konvertiert ANSI-Farben zu WeeChat/IRC "
+"Farben(Standardverhalten)\n"
" strip: ANSI-Farben werden entfernt\n"
" -rc: der Rückgabewert wird ausgegeben (Standardverhalten)\n"
" -norc: der Rückgabewert wird unterdrückt\n"
@@ -6062,8 +6062,8 @@ msgstr ""
"werden)\n"
" - Hostname/Port oder IP/Port (damit wird lediglich ein "
"TEMPORÄRER Server erstellt), Port 6667 wird standardmäßig verwendet\n"
-" - URL mit folgendem Format: irc[6][s]://[nickname[:password]@]"
-"irc.example.org[:port][/#channel1][,#channel2[...]]\n"
+" - URL mit folgendem Format: irc[6][s]://[nickname[:"
+"password]@]irc.example.org[:port][/#channel1][,#channel2[...]]\n"
" option: legt Option für den Server fest (die Boolean-Optionen können "
"weggelassen werden)\n"
" nooption: deaktiviert eine Boolean Option (Beispiel: -nossl)\n"
@@ -11207,8 +11207,8 @@ msgid ""
"Examples (you can also look at default triggers with /trigger listdefault):\n"
" add text attributes *bold*, _underline_ and /italic/ (only in user "
"messages):\n"
-" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"==\\*"
-"(\\S+)\\*==*${color:bold}$1${color:-bold}*== ==_(\\S+)_==_${color:"
+" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"=="
+"\\*(\\S+)\\*==*${color:bold}$1${color:-bold}*== ==_(\\S+)_==_${color:"
"underline}$1${color:-underline}_== ==/(\\S+)/==/${color:italic}$1${color:-"
"italic}/\"\n"
" hide nicklist bar on small terminals:\n"
@@ -11291,8 +11291,8 @@ msgstr ""
"trigger listdefault\" anzeigen lassen):\n"
" fügt einer Nachricht die Textattribute *fett*, _unterstrichen_ und /"
"kursiv/ hinzu:\n"
-" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"==\\*"
-"(\\S+)\\*==*${color:bold}$1${color:-bold}*== ==_(\\S+)_==_${color:"
+" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"=="
+"\\*(\\S+)\\*==*${color:bold}$1${color:-bold}*== ==_(\\S+)_==_${color:"
"underline}$1${color:-underline}_== ==/(\\S+)/==/${color:italic}$1${color:-"
"italic}/\"\n"
" verbirgt die Nicklist auf kleineren Terminals:\n"
diff --git a/po/es.po b/po/es.po
index 370fd40c0..2d8fab657 100644
--- a/po/es.po
+++ b/po/es.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -4879,7 +4879,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/fr.po b/po/fr.po
index 3c3892cb8..a9515f5a2 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
-"PO-Revision-Date: 2014-03-15 15:07+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
+"PO-Revision-Date: 2014-03-15 19:18+0100\n"
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: fr\n"
@@ -5244,7 +5244,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/hu.po b/po/hu.po
index d78cf7d56..7c27b7009 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -4253,7 +4253,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/it.po b/po/it.po
index 3350d4274..a95a363fb 100644
--- a/po/it.po
+++ b/po/it.po
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -5017,7 +5017,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/ja.po b/po/ja.po
index 5a72a32e9..4901966a1 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/WeeChat>\n"
@@ -5024,7 +5024,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/pl.po b/po/pl.po
index 377989f5b..d0d38e687 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -5136,7 +5136,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index c6978dcc2..eadb3cf36 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -4720,7 +4720,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/ru.po b/po/ru.po
index b50ef856d..791cfac5b 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -4286,7 +4286,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/tr.po b/po/tr.po
index e012d68b1..64d303bbb 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2014-03-10 21:07+0100\n"
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -3842,7 +3842,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/po/weechat.pot b/po/weechat.pot
index 0f24099bd..b32e70021 100644
--- a/po/weechat.pot
+++ b/po/weechat.pot
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-03-15 15:06+0100\n"
+"POT-Creation-Date: 2014-03-15 19:18+0100\n"
"PO-Revision-Date: 2013-02-14 18:20+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -3842,7 +3842,7 @@ msgid ""
" id: command identifier: either its number or name (if set with \"-name "
"xxx\")\n"
" -in: send text on standard input of process\n"
-"-inclose: same a -in, but stdin is closed after (and text is optional: "
+"-inclose: same as -in, but stdin is closed after (and text is optional: "
"without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer or one "
"of these names: hup, int, quit, kill, term, usr1, usr2\n"
diff --git a/src/plugins/exec/exec-command.c b/src/plugins/exec/exec-command.c
index 5ad47c9de..ea919cc6d 100644
--- a/src/plugins/exec/exec-command.c
+++ b/src/plugins/exec/exec-command.c
@@ -727,7 +727,7 @@ exec_command_init ()
" id: command identifier: either its number or name (if set "
"with \"-name xxx\")\n"
" -in: send text on standard input of process\n"
- "-inclose: same a -in, but stdin is closed after (and text is "
+ "-inclose: same as -in, but stdin is closed after (and text is "
"optional: without text, the stdin is just closed)\n"
" -signal: send a signal to the process; the signal can be an integer "
"or one of these names: hup, int, quit, kill, term, usr1, usr2\n"