asciidoctor 1.5.6.2 → 1.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of asciidoctor might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +330 -143
- data/README-fr.adoc +441 -0
- data/README-jp.adoc +418 -0
- data/README-zh_CN.adoc +430 -0
- data/README.adoc +454 -0
- data/Rakefile +57 -0
- data/asciidoctor.gemspec +7 -1
- data/data/locale/attributes-ar.adoc +22 -0
- data/data/locale/attributes-bg.adoc +22 -0
- data/data/locale/attributes-ca.adoc +22 -0
- data/data/locale/attributes-cs.adoc +22 -0
- data/data/locale/attributes-da.adoc +22 -0
- data/data/locale/attributes-de.adoc +22 -0
- data/data/locale/attributes-en.adoc +23 -0
- data/data/locale/attributes-es.adoc +22 -0
- data/data/locale/attributes-fa.adoc +22 -0
- data/data/locale/attributes-fi.adoc +22 -0
- data/data/locale/attributes-fr.adoc +22 -0
- data/data/locale/attributes-hu.adoc +22 -0
- data/data/locale/attributes-id.adoc +22 -0
- data/data/locale/attributes-it.adoc +22 -0
- data/data/locale/attributes-ja.adoc +22 -0
- data/data/locale/attributes-kr.adoc +22 -0
- data/data/locale/attributes-nb.adoc +22 -0
- data/data/locale/attributes-nl.adoc +22 -0
- data/data/locale/attributes-nn.adoc +22 -0
- data/data/locale/attributes-pl.adoc +22 -0
- data/data/locale/attributes-pt.adoc +22 -0
- data/data/locale/attributes-pt_BR.adoc +22 -0
- data/data/locale/attributes-ro.adoc +22 -0
- data/data/locale/attributes-ru.adoc +22 -0
- data/data/locale/attributes-sr.adoc +22 -0
- data/data/locale/attributes-sr_Latn.adoc +22 -0
- data/data/locale/attributes-tr.adoc +22 -0
- data/data/locale/attributes-uk.adoc +22 -0
- data/data/locale/attributes-zh_CN.adoc +22 -0
- data/data/locale/attributes-zh_TW.adoc +22 -0
- data/data/locale/attributes.adoc +8 -649
- data/data/stylesheets/asciidoctor-default.css +77 -72
- data/features/xref.feature +366 -7
- data/lib/asciidoctor.rb +107 -93
- data/lib/asciidoctor/abstract_block.rb +247 -239
- data/lib/asciidoctor/abstract_node.rb +56 -58
- data/lib/asciidoctor/block.rb +3 -3
- data/lib/asciidoctor/callouts.rb +1 -1
- data/lib/asciidoctor/cli/invoker.rb +36 -9
- data/lib/asciidoctor/cli/options.rb +63 -25
- data/lib/asciidoctor/converter.rb +23 -13
- data/lib/asciidoctor/converter/base.rb +4 -0
- data/lib/asciidoctor/converter/docbook45.rb +16 -9
- data/lib/asciidoctor/converter/docbook5.rb +115 -97
- data/lib/asciidoctor/converter/factory.rb +29 -31
- data/lib/asciidoctor/converter/html5.rb +229 -192
- data/lib/asciidoctor/converter/manpage.rb +72 -50
- data/lib/asciidoctor/converter/template.rb +12 -12
- data/lib/asciidoctor/core_ext.rb +5 -1
- data/lib/asciidoctor/core_ext/1.8.7/base64/strict_encode64.rb +6 -0
- data/lib/asciidoctor/document.rb +168 -77
- data/lib/asciidoctor/extensions.rb +79 -47
- data/lib/asciidoctor/helpers.rb +33 -11
- data/lib/asciidoctor/inline.rb +3 -2
- data/lib/asciidoctor/list.rb +2 -1
- data/lib/asciidoctor/logging.rb +122 -0
- data/lib/asciidoctor/parser.rb +406 -382
- data/lib/asciidoctor/path_resolver.rb +169 -162
- data/lib/asciidoctor/reader.rb +166 -121
- data/lib/asciidoctor/section.rb +45 -28
- data/lib/asciidoctor/stylesheets.rb +13 -5
- data/lib/asciidoctor/substitutors.rb +328 -254
- data/lib/asciidoctor/table.rb +105 -48
- data/lib/asciidoctor/timings.rb +34 -6
- data/lib/asciidoctor/version.rb +1 -1
- data/man/asciidoctor.1 +41 -23
- data/man/asciidoctor.adoc +14 -8
- data/test/api_test.rb +1004 -0
- data/test/attributes_test.rb +241 -50
- data/test/blocks_test.rb +549 -124
- data/test/converter_test.rb +170 -78
- data/test/document_test.rb +208 -767
- data/test/extensions_test.rb +188 -53
- data/test/fixtures/custom-backends/slim/html5/block_paragraph.html.slim +1 -1
- data/test/fixtures/custom-backends/slim/html5/block_sidebar.html.slim +1 -1
- data/test/fixtures/file-with-missing-include.adoc +1 -0
- data/test/fixtures/include-file.jsx +8 -0
- data/test/fixtures/lists.adoc +96 -0
- data/test/fixtures/other-chapters.adoc +11 -0
- data/test/fixtures/outer-include.adoc +5 -0
- data/test/fixtures/sample.asciidoc +5 -1
- data/test/fixtures/subdir/index.adoc +3 -0
- data/test/fixtures/subdir/inner-include.adoc +3 -0
- data/test/fixtures/subdir/middle-include.adoc +5 -0
- data/test/fixtures/tagged-class-enclosed.rb +0 -1
- data/test/fixtures/unclosed-tag.adoc +3 -0
- data/test/fixtures/unexpected-end-tag.adoc +4 -0
- data/test/invoker_test.rb +101 -40
- data/test/links_test.rb +266 -72
- data/test/lists_test.rb +243 -45
- data/test/logger_test.rb +211 -0
- data/test/manpage_test.rb +124 -6
- data/test/options_test.rb +46 -1
- data/test/paragraphs_test.rb +23 -10
- data/test/parser_test.rb +30 -1
- data/test/paths_test.rb +115 -33
- data/test/preamble_test.rb +1 -1
- data/test/reader_test.rb +337 -81
- data/test/sections_test.rb +656 -72
- data/test/substitutions_test.rb +182 -57
- data/test/tables_test.rb +324 -57
- data/test/test_helper.rb +77 -32
- data/test/text_test.rb +7 -7
- metadata +67 -3
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Norwegian Bokmål, courtesy of Aslak Knutsen <aslak@4fs.no>, with updates from Karl Ove Hufthammer <karl@huftis.org>
         | 
| 2 | 
            +
            :appendix-caption: Vedlegg
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: OBS
         | 
| 5 | 
            +
            :chapter-label: Kapittel
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Eksempel
         | 
| 8 | 
            +
            :figure-caption: Figur
         | 
| 9 | 
            +
            :important-caption: Viktig
         | 
| 10 | 
            +
            :last-update-label: Sist oppdatert
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Programkode]
         | 
| 12 | 
            +
            //:manname-title: NAVN
         | 
| 13 | 
            +
            :note-caption: Merk
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Forord]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabell
         | 
| 18 | 
            +
            :tip-caption: Tips
         | 
| 19 | 
            +
            :toc-title: Innhold
         | 
| 20 | 
            +
            :untitled-label: Navnløs
         | 
| 21 | 
            +
            :version-label: Versjon
         | 
| 22 | 
            +
            :warning-caption: Advarsel
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Dutch translation, courtesy of Roel Van Steenberghe <roel.vansteenberghe@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Bijlage
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Opgelet
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Voorbeeld
         | 
| 8 | 
            +
            :figure-caption: Figuur
         | 
| 9 | 
            +
            :important-caption: Belangrijk
         | 
