summaryrefslogtreecommitdiff
path: root/doc/pl/autogen/user/python_commands.adoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2017-12-23 20:32:03 +0100
committerSébastien Helleu <flashcode@flashtux.org>2017-12-23 20:35:30 +0100
commitc4626bc08ab972625cd8ada2a05cfc3b8436a63c (patch)
treeb409176768b49bc4ebe5cea5e277127c0ca9374f /doc/pl/autogen/user/python_commands.adoc
parentd7122cd6be8095d31a93e30e361ff1bcb31811bc (diff)
downloadweechat-c4626bc08ab972625cd8ada2a05cfc3b8436a63c.zip
scripts: add option "version" in script commands (closes #1075)
Diffstat (limited to 'doc/pl/autogen/user/python_commands.adoc')
-rw-r--r--doc/pl/autogen/user/python_commands.adoc28
1 files changed, 15 insertions, 13 deletions
diff --git a/doc/pl/autogen/user/python_commands.adoc b/doc/pl/autogen/user/python_commands.adoc
index 289fa0ad9..3adf703b2 100644
--- a/doc/pl/autogen/user/python_commands.adoc
+++ b/doc/pl/autogen/user/python_commands.adoc
@@ -6,20 +6,22 @@
* `+python+`: list/load/unload skrypt
----
-/python list|listfull [<nazwa>]
- load [-q] <nazwapliku>
+/python list|listfull [<name>]
+ load [-q] <filename>
autoload
- reload|unload [-q] [<nazwa>]
+ reload|unload [-q] [<name>]
+ version
- list: lista załadowanych wtyczek
-listfull: lista załadowanych wtyczek (szczegółowa)
- load: ładuje wtyczkę
-autoload: automatycznie ładuje wtyczki w katalogu systemowym lub użytkownika
- reload: przeładuje pojedynczą wtyczkę (jeśli nie podano nazwy, wyładuje wszystkie wtyczki, następnie automatycznie załaduje wtyczki)
- unload: wyładowuje jedną albo wszystkie wtyczki
-nazwa_pliku: skrypt (plik) do załadowania
- nazwa: nazwa skryptu (nazwa użyta do wywołania funkcji "register")
- -q: tryb cichy: nie wyświetla wiadomości
+ list: list loaded scripts
+listfull: list loaded scripts (verbose)
+ load: load a script
+autoload: load all scripts in "autoload" directory
+ reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory)
+ unload: unload a script (if no name given, unload all scripts)
+filename: script (file) to load
+ name: a script name (name used in call to "register" function)
+ -q: quiet mode: do not display messages
+ version: display the version of interpreter used
-Bez argumentów ta komenda wyświetli wszystkie załadowane wtyczki.
+Without argument, this command lists all loaded scripts.
----