summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-12-04 13:50:54 +0100
committerSebastien Helleu <flashcode@flashtux.org>2010-12-04 13:50:54 +0100
commit4dcbb1014d38f853d945627689063caf949e8b56 (patch)
treeb877df57581edb044b28ae068725db030c9c6b84
parentc7d10d88ae0314a49439b87efcdd9f4d9ec6dc6e (diff)
downloadweechat-4dcbb1014d38f853d945627689063caf949e8b56.zip
Fix typos in scripting guide
-rw-r--r--doc/de/weechat_scripting.de.txt2
-rw-r--r--doc/en/weechat_scripting.en.txt2
-rw-r--r--doc/fr/weechat_scripting.fr.txt8
-rw-r--r--doc/it/weechat_scripting.it.txt2
4 files changed, 7 insertions, 7 deletions
diff --git a/doc/de/weechat_scripting.de.txt b/doc/de/weechat_scripting.de.txt
index f63adbfe9..544b70800 100644
--- a/doc/de/weechat_scripting.de.txt
+++ b/doc/de/weechat_scripting.de.txt
@@ -582,7 +582,7 @@ def kernel_process_cb(data, command, rc, stdout, stderr):
weechat.prnt("", kernel_txt)
return weechat.WEECHAT_RC_OK
-weechat.hook_process("python -c \"import urllib; " \
+weechat.hook_process("python -c \"import urllib; "
"print urllib.urlopen('http://www.kernel.org/kdist/finger_banner').read()\"",
10 * 1000, "kernel_process_cb", "")
----------------------------------------
diff --git a/doc/en/weechat_scripting.en.txt b/doc/en/weechat_scripting.en.txt
index 67123fa07..45ee03d99 100644
--- a/doc/en/weechat_scripting.en.txt
+++ b/doc/en/weechat_scripting.en.txt
@@ -568,7 +568,7 @@ def kernel_process_cb(data, command, rc, stdout, stderr):
weechat.prnt("", kernel_txt)
return weechat.WEECHAT_RC_OK
-weechat.hook_process("python -c \"import urllib; " \
+weechat.hook_process("python -c \"import urllib; "
"print urllib.urlopen('http://www.kernel.org/kdist/finger_banner').read()\"",
10 * 1000, "kernel_process_cb", "")
----------------------------------------
diff --git a/doc/fr/weechat_scripting.fr.txt b/doc/fr/weechat_scripting.fr.txt
index d7448f324..6ac533137 100644
--- a/doc/fr/weechat_scripting.fr.txt
+++ b/doc/fr/weechat_scripting.fr.txt
@@ -156,7 +156,7 @@ chaque fonction de l'API : prototype, paramètres, valeurs de retour, exemples.
Il est important de bien faire la différence entre une 'extension' et un
'script' : une 'extension' est un fichier binaire compilé et chargé avec la
commande `/plugin`, tandis qu'un 'script' est un fichier texte chargé par une
-extension comme 'pyhton' par la commande `/python`.
+extension comme 'python' par la commande `/python`.
Quand votre script 'test.py' appelle une fonction de l'API WeeChat, le chemin
est le suivant :
@@ -584,7 +584,7 @@ def kernel_process_cb(data, command, rc, stdout, stderr):
weechat.prnt("", kernel_txt)
return weechat.WEECHAT_RC_OK
-weechat.hook_process("python -c \"import urllib; " \
+weechat.hook_process("python -c \"import urllib; "
"print urllib.urlopen('http://www.kernel.org/kdist/finger_banner').read()\"",
10 * 1000, "kernel_process_cb", "")
----------------------------------------
@@ -726,8 +726,8 @@ Un message mal formé peut provoquer un plantage de WeeChat ou de sérieux
problèmes !
[[irc_parse_message]]
-Parse message
-^^^^^^^^^^^^^
+Analyser un message
+^^^^^^^^^^^^^^^^^^^
_Nouveau dans la version 0.3.4._
diff --git a/doc/it/weechat_scripting.it.txt b/doc/it/weechat_scripting.it.txt
index 54d33971a..c624402fd 100644
--- a/doc/it/weechat_scripting.it.txt
+++ b/doc/it/weechat_scripting.it.txt
@@ -583,7 +583,7 @@ def kernel_process_cb(data, command, rc, stdout, stderr):
weechat.prnt("", kernel_txt)
return weechat.WEECHAT_RC_OK
-weechat.hook_process("python -c \"import urllib; " \
+weechat.hook_process("python -c \"import urllib; "
"print urllib.urlopen('http://www.kernel.org/kdist/finger_banner').read()\"",
10 * 1000, "kernel_process_cb", "")
----------------------------------------