| 10 | 
            +
            :last-update-label: Laatste aanpassing
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Lijst]
         | 
| 12 | 
            +
            //:manname-title: NAAM
         | 
| 13 | 
            +
            :note-caption: Noot
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Inleiding]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabel
         | 
| 18 | 
            +
            :tip-caption: Tip
         | 
| 19 | 
            +
            :toc-title: Ínhoudsopgave
         | 
| 20 | 
            +
            :untitled-label: Naamloos
         | 
| 21 | 
            +
            :version-label: Versie
         | 
| 22 | 
            +
            :warning-caption: Waarschuwing
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Norwegian Nynorsk, courtesy of Karl Ove Hufthammer <karl@huftis.org>
         | 
| 2 | 
            +
            :appendix-caption: Vedlegg
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: OBS
         | 
| 5 | 
            +
            :chapter-label: Kapittel
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Eksempel
         | 
| 8 | 
            +
            :figure-caption: Figur
         | 
| 9 | 
            +
            :important-caption: Viktig
         | 
| 10 | 
            +
            :last-update-label: Sist oppdatert
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Programkode]
         | 
| 12 | 
            +
            //:manname-title: NAMN
         | 
| 13 | 
            +
            :note-caption: Merk
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Forord]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabell
         | 
| 18 | 
            +
            :tip-caption: Tips
         | 
| 19 | 
            +
            :toc-title: Innhald
         | 
| 20 | 
            +
            :untitled-label: Namnlaus
         | 
| 21 | 
            +
            :version-label: Versjon
         | 
| 22 | 
            +
            :warning-caption: Åtvaring
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Polish translation, courtesy of Łukasz Dziedziul <l.dziedziul@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Dodatek
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Uwaga
         | 
| 5 | 
            +
            :chapter-label: Rozdział
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Przykład
         | 
| 8 | 
            +
            :figure-caption: Rysunek
         | 
| 9 | 
            +
            :important-caption: Ważne
         | 
| 10 | 
            +
            :last-update-label: Ostatnio zmodyfikowany
         | 
| 11 | 
            +
            //ifdef::listing-caption[:listing-caption: ???]
         | 
| 12 | 
            +
            //:manname-title: NAZWA
         | 
| 13 | 
            +
            :note-caption: Notka
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            //ifdef::preface-title[:preface-title: ???]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabela
         | 
| 18 | 
            +
            :tip-caption: Sugestia
         | 
| 19 | 
            +
            :toc-title: Spis treści
         | 
| 20 | 
            +
            :untitled-label: Bez tytułu
         | 
| 21 | 
            +
            :version-label: Wersja
         | 
| 22 | 
            +
            :warning-caption: Ostrzeżenie
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Portuguese translation, courtesy of Roberto Cortez <radcortez@yahoo.com>
         | 
| 2 | 
            +
            :appendix-caption: Apêndice
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Atenção
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Exemplo
         | 
| 8 | 
            +
            :figure-caption: Figura
         | 
| 9 | 
            +
            :important-caption: Importante
         | 
| 10 | 
            +
            :last-update-label: Última actualização
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Listagem]
         | 
| 12 | 
            +
            //:manname-title: NOME
         | 
| 13 | 
            +
            :note-caption: Nota
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Prefácio]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabela
         | 
| 18 | 
            +
            :tip-caption: Sugestão
         | 
| 19 | 
            +
            :toc-title: Índice
         | 
| 20 | 
            +
            :untitled-label: Sem título
         | 
| 21 | 
            +
            :version-label: Versão
         | 
| 22 | 
            +
            :warning-caption: Aviso
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Brazilian Portuguese translation, courtesy of Rafael Pestano <rmpestano@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Apêndice
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Cuidado
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Exemplo
         | 
| 8 | 
            +
            :figure-caption: Figura
         | 
| 9 | 
            +
            :important-caption: Importante
         | 
| 10 | 
            +
            :last-update-label: Última atualização
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Listagem]
         | 
| 12 | 
            +
            //:manname-title: NOME
         | 
| 13 | 
            +
            :note-caption: Nota
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Prefácio]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabela
         | 
| 18 | 
            +
            :tip-caption: Dica
         | 
| 19 | 
            +
            :toc-title: Índice
         | 
| 20 | 
            +
            :untitled-label: Sem título
         | 
| 21 | 
            +
            :version-label: Versão
         | 
| 22 | 
            +
            :warning-caption: Aviso
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Romanian translation, courtesy of Vitalie Lazu <vitalie.lazu@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Apendix
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Precauție
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Exemplu
         | 
| 8 | 
            +
            :figure-caption: Figură
         | 
| 9 | 
            +
            :important-caption: Important
         | 
| 10 | 
            +
            :last-update-label: Ultima actualizare
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Listare]
         | 
| 12 | 
            +
            //:manname-title: NUME
         | 
| 13 | 
            +
            :note-caption: Notă
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Prefață]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabela
         | 
| 18 | 
            +
            :tip-caption: Sfat
         | 
| 19 | 
            +
            :toc-title: Cuprins
         | 
| 20 | 
            +
            :untitled-label: Fără denumire
         | 
| 21 | 
            +
            :version-label: Versiunea
         | 
| 22 | 
            +
            :warning-caption: Atenție
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Russian translation, courtesy of Alexander Zobkov <alexander.zobkov@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Приложение
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Внимание
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Пример
         | 
| 8 | 
            +
            :figure-caption: Рисунок
         | 
| 9 | 
            +
            :important-caption: Важно
         | 
| 10 | 
            +
            :last-update-label: Последний раз обновлено
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Листинг]
         | 
| 12 | 
            +
            //:manname-title: НАЗВАНИЕ
         | 
| 13 | 
            +
            :note-caption: Примечание
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Предисловие]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Таблица
         | 
| 18 | 
            +
            :tip-caption: Подсказка
         | 
| 19 | 
            +
            :toc-title: Содержание
         | 
| 20 | 
            +
            :untitled-label: Без названия
         | 
| 21 | 
            +
            :version-label: Версия
         | 
| 22 | 
            +
            :warning-caption: Предупреждение
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Serbian Cyrillic translation, courtesy of Bojan Stipic <bojan-7@live.com>
         | 
| 2 | 
            +
            :appendix-caption: Додатак
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Опрез
         | 
| 5 | 
            +
            :chapter-label: Поглавље
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Пример
         | 
| 8 | 
            +
            :figure-caption: Слика
         | 
| 9 | 
            +
            :important-caption: Важно
         | 
| 10 | 
            +
            :last-update-label: Последње ажурирано
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Списак]
         | 
| 12 | 
            +
            //:manname-title: НАЗИВ
         | 
| 13 | 
            +
            :note-caption: Белешка
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Предговор]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Табела
         | 
| 18 | 
            +
            :tip-caption: Савет
         | 
| 19 | 
            +
            :toc-title: Садржај
         | 
| 20 | 
            +
            :untitled-label: Без назива
         | 
| 21 | 
            +
            :version-label: Верзија
         | 
| 22 | 
            +
            :warning-caption: Упозорење
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Serbian Latin translation, courtesy of Bojan Stipic <bojan-7@live.com>
         | 
| 2 | 
            +
            :appendix-caption: Dodatak
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Oprez
         | 
| 5 | 
            +
            :chapter-label: Poglavlje
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Primer
         | 
| 8 | 
            +
            :figure-caption: Slika
         | 
| 9 | 
            +
            :important-caption: Važno
         | 
| 10 | 
            +
            :last-update-label: Poslednje ažurirano
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Spisak]
         | 
| 12 | 
            +
            //:manname-title: NAZIV
         | 
| 13 | 
            +
            :note-caption: Beleška
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Predgovor]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabela
         | 
| 18 | 
            +
            :tip-caption: Savet
         | 
| 19 | 
            +
            :toc-title: Sadržaj
         | 
