diff options
Diffstat (limited to 'doc/pl/weechat_scripting.pl.adoc')
-rw-r--r-- | doc/pl/weechat_scripting.pl.adoc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/pl/weechat_scripting.pl.adoc b/doc/pl/weechat_scripting.pl.adoc index fe542fe53..8d9a9b665 100644 --- a/doc/pl/weechat_scripting.pl.adoc +++ b/doc/pl/weechat_scripting.pl.adoc @@ -342,7 +342,7 @@ Możesz zrobić dowiązanie w katalogu _język/autoload_ jeśli chcesz automatyc Na przykład dla Pythona: ---- -$ cd ~/.weechat/python/autoload +$ cd ~/.local/share/weechat/python/autoload $ ln -s ../skrypt.py ---- @@ -1375,10 +1375,11 @@ weechat.prnt("", "Version %s" % weechat.info_get("version", "")) [[infos_other]] ==== Inne informacje +// TRANSLATION MISSING [source,python] ---- -# katalog domowy WeeChat, na przykład: "/home/xxxx/.weechat" -weechat.prnt("", "Katalog domowy WeeChat: %s" % weechat.info_get("weechat_dir", "")) +# WeeChat config directory, for example: "/home/user/.config/weechat" +weechat.prnt("", "WeeChat config dir: %s" % weechat.info_get("weechat_config_dir", "")) # nieaktywność klawiatury weechat.prnt("", "Nieaktywny od %s sekund" % weechat.info_get("inactivity", "")) |