summaryrefslogtreecommitdiff
path: root/doc/de/weechat_scripting.de.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/de/weechat_scripting.de.txt')
-rw-r--r--doc/de/weechat_scripting.de.txt21
1 files changed, 19 insertions, 2 deletions
diff --git a/doc/de/weechat_scripting.de.txt b/doc/de/weechat_scripting.de.txt
index 6712b53c3..832983b42 100644
--- a/doc/de/weechat_scripting.de.txt
+++ b/doc/de/weechat_scripting.de.txt
@@ -163,8 +163,20 @@ weechat::print "" "Hallo, von einem tcl Skript!"
Laden von Skripten
~~~~~~~~~~~~~~~~~~
-Der Befehl zum Laden von Skripten ist davon abhängig welche Skriptsprache
-genutzt werden soll:
+// TRANSLATION MISSING
+It is recommended to use the "script" plugin to load scripts, for example:
+
+----------------------------------------
+/script load script.py
+/script load script.pl
+/script load script.rb
+/script load script.lua
+/script load script.tcl
+/script load script.scm
+----------------------------------------
+
+// TRANSLATION MISSING
+Each language has also its own command:
----------------------------------------
/python load python/skript.py
@@ -185,6 +197,11 @@ $ cd ~/.weechat/python/autoload
$ ln -s ../script.py
----------------------------------------
+// TRANSLATION MISSING
+[NOTE]
+When installing a script with command `/script install` the link in 'autoload'
+directory is automatically created.
+
[[differences_with_c_api]]
Unterschiede zur C API
----------------------