| 20 | 
            +
            :untitled-label: Bez naziva
         | 
| 21 | 
            +
            :version-label: Verzija
         | 
| 22 | 
            +
            :warning-caption: Upozorenje
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Turkish translation, courtesy of Rahman Usta <rahman.usta.88@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Ek bölüm
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Dikkat
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Örnek
         | 
| 8 | 
            +
            :figure-caption: Görsel
         | 
| 9 | 
            +
            :important-caption: Önemli
         | 
| 10 | 
            +
            :last-update-label: Son güncelleme
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Listeleme]
         | 
| 12 | 
            +
            //:manname-title: İSİM
         | 
| 13 | 
            +
            :note-caption: Not
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Ön söz]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tablo
         | 
| 18 | 
            +
            :tip-caption: İpucu
         | 
| 19 | 
            +
            :toc-title: İçindekiler
         | 
| 20 | 
            +
            :untitled-label: İsimsiz
         | 
| 21 | 
            +
            :version-label: Versiyon
         | 
| 22 | 
            +
            :warning-caption: Uyarı
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Ukrainian translation, courtesy of Kyrylo Yatsenko <hedrok@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Додаток
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Обережно
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Приклад
         | 
| 8 | 
            +
            :figure-caption: Зображення
         | 
| 9 | 
            +
            :important-caption: Важливо
         | 
| 10 | 
            +
            :last-update-label: Востаннє оновлено
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Лістинг]
         | 
| 12 | 
            +
            //:manname-title: НАЗВА
         | 
| 13 | 
            +
            :note-caption: Зауваження
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Передмова]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Таблиця
         | 
| 18 | 
            +
            :tip-caption: Підказка
         | 
| 19 | 
            +
            :toc-title: Зміст
         | 
| 20 | 
            +
            :untitled-label: Без назви
         | 
| 21 | 
            +
            :version-label: Версія
         | 
| 22 | 
            +
            :warning-caption: Попередження
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Simplified Chinese translation, courtesy of John Dong <dongwqs@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: 附录
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: 注意
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: 示例
         | 
| 8 | 
            +
            :figure-caption: 图表
         | 
| 9 | 
            +
            :important-caption: 重要
         | 
| 10 | 
            +
            :last-update-label: 最后更新
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: 列表]
         | 
| 12 | 
            +
            //:manname-title: 名称
         | 
| 13 | 
            +
            :note-caption: 笔记
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: 序言]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: 表格
         | 
| 18 | 
            +
            :tip-caption: 提示
         | 
| 19 | 
            +
            :toc-title: 目录
         | 
| 20 | 
            +
            :untitled-label: 暂无标题
         | 
| 21 | 
            +
            :version-label: 版本
         | 
| 22 | 
            +
            :warning-caption: 警告
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Traditional Chinese translation, courtesy of John Dong <dongwqs@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: 附錄
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: 注意
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: 示例
         | 
| 8 | 
            +
            :figure-caption: 圖表
         | 
| 9 | 
            +
            :important-caption: 重要
         | 
| 10 | 
            +
            :last-update-label: 最後更新
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: 列表]
         | 
| 12 | 
            +
            //:manname-title: 名稱
         | 
| 13 | 
            +
            :note-caption: 筆記
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: 序言]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: 表格
         | 
| 18 | 
            +
            :tip-caption: 提示
         | 
| 19 | 
            +
            :toc-title: 目錄
         | 
| 20 | 
            +
            :untitled-label: 暫無標題
         | 
| 21 | 
            +
            :version-label: 版本
         | 
| 22 | 
            +
            :warning-caption: 警告
         | 
    
        data/data/locale/attributes.adoc
    CHANGED
    
    | @@ -1,652 +1,11 @@ | |
| 1 | 
            -
            // This  | 
| 2 | 
            -
            // See http://asciidoctor.org/docs/user-manual/#customizing-labels to learn how to  | 
| 1 | 
            +
            // This directory provides translations for all built-in attributes in Asciidoctor that emit translatable strings.
         | 
| 2 | 
            +
            // See http://asciidoctor.org/docs/user-manual/#customizing-labels to learn how to apply this file.
         | 
| 3 3 | 
             
            //
         | 
| 4 | 
            -
            //  | 
| 5 | 
            -
            //  | 
| 4 | 
            +
            // If you're introducing a new translation, create a file named attributes-<iana-subtag>.adoc, where <iana-subtag> is the IANA subtag for the language.
         | 
| 5 | 
            +
            // Next, assign a translation for each attribute, using attributes-en.adoc as a reference.
         | 
| 6 6 | 
             
            //
         | 
| 7 | 
            -
            // IMPORTANT: Do not  | 
| 7 | 
            +
            // IMPORTANT: Do not include any blank lines in the transation file.
         | 
| 8 8 | 
             
            //
         | 
| 9 | 
            -
            //  | 
| 10 | 
            -
             | 
| 11 | 
            -
             | 
| 12 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 13 | 
            -
            :caution-caption: تنبيه
         | 
| 14 | 
            -
            //:chapter-label: ???
         | 
| 15 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 16 | 
            -
            :example-caption: مثال
         | 
| 17 | 
            -
            :figure-caption: الشكل
         | 
| 18 | 
            -
            :important-caption: مهم
         | 
| 19 | 
            -
            :last-update-label: اخر تحديث
         | 
| 20 | 
            -
            //:listing-caption: قائمة
         | 
| 21 | 
            -
            :manname-title: اسم
         | 
| 22 | 
            -
            :note-caption: ملاحظة
         | 
| 23 | 
            -
            //:preface-title: تمهيد
         | 
| 24 | 
            -
            //:section-refsig: ???
         | 
| 25 | 
            -
            :table-caption: جدول
         | 
| 26 | 
            -
            :tip-caption: تلميح
         | 
| 27 | 
            -
            :toc-title: فهرس
         | 
| 28 | 
            -
            :untitled-label: بدون عنوان
         | 
| 29 | 
            -
            :version-label: نسخة
         | 
| 30 | 
            -
            :warning-caption: تحذير
         | 
| 31 | 
            -
            endif::[]
         | 
| 32 | 
            -
            // Bulgarian translation, courtesy of Ivan St. Ivanov <ivan.st.ivanov@gmail.com>
         | 
| 33 | 
            -
            ifeval::["{lang}" == "bg"]
         | 
| 34 | 
            -
            :appendix-caption: Приложение
         | 
| 35 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 36 | 
            -
            :caution-caption: Внимание
         | 
| 37 | 
            -
            //:chapter-label: ???
         | 
| 38 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 39 | 
            -
            :example-caption: Пример
         | 
| 40 | 
            -
            :figure-caption: Фигура
         | 
| 41 | 
            -
            :important-caption: Важно
         | 
| 42 | 
            -
            :last-update-label: Последно обновен
         | 
| 43 | 
            -
            //:listing-caption: Листинг
         | 
| 44 | 
            -
            :manname-title: ИМЕ
         | 
| 45 | 
            -
            :note-caption: Забележка
         | 
| 46 | 
            -
            //:preface-title: Предговор
         | 
| 47 | 
            -
            //:section-refsig: ???
         | 
| 48 | 
            -
            :table-caption: Таблица
         | 
| 49 | 
            -
            :tip-caption: Подсказка
         | 
| 50 | 
            -
            :toc-title: Съдържание
         | 
| 51 | 
            -
            :untitled-label: Без заглавие
         | 
| 52 | 
            -
            :version-label: Версия
         | 
| 53 | 
            -
            :warning-caption: Внимание
         | 
| 54 | 
            -
            endif::[]
         | 
| 55 | 
            -
            // Catalan translation, courtesy of Abel Salgado Romero <abelromero@gmail.com> and Alex Soto
         | 
| 56 | 
            -
            ifeval::["{lang}" == "ca"]
         | 
