From 8dc7bb409d7c17e5f8a512ea174ae63eabd73fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Wed, 30 Oct 2024 00:06:22 +0100 Subject: [PATCH] doc: replace font-awesome icons by translated captions This removes use of a remote CDN (Cloudflare), as font-awesome is no longer used. --- doc/CMakeLists.txt | 9 ++++++++- doc/cs/includes/attributes-cs.adoc | 23 +++++++++++++++++++++++ doc/cs/weechat_quickstart.cs.adoc | 1 + doc/de/includes/attributes-de.adoc | 23 +++++++++++++++++++++++ doc/de/weechat_faq.de.adoc | 2 +- doc/de/weechat_quickstart.de.adoc | 2 +- doc/de/weechat_scripting.de.adoc | 2 +- doc/de/weechat_user.de.adoc | 2 +- doc/en/includes/attributes-en.adoc | 23 +++++++++++++++++++++++ doc/en/weechat_dev.en.adoc | 1 + doc/en/weechat_faq.en.adoc | 1 + doc/en/weechat_plugin_api.en.adoc | 1 + doc/en/weechat_quickstart.en.adoc | 1 + doc/en/weechat_relay_api.en.adoc | 1 + doc/en/weechat_relay_weechat.en.adoc | 1 + doc/en/weechat_scripting.en.adoc | 1 + doc/en/weechat_user.en.adoc | 1 + doc/es/includes/attributes-es.adoc | 23 +++++++++++++++++++++++ doc/es/weechat_faq.es.adoc | 2 +- doc/es/weechat_quickstart.es.adoc | 2 +- doc/fr/includes/attributes-fr.adoc | 23 +++++++++++++++++++++++ doc/fr/weechat_dev.fr.adoc | 2 +- doc/fr/weechat_faq.fr.adoc | 2 +- doc/fr/weechat_plugin_api.fr.adoc | 2 +- doc/fr/weechat_quickstart.fr.adoc | 2 +- doc/fr/weechat_relay_api.fr.adoc | 2 +- doc/fr/weechat_relay_weechat.fr.adoc | 2 +- doc/fr/weechat_scripting.fr.adoc | 2 +- doc/fr/weechat_user.fr.adoc | 2 +- doc/it/includes/attributes-it.adoc | 23 +++++++++++++++++++++++ doc/it/weechat_faq.it.adoc | 2 +- doc/it/weechat_plugin_api.it.adoc | 2 +- doc/it/weechat_quickstart.it.adoc | 2 +- doc/it/weechat_scripting.it.adoc | 2 +- doc/it/weechat_user.it.adoc | 2 +- doc/ja/includes/attributes-ja.adoc | 23 +++++++++++++++++++++++ doc/ja/weechat_dev.ja.adoc | 2 +- doc/ja/weechat_faq.ja.adoc | 2 +- doc/ja/weechat_plugin_api.ja.adoc | 2 +- doc/ja/weechat_quickstart.ja.adoc | 2 +- doc/ja/weechat_relay_weechat.ja.adoc | 2 +- doc/ja/weechat_scripting.ja.adoc | 2 +- doc/ja/weechat_user.ja.adoc | 2 +- doc/pl/includes/attributes-pl.adoc | 23 +++++++++++++++++++++++ doc/pl/weechat_faq.pl.adoc | 2 +- doc/pl/weechat_quickstart.pl.adoc | 2 +- doc/pl/weechat_scripting.pl.adoc | 2 +- doc/pl/weechat_user.pl.adoc | 2 +- doc/ru/includes/attributes-ru.adoc | 23 +++++++++++++++++++++++ doc/ru/weechat_quickstart.ru.adoc | 1 + doc/sr/includes/attributes-sr.adoc | 23 +++++++++++++++++++++++ doc/sr/weechat_dev.sr.adoc | 2 +- doc/sr/weechat_faq.sr.adoc | 2 +- doc/sr/weechat_plugin_api.sr.adoc | 2 +- doc/sr/weechat_quickstart.sr.adoc | 2 +- doc/sr/weechat_relay_weechat.sr.adoc | 2 +- doc/sr/weechat_scripting.sr.adoc | 2 +- doc/sr/weechat_user.sr.adoc | 2 +- 58 files changed, 285 insertions(+), 38 deletions(-) create mode 100644 doc/cs/includes/attributes-cs.adoc create mode 100644 doc/de/includes/attributes-de.adoc create mode 100644 doc/en/includes/attributes-en.adoc create mode 100644 doc/es/includes/attributes-es.adoc create mode 100644 doc/fr/includes/attributes-fr.adoc create mode 100644 doc/it/includes/attributes-it.adoc create mode 100644 doc/ja/includes/attributes-ja.adoc create mode 100644 doc/pl/includes/attributes-pl.adoc create mode 100644 doc/ru/includes/attributes-ru.adoc create mode 100644 doc/sr/includes/attributes-sr.adoc diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index d06534b71..45d586e56 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -40,7 +40,6 @@ if(ENABLE_MAN OR ENABLE_DOC) -a reproducible -a "prewrap!" -a "webfonts!" - -a icons=font -a revnumber="${VERSION}" -a sectanchors -a source-highlighter=pygments @@ -205,6 +204,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_user.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/cmdline_options.${lang}.adoc" doc-autogen "${CMAKE_CURRENT_BINARY_DIR}/autogen/autogen_user_commands.${lang}.adoc" @@ -225,6 +225,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_plugin_api.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" doc-autogen "${CMAKE_CURRENT_BINARY_DIR}/autogen/autogen_api_completions.${lang}.adoc" "${CMAKE_CURRENT_BINARY_DIR}/autogen/autogen_api_config_priority.${lang}.adoc" @@ -248,6 +249,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_scripting.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" doc-autogen "${CMAKE_CURRENT_BINARY_DIR}/autogen/autogen_scripting_functions.${lang}.adoc" "${CMAKE_CURRENT_BINARY_DIR}/autogen/autogen_scripting_constants.${lang}.adoc" @@ -265,6 +267,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_faq.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Building weechat_faq.${lang}.html" ) @@ -279,6 +282,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_quickstart.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Building weechat_quickstart.${lang}.html" ) @@ -293,6 +297,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_relay_api.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/relay.${lang}.adoc" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Building weechat_relay_api.${lang}.html" @@ -308,6 +313,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_relay_weechat.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/relay.${lang}.adoc" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Building weechat_relay_weechat.${lang}.html" @@ -323,6 +329,7 @@ if(ENABLE_MAN OR ENABLE_DOC) DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/docinfo.html" "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/weechat_dev.${lang}.adoc" + "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/includes/attributes-${lang}.adoc" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Building weechat_dev.${lang}.html" ) diff --git a/doc/cs/includes/attributes-cs.adoc b/doc/cs/includes/attributes-cs.adoc new file mode 100644 index 000000000..d08e0493e --- /dev/null +++ b/doc/cs/includes/attributes-cs.adoc @@ -0,0 +1,23 @@ +// czech translation, for reference only; matches the built-in behavior of core +:appendix-caption: Příloha +:appendix-refsig: {appendix-caption} +:caution-caption: Upozornění +:chapter-signifier: Kapitola +:chapter-refsig: {chapter-signifier} +:example-caption: Příklad +:figure-caption: Obrázek +:important-caption: Důležité +:last-update-label: Změněno +ifdef::listing-caption[:listing-caption: Seznam] +ifdef::manname-title[:manname-title: Název] +:note-caption: Poznámka +:part-signifier: Část +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Úvod] +:section-refsig: Oddíl +:table-caption: Tabulka +:tip-caption: Tip +:toc-title: Obsah +:untitled-label: Nepojmenovaný +:version-label: Verze +:warning-caption: Varování diff --git a/doc/cs/weechat_quickstart.cs.adoc b/doc/cs/weechat_quickstart.cs.adoc index 5404a4221..c0e65a98f 100644 --- a/doc/cs/weechat_quickstart.cs.adoc +++ b/doc/cs/weechat_quickstart.cs.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: cs +include::includes/attributes-cs.adoc[] [[start]] == Spuštění WeeChatu diff --git a/doc/de/includes/attributes-de.adoc b/doc/de/includes/attributes-de.adoc new file mode 100644 index 000000000..3a841f5b6 --- /dev/null +++ b/doc/de/includes/attributes-de.adoc @@ -0,0 +1,23 @@ +// German translation, courtesy of Florian Wilhelm +:appendix-caption: Anhang +:appendix-refsig: {appendix-caption} +:caution-caption: Achtung +:chapter-signifier: Kapitel +:chapter-refsig: {chapter-signifier} +:example-caption: Beispiel +:figure-caption: Abbildung +:important-caption: Wichtig +:last-update-label: Zuletzt aktualisiert +ifdef::listing-caption[:listing-caption: Listing] +ifdef::manname-title[:manname-title: Bezeichnung] +:note-caption: Anmerkung +:part-signifier: Teil +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Vorwort] +:section-refsig: Abschnitt +:table-caption: Tabelle +:tip-caption: Hinweis +:toc-title: Inhaltsverzeichnis +:untitled-label: Ohne Titel +:version-label: Version +:warning-caption: Warnung diff --git a/doc/de/weechat_faq.de.adoc b/doc/de/weechat_faq.de.adoc index 1d0701a47..d056dadae 100644 --- a/doc/de/weechat_faq.de.adoc +++ b/doc/de/weechat_faq.de.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc-title: Inhaltsverzeichnis +include::includes/attributes-de.adoc[] Übersetzer: diff --git a/doc/de/weechat_quickstart.de.adoc b/doc/de/weechat_quickstart.de.adoc index 3fd6dfc81..df7955a39 100644 --- a/doc/de/weechat_quickstart.de.adoc +++ b/doc/de/weechat_quickstart.de.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc-title: Inhaltsverzeichnis +include::includes/attributes-de.adoc[] Übersetzer: diff --git a/doc/de/weechat_scripting.de.adoc b/doc/de/weechat_scripting.de.adoc index 4470d2599..6fc33e743 100644 --- a/doc/de/weechat_scripting.de.adoc +++ b/doc/de/weechat_scripting.de.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc-title: Inhaltsverzeichnis +include::includes/attributes-de.adoc[] Übersetzer: diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc index 42afc9806..ab12d86e5 100644 --- a/doc/de/weechat_user.de.adoc +++ b/doc/de/weechat_user.de.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: de -:toc-title: Inhaltsverzeichnis +include::includes/attributes-de.adoc[] Übersetzer: diff --git a/doc/en/includes/attributes-en.adoc b/doc/en/includes/attributes-en.adoc new file mode 100644 index 000000000..23049a04a --- /dev/null +++ b/doc/en/includes/attributes-en.adoc @@ -0,0 +1,23 @@ +// English translation, for reference only; matches the built-in behavior of core +:appendix-caption: Appendix +:appendix-refsig: {appendix-caption} +:caution-caption: Caution +:chapter-signifier: Chapter +:chapter-refsig: {chapter-signifier} +:example-caption: Example +:figure-caption: Figure +:important-caption: Important +:last-update-label: Last updated +ifdef::listing-caption[:listing-caption: Listing] +ifdef::manname-title[:manname-title: Name] +:note-caption: Note +:part-signifier: Part +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Preface] +:section-refsig: Section +:table-caption: Table +:tip-caption: Tip +:toc-title: Table of Contents +:untitled-label: Untitled +:version-label: Version +:warning-caption: Warning diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index 9141a8b8b..336f7c4bb 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] This manual documents WeeChat chat client, it is part of WeeChat. diff --git a/doc/en/weechat_faq.en.adoc b/doc/en/weechat_faq.en.adoc index d4c295f1b..66394e1f7 100644 --- a/doc/en/weechat_faq.en.adoc +++ b/doc/en/weechat_faq.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] [[general]] == General diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index 0b825cd79..d0dde2868 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] This manual documents WeeChat chat client, it is part of WeeChat. diff --git a/doc/en/weechat_quickstart.en.adoc b/doc/en/weechat_quickstart.en.adoc index edb640f35..ef4707eec 100644 --- a/doc/en/weechat_quickstart.en.adoc +++ b/doc/en/weechat_quickstart.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] [[start]] == Start WeeChat diff --git a/doc/en/weechat_relay_api.en.adoc b/doc/en/weechat_relay_api.en.adoc index 50c0dd0e8..41c00439f 100644 --- a/doc/en/weechat_relay_api.en.adoc +++ b/doc/en/weechat_relay_api.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] [[introduction]] == Introduction diff --git a/doc/en/weechat_relay_weechat.en.adoc b/doc/en/weechat_relay_weechat.en.adoc index 8f0af6d6c..791660eb5 100644 --- a/doc/en/weechat_relay_weechat.en.adoc +++ b/doc/en/weechat_relay_weechat.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] [[introduction]] == Introduction diff --git a/doc/en/weechat_scripting.en.adoc b/doc/en/weechat_scripting.en.adoc index ecbb08e50..10c979477 100644 --- a/doc/en/weechat_scripting.en.adoc +++ b/doc/en/weechat_scripting.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] This manual documents WeeChat chat client, it is part of WeeChat. diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc index 70c592df6..3d194e6a3 100644 --- a/doc/en/weechat_user.en.adoc +++ b/doc/en/weechat_user.en.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: en +include::includes/attributes-en.adoc[] This manual documents WeeChat chat client, it is part of WeeChat. diff --git a/doc/es/includes/attributes-es.adoc b/doc/es/includes/attributes-es.adoc new file mode 100644 index 000000000..0138d1e8b --- /dev/null +++ b/doc/es/includes/attributes-es.adoc @@ -0,0 +1,23 @@ +// Spanish translation, courtesy of Eddú Meléndez with updates from Fede Mendez +:appendix-caption: Apéndice +:appendix-refsig: {appendix-caption} +:caution-caption: Precaución +:chapter-signifier: Capítulo +:chapter-refsig: {chapter-signifier} +:example-caption: Ejemplo +:figure-caption: Figura +:important-caption: Importante +:last-update-label: Ultima actualización +ifdef::listing-caption[:listing-caption: Lista] +ifdef::manname-title[:manname-title: Nombre] +:note-caption: Nota +:part-signifier: Parte +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Prefacio] +:section-refsig: Sección +:table-caption: Tabla +:tip-caption: Sugerencia +:toc-title: Tabla de Contenido +:untitled-label: Sin título +:version-label: Versión +:warning-caption: Aviso diff --git a/doc/es/weechat_faq.es.adoc b/doc/es/weechat_faq.es.adoc index 443fe9d41..aca6a960f 100644 --- a/doc/es/weechat_faq.es.adoc +++ b/doc/es/weechat_faq.es.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: es -:toc-title: Índice +include::includes/attributes-es.adoc[] Traductores diff --git a/doc/es/weechat_quickstart.es.adoc b/doc/es/weechat_quickstart.es.adoc index f7dc9ba20..bb1c6117f 100644 --- a/doc/es/weechat_quickstart.es.adoc +++ b/doc/es/weechat_quickstart.es.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: es -:toc-title: Índice +include::includes/attributes-es.adoc[] Traductores: diff --git a/doc/fr/includes/attributes-fr.adoc b/doc/fr/includes/attributes-fr.adoc new file mode 100644 index 000000000..979b065a3 --- /dev/null +++ b/doc/fr/includes/attributes-fr.adoc @@ -0,0 +1,23 @@ +// French translation, courtesy of Nicolas Comet with updates from Maheva Bagard Laursen +:appendix-caption: Annexe +:appendix-refsig: {appendix-caption} +:caution-caption: Attention +:chapter-signifier: Chapitre +:chapter-refsig: {chapter-signifier} +:example-caption: Exemple +:figure-caption: Figure +:important-caption: Important +:last-update-label: Dernière mise à jour +ifdef::listing-caption[:listing-caption: Liste] +ifdef::manname-title[:manname-title: Nom] +:note-caption: Note +:part-signifier: Partie +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Préface] +:section-refsig: Section +:table-caption: Tableau +:tip-caption: Astuce +:toc-title: Table des matières +:untitled-label: Sans titre +:version-label: Version +:warning-caption: Avertissement diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index 61a3677b0..3e11a69b0 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. diff --git a/doc/fr/weechat_faq.fr.adoc b/doc/fr/weechat_faq.fr.adoc index de4c69b4f..8cb74f665 100644 --- a/doc/fr/weechat_faq.fr.adoc +++ b/doc/fr/weechat_faq.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] == Général diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index cac633de7..5e0916593 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. diff --git a/doc/fr/weechat_quickstart.fr.adoc b/doc/fr/weechat_quickstart.fr.adoc index 7cfbbabff..a93f99b20 100644 --- a/doc/fr/weechat_quickstart.fr.adoc +++ b/doc/fr/weechat_quickstart.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] [[start]] == Démarrer WeeChat diff --git a/doc/fr/weechat_relay_api.fr.adoc b/doc/fr/weechat_relay_api.fr.adoc index fac89c2e5..4f5dee7f6 100644 --- a/doc/fr/weechat_relay_api.fr.adoc +++ b/doc/fr/weechat_relay_api.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] [[introduction]] == Introduction diff --git a/doc/fr/weechat_relay_weechat.fr.adoc b/doc/fr/weechat_relay_weechat.fr.adoc index a69e6e4b3..92c6feece 100644 --- a/doc/fr/weechat_relay_weechat.fr.adoc +++ b/doc/fr/weechat_relay_weechat.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] [[introduction]] == Introduction diff --git a/doc/fr/weechat_scripting.fr.adoc b/doc/fr/weechat_scripting.fr.adoc index fe4d7461e..f1ad77ccd 100644 --- a/doc/fr/weechat_scripting.fr.adoc +++ b/doc/fr/weechat_scripting.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. diff --git a/doc/fr/weechat_user.fr.adoc b/doc/fr/weechat_user.fr.adoc index 1963fe380..f6e9036a0 100644 --- a/doc/fr/weechat_user.fr.adoc +++ b/doc/fr/weechat_user.fr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: fr -:toc-title: Table des matières +include::includes/attributes-fr.adoc[] Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. diff --git a/doc/it/includes/attributes-it.adoc b/doc/it/includes/attributes-it.adoc new file mode 100644 index 000000000..05015e3a7 --- /dev/null +++ b/doc/it/includes/attributes-it.adoc @@ -0,0 +1,23 @@ +// Italian translation, courtesy of Marco Ciampa +:appendix-caption: Appendice +:appendix-refsig: {appendix-caption} +:caution-caption: Attenzione +:chapter-signifier: Capitolo +:chapter-refsig: {chapter-signifier} +:example-caption: Esempio +:figure-caption: Figura +:important-caption: Importante +:last-update-label: Ultimo aggiornamento +ifdef::listing-caption[:listing-caption: Elenco] +ifdef::manname-title[:manname-title: Nome] +:note-caption: Nota +:part-signifier: Parte +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Prefazione] +:section-refsig: Sezione +:table-caption: Tabella +:tip-caption: Suggerimento +:toc-title: Indice +:untitled-label: Senza titolo +:version-label: Versione +:warning-caption: Attenzione diff --git a/doc/it/weechat_faq.it.adoc b/doc/it/weechat_faq.it.adoc index d8a663d67..84ecbb08c 100644 --- a/doc/it/weechat_faq.it.adoc +++ b/doc/it/weechat_faq.it.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc-title: Indice +include::includes/attributes-it.adoc[] // TRANSLATION MISSING Translators: diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index c6932bd04..dfcbad72a 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc-title: Indice +include::includes/attributes-it.adoc[] // TRANSLATION MISSING Translators: diff --git a/doc/it/weechat_quickstart.it.adoc b/doc/it/weechat_quickstart.it.adoc index 422b4b4b5..b6006a002 100644 --- a/doc/it/weechat_quickstart.it.adoc +++ b/doc/it/weechat_quickstart.it.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc-title: Indice +include::includes/attributes-it.adoc[] Traduttori: diff --git a/doc/it/weechat_scripting.it.adoc b/doc/it/weechat_scripting.it.adoc index f38ec6269..f04cbb6d8 100644 --- a/doc/it/weechat_scripting.it.adoc +++ b/doc/it/weechat_scripting.it.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc-title: Indice +include::includes/attributes-it.adoc[] // TRANSLATION MISSING Translators: diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc index 8fc0b61d9..1612c77c3 100644 --- a/doc/it/weechat_user.it.adoc +++ b/doc/it/weechat_user.it.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: it -:toc-title: Indice +include::includes/attributes-it.adoc[] // TRANSLATION MISSING Translators: diff --git a/doc/ja/includes/attributes-ja.adoc b/doc/ja/includes/attributes-ja.adoc new file mode 100644 index 000000000..93f5cabb3 --- /dev/null +++ b/doc/ja/includes/attributes-ja.adoc @@ -0,0 +1,23 @@ +// Japanese translation, courtesy of Takayuki Konishi +:appendix-caption: 付録 +:appendix-refsig: {appendix-caption} +:caution-caption: 注意 +//:chapter-signifier: ??? +//:chapter-refsig: {chapter-signifier} +:example-caption: 例 +:figure-caption: 図 +:important-caption: 重要 +:last-update-label: 最終更新 +ifdef::listing-caption[:listing-caption: リスト] +ifdef::manname-title[:manname-title: 名前] +:note-caption: 注記 +//:part-signifier: ??? +//:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: まえがき] +//:section-refsig: ??? +:table-caption: 表 +:tip-caption: ヒント +:toc-title: 目次 +:untitled-label: 無題 +:version-label: バージョン +:warning-caption: 警告 diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index ad1e72f67..923fe91bf 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc-title: 目次 +include::includes/attributes-ja.adoc[] 翻訳者: diff --git a/doc/ja/weechat_faq.ja.adoc b/doc/ja/weechat_faq.ja.adoc index df18c2fc3..b3f0574b7 100644 --- a/doc/ja/weechat_faq.ja.adoc +++ b/doc/ja/weechat_faq.ja.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc-title: 目次 +include::includes/attributes-ja.adoc[] 翻訳者: diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 50c7fe39a..c193b55ee 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc-title: 目次 +include::includes/attributes-ja.adoc[] 翻訳者: diff --git a/doc/ja/weechat_quickstart.ja.adoc b/doc/ja/weechat_quickstart.ja.adoc index 31f3cd260..f210b41c6 100644 --- a/doc/ja/weechat_quickstart.ja.adoc +++ b/doc/ja/weechat_quickstart.ja.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc-title: 目次 +include::includes/attributes-ja.adoc[] 翻訳者: diff --git a/doc/ja/weechat_relay_weechat.ja.adoc b/doc/ja/weechat_relay_weechat.ja.adoc index ca15e4bb4..93804920d 100644 --- a/doc/ja/weechat_relay_weechat.ja.adoc +++ b/doc/ja/weechat_relay_weechat.ja.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc-title: 目次 +include::includes/attributes-ja.adoc[] 翻訳者: diff --git a/doc/ja/weechat_scripting.ja.adoc b/doc/ja/weechat_scripting.ja.adoc index 6ec841d24..b42661671 100644 --- a/doc/ja/weechat_scripting.ja.adoc +++ b/doc/ja/weechat_scripting.ja.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc-title: 目次 +include::includes/attributes-ja.adoc[] 翻訳者: diff --git a/doc/ja/weechat_user.ja.adoc b/doc/ja/weechat_user.ja.adoc index cedc47de5..e97a8c0f4 100644 --- a/doc/ja/weechat_user.ja.adoc +++ b/doc/ja/weechat_user.ja.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ja-jp -:toc-title: 目次 +include::includes/attributes-ja.adoc[] 翻訳者: diff --git a/doc/pl/includes/attributes-pl.adoc b/doc/pl/includes/attributes-pl.adoc new file mode 100644 index 000000000..72223976b --- /dev/null +++ b/doc/pl/includes/attributes-pl.adoc @@ -0,0 +1,23 @@ +// Polish translation, courtesy of Łukasz Dziedziul with updates via Matthew Blissett +:appendix-caption: Dodatek +:appendix-refsig: {appendix-caption} +:caution-caption: Uwaga +:chapter-signifier: Rozdział +:chapter-refsig: {chapter-signifier} +:example-caption: Przykład +:figure-caption: Rysunek +:important-caption: Ważne +:last-update-label: Ostatnio zmodyfikowany +ifdef::listing-caption[:listing-caption: Listing] +ifdef::manname-title[:manname-title: Nazwa] +:note-caption: Notka +:part-signifier: Część +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Wstęp] +:section-refsig: Sekcja +:table-caption: Tabela +:tip-caption: Sugestia +:toc-title: Spis treści +:untitled-label: Bez tytułu +:version-label: Wersja +:warning-caption: Ostrzeżenie diff --git a/doc/pl/weechat_faq.pl.adoc b/doc/pl/weechat_faq.pl.adoc index 376e0fdb4..0c079f4b3 100644 --- a/doc/pl/weechat_faq.pl.adoc +++ b/doc/pl/weechat_faq.pl.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc-title: Spis treści +include::includes/attributes-pl.adoc[] Tłumaczenie: diff --git a/doc/pl/weechat_quickstart.pl.adoc b/doc/pl/weechat_quickstart.pl.adoc index 0148c52ce..da35f9068 100644 --- a/doc/pl/weechat_quickstart.pl.adoc +++ b/doc/pl/weechat_quickstart.pl.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc-title: Spis treści +include::includes/attributes-pl.adoc[] Tłumaczenie: diff --git a/doc/pl/weechat_scripting.pl.adoc b/doc/pl/weechat_scripting.pl.adoc index f10a3cfc0..bc0b52dc5 100644 --- a/doc/pl/weechat_scripting.pl.adoc +++ b/doc/pl/weechat_scripting.pl.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc-title: Spis treści +include::includes/attributes-pl.adoc[] Tłumaczenie: diff --git a/doc/pl/weechat_user.pl.adoc b/doc/pl/weechat_user.pl.adoc index 244112d9c..52d12d51d 100644 --- a/doc/pl/weechat_user.pl.adoc +++ b/doc/pl/weechat_user.pl.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: pl -:toc-title: Spis treści +include::includes/attributes-pl.adoc[] Tłumaczenie: diff --git a/doc/ru/includes/attributes-ru.adoc b/doc/ru/includes/attributes-ru.adoc new file mode 100644 index 000000000..fc9e195f2 --- /dev/null +++ b/doc/ru/includes/attributes-ru.adoc @@ -0,0 +1,23 @@ +// Russian translation, courtesy of Alexander Zobkov +:appendix-caption: Приложение +:appendix-refsig: {appendix-caption} +:caution-caption: Внимание +:chapter-signifier: Глава +:chapter-refsig: {chapter-signifier} +:example-caption: Пример +:figure-caption: Рисунок +:important-caption: Важно +:last-update-label: Последнее обновление +ifdef::listing-caption[:listing-caption: Листинг] +ifdef::manname-title[:manname-title: Название] +:note-caption: Примечание +:part-signifier: Часть +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Предисловие] +:section-refsig: Раздел +:table-caption: Таблица +:tip-caption: Подсказка +:toc-title: Содержание +:untitled-label: Без названия +:version-label: Версия +:warning-caption: Предупреждение diff --git a/doc/ru/weechat_quickstart.ru.adoc b/doc/ru/weechat_quickstart.ru.adoc index a7d6d701b..2467c927d 100644 --- a/doc/ru/weechat_quickstart.ru.adoc +++ b/doc/ru/weechat_quickstart.ru.adoc @@ -2,6 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: ru +include::includes/attributes-ru.adoc[] Переводчики: diff --git a/doc/sr/includes/attributes-sr.adoc b/doc/sr/includes/attributes-sr.adoc new file mode 100644 index 000000000..9e172cf80 --- /dev/null +++ b/doc/sr/includes/attributes-sr.adoc @@ -0,0 +1,23 @@ +// Serbian Cyrillic translation, courtesy of Bojan Stipic +:appendix-caption: Додатак +:appendix-refsig: {appendix-caption} +:caution-caption: Опрез +:chapter-signifier: Поглавље +:chapter-refsig: {chapter-signifier} +:example-caption: Пример +:figure-caption: Слика +:important-caption: Важно +:last-update-label: Последње ажурирано +ifdef::listing-caption[:listing-caption: Листинг] +ifdef::manname-title[:manname-title: Назив] +:note-caption: Белешка +:part-signifier: Део +:part-refsig: {part-signifier} +ifdef::preface-title[:preface-title: Предговор] +:section-refsig: Секција +:table-caption: Табела +:tip-caption: Савет +:toc-title: Садржај +:untitled-label: Без назива +:version-label: Верзија +:warning-caption: Упозорење diff --git a/doc/sr/weechat_dev.sr.adoc b/doc/sr/weechat_dev.sr.adoc index e875eb1e0..f0bf4bb4d 100644 --- a/doc/sr/weechat_dev.sr.adoc +++ b/doc/sr/weechat_dev.sr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc-title: Садржај +include::includes/attributes-sr.adoc[] Превод: diff --git a/doc/sr/weechat_faq.sr.adoc b/doc/sr/weechat_faq.sr.adoc index bf6b7f54a..011a5cf98 100644 --- a/doc/sr/weechat_faq.sr.adoc +++ b/doc/sr/weechat_faq.sr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc-title: Садржај +include::includes/attributes-sr.adoc[] Превод: diff --git a/doc/sr/weechat_plugin_api.sr.adoc b/doc/sr/weechat_plugin_api.sr.adoc index 6ea9d44eb..aca614111 100644 --- a/doc/sr/weechat_plugin_api.sr.adoc +++ b/doc/sr/weechat_plugin_api.sr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc-title: Садржај +include::includes/attributes-sr.adoc[] Превод: diff --git a/doc/sr/weechat_quickstart.sr.adoc b/doc/sr/weechat_quickstart.sr.adoc index 450b2eed3..b89ddd251 100644 --- a/doc/sr/weechat_quickstart.sr.adoc +++ b/doc/sr/weechat_quickstart.sr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc-title: Садржај +include::includes/attributes-sr.adoc[] Превод: diff --git a/doc/sr/weechat_relay_weechat.sr.adoc b/doc/sr/weechat_relay_weechat.sr.adoc index 53115ee91..d33f5b880 100644 --- a/doc/sr/weechat_relay_weechat.sr.adoc +++ b/doc/sr/weechat_relay_weechat.sr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc-title: Садржај +include::includes/attributes-sr.adoc[] Превод: diff --git a/doc/sr/weechat_scripting.sr.adoc b/doc/sr/weechat_scripting.sr.adoc index 280a506c6..082b8e420 100644 --- a/doc/sr/weechat_scripting.sr.adoc +++ b/doc/sr/weechat_scripting.sr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc-title: Садржај +include::includes/attributes-sr.adoc[] Превод: diff --git a/doc/sr/weechat_user.sr.adoc b/doc/sr/weechat_user.sr.adoc index 469b6f4bb..bb9b941f1 100644 --- a/doc/sr/weechat_user.sr.adoc +++ b/doc/sr/weechat_user.sr.adoc @@ -2,7 +2,7 @@ :author: Sébastien Helleu :email: flashcode@flashtux.org :lang: sr -:toc-title: Садржај +include::includes/attributes-sr.adoc[] Превод: