diff options
Diffstat (limited to 'doc')
46 files changed, 72 insertions, 314 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 8d89b8509..aa54a14c4 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -48,6 +48,69 @@ if(ENABLE_MAN OR ENABLE_DOC) -a autogendir="${CMAKE_CURRENT_BINARY_DIR}/autogen" ) + # asciidoctor arguments for user's guide + set(ASCIIDOCTOR_USER_ARGS + -a toc=left + -a toclevels=4 + -a sectnums + -a sectnumlevels=3 + -a docinfo1 + ) + + # asciidoctor arguments for plugin API reference + set(ASCIIDOCTOR_PLUGIN_API_ARGS + -a toc=left + -a toclevels=4 + -a sectnums + -a sectnumlevels=3 + -a docinfo1 + ) + + # asciidoctor arguments for scripting guide + set(ASCIIDOCTOR_SCRIPTING_ARGS + -a toc=left + -a toclevels=4 + -a sectnums + -a sectnumlevels=3 + -a docinfo1 + ) + + # asciidoctor arguments for FAQ + set(ASCIIDOCTOR_FAQ_ARGS + -a toc=left + -a toclevels=2 + -a sectnums + -a sectnumlevels=2 + -a docinfo1 + ) + + # asciidoctor arguments for quickstart + set(ASCIIDOCTOR_QUICKSTART_ARGS + -a toc=left + -a toclevels=1 + -a sectnums + -a sectnumlevels=1 + -a docinfo1 + ) + + # asciidoctor arguments for relay protocol + set(ASCIIDOCTOR_RELAY_ARGS + -a toc=left + -a toclevels=3 + -a sectnums + -a sectnumlevels=3 + -a docinfo1 + ) + + # asciidoctor arguments for developer's guide + set(ASCIIDOCTOR_DEV_ARGS + -a toc=left + -a toclevels=3 + -a sectnums + -a sectnumlevels=3 + -a docinfo1 + ) + # sed arguments used to replace links in ChangeLog and release notes set(SED_LINKS_ARGS -e "'s/issue #\\([0-9][0-9]*\\)/https:\\/\\/github.com\\/weechat\\/weechat\\/issues\\/\\1[issue #\\1^]/g'" @@ -173,7 +236,7 @@ if(ENABLE_MAN OR ENABLE_DOC) foreach(lang ${USER_LANG}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/weechat_user.${lang}.html" - COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} -o "weechat_user.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_user.${lang}.adoc" + COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} ${ASCIIDOCTOR_USER_ARGS} -o "weechat_user.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_user.${lang}.adoc" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_user.${lang}.adoc" @@ -193,7 +256,7 @@ if(ENABLE_MAN OR ENABLE_DOC) foreach(lang ${PLUGIN_API_LANG}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/weechat_plugin_api.${lang}.html" - COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} -o "weechat_plugin_api.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_plugin_api.${lang}.adoc" + COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} ${ASCIIDOCTOR_PLUGIN_API_ARGS} -o "weechat_plugin_api.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_plugin_api.${lang}.adoc" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_plugin_api.${lang}.adoc" @@ -216,7 +279,7 @@ if(ENABLE_MAN OR ENABLE_DOC) foreach(lang ${SCRIPTING_LANG}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/weechat_scripting.${lang}.html" - COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} -o "weechat_scripting.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_scripting.${lang}.adoc" + COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} ${ASCIIDOCTOR_SCRIPTING_ARGS} -o "weechat_scripting.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_scripting.${lang}.adoc" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_scripting.${lang}.adoc" @@ -230,7 +293,7 @@ if(ENABLE_MAN OR ENABLE_DOC) foreach(lang ${FAQ_LANG}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/weechat_faq.${lang}.html" - COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} -o "weechat_faq.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_faq.${lang}.adoc" + COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} ${ASCIIDOCTOR_FAQ_ARGS} -o "weechat_faq.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_faq.${lang}.adoc" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_faq.${lang}.adoc" @@ -244,7 +307,7 @@ if(ENABLE_MAN OR ENABLE_DOC) foreach(lang ${QUICKSTART_LANG}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/weechat_quickstart.${lang}.html" - COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} -o "weechat_quickstart.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_quickstart.${lang}.adoc" + COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} ${ASCIIDOCTOR_QUICKSTART_ARGS} -o "weechat_quickstart.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_quickstart.${lang}.adoc" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_quickstart.${lang}.adoc" @@ -258,7 +321,7 @@ if(ENABLE_MAN OR ENABLE_DOC) foreach(lang ${RELAY_LANG}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/weechat_relay_protocol.${lang}.html" - COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} -o "weechat_relay_protocol.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_relay_protocol.${lang}.adoc" + COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} ${ASCIIDOCTOR_RELAY_ARGS} -o "weechat_relay_protocol.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_relay_protocol.${lang}.adoc" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_relay_protocol.${lang}.adoc" @@ -272,7 +335,7 @@ if(ENABLE_MAN OR ENABLE_DOC) foreach(lang ${DEV_LANG}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/weechat_dev.${lang}.html" - COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} -o "weechat_dev.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_dev.${lang}.adoc" + COMMAND "${ASCIIDOCTOR_EXECUTABLE}" ARGS ${ASCIIDOCTOR_ARGS} ${ASCIIDOCTOR_DEV_ARGS} -o "weechat_dev.${lang}.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_dev.${lang}.adoc" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_dev.${lang}.adoc" diff --git a/doc/cs/weechat_quickstart.cs.adoc b/doc/cs/weechat_quickstart.cs.adoc index b390a0bd4..9bee9b3c8 100644 --- a/doc/cs/weechat_quickstart.cs.adoc +++ b/doc/cs/weechat_quickstart.cs.adoc @@ -2,10 +2,6 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: cs -:toc: left -:sectnums: -:docinfo1: - [[start]] == Spuštění WeeChatu diff --git a/doc/de/weechat_faq.de.adoc b/doc/de/weechat_faq.de.adoc index c0a9a7e85..dc4bbb85e 100644 --- a/doc/de/weechat_faq.de.adoc +++ b/doc/de/weechat_faq.de.adoc @@ -2,22 +2,13 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc: left :toc-title: Inhaltsverzeichnis -:toclevels: 2 -:sectnums: -:sectnumlevels: 2 -:docinfo1: - Übersetzer: * Juergen Descher <jhdl@gmx.net>, 2009 * Nils Görs <weechatter@arcor.de>, 2009-2022 -toc::[] - - [[general]] == Allgemein diff --git a/doc/de/weechat_quickstart.de.adoc b/doc/de/weechat_quickstart.de.adoc index 6dfc4f53a..120acb32d 100644 --- a/doc/de/weechat_quickstart.de.adoc +++ b/doc/de/weechat_quickstart.de.adoc @@ -2,11 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc: left :toc-title: Inhaltsverzeichnis -:sectnums: -:docinfo1: - Übersetzer: @@ -14,7 +10,6 @@ * Juergen Descher <jhdl@gmx.net>, 2009 * Nils Görs <weechatter@arcor.de>, 2009-2018 - [[start]] == Start von WeeChat diff --git a/doc/de/weechat_scripting.de.adoc b/doc/de/weechat_scripting.de.adoc index 5c2fcca3e..e1096e097 100644 --- a/doc/de/weechat_scripting.de.adoc +++ b/doc/de/weechat_scripting.de.adoc @@ -2,25 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc: left -:toclevels: 4 :toc-title: Inhaltsverzeichnis -:sectnums: -:sectnumlevels: 3 -:docinfo1: - Übersetzer: * Nils Görs <weechatter@arcor.de>, 2010-2016 - Diese Anleitung beschreibt den WeeChat Chat Client und ist Teil von WeeChat. Die neueste Version dieses Dokuments finden Sie unter https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Einleitung diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc index 65a60e25d..f13e45774 100644 --- a/doc/de/weechat_user.de.adoc +++ b/doc/de/weechat_user.de.adoc @@ -2,25 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc: left -:toclevels: 4 :toc-title: Inhaltsverzeichnis -:sectnums: -:sectnumlevels: 3 -:docinfo1: - Übersetzer: * Nils Görs <weechatter@arcor.de>, 2010-2022 - Diese Anleitung beschreibt den WeeChat Chat Client und ist Teil von WeeChat. Die neueste Version dieses Dokuments finden Sie unter https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Einleitung diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index fb08fe520..5298cd428 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -2,18 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en -:toc: left -:toclevels: 3 -:sectnums: -:docinfo1: - This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/en/weechat_faq.en.adoc b/doc/en/weechat_faq.en.adoc index 44a093729..2f7322f84 100644 --- a/doc/en/weechat_faq.en.adoc +++ b/doc/en/weechat_faq.en.adoc @@ -2,15 +2,6 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en -:toc: left -:toclevels: 2 -:sectnums: -:sectnumlevels: 2 -:docinfo1: - - -toc::[] - [[general]] == General diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index 02e749de3..ac7936173 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -2,19 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en -:toc: left -:toclevels: 4 -:sectnums: -:sectnumlevels: 3 -:docinfo1: - This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/en/weechat_quickstart.en.adoc b/doc/en/weechat_quickstart.en.adoc index cf03e39e3..cdb1dff47 100644 --- a/doc/en/weechat_quickstart.en.adoc +++ b/doc/en/weechat_quickstart.en.adoc @@ -2,10 +2,6 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en -:toc: left -:sectnums: -:docinfo1: - [[start]] == Start WeeChat diff --git a/doc/en/weechat_relay_protocol.en.adoc b/doc/en/weechat_relay_protocol.en.adoc index 13e192b9c..0fe44d2d9 100644 --- a/doc/en/weechat_relay_protocol.en.adoc +++ b/doc/en/weechat_relay_protocol.en.adoc @@ -2,11 +2,6 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en -:toc: left -:toclevels: 3 -:sectnums: -:docinfo1: - [[introduction]] == Introduction diff --git a/doc/en/weechat_scripting.en.adoc b/doc/en/weechat_scripting.en.adoc index ed5f0c84a..40251446c 100644 --- a/doc/en/weechat_scripting.en.adoc +++ b/doc/en/weechat_scripting.en.adoc @@ -2,19 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en -:toc: left -:toclevels: 4 -:sectnums: -:sectnumlevels: 3 -:docinfo1: - This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc index 1fe97d8ee..3dcba7e08 100644 --- a/doc/en/weechat_user.en.adoc +++ b/doc/en/weechat_user.en.adoc @@ -2,19 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en -:toc: left -:toclevels: 4 -:sectnums: -:sectnumlevels: 3 -:docinfo1: - This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/es/weechat_faq.es.adoc b/doc/es/weechat_faq.es.adoc index 96aec5893..068cc3bff 100644 --- a/doc/es/weechat_faq.es.adoc +++ b/doc/es/weechat_faq.es.adoc @@ -2,20 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: es -:toc: left -:toclevels: 2 -:sectnums: -:sectnumlevels: 2 -:docinfo1: +:toc-title: Índice Traductores * Victorhck <victorhck.mailbox.org>, 2021 - -toc::[] - - [[general]] == General diff --git a/doc/es/weechat_quickstart.es.adoc b/doc/es/weechat_quickstart.es.adoc index e4fdcf530..66b5d9341 100644 --- a/doc/es/weechat_quickstart.es.adoc +++ b/doc/es/weechat_quickstart.es.adoc @@ -2,17 +2,13 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: es -:toc: left -:sectnums: -:docinfo1: - +:toc-title: Índice Traductores: * Lázaro A. <uranio-235@myopera.com>, 2012 * Victorhck <victorhck@mailbox.org>, 2021 - [[start]] == Iniciar WeeChat diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index 54a9ab294..032f60007 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -2,12 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc: left -:toclevels: 3 :toc-title: Table des matières -:sectnums: -:docinfo1: - Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. @@ -15,7 +10,6 @@ partie de WeeChat. La dernière version de ce document peut être téléchargée sur https://weechat.org/doc/[cette page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/fr/weechat_faq.fr.adoc b/doc/fr/weechat_faq.fr.adoc index d242a363f..ed6ced911 100644 --- a/doc/fr/weechat_faq.fr.adoc +++ b/doc/fr/weechat_faq.fr.adoc @@ -2,16 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc: left :toc-title: Table des matières -:toclevels: 2 -:sectnums: -:sectnumlevels: 2 -:docinfo1: - - -toc::[] - == Général diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index 23a237e7b..ee1101d64 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -2,13 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc: left -:toclevels: 4 :toc-title: Table des matières -:sectnums: -:sectnumlevels: 3 -:docinfo1: - Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. @@ -16,7 +10,6 @@ partie de WeeChat. La dernière version de ce document peut être téléchargée sur https://weechat.org/doc/[cette page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/fr/weechat_quickstart.fr.adoc b/doc/fr/weechat_quickstart.fr.adoc index 2a5c07332..b955124e2 100644 --- a/doc/fr/weechat_quickstart.fr.adoc +++ b/doc/fr/weechat_quickstart.fr.adoc @@ -2,11 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc: left :toc-title: Table des matières -:sectnums: -:docinfo1: - [[start]] == Démarrer WeeChat diff --git a/doc/fr/weechat_relay_protocol.fr.adoc b/doc/fr/weechat_relay_protocol.fr.adoc index 5a4db926f..1bf9b8b90 100644 --- a/doc/fr/weechat_relay_protocol.fr.adoc +++ b/doc/fr/weechat_relay_protocol.fr.adoc @@ -2,12 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc: left -:toclevels: 3 :toc-title: Table des matières -:sectnums: -:docinfo1: - [[introduction]] == Introduction diff --git a/doc/fr/weechat_scripting.fr.adoc b/doc/fr/weechat_scripting.fr.adoc index baafa65a2..72c84f18a 100644 --- a/doc/fr/weechat_scripting.fr.adoc +++ b/doc/fr/weechat_scripting.fr.adoc @@ -2,13 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc: left -:toclevels: 4 :toc-title: Table des matières -:sectnums: -:sectnumlevels: 3 -:docinfo1: - Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. @@ -16,7 +10,6 @@ partie de WeeChat. La dernière version de ce document peut être téléchargée sur https://weechat.org/doc/[cette page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/fr/weechat_user.fr.adoc b/doc/fr/weechat_user.fr.adoc index 9ab66128a..8b144789c 100644 --- a/doc/fr/weechat_user.fr.adoc +++ b/doc/fr/weechat_user.fr.adoc @@ -2,13 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc: left -:toclevels: 4 :toc-title: Table des matières -:sectnums: -:sectnumlevels: 3 -:docinfo1: - Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. @@ -16,7 +10,6 @@ partie de WeeChat. La dernière version de ce document peut être téléchargée sur https://weechat.org/doc/[cette page ^↗^,window=_blank]. - [[introduction]] == Introduction diff --git a/doc/it/weechat_faq.it.adoc b/doc/it/weechat_faq.it.adoc index 4cf0cdf64..efce9e0cf 100644 --- a/doc/it/weechat_faq.it.adoc +++ b/doc/it/weechat_faq.it.adoc @@ -2,22 +2,13 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc: left :toc-title: Indice -:toclevels: 2 -:sectnums: -:sectnumlevels: 2 -:docinfo1: - // TRANSLATION MISSING Translators: * Marco Paolone <marcopaolone@gmail.com>, 2009-2013 -toc::[] - - [[general]] == Generale diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index 24eb0823f..7397fc9a1 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -2,20 +2,13 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc: left -:toclevels: 4 :toc-title: Indice -:sectnums: -:sectnumlevels: 3 -:docinfo1: - // TRANSLATION MISSING Translators: * Marco Paolone <marcopaolone@gmail.com>, 2010-2012 - Questo manuale documenta il client di chat WeeChat, ed è parte del programma stesso. @@ -23,7 +16,6 @@ del programma stesso. Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Introduzione diff --git a/doc/it/weechat_quickstart.it.adoc b/doc/it/weechat_quickstart.it.adoc index f0ddf4937..7335987de 100644 --- a/doc/it/weechat_quickstart.it.adoc +++ b/doc/it/weechat_quickstart.it.adoc @@ -2,18 +2,13 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc: left :toc-title: Indice -:sectnums: -:docinfo1: - Traduttori: * Marco Paolone <marcopaolone@gmail.com>, 2009-2013 * Mattia Ronchi <ronchimattia03@gmail.com>, 2023 - [[start]] == Avvio di WeeChat diff --git a/doc/it/weechat_scripting.it.adoc b/doc/it/weechat_scripting.it.adoc index 95e703e9d..6416a22e4 100644 --- a/doc/it/weechat_scripting.it.adoc +++ b/doc/it/weechat_scripting.it.adoc @@ -2,20 +2,13 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc: left -:toclevels: 4 :toc-title: Indice -:sectnums: -:sectnumlevels: 3 -:docinfo1: - // TRANSLATION MISSING Translators: * Marco Paolone <marcopaolone@gmail.com>, 2010-2013 - Questo manuale documenta il client di chat WeeChat, ed è parte del programma stesso. @@ -23,7 +16,6 @@ del programma stesso. Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Introduzione diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc index 070503ffc..ae271e56b 100644 --- a/doc/it/weechat_user.it.adoc +++ b/doc/it/weechat_user.it.adoc @@ -2,20 +2,13 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc: left -:toclevels: 4 :toc-title: Indice -:sectnums: -:sectnumlevels: 3 -:docinfo1: - // TRANSLATION MISSING Translators: * Marco Paolone <marcopaolone@gmail.com>, 2009-2012 - Questo manuale documenta il client di chat WeeChat, ed è parte del programma stesso. @@ -23,7 +16,6 @@ del programma stesso. Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == Introduzione diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index d0b9b5ba5..12f3b718f 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -2,25 +2,18 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc: left -:toclevels: 3 :toc-title: 目次 -:sectnums: -:docinfo1: - 翻訳者: * Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2019 - このマニュアルは WeeChat チャットクライアントについての文書で、これは WeeChat の一部です。 // TRANSLATION MISSING Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == はじめに diff --git a/doc/ja/weechat_faq.ja.adoc b/doc/ja/weechat_faq.ja.adoc index 606852ace..00d19abd5 100644 --- a/doc/ja/weechat_faq.ja.adoc +++ b/doc/ja/weechat_faq.ja.adoc @@ -2,21 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc: left :toc-title: 目次 -:toclevels: 2 -:sectnums: -:sectnumlevels: 2 -:docinfo1: - 翻訳者: * Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2019 -toc::[] - - [[general]] == 一般 diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 418db701d..f4097473f 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -2,26 +2,18 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc: left -:toclevels: 4 :toc-title: 目次 -:sectnums: -:sectnumlevels: 3 -:docinfo1: - 翻訳者: * Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2019 - このマニュアルは WeeChat チャットクライアントについての文書で、WeeChat の一部です。 // TRANSLATION MISSING Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == はじめに diff --git a/doc/ja/weechat_quickstart.ja.adoc b/doc/ja/weechat_quickstart.ja.adoc index 59a3b8760..64bdd424e 100644 --- a/doc/ja/weechat_quickstart.ja.adoc +++ b/doc/ja/weechat_quickstart.ja.adoc @@ -2,17 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc: left :toc-title: 目次 -:sectnums: -:docinfo1: - 翻訳者: * Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2009-2019 - [[start]] == WeeChat を起動 diff --git a/doc/ja/weechat_relay_protocol.ja.adoc b/doc/ja/weechat_relay_protocol.ja.adoc index daa0db333..2165cb0f6 100644 --- a/doc/ja/weechat_relay_protocol.ja.adoc +++ b/doc/ja/weechat_relay_protocol.ja.adoc @@ -2,18 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc: left -:toclevels: 3 :toc-title: 目次 -:sectnums: -:docinfo1: - 翻訳者: * Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2019 - [[introduction]] == はじめに diff --git a/doc/ja/weechat_scripting.ja.adoc b/doc/ja/weechat_scripting.ja.adoc index b853379e9..3d24cd676 100644 --- a/doc/ja/weechat_scripting.ja.adoc +++ b/doc/ja/weechat_scripting.ja.adoc @@ -2,26 +2,18 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc: left -:toclevels: 4 :toc-title: 目次 -:sectnums: -:sectnumlevels: 3 -:docinfo1: - 翻訳者: * Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2019 - このマニュアルは WeeChat チャットクライアントについて説明しており、WeeChat の一部です。 // TRANSLATION MISSING Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == イントロダクション diff --git a/doc/ja/weechat_user.ja.adoc b/doc/ja/weechat_user.ja.adoc index a57b9d8ce..8353c7b34 100644 --- a/doc/ja/weechat_user.ja.adoc +++ b/doc/ja/weechat_user.ja.adoc @@ -2,26 +2,18 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc: left -:toclevels: 4 :toc-title: 目次 -:sectnums: -:sectnumlevels: 3 -:docinfo1: - 翻訳者: * Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2019 - このマニュアルは WeeChat チャットクライアントについての文書で、これは WeeChat の一部です。 // TRANSLATION MISSING Latest version of this document can be found on https://weechat.org/doc/[this page ^↗^,window=_blank]. - [[introduction]] == イントロダクション diff --git a/doc/pl/weechat_faq.pl.adoc b/doc/pl/weechat_faq.pl.adoc index 126f43874..68b7bd05e 100644 --- a/doc/pl/weechat_faq.pl.adoc +++ b/doc/pl/weechat_faq.pl.adoc @@ -2,21 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc: left :toc-title: Spis treści -:toclevels: 2 -:sectnums: -:sectnumlevels: 2 -:docinfo1: - Tłumaczenie: * Krzysztof Korościk <soltys1@gmail.com>, 2009-2022 -toc::[] - - [[general]] == Ogólne diff --git a/doc/pl/weechat_quickstart.pl.adoc b/doc/pl/weechat_quickstart.pl.adoc index be9368bfe..dace3606b 100644 --- a/doc/pl/weechat_quickstart.pl.adoc +++ b/doc/pl/weechat_quickstart.pl.adoc @@ -2,17 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc: left :toc-title: Spis treści -:sectnums: -:docinfo1: - Tłumaczenie: * Krzysztof Korościk <soltys1@gmail.com>, 2009-2022 - [[start]] == Uruchamianie WeeChat diff --git a/doc/pl/weechat_scripting.pl.adoc b/doc/pl/weechat_scripting.pl.adoc index f44c99e06..1476abdc0 100644 --- a/doc/pl/weechat_scripting.pl.adoc +++ b/doc/pl/weechat_scripting.pl.adoc @@ -2,25 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc: left -:toclevels: 4 :toc-title: Spis treści -:sectnums: -:sectnumlevels: 3 -:docinfo1: - Tłumaczenie: * Krzysztof Korościk <soltys1@gmail.com>, 2009-2022 - Ten dokument opisuje klienta rozmów WeeChat, który jest częścią WeeChat. Najnowszą wersję dokumentacji można znaleźć https://weechat.org/doc/[tutaj ^↗^,window=_blank]. - [[introduction]] == Wprowadzenie diff --git a/doc/pl/weechat_user.pl.adoc b/doc/pl/weechat_user.pl.adoc index 93a90f85a..35d787a99 100644 --- a/doc/pl/weechat_user.pl.adoc +++ b/doc/pl/weechat_user.pl.adoc @@ -2,25 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc: left -:toclevels: 4 :toc-title: Spis treści -:sectnums: -:sectnumlevels: 3 -:docinfo1: - Tłumaczenie: * Krzysztof Korościk <soltys1@gmail.com>, 2009-2022 - Ten dokument opisuje klienta rozmów WeeChat, będącego częścią WeeChat. Najnowszą wersję tego dokumentu można znaleźć na https://weechat.org/doc/[tej stronie ^↗^,window=_blank]. - [[introduction]] == Wprowadzenie diff --git a/doc/ru/weechat_quickstart.ru.adoc b/doc/ru/weechat_quickstart.ru.adoc index 4cd29bfc8..ca5f2eaa3 100644 --- a/doc/ru/weechat_quickstart.ru.adoc +++ b/doc/ru/weechat_quickstart.ru.adoc @@ -2,10 +2,6 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ru -:toc: left -:sectnums: -:docinfo1: - Переводчики: @@ -14,7 +10,6 @@ * Alexander Turenko <totktonada.ru@gmail.com>, 2014-2015 * Evgeny Shmarnev <eshmarnev@suse.com>, 2016 - [[start]] == Запуск WeeChat diff --git a/doc/sr/weechat_dev.sr.adoc b/doc/sr/weechat_dev.sr.adoc index 5f208abd5..f670041c1 100644 --- a/doc/sr/weechat_dev.sr.adoc +++ b/doc/sr/weechat_dev.sr.adoc @@ -2,23 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc: left -:toclevels: 3 :toc-title: Садржај -:sectnums: -:docinfo1: Превод: * Иван Пешић (<ivan.pesic@gmail.com>), 2021. - Ово упутство описује WeeChat чет клијент и део је програма WeeChat. Последња верзија овог документа може да се пронађе на https://weechat.org/doc/[овој страници ^↗^,window=_blank]. - [[introduction]] == Увод diff --git a/doc/sr/weechat_faq.sr.adoc b/doc/sr/weechat_faq.sr.adoc index 841f2c703..fccd5da25 100644 --- a/doc/sr/weechat_faq.sr.adoc +++ b/doc/sr/weechat_faq.sr.adoc @@ -2,21 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc: left -:toclevels: 2 :toc-title: Садржај -:sectnums: -:sectnumlevels: 2 -:docinfo1: Превод: * Иван Пешић (<ivan.pesic@gmail.com>), 2021. - -toc::[] - - [[general]] == Опште diff --git a/doc/sr/weechat_plugin_api.sr.adoc b/doc/sr/weechat_plugin_api.sr.adoc index 027ca95cd..ca1236aa9 100644 --- a/doc/sr/weechat_plugin_api.sr.adoc +++ b/doc/sr/weechat_plugin_api.sr.adoc @@ -2,24 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc: left -:toclevels: 4 :toc-title: Садржај -:sectnums: -:sectnumlevels: 3 -:docinfo1: Превод: * Иван Пешић (<ivan.pesic@gmail.com>), 2021. - Ово упутство описује WeeChat чет клијент и део је програма WeeChat. Последња верзија овог документа се налази на https://weechat.org/doc/[овој страници ^↗^,window=_blank]. - [[introduction]] == Увод diff --git a/doc/sr/weechat_quickstart.sr.adoc b/doc/sr/weechat_quickstart.sr.adoc index a29a58f7b..7f5cdf714 100644 --- a/doc/sr/weechat_quickstart.sr.adoc +++ b/doc/sr/weechat_quickstart.sr.adoc @@ -2,16 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc: left :toc-title: Садржај -:sectnums: -:docinfo1: Превод: * Иван Пешић (<ivan.pesic@gmail.com>), 2021. - [[start]] == Покретање програма WeeChat diff --git a/doc/sr/weechat_relay_protocol.sr.adoc b/doc/sr/weechat_relay_protocol.sr.adoc index 2074f2b96..13c79ef2f 100644 --- a/doc/sr/weechat_relay_protocol.sr.adoc +++ b/doc/sr/weechat_relay_protocol.sr.adoc @@ -2,17 +2,12 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc: left -:toclevels: 3 :toc-title: Садржај -:sectnums: -:docinfo1: Превод: * Иван Пешић (<ivan.pesic@gmail.com>), 2021. - [[introduction]] == Увод diff --git a/doc/sr/weechat_scripting.sr.adoc b/doc/sr/weechat_scripting.sr.adoc index ec4072372..3a50eb5b2 100644 --- a/doc/sr/weechat_scripting.sr.adoc +++ b/doc/sr/weechat_scripting.sr.adoc @@ -2,24 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc: left -:toclevels: 4 :toc-title: Садржај -:sectnums: -:sectnumlevels: 3 -:docinfo1: Превод: * Иван Пешић (<ivan.pesic@gmail.com>), 2021. - Ово упутство описује WeeChat чет клијент и део је програма WeeChat. Последња верзија овог документа се налази на https://weechat.org/doc/[овој страници ^↗^,window=_blank]. - [[introduction]] == Увод diff --git a/doc/sr/weechat_user.sr.adoc b/doc/sr/weechat_user.sr.adoc index ee86b7023..1549db885 100644 --- a/doc/sr/weechat_user.sr.adoc +++ b/doc/sr/weechat_user.sr.adoc @@ -2,24 +2,17 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc: left -:toclevels: 4 :toc-title: Садржај -:sectnums: -:sectnumlevels: 3 -:docinfo1: Превод: * Иван Пешић (<ivan.pesic@gmail.com>), 2021. - Ово упутство описује WeeChat чет клијент и део је програма WeeChat. Последња верзија овог документа се налази на https://weechat.org/doc/[овој страници ^↗^,window=_blank]. - [[introduction]] == Увод |