| 57 | 
            -
            :appendix-caption: Apendix
         | 
| 58 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 59 | 
            -
            :caution-caption: Atenció
         | 
| 60 | 
            -
            //:chapter-label: ???
         | 
| 61 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 62 | 
            -
            :example-caption: Exemple
         | 
| 63 | 
            -
            :figure-caption: Figura
         | 
| 64 | 
            -
            :important-caption: Important
         | 
| 65 | 
            -
            :last-update-label: Última actualització
         | 
| 66 | 
            -
            //:listing-caption: Llista
         | 
| 67 | 
            -
            :manname-title: NOM
         | 
| 68 | 
            -
            :note-caption: Nota
         | 
| 69 | 
            -
            //:preface-title: Prefaci
         | 
| 70 | 
            -
            //:section-refsig: ???
         | 
| 71 | 
            -
            :table-caption: Taula
         | 
| 72 | 
            -
            :tip-caption: Suggeriment
         | 
| 73 | 
            -
            :toc-title: Índex
         | 
| 74 | 
            -
            :untitled-label: Sense títol
         | 
| 75 | 
            -
            :version-label: Versió
         | 
| 76 | 
            -
            :warning-caption: Advertència
         | 
| 77 | 
            -
            endif::[]
         | 
| 78 | 
            -
            // Danish translation, courtesy of Max Rydahl Andersen <manderse@redhat.com>
         | 
| 79 | 
            -
            ifeval::["{lang}" == "da"]
         | 
| 80 | 
            -
            :appendix-caption: Appendix
         | 
| 81 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 82 | 
            -
            :caution-caption: Forsigtig
         | 
| 83 | 
            -
            //:chapter-label: ???
         | 
| 84 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 85 | 
            -
            :example-caption: Eksempel
         | 
| 86 | 
            -
            :figure-caption: Figur
         | 
| 87 | 
            -
            :important-caption: Vigtig
         | 
| 88 | 
            -
            :last-update-label: Sidst opdateret
         | 
| 89 | 
            -
            //:listing-caption: List
         | 
| 90 | 
            -
            :manname-title: NAVN
         | 
| 91 | 
            -
            :note-caption: Notat
         | 
| 92 | 
            -
            //:preface-title:
         | 
| 93 | 
            -
            //:section-refsig: ???
         | 
| 94 | 
            -
            :table-caption: Tabel
         | 
| 95 | 
            -
            :tip-caption: Tips
         | 
| 96 | 
            -
            :toc-title: Indholdsfortegnelse
         | 
| 97 | 
            -
            :untitled-label: Unavngivet
         | 
| 98 | 
            -
            :version-label: Version
         | 
| 99 | 
            -
            :warning-caption: Advarsel
         | 
| 100 | 
            -
            endif::[]
         | 
| 101 | 
            -
            // German translation, courtesy of Florian Wilhelm
         | 
| 102 | 
            -
            ifeval::["{lang}" == "de"]
         | 
| 103 | 
            -
            :appendix-caption: Anhang
         | 
| 104 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 105 | 
            -
            :caution-caption: Achtung
         | 
| 106 | 
            -
            :chapter-label: Kapitel
         | 
| 107 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 108 | 
            -
            :example-caption: Beispiel
         | 
| 109 | 
            -
            :figure-caption: Abbildung
         | 
| 110 | 
            -
            :important-caption: Wichtig
         | 
| 111 | 
            -
            :last-update-label: Zuletzt aktualisiert
         | 
| 112 | 
            -
            //:listing-caption: Listing
         | 
| 113 | 
            -
            :manname-title: BEZEICHNUNG
         | 
| 114 | 
            -
            :note-caption: Anmerkung
         | 
| 115 | 
            -
            //:preface-title: Vorwort
         | 
| 116 | 
            -
            //:section-refsig: ???
         | 
| 117 | 
            -
            :table-caption: Tabelle
         | 
| 118 | 
            -
            :tip-caption: Hinweis
         | 
| 119 | 
            -
            :toc-title: Inhalt
         | 
| 120 | 
            -
            :untitled-label: Ohne Titel
         | 
| 121 | 
            -
            :version-label: Version
         | 
| 122 | 
            -
            :warning-caption: Warnung
         | 
| 123 | 
            -
            endif::[]
         | 
| 124 | 
            -
            // Spanish translation, courtesy of Eddú Meléndez <eddu.melendez@gmail.com>
         | 
| 125 | 
            -
            ifeval::["{lang}" == "es"]
         | 
| 126 | 
            -
            :appendix-caption: Apéndice
         | 
| 127 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 128 | 
            -
            :caution-caption: Precaución
         | 
| 129 | 
            -
            //:chapter-label: ???
         | 
| 130 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 131 | 
            -
            :example-caption: Ejemplo
         | 
| 132 | 
            -
            :figure-caption: Figura
         | 
| 133 | 
            -
            :important-caption: Importante
         | 
| 134 | 
            -
            :last-update-label: Ultima actualización
         | 
| 135 | 
            -
            //:listing-caption: Lista
         | 
| 136 | 
            -
            :manname-title: NOMBRE
         | 
| 137 | 
            -
            :note-caption: Nota
         | 
| 138 | 
            -
            //:preface-title: Prefacio
         | 
| 139 | 
            -
            //:section-refsig: ???
         | 
| 140 | 
            -
            :table-caption: Tabla
         | 
| 141 | 
            -
            :tip-caption: Sugerencia
         | 
| 142 | 
            -
            :toc-title: Tabla de Contenido
         | 
| 143 | 
            -
            :untitled-label: Sin título
         | 
| 144 | 
            -
            :version-label: Versión
         | 
| 145 | 
            -
            :warning-caption: Aviso
         | 
| 146 | 
            -
            endif::[]
         | 
| 147 | 
            -
            // Persian (Farsi) translation, courtesy of Shahryar Eivazzadeh <shahryareiv@gmail.com>
         | 
| 148 | 
            -
            ifeval::["{lang}" == "fa"]
         | 
| 149 | 
            -
            :appendix-caption: پیوست
         | 
| 150 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 151 | 
            -
            :caution-caption: گوشزد
         | 
| 152 | 
            -
            //:chapter-label: ???
         | 
| 153 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 154 | 
            -
            :example-caption: نمونه
         | 
| 155 | 
            -
            :figure-caption: نمودار
         | 
| 156 | 
            -
            :important-caption: مهم
         | 
| 157 | 
            -
            :last-update-label: آخرین به روز رسانی
         | 
| 158 | 
            -
            //:listing-caption: فهرست
         | 
| 159 | 
            -
            :manname-title: نام
         | 
| 160 | 
            -
            :note-caption: یادداشت
         | 
| 161 | 
            -
            //:preface-title: پیشگفتار
         | 
| 162 | 
            -
            //:section-refsig: ???
         | 
| 163 | 
            -
            :table-caption: جدول
         | 
| 164 | 
            -
            :tip-caption: نکته
         | 
| 165 | 
            -
            :toc-title: فهرست مطالب
         | 
| 166 | 
            -
            :untitled-label: بینام
         | 
| 167 | 
            -
            :version-label: نگارش
         | 
| 168 | 
            -
            :warning-caption: هشدار
         | 
| 169 | 
            -
            endif::[]
         | 
| 170 | 
            -
            // Finnish translation by Tero Hänninen
         | 
| 171 | 
            -
            ifeval::["{lang}" == "fi"]
         | 
| 172 | 
            -
            :appendix-caption: Liitteet
         | 
| 173 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 174 | 
            -
            :caution-caption: Huom
         | 
| 175 | 
            -
            //:chapter-label: ???
         | 
| 176 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 177 | 
            -
            :example-caption: Esimerkki
         | 
| 178 | 
            -
            :figure-caption: Kuvio
         | 
| 179 | 
            -
            :important-caption: Tärkeää
         | 
| 180 | 
            -
            :last-update-label: Viimeksi päivitetty
         | 
| 181 | 
            -
            //:listing-caption: Listaus
         | 
| 182 | 
            -
            :manname-title: NIMI
         | 
| 183 | 
            -
            :note-caption: Huomio
         | 
| 184 | 
            -
            //:preface-title: Esipuhe
         | 
| 185 | 
            -
            //:section-refsig: ???
         | 
| 186 | 
            -
            :table-caption: Taulukko
         | 
| 187 | 
            -
            :tip-caption: Vinkki
         | 
| 188 | 
            -
            :toc-title: Sisällysluettelo
         | 
| 189 | 
            -
            :untitled-label: Nimetön
         | 
| 190 | 
            -
            :version-label: Versio
         | 
| 191 | 
            -
            :warning-caption: Varoitus
         | 
| 192 | 
            -
            endif::[]
         | 
| 193 | 
            -
            // French translation, courtesy of Nicolas Comet <nicolas.comet@gmail.com>
         | 
| 194 | 
            -
            ifeval::["{lang}" == "fr"]
         | 
| 195 | 
            -
            :appendix-caption: Appendice
         | 
| 196 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 197 | 
            -
            :caution-caption: Avertissement
         | 
| 198 | 
            -
            //:chapter-label: ???
         | 
| 199 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 200 | 
            -
            :example-caption: Exemple
         | 
| 201 | 
            -
            :figure-caption: Figure
         | 
| 202 | 
            -
            :important-caption: Important
         | 
| 203 | 
            -
            :last-update-label: Dernière mise à jour
         | 
| 204 | 
            -
            //:listing-caption: Liste
         | 
| 205 | 
            -
            :manname-title: NOM
         | 
| 206 | 
            -
            :note-caption: Note
         | 
| 207 | 
            -
            //:preface-title: Préface
         | 
| 208 | 
            -
            //:section-refsig: ???
         | 
| 209 | 
            -
            :table-caption: Tableau
         | 
| 210 | 
            -
            :tip-caption: Astuce
         | 
| 211 | 
            -
            :toc-title: Table des matières
         | 
| 212 | 
            -
            :untitled-label: Sans titre
         | 
| 213 | 
            -
            :version-label: Version
         | 
| 214 | 
            -
            :warning-caption: Attention
         | 
| 215 | 
            -
            endif::[]
         | 
| 216 | 
            -
            // Hungarian translation, courtesy of István Pató <istvan.pato@gmail.com>
         | 
| 217 | 
            -
            ifeval::["{lang}" == "hu"]
         | 
| 218 | 
            -
            :appendix-caption: függelék
         | 
| 219 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 220 | 
            -
            :caution-caption: Figyelmeztetés
         | 
| 221 | 
            -
            //:chapter-label: ???
         | 
| 222 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 223 | 
            -
            :example-caption: Példa
         | 
| 224 | 
            -
            :figure-caption: Ábra
         | 
| 225 | 
            -
            :important-caption: Fontos
         | 
| 226 | 
            -
            :last-update-label: Utolsó frissítés
         | 
| 227 | 
            -
            //:listing-caption: Lista
         | 
| 228 | 
            -
            :manname-title: NÉV
         | 
| 229 | 
            -
            :note-caption: Megjegyzés
         | 
| 230 | 
            -
            //:preface-title: Előszó
         | 
| 231 | 
            -
            //:section-refsig: ???
         | 
| 232 | 
            -
            :table-caption: Táblázat
         | 
| 233 | 
            -
            :tip-caption: Tipp
         | 
| 234 | 
            -
            :toc-title: Tartalomjegyzék
         | 
| 235 | 
            -
            :untitled-label: Névtelen
         | 
| 236 | 
            -
            :version-label: Verzió
         | 
| 237 | 
            -
            :warning-caption: Figyelem
         | 
| 238 | 
            -
            endif::[]
         | 
| 239 | 
            -
            // Bahasa Indonesia, courtesy of Triyan W. Nugroho <triyan.wn@gmail.com>
         | 
| 240 | 
            -
            ifeval::["{lang}" == "id"]
         | 
| 241 | 
            -
            :appendix-caption: Lampiran
         | 
| 242 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 243 | 
            -
            :caution-caption: Perhatian
         | 
| 244 | 
            -
            :chapter-label: Bab
         | 
| 245 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 246 | 
            -
            :example-caption: Contoh
         | 
| 247 | 
            -
            :figure-caption: Gambar
         | 
| 248 | 
            -
            :important-caption: Penting
         | 
| 249 | 
            -
            :last-update-label: Pembaruan terakhir
         | 
| 250 | 
            -
            //:listing-caption: Daftar
         | 
| 251 | 
            -
            :manname-title: NAMA
         | 
| 252 | 
            -
            :note-caption: Catatan
         | 
| 253 | 
            -
            //:preface-title:
         | 
| 254 | 
            -
            //:section-refsig: ???
         | 
| 255 | 
            -
            :table-caption: Tabel
         | 
| 256 | 
            -
            :tip-caption: Tips
         | 
| 257 | 
            -
            :toc-title: Daftar Isi
         | 
| 258 | 
            -
            :untitled-label: Tak Berjudul
         | 
| 259 | 
            -
            :version-label: Versi
         | 
| 260 | 
            -
            :warning-caption: Peringatan
         | 
| 261 | 
            -
            endif::[]
         | 
| 262 | 
            -
            // Italian translation, courtesy of Marco Ciampa <ciampix@libero.it>
         | 
| 263 | 
            -
            ifeval::["{lang}" == "it"]
         | 
| 264 | 
            -
            :appendix-caption: Appendice
         | 
| 265 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 266 | 
            -
            :caution-caption: Attenzione
         | 
| 267 | 
            -
            :chapter-label: Capitolo
         | 
| 268 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 269 | 
            -
            :example-caption: Esempio
         | 
| 270 | 
            -
            :figure-caption: Figura
         | 
| 271 | 
            -
            :important-caption: Importante
         | 
| 272 | 
            -
            :last-update-label: Ultimo aggiornamento
         | 
| 273 | 
            -
            //:listing-caption: Elenco
         | 
| 274 | 
            -
            :manname-title: NOME
         | 
| 275 | 
            -
            :note-caption: Nota
         | 
| 276 | 
            -
            //:preface-title: Prefazione
         | 
| 277 | 
            -
            //:section-refsig: ???
         | 
| 278 | 
            -
            :table-caption: Tabella
         | 
| 279 | 
            -
            :tip-caption: Suggerimento
         | 
| 280 | 
            -
            :toc-title: Indice
         | 
| 281 | 
            -
            :untitled-label: Senza titolo
         | 
| 282 | 
            -
            :version-label: Versione
         | 
| 283 | 
            -
            :warning-caption: Attenzione
         | 
| 284 | 
            -
            endif::[]
         | 
| 285 | 
            -
            // Japanese translation, courtesy of Takayuki Konishi <seannos.takayuki@gmail.com>
         | 
| 286 | 
            -
            ifeval::["{lang}" == "ja"]
         | 
| 287 | 
            -
            :appendix-caption: 付録
         | 
| 288 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 289 | 
            -
            :caution-caption: 注意
         | 
| 290 | 
            -
            //:chapter-label: ???
         | 
| 291 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 292 | 
            -
            :example-caption: 例
         | 
| 293 | 
            -
            :figure-caption: 図
         | 
| 294 | 
            -
            :important-caption: 重要
         | 
| 295 | 
            -
            :last-update-label: 最終更新
         | 
| 296 | 
            -
            //:listing-caption: リスト
         | 
| 297 | 
            -
            :manname-title: 名前
         | 
| 298 | 
            -
            :note-caption: 注記
         | 
| 299 | 
            -
            //:preface-title: まえがき
         | 
| 300 | 
            -
            //:section-refsig: ???
         | 
| 301 | 
            -
            :table-caption: 表
         | 
| 302 | 
            -
            :tip-caption: ヒント
         | 
| 303 | 
            -
            :toc-title: 目次
         | 
| 304 | 
            -
            :untitled-label: 無題
         | 
| 305 | 
            -
            :version-label: バージョン
         | 
| 306 | 
            -
            :warning-caption: 警告
         | 
| 307 | 
            -
            endif::[]
         | 
| 308 | 
            -
            // Korean translation, courtesy of Sungsik Nam <jmyl@me.com>
         | 
| 309 | 
            -
            ifeval::["{lang}" == "kr"]
         | 
| 310 | 
            -
            :appendix-caption: 부록
         | 
| 311 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 312 | 
            -
            :caution-caption: 주의
         | 
| 313 | 
            -
            //:chapter-label: ???
         | 
| 314 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 315 | 
            -
            :example-caption: 예시
         | 
| 316 | 
            -
            :figure-caption: 그림
         | 
| 317 | 
            -
            :important-caption: 중요
         | 
| 318 | 
            -
            :last-update-label: 마지막 업데이트
         | 
| 319 | 
            -
            //:listing-caption: 목록
         | 
| 320 | 
            -
            :manname-title: 이름
         | 
| 321 | 
            -
            :note-caption: 노트
         | 
| 322 | 
            -
            //:preface-title: 머리말
         | 
| 323 | 
            -
            //:section-refsig: ???
         | 
| 324 | 
            -
            :table-caption: 표
         | 
| 325 | 
            -
            :tip-caption: 힌트
         | 
| 326 | 
            -
            :toc-title: 차례
         | 
| 327 | 
            -
            :untitled-label: 익명
         | 
| 328 | 
            -
            :version-label: 버전
         | 
| 329 | 
            -
            :warning-caption: 경고
         | 
| 330 | 
            -
            endif::[]
         | 
| 331 | 
            -
            // Dutch translation, courtesy of Roel Van Steenberghe <roel.vansteenberghe@gmail.com>
         | 
| 332 | 
            -
            ifeval::["{lang}" == "nl"]
         | 
| 333 | 
            -
            :appendix-caption: Bijlage
         | 
| 334 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 335 | 
            -
            :caution-caption: Opgelet
         | 
| 336 | 
            -
            //:chapter-label: ???
         | 
| 337 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 338 | 
            -
            :example-caption: Voorbeeld
         | 
| 339 | 
            -
            :figure-caption: Figuur
         | 
| 340 | 
            -
            :important-caption: Belangrijk
         | 
| 341 | 
            -
            :last-update-label: Laatste aanpassing
         | 
| 342 | 
            -
            //:listing-caption: Lijst
         | 
| 343 | 
            -
            :manname-title: NAAM
         | 
| 344 | 
            -
            :note-caption: Noot
         | 
| 345 | 
            -
            //:preface-title: Inleiding
         | 
| 346 | 
            -
            //:section-refsig: ???
         | 
| 347 | 
            -
            :table-caption: Tabel
         | 
| 348 | 
            -
            :tip-caption: Tip
         | 
| 349 | 
            -
            :toc-title: Ínhoudsopgave
         | 
| 350 | 
            -
            :untitled-label: Naamloos
         | 
| 351 | 
            -
            :version-label: Versie
         | 
| 352 | 
            -
            :warning-caption: Waarschuwing
         | 
| 353 | 
            -
            endif::[]
         | 
| 354 | 
            -
            // Norwegian Bokmål, courtesy of Aslak Knutsen <aslak@4fs.no>, with updates from Karl Ove Hufthammer <karl@huftis.org>
         | 
| 355 | 
            -
            ifeval::["{lang}" == "nb"]
         | 
| 356 | 
            -
            :appendix-caption: Vedlegg
         | 
| 357 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 358 | 
            -
            :caution-caption: OBS
         | 
| 359 | 
            -
            :chapter-label: Kapittel
         | 
| 360 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 361 | 
            -
            :example-caption: Eksempel
         | 
| 362 | 
            -
            :figure-caption: Figur
         | 
| 363 | 
            -
            :important-caption: Viktig
         | 
| 364 | 
            -
            :last-update-label: Sist oppdatert
         | 
| 365 | 
            -
            //:listing-caption: Programkode
         | 
| 366 | 
            -
            :manname-title: NAVN
         | 
| 367 | 
            -
            :note-caption: Merk
         | 
| 368 | 
            -
            //:preface-title: Forord
         | 
| 369 | 
            -
            //:section-refsig: ???
         | 
| 370 | 
            -
            :table-caption: Tabell
         | 
| 371 | 
            -
            :tip-caption: Tips
         | 
| 372 | 
            -
            :toc-title: Innhold
         | 
| 373 | 
            -
            :untitled-label: Navnløs
         | 
| 374 | 
            -
            :version-label: Versjon
         | 
| 375 | 
            -
            :warning-caption: Advarsel
         | 
| 376 | 
            -
            endif::[]
         | 
| 377 | 
            -
            // Norwegian Nynorsk, courtesy of Karl Ove Hufthammer <karl@huftis.org>
         | 
| 378 | 
            -
            ifeval::["{lang}" == "nn"]
         | 
| 379 | 
            -
            :appendix-caption: Vedlegg
         | 
| 380 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 381 | 
            -
            :caution-caption: OBS
         | 
| 382 | 
            -
            :chapter-label: Kapittel
         | 
| 383 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 384 | 
            -
            :example-caption: Eksempel
         | 
| 385 | 
            -
            :figure-caption: Figur
         | 
| 386 | 
            -
            :important-caption: Viktig
         | 
| 387 | 
            -
            :last-update-label: Sist oppdatert
         | 
| 388 | 
            -
            //:listing-caption: Programkode
         | 
| 389 | 
            -
            :manname-title: NAMN
         | 
| 390 | 
            -
            :note-caption: Merk
         | 
| 391 | 
            -
            //:preface-title: Forord
         | 
| 392 | 
            -
            //:section-refsig: ???
         | 
| 393 | 
            -
            :table-caption: Tabell
         | 
| 394 | 
            -
            :tip-caption: Tips
         | 
| 395 | 
            -
            :toc-title: Innhald
         | 
| 396 | 
            -
            :untitled-label: Namnlaus
         | 
| 397 | 
            -
            :version-label: Versjon
         | 
| 398 | 
            -
            :warning-caption: Åtvaring
         | 
| 399 | 
            -
            endif::[]
         | 
| 400 | 
            -
            // Polish translation, courtesy of Łukasz Dziedziul <l.dziedziul@gmail.com>
         | 
| 401 | 
            -
            ifeval::["{lang}" == "pl"]
         | 
| 402 | 
            -
            :appendix-caption: Dodatek
         | 
| 403 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 404 | 
            -
            :caution-caption: Uwaga
         | 
| 405 | 
            -
            :chapter-label: Rozdział
         | 
| 406 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 407 | 
            -
            :example-caption: Przykład
         | 
| 408 | 
            -
            :figure-caption: Rysunek
         | 
| 409 | 
            -
            :important-caption: Ważne
         | 
| 410 | 
            -
            :last-update-label: Ostatnio zmodyfikowany
         | 
| 411 | 
            -
            //:listing-caption:
         | 
| 412 | 
            -
            :manname-title: NAZWA
         | 
| 413 | 
            -
            :note-caption: Notka
         | 
| 414 | 
            -
            //:preface-title:
         | 
| 415 | 
            -
            //:section-refsig: ???
         | 
| 416 | 
            -
            :table-caption: Tabela
         | 
| 417 | 
            -
            :tip-caption: Sugestia
         | 
| 418 | 
            -
            :toc-title: Spis treści
         | 
| 419 | 
            -
            :untitled-label: Bez tytułu
         | 
| 420 | 
            -
            :version-label: Wersja
         | 
| 421 | 
            -
            :warning-caption: Ostrzeżenie
         | 
| 422 | 
            -
            endif::[]
         | 
| 423 | 
            -
            // Portuguese translation, courtesy of Roberto Cortez <radcortez@yahoo.com>
         | 
| 424 | 
            -
            ifeval::["{lang}" == "pt"]
         | 
| 425 | 
            -
            :appendix-caption: Apêndice
         | 
| 426 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 427 | 
            -
            :caution-caption: Atenção
         | 
| 428 | 
            -
            //:chapter-label: ???
         | 
| 429 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 430 | 
            -
            :example-caption: Exemplo
         | 
| 431 | 
            -
            :figure-caption: Figura
         | 
| 432 | 
            -
            :important-caption: Importante
         | 
| 433 | 
            -
            :last-update-label: Última actualização
         | 
| 434 | 
            -
            //:listing-caption: Listagem
         | 
| 435 | 
            -
            :manname-title: NOME
         | 
| 436 | 
            -
            :note-caption: Nota
         | 
| 437 | 
            -
            //:preface-title: Prefácio
         | 
| 438 | 
            -
            //:section-refsig: ???
         | 
| 439 | 
            -
            :table-caption: Tabela
         | 
| 440 | 
            -
            :tip-caption: Sugestão
         | 
| 441 | 
            -
            :toc-title: Índice
         | 
| 442 | 
            -
            :untitled-label: Sem título
         | 
| 443 | 
            -
            :version-label: Versão
         | 
| 444 | 
            -
            :warning-caption: Aviso
         | 
| 445 | 
            -
            endif::[]
         | 
| 446 | 
            -
            // Brazilian Portuguese translation, courtesy of Rafael Pestano <rmpestano@gmail.com>
         | 
| 447 | 
            -
            ifeval::["{lang}" == "pt_BR"]
         | 
| 448 | 
            -
            :appendix-caption: Apêndice
         | 
| 449 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 450 | 
            -
            :caution-caption: Cuidado
         | 
| 451 | 
            -
            //:chapter-label: ???
         | 
| 452 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 453 | 
            -
            :example-caption: Exemplo
         | 
| 454 | 
            -
            :figure-caption: Figura
         | 
| 455 | 
            -
            :important-caption: Importante
         | 
| 456 | 
            -
            :last-update-label: Última atualização
         | 
| 457 | 
            -
            //:listing-caption: Listagem
         | 
| 458 | 
            -
            :manname-title: NOME
         | 
| 459 | 
            -
            :note-caption: Nota
         | 
| 460 | 
            -
            //:preface-title: Prefácio
         | 
| 461 | 
            -
            //:section-refsig: ???
         | 
| 462 | 
            -
            :table-caption: Tabela
         | 
| 463 | 
            -
            :tip-caption: Dica
         | 
| 464 | 
            -
            :toc-title: Índice
         | 
| 465 | 
            -
            :untitled-label: Sem título
         | 
| 466 | 
            -
            :version-label: Versão
         | 
| 467 | 
            -
            :warning-caption: Aviso
         | 
| 468 | 
            -
            endif::[]
         | 
| 469 | 
            -
            // Romanian translation, courtesy of Vitalie Lazu <vitalie.lazu@gmail.com>
         | 
| 470 | 
            -
            ifeval::["{lang}" == "ro"]
         | 
| 471 | 
            -
            :appendix-caption: Apendix
         | 
| 472 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 473 | 
            -
            :caution-caption: Precauție
         | 
| 474 | 
            -
            //:chapter-label: ???
         | 
| 475 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 476 | 
            -
            :example-caption: Exemplu
         | 
| 477 | 
            -
            :figure-caption: Figură
         | 
| 478 | 
            -
            :important-caption: Important
         | 
| 479 | 
            -
            :last-update-label: Ultima actualizare
         | 
| 480 | 
            -
            //:listing-caption: Listare
         | 
| 481 | 
            -
            :manname-title: NUME
         | 
| 482 | 
            -
            :note-caption: Notă
         | 
| 483 | 
            -
            //:preface-title: Prefață
         | 
| 484 | 
            -
            //:section-refsig: ???
         | 
| 485 | 
            -
            :table-caption: Tabela
         | 
| 486 | 
            -
            :tip-caption: Sfat
         | 
| 487 | 
            -
            :toc-title: Cuprins
         | 
| 488 | 
            -
            :untitled-label: Fără denumire
         | 
| 489 | 
            -
            :version-label: Versiunea
         | 
| 490 | 
            -
            :warning-caption: Atenție
         | 
| 491 | 
            -
            endif::[]
         | 
| 492 | 
            -
            // Russian translation, courtesy of Alexander Zobkov <alexander.zobkov@gmail.com>
         | 
| 493 | 
            -
            ifeval::["{lang}" == "ru"]
         | 
| 494 | 
            -
            :appendix-caption: Приложение
         | 
| 495 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 496 | 
            -
            :caution-caption: Внимание
         | 
| 497 | 
            -
            //:chapter-label: ???
         | 
| 498 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 499 | 
            -
            :example-caption: Пример
         | 
| 500 | 
            -
            :figure-caption: Рисунок
         | 
| 501 | 
            -
            :important-caption: Важно
         | 
| 502 | 
            -
            :last-update-label: Последний раз обновлено
         | 
| 503 | 
            -
            //:listing-caption: Листинг
         | 
| 504 | 
            -
            :manname-title: НАЗВАНИЕ
         | 
| 505 | 
            -
            :note-caption: Примечание
         | 
| 506 | 
            -
            //:preface-title: Предисловие
         | 
| 507 | 
            -
            //:section-refsig: ???
         | 
| 508 | 
            -
            :table-caption: Таблица
         | 
| 509 | 
            -
            :tip-caption: Подсказка
         | 
| 510 | 
            -
            :toc-title: Содержание
         | 
| 511 | 
            -
            :untitled-label: Без названия
         | 
| 512 | 
            -
            :version-label: Версия
         | 
| 513 | 
            -
            :warning-caption: Предупреждение
         | 
| 514 | 
            -
            endif::[]
         | 
| 515 | 
            -
            // Serbian Cyrillic translation, courtesy of Bojan Stipic <bojan-7@live.com>
         | 
| 516 | 
            -
            ifeval::["{lang}" == "sr"]
         | 
| 517 | 
            -
            :appendix-caption: Додатак
         | 
| 518 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 519 | 
            -
            :caution-caption: Опрез
         | 
| 520 | 
            -
            :chapter-label: Поглавље
         | 
| 521 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 522 | 
            -
            :example-caption: Пример
         | 
| 523 | 
            -
            :figure-caption: Слика
         | 
| 524 | 
            -
            :important-caption: Важно
         | 
| 525 | 
            -
            :last-update-label: Последње ажурирано
         | 
| 526 | 
            -
            //:listing-caption: Списак
         | 
| 527 | 
            -
            :manname-title: НАЗИВ
         | 
| 528 | 
            -
            :note-caption: Белешка
         | 
| 529 | 
            -
            //:preface-title: Предговор
         | 
| 530 | 
            -
            //:section-refsig: ???
         | 
| 531 | 
            -
            :table-caption: Табела
         | 
| 532 | 
            -
            :tip-caption: Савет
         | 
| 533 | 
            -
            :toc-title: Садржај
         | 
| 534 | 
            -
            :untitled-label: Без назива
         | 
| 535 | 
            -
            :version-label: Верзија
         | 
| 536 | 
            -
            :warning-caption: Упозорење
         | 
| 537 | 
            -
            endif::[]
         | 
| 538 | 
            -
            // Serbian Latin translation, courtesy of Bojan Stipic <bojan-7@live.com>
         | 
| 539 | 
            -
            ifeval::["{lang}" == "sr_Latn"]
         | 
| 540 | 
            -
            :appendix-caption: Dodatak
         | 
| 541 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 542 | 
            -
            :caution-caption: Oprez
         | 
| 543 | 
            -
            :chapter-label: Poglavlje
         | 
| 544 | 
            -
            :chapter-refsig: {chapter-label}
         | 
| 545 | 
            -
            :example-caption: Primer
         | 
| 546 | 
            -
            :figure-caption: Slika
         | 
| 547 | 
            -
            :important-caption: Važno
         | 
| 548 | 
            -
            :last-update-label: Poslednje ažurirano
         | 
| 549 | 
            -
            //:listing-caption: Spisak
         | 
| 550 | 
            -
            :manname-title: NAZIV
         | 
| 551 | 
            -
            :note-caption: Beleška
         | 
| 552 | 
            -
            //:preface-title: Predgovor
         | 
| 553 | 
            -
            //:section-refsig: ???
         | 
| 554 | 
            -
            :table-caption: Tabela
         | 
| 555 | 
            -
            :tip-caption: Savet
         | 
| 556 | 
            -
            :toc-title: Sadržaj
         | 
| 557 | 
            -
            :untitled-label: Bez naziva
         | 
| 558 | 
            -
            :version-label: Verzija
         | 
| 559 | 
            -
            :warning-caption: Upozorenje
         | 
| 560 | 
            -
            endif::[]
         | 
| 561 | 
            -
            // Turkish translation, courtesy of Rahman Usta <rahman.usta.88@gmail.com>
         | 
| 562 | 
            -
            ifeval::["{lang}" == "tr"]
         | 
| 563 | 
            -
            :appendix-caption: Ek bölüm
         | 
| 564 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 565 | 
            -
            :caution-caption: Dikkat
         | 
| 566 | 
            -
            //:chapter-label: ???
         | 
| 567 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 568 | 
            -
            :example-caption: Örnek
         | 
| 569 | 
            -
            :figure-caption: Görsel
         | 
| 570 | 
            -
            :important-caption: Önemli
         | 
| 571 | 
            -
            :last-update-label: Son güncelleme
         | 
| 572 | 
            -
            //:listing-caption: Listeleme
         | 
| 573 | 
            -
            :manname-title: İSİM
         | 
| 574 | 
            -
            :note-caption: Not
         | 
| 575 | 
            -
            //:preface-title: Ön söz
         | 
| 576 | 
            -
            //:section-refsig: ???
         | 
| 577 | 
            -
            :table-caption: Tablo
         | 
| 578 | 
            -
            :tip-caption: İpucu
         | 
| 579 | 
            -
            :toc-title: İçindekiler
         | 
| 580 | 
            -
            :untitled-label: İsimsiz
         | 
| 581 | 
            -
            :version-label: Versiyon
         | 
| 582 | 
            -
            :warning-caption: Uyarı
         | 
| 583 | 
            -
            endif::[]
         | 
| 584 | 
            -
            // Ukrainian translation, courtesy of Kyrylo Yatsenko <hedrok@gmail.com>
         | 
| 585 | 
            -
            ifeval::["{lang}" == "uk"]
         | 
| 586 | 
            -
            :appendix-caption: Додаток
         | 
| 587 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 588 | 
            -
            :caution-caption: Обережно
         | 
| 589 | 
            -
            //:chapter-label: ???
         | 
| 590 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 591 | 
            -
            :example-caption: Приклад
         | 
| 592 | 
            -
            :figure-caption: Зображення
         | 
| 593 | 
            -
            :important-caption: Важливо
         | 
| 594 | 
            -
            :last-update-label: Востаннє оновлено
         | 
| 595 | 
            -
            //:listing-caption: Лістинг
         | 
| 596 | 
            -
            :manname-title: НАЗВА
         | 
| 597 | 
            -
            :note-caption: Зауваження
         | 
| 598 | 
            -
            //:preface-title: Передмова
         | 
| 599 | 
            -
            //:section-refsig: ???
         | 
| 600 | 
            -
            :table-caption: Таблиця
         | 
| 601 | 
            -
            :tip-caption: Підказка
         | 
| 602 | 
            -
            :toc-title: Зміст
         | 
| 603 | 
            -
            :untitled-label: Без назви
         | 
| 604 | 
            -
            :version-label: Версія
         | 
| 605 | 
            -
            :warning-caption: Попередження
         | 
| 606 | 
            -
            endif::[]
         | 
| 607 | 
            -
            // Simplified Chinese translation, courtesy of John Dong <dongwqs@gmail.com>
         | 
| 608 | 
            -
            ifeval::["{lang}" == "zh_CN"]
         | 
| 609 | 
            -
            :appendix-caption: 附录
         | 
| 610 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 611 | 
            -
            :caution-caption: 注意
         | 
| 612 | 
            -
            //:chapter-label: ???
         | 
| 613 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 614 | 
            -
            :example-caption: 示例
         | 
| 615 | 
            -
            :figure-caption: 图表
         | 
| 616 | 
            -
            :important-caption: 重要
         | 
| 617 | 
            -
            :last-update-label: 最后更新
         | 
| 618 | 
            -
            //:listing-caption: 列表
         | 
| 619 | 
            -
            :manname-title: 名称
         | 
| 620 | 
            -
            :note-caption: 笔记
         | 
| 621 | 
            -
            //:preface-title: 序言
         | 
| 622 | 
            -
            //:section-refsig: ???
         | 
| 623 | 
            -
            :table-caption: 表格
         | 
| 624 | 
            -
            :tip-caption: 提示
         | 
| 625 | 
            -
            :toc-title: 目录
         | 
| 626 | 
            -
            :untitled-label: 暂无标题
         | 
| 627 | 
            -
            :version-label: 版本
         | 
| 628 | 
            -
            :warning-caption: 警告
         | 
| 629 | 
            -
            endif::[]
         | 
| 630 | 
            -
            // Traditional Chinese translation, courtesy of John Dong <dongwqs@gmail.com>
         | 
| 631 | 
            -
            ifeval::["{lang}" == "zh_TW"]
         | 
| 632 | 
            -
            :appendix-caption: 附錄
         | 
| 633 | 
            -
            :appendix-refsig: {appendix-caption}
         | 
| 634 | 
            -
            :caution-caption: 注意
         | 
| 635 | 
            -
            //:chapter-label: ???
         | 
| 636 | 
            -
            //:chapter-refsig: {chapter-label}
         | 
| 637 | 
            -
            :example-caption: 示例
         | 
| 638 | 
            -
            :figure-caption: 圖表
         | 
| 639 | 
            -
            :important-caption: 重要
         | 
| 640 | 
            -
            :last-update-label: 最後更新
         | 
| 641 | 
            -
            //:listing-caption: 列表
         | 
| 642 | 
            -
            :manname-title: 名稱
         | 
| 643 | 
            -
            :note-caption: 筆記
         | 
| 644 | 
            -
            //:preface-title: 序言
         | 
| 645 | 
            -
            //:section-refsig: ???
         | 
| 646 | 
            -
            :table-caption: 表格
         | 
| 647 | 
            -
            :tip-caption: 提示
         | 
| 648 | 
            -
            :toc-title: 目錄
         | 
| 649 | 
            -
            :untitled-label: 暫無標題
         | 
| 650 | 
            -
            :version-label: 版本
         | 
| 651 | 
            -
            :warning-caption: 警告
         | 
| 652 | 
            -
            endif::[]
         | 
| 9 | 
            +
            // NOTE: Please wrap the listing-caption and preface-title entries in a preprocessor conditional directive.
         | 
| 10 | 
            +
            // These attributes should only be updated if set explicitly by the user.
         | 
| 11 | 
            +
            ifdef::lang[include::attributes-{lang}.adoc[]]
         |