asciidoctor 1.5.8 → 2.0.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +11 -0
- data/CHANGELOG.adoc +628 -45
- data/LICENSE +2 -1
- data/README-de.adoc +28 -38
- data/README-fr.adoc +30 -43
- data/README-jp.adoc +255 -201
- data/README-zh_CN.adoc +40 -44
- data/README.adoc +170 -143
- data/asciidoctor.gemspec +22 -34
- data/bin/asciidoctor +5 -4
- data/data/locale/attributes-ar.adoc +4 -3
- data/data/locale/attributes-be.adoc +23 -0
- data/data/locale/attributes-bg.adoc +4 -3
- data/data/locale/attributes-ca.adoc +6 -5
- data/data/locale/attributes-cs.adoc +4 -3
- data/data/locale/attributes-da.adoc +6 -5
- data/data/locale/attributes-de.adoc +6 -5
- data/data/locale/attributes-en.adoc +4 -4
- data/data/locale/attributes-es.adoc +6 -5
- data/data/locale/attributes-fa.adoc +4 -3
- data/data/locale/attributes-fi.adoc +4 -3
- data/data/locale/attributes-fr.adoc +8 -7
- data/data/locale/attributes-hu.adoc +4 -3
- data/data/locale/attributes-id.adoc +4 -3
- data/data/locale/attributes-it.adoc +6 -5
- data/data/locale/attributes-ja.adoc +4 -3
- data/data/locale/{attributes-kr.adoc → attributes-ko.adoc} +4 -3
- data/data/locale/attributes-nb.adoc +4 -3
- data/data/locale/attributes-nl.adoc +6 -5
- data/data/locale/attributes-nn.adoc +4 -3
- data/data/locale/attributes-pl.adoc +8 -7
- data/data/locale/attributes-pt.adoc +6 -5
- data/data/locale/attributes-pt_BR.adoc +6 -5
- data/data/locale/attributes-ro.adoc +4 -3
- data/data/locale/attributes-ru.adoc +6 -5
- data/data/locale/attributes-sr.adoc +4 -4
- data/data/locale/attributes-sr_Latn.adoc +4 -4
- data/data/locale/attributes-sv.adoc +4 -4
- data/data/locale/attributes-th.adoc +23 -0
- data/data/locale/attributes-tr.adoc +4 -3
- data/data/locale/attributes-uk.adoc +6 -5
- data/data/locale/attributes-vi.adoc +23 -0
- data/data/locale/attributes-zh_CN.adoc +4 -3
- data/data/locale/attributes-zh_TW.adoc +4 -3
- data/data/reference/syntax.adoc +296 -0
- data/data/stylesheets/asciidoctor-default.css +120 -114
- data/data/stylesheets/coderay-asciidoctor.css +15 -17
- data/lib/asciidoctor/abstract_block.rb +146 -140
- data/lib/asciidoctor/abstract_node.rb +152 -170
- data/lib/asciidoctor/attribute_list.rb +77 -89
- data/lib/asciidoctor/block.rb +29 -28
- data/lib/asciidoctor/callouts.rb +4 -2
- data/lib/asciidoctor/cli/invoker.rb +20 -24
- data/lib/asciidoctor/cli/options.rb +107 -96
- data/lib/asciidoctor/cli.rb +3 -2
- data/lib/asciidoctor/convert.rb +199 -0
- data/lib/asciidoctor/converter/composite.rb +40 -48
- data/lib/asciidoctor/converter/docbook5.rb +627 -644
- data/lib/asciidoctor/converter/html5.rb +1053 -951
- data/lib/asciidoctor/converter/manpage.rb +581 -532
- data/lib/asciidoctor/converter/template.rb +232 -271
- data/lib/asciidoctor/converter.rb +370 -185
- data/lib/asciidoctor/core_ext/float/truncate.rb +20 -0
- data/lib/asciidoctor/core_ext/hash/merge.rb +8 -0
- data/lib/asciidoctor/core_ext/match_data/names.rb +7 -0
- data/lib/asciidoctor/core_ext/nil_or_empty.rb +1 -0
- data/lib/asciidoctor/core_ext/regexp/is_match.rb +4 -2
- data/lib/asciidoctor/core_ext.rb +8 -17
- data/lib/asciidoctor/document.rb +503 -461
- data/lib/asciidoctor/extensions.rb +127 -174
- data/lib/asciidoctor/helpers.rb +184 -107
- data/lib/asciidoctor/inline.rb +9 -12
- data/lib/asciidoctor/list.rb +11 -29
- data/lib/asciidoctor/load.rb +119 -0
- data/lib/asciidoctor/logging.rb +22 -17
- data/lib/asciidoctor/parser.rb +673 -719
- data/lib/asciidoctor/path_resolver.rb +48 -33
- data/lib/asciidoctor/reader.rb +383 -338
- data/lib/asciidoctor/rouge_ext.rb +39 -0
- data/lib/asciidoctor/rx.rb +723 -0
- data/lib/asciidoctor/section.rb +17 -16
- data/lib/asciidoctor/stylesheets.rb +19 -37
- data/lib/asciidoctor/substitutors.rb +926 -1022
- data/lib/asciidoctor/syntax_highlighter/coderay.rb +88 -0
- data/lib/asciidoctor/syntax_highlighter/highlightjs.rb +34 -0
- data/lib/asciidoctor/syntax_highlighter/html_pipeline.rb +10 -0
- data/lib/asciidoctor/syntax_highlighter/prettify.rb +30 -0
- data/lib/asciidoctor/syntax_highlighter/pygments.rb +157 -0
- data/lib/asciidoctor/syntax_highlighter/rouge.rb +143 -0
- data/lib/asciidoctor/syntax_highlighter.rb +253 -0
- data/lib/asciidoctor/table.rb +152 -114
- data/lib/asciidoctor/timings.rb +7 -5
- data/lib/asciidoctor/version.rb +2 -1
- data/lib/asciidoctor/writer.rb +30 -0
- data/lib/asciidoctor.rb +266 -1340
- data/man/asciidoctor.1 +49 -47
- data/man/asciidoctor.adoc +54 -45
- metadata +50 -245
- data/CONTRIBUTING.adoc +0 -185
- data/Gemfile +0 -60
- data/Rakefile +0 -129
- data/bin/asciidoctor-safe +0 -15
- data/features/open_block.feature +0 -92
- data/features/pass_block.feature +0 -66
- data/features/step_definitions.rb +0 -49
- data/features/text_formatting.feature +0 -57
- data/features/xref.feature +0 -1039
- data/lib/asciidoctor/converter/base.rb +0 -59
- data/lib/asciidoctor/converter/docbook45.rb +0 -93
- data/lib/asciidoctor/converter/factory.rb +0 -226
- data/lib/asciidoctor/core_ext/1.8.7/base64/strict_encode64.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/concurrent/hash.rb +0 -5
- data/lib/asciidoctor/core_ext/1.8.7/hash/key.rb +0 -4
- data/lib/asciidoctor/core_ext/1.8.7/io/binread.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/io/write.rb +0 -5
- data/lib/asciidoctor/core_ext/1.8.7/string/chr.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/string/limit_bytesize.rb +0 -29
- data/lib/asciidoctor/core_ext/1.8.7/symbol/empty.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/symbol/length.rb +0 -6
- data/lib/asciidoctor/core_ext/string/limit_bytesize.rb +0 -10
- data/test/api_test.rb +0 -1240
- data/test/attribute_list_test.rb +0 -242
- data/test/attributes_test.rb +0 -1623
- data/test/blocks_test.rb +0 -3870
- data/test/converter_test.rb +0 -470
- data/test/document_test.rb +0 -1853
- data/test/extensions_test.rb +0 -1560
- data/test/fixtures/asciidoc_index.txt +0 -521
- data/test/fixtures/basic-docinfo-footer.html +0 -6
- data/test/fixtures/basic-docinfo-footer.xml +0 -8
- data/test/fixtures/basic-docinfo.html +0 -1
- data/test/fixtures/basic-docinfo.xml +0 -4
- data/test/fixtures/basic.asciidoc +0 -5
- data/test/fixtures/chapter-a.adoc +0 -3
- data/test/fixtures/child-include.adoc +0 -5
- data/test/fixtures/circle.svg +0 -9
- data/test/fixtures/custom-backends/erb/html5/block_paragraph.html.erb +0 -6
- data/test/fixtures/custom-backends/haml/docbook45/block_paragraph.xml.haml +0 -6
- data/test/fixtures/custom-backends/haml/html5/block_paragraph.html.haml +0 -3
- data/test/fixtures/custom-backends/haml/html5/block_sidebar.html.haml +0 -5
- data/test/fixtures/custom-backends/haml/html5-tweaks/block_paragraph.html.haml +0 -1
- data/test/fixtures/custom-backends/slim/docbook45/block_paragraph.xml.slim +0 -6
- data/test/fixtures/custom-backends/slim/html5/block_paragraph.html.slim +0 -3
- data/test/fixtures/custom-backends/slim/html5/block_sidebar.html.slim +0 -5
- data/test/fixtures/custom-docinfodir/basic-docinfo.html +0 -1
- data/test/fixtures/custom-docinfodir/docinfo.html +0 -1
- data/test/fixtures/docinfo-footer.html +0 -1
- data/test/fixtures/docinfo-footer.xml +0 -9
- data/test/fixtures/docinfo.html +0 -1
- data/test/fixtures/docinfo.xml +0 -3
- data/test/fixtures/doctime-localtime.adoc +0 -2
- data/test/fixtures/dot.gif +0 -0
- data/test/fixtures/encoding.asciidoc +0 -13
- data/test/fixtures/file-with-missing-include.adoc +0 -1
- data/test/fixtures/grandchild-include.adoc +0 -3
- data/test/fixtures/hello-asciidoctor.pdf +0 -69
- data/test/fixtures/include-file.asciidoc +0 -24
- data/test/fixtures/include-file.jsx +0 -8
- data/test/fixtures/include-file.ml +0 -3
- data/test/fixtures/include-file.xml +0 -5
- data/test/fixtures/lists.adoc +0 -96
- data/test/fixtures/master.adoc +0 -5
- data/test/fixtures/mismatched-end-tag.adoc +0 -7
- data/test/fixtures/other-chapters.adoc +0 -11
- data/test/fixtures/outer-include.adoc +0 -5
- data/test/fixtures/parent-include-restricted.adoc +0 -5
- data/test/fixtures/parent-include.adoc +0 -5
- data/test/fixtures/sample.asciidoc +0 -30
- data/test/fixtures/section-a.adoc +0 -4
- data/test/fixtures/stylesheets/custom.css +0 -3
- data/test/fixtures/subdir/index.adoc +0 -3
- data/test/fixtures/subdir/inner-include.adoc +0 -3
- data/test/fixtures/subdir/middle-include.adoc +0 -5
- data/test/fixtures/subs-docinfo.html +0 -2
- data/test/fixtures/subs.adoc +0 -6
- data/test/fixtures/tagged-class-enclosed.rb +0 -25
- data/test/fixtures/tagged-class.rb +0 -23
- data/test/fixtures/tip.gif +0 -0
- data/test/fixtures/unclosed-tag.adoc +0 -3
- data/test/fixtures/unexpected-end-tag.adoc +0 -4
- data/test/invoker_test.rb +0 -745
- data/test/links_test.rb +0 -855
- data/test/lists_test.rb +0 -5151
- data/test/logger_test.rb +0 -211
- data/test/manpage_test.rb +0 -660
- data/test/options_test.rb +0 -262
- data/test/paragraphs_test.rb +0 -562
- data/test/parser_test.rb +0 -742
- data/test/paths_test.rb +0 -395
- data/test/preamble_test.rb +0 -173
- data/test/reader_test.rb +0 -2161
- data/test/sections_test.rb +0 -3575
- data/test/substitutions_test.rb +0 -2066
- data/test/tables_test.rb +0 -2036
- data/test/test_helper.rb +0 -447
- data/test/text_test.rb +0 -309
@@ -0,0 +1,23 @@
|
|
1
|
+
// Belarusian translation, courtesy of Dexter Morganov <dexter.morganov@gmail.com>
|
2
|
+
:appendix-caption: Дадатак
|
3
|
+
:appendix-refsig: {appendix-caption}
|
4
|
+
:caution-caption: Увага
|
5
|
+
:chapter-signifier: Глава
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
|
+
:example-caption: Прыклад
|
8
|
+
:figure-caption: Малюнак
|
9
|
+
:important-caption: Важна
|
10
|
+
:last-update-label: Апошняе абнаўленне
|
11
|
+
ifdef::listing-caption[:listing-caption: Лістынг]
|
12
|
+
ifdef::manname-title[:manname-title: Назва]
|
13
|
+
:note-caption: Заўвага
|
14
|
+
:part-signifier: Частка
|
15
|
+
:part-refsig: {part-signifier}
|
16
|
+
ifdef::preface-title[:preface-title: Прадмова]
|
17
|
+
:section-refsig: Раздзел
|
18
|
+
:table-caption: Табліца
|
19
|
+
:tip-caption: Падказка
|
20
|
+
:toc-title: Змест
|
21
|
+
:untitled-label: Без назвы
|
22
|
+
:version-label: Версія
|
23
|
+
:warning-caption: Папярэджанне
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Приложение
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Внимание
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Пример
|
8
8
|
:figure-caption: Фигура
|
9
9
|
:important-caption: Важно
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Листинг]
|
12
12
|
ifdef::manname-title[:manname-title: Име]
|
13
13
|
:note-caption: Забележка
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Предговор]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Таблица
|
@@ -1,9 +1,9 @@
|
|
1
1
|
// Catalan translation, courtesy of Abel Salgado Romero <abelromero@gmail.com> and Alex Soto
|
2
|
-
:appendix-caption:
|
2
|
+
:appendix-caption: Apèndix
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Atenció
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Capítol
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exemple
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Important
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Llista]
|
12
12
|
ifdef::manname-title[:manname-title: Nom]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Part
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefaci]
|
16
|
-
|
17
|
+
:section-refsig: Secció
|
17
18
|
:table-caption: Taula
|
18
19
|
:tip-caption: Suggeriment
|
19
20
|
:toc-title: Índex
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Příloha
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Upozornění
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapitola
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Příklad
|
8
8
|
:figure-caption: Obrázek
|
9
9
|
:important-caption: Důležité
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Seznam]
|
12
12
|
ifdef::manname-title[:manname-title: Název]
|
13
13
|
:note-caption: Poznámka
|
14
|
-
:part-
|
14
|
+
:part-signifier: Část
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Úvod]
|
16
17
|
:section-refsig: Oddíl
|
17
18
|
:table-caption: Tabulka
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Danish translation, courtesy of Max Rydahl Andersen <manderse@redhat.com>
|
1
|
+
// Danish translation, courtesy of Max Rydahl Andersen <manderse@redhat.com>, with updates from Morten Høfft <mhoefft@gbif.org>
|
2
2
|
:appendix-caption: Appendix
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Forsigtig
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Kapitel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Eksempel
|
8
8
|
:figure-caption: Figur
|
9
9
|
:important-caption: Vigtig
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: List]
|
12
12
|
ifdef::manname-title[:manname-title: Navn]
|
13
13
|
:note-caption: Notat
|
14
|
-
|
14
|
+
:part-signifier: Del
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Forord]
|
16
|
-
|
17
|
+
:section-refsig: Sektion
|
17
18
|
:table-caption: Tabel
|
18
19
|
:tip-caption: Tips
|
19
20
|
:toc-title: Indholdsfortegnelse
|
@@ -2,21 +2,22 @@
|
|
2
2
|
:appendix-caption: Anhang
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Achtung
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapitel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Beispiel
|
8
8
|
:figure-caption: Abbildung
|
9
9
|
:important-caption: Wichtig
|
10
10
|
:last-update-label: Zuletzt aktualisiert
|
11
|
-
|
11
|
+
ifdef::listing-caption[:listing-caption: Listing]
|
12
12
|
ifdef::manname-title[:manname-title: Bezeichnung]
|
13
13
|
:note-caption: Anmerkung
|
14
|
-
|
14
|
+
:part-signifier: Teil
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Vorwort]
|
16
17
|
:section-refsig: Abschnitt
|
17
18
|
:table-caption: Tabelle
|
18
19
|
:tip-caption: Hinweis
|
19
|
-
:toc-title:
|
20
|
+
:toc-title: Inhaltsverzeichnis
|
20
21
|
:untitled-label: Ohne Titel
|
21
22
|
:version-label: Version
|
22
23
|
:warning-caption: Warnung
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Appendix
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Caution
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Chapter
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Example
|
8
8
|
:figure-caption: Figure
|
9
9
|
:important-caption: Important
|
@@ -11,8 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listing]
|
12
12
|
ifdef::manname-title[:manname-title: Name]
|
13
13
|
:note-caption: Note
|
14
|
-
:part-
|
15
|
-
:part-refsig: {part-
|
14
|
+
:part-signifier: Part
|
15
|
+
:part-refsig: {part-signifier}
|
16
16
|
ifdef::preface-title[:preface-title: Preface]
|
17
17
|
:section-refsig: Section
|
18
18
|
:table-caption: Table
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Spanish translation, courtesy of Eddú Meléndez <eddu.melendez@gmail.com>
|
1
|
+
// Spanish translation, courtesy of Eddú Meléndez <eddu.melendez@gmail.com> with updates from Fede Mendez <federicomh@gmail.com>
|
2
2
|
:appendix-caption: Apéndice
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Precaución
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Capítulo
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Ejemplo
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Importante
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Lista]
|
12
12
|
ifdef::manname-title[:manname-title: Nombre]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Parte
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefacio]
|
16
|
-
|
17
|
+
:section-refsig: Sección
|
17
18
|
:table-caption: Tabla
|
18
19
|
:tip-caption: Sugerencia
|
19
20
|
:toc-title: Tabla de Contenido
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: پیوست
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: گوشزد
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: نمونه
|
8
8
|
:figure-caption: نمودار
|
9
9
|
:important-caption: مهم
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: فهرست]
|
12
12
|
ifdef::manname-title[:manname-title: نام]
|
13
13
|
:note-caption: یادداشت
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: پیشگفتار]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: جدول
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Liitteet
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Huom
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Esimerkki
|
8
8
|
:figure-caption: Kuvio
|
9
9
|
:important-caption: Tärkeää
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listaus]
|
12
12
|
ifdef::manname-title[:manname-title: Nimi]
|
13
13
|
:note-caption: Huomio
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Esipuhe]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Taulukko
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// French translation, courtesy of Nicolas Comet <nicolas.comet@gmail.com>
|
1
|
+
// French translation, courtesy of Nicolas Comet <nicolas.comet@gmail.com> with updates from Maheva Bagard Laursen <mblaursen@gbif.org>
|
2
2
|
:appendix-caption: Annexe
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
|
-
:caution-caption:
|
5
|
-
|
6
|
-
|
4
|
+
:caution-caption: Attention
|
5
|
+
:chapter-signifier: Chapitre
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exemple
|
8
8
|
:figure-caption: Figure
|
9
9
|
:important-caption: Important
|
@@ -11,12 +11,13 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Liste]
|
12
12
|
ifdef::manname-title[:manname-title: Nom]
|
13
13
|
:note-caption: Note
|
14
|
-
|
14
|
+
:part-signifier: Partie
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Préface]
|
16
|
-
|
17
|
+
:section-refsig: Section
|
17
18
|
:table-caption: Tableau
|
18
19
|
:tip-caption: Astuce
|
19
20
|
:toc-title: Table des matières
|
20
21
|
:untitled-label: Sans titre
|
21
22
|
:version-label: Version
|
22
|
-
:warning-caption:
|
23
|
+
:warning-caption: Avertissement
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: függelék
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Figyelmeztetés
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Példa
|
8
8
|
:figure-caption: Ábra
|
9
9
|
:important-caption: Fontos
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Lista]
|
12
12
|
ifdef::manname-title[:manname-title: Név]
|
13
13
|
:note-caption: Megjegyzés
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Előszó]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Táblázat
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Lampiran
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Perhatian
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Bab
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Contoh
|
8
8
|
:figure-caption: Gambar
|
9
9
|
:important-caption: Penting
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Daftar]
|
12
12
|
ifdef::manname-title[:manname-title: Nama]
|
13
13
|
:note-caption: Catatan
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
//ifdef::preface-title[:preface-title: ???]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Tabel
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Italian translation, courtesy of Marco Ciampa <ciampix@
|
1
|
+
// Italian translation, courtesy of Marco Ciampa <ciampix@posteo.net>
|
2
2
|
:appendix-caption: Appendice
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Attenzione
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Capitolo
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Esempio
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Importante
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Elenco]
|
12
12
|
ifdef::manname-title[:manname-title: Nome]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Parte
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefazione]
|
16
|
-
|
17
|
+
:section-refsig: Sezione
|
17
18
|
:table-caption: Tabella
|
18
19
|
:tip-caption: Suggerimento
|
19
20
|
:toc-title: Indice
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: 付録
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: 注意
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: 例
|
8
8
|
:figure-caption: 図
|
9
9
|
:important-caption: 重要
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: リスト]
|
12
12
|
ifdef::manname-title[:manname-title: 名前]
|
13
13
|
:note-caption: 注記
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: まえがき]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: 表
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: 부록
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: 주의
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: 예시
|
8
8
|
:figure-caption: 그림
|
9
9
|
:important-caption: 중요
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: 목록]
|
12
12
|
ifdef::manname-title[:manname-title: 이름]
|
13
13
|
:note-caption: 노트
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: 머리말]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: 표
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Vedlegg
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: OBS
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapittel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Eksempel
|
8
8
|
:figure-caption: Figur
|
9
9
|
:important-caption: Viktig
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Programkode]
|
12
12
|
ifdef::manname-title[:manname-title: Navn]
|
13
13
|
:note-caption: Merk
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Forord]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Tabell
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Bijlage
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Opgelet
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Hoofdstuk
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Voorbeeld
|
8
8
|
:figure-caption: Figuur
|
9
9
|
:important-caption: Belangrijk
|
@@ -11,12 +11,13 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Lijst]
|
12
12
|
ifdef::manname-title[:manname-title: Naam]
|
13
13
|
:note-caption: Noot
|
14
|
-
|
14
|
+
:part-signifier: Deel
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Inleiding]
|
16
|
-
|
17
|
+
:section-refsig: Paragraaf
|
17
18
|
:table-caption: Tabel
|
18
19
|
:tip-caption: Tip
|
19
|
-
:toc-title:
|
20
|
+
:toc-title: Inhoudsopgave
|
20
21
|
:untitled-label: Naamloos
|
21
22
|
:version-label: Versie
|
22
23
|
:warning-caption: Waarschuwing
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Vedlegg
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: OBS
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapittel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Eksempel
|
8
8
|
:figure-caption: Figur
|
9
9
|
:important-caption: Viktig
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Programkode]
|
12
12
|
ifdef::manname-title[:manname-title: Namn]
|
13
13
|
:note-caption: Merk
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Forord]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Tabell
|
@@ -1,19 +1,20 @@
|
|
1
|
-
// Polish translation, courtesy of Łukasz Dziedziul <l.dziedziul@gmail.com>
|
1
|
+
// Polish translation, courtesy of Łukasz Dziedziul <l.dziedziul@gmail.com> with updates via Matthew Blissett <mblissett@gbif.org>
|
2
2
|
:appendix-caption: Dodatek
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Uwaga
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Rozdział
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Przykład
|
8
8
|
:figure-caption: Rysunek
|
9
9
|
:important-caption: Ważne
|
10
10
|
:last-update-label: Ostatnio zmodyfikowany
|
11
|
-
|
11
|
+
ifdef::listing-caption[:listing-caption: Listing]
|
12
12
|
ifdef::manname-title[:manname-title: Nazwa]
|
13
13
|
:note-caption: Notka
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
:part-signifier: Część
|
15
|
+
:part-refsig: {part-signifier}
|
16
|
+
ifdef::preface-title[:preface-title: Wstęp]
|
17
|
+
:section-refsig: Sekcja
|
17
18
|
:table-caption: Tabela
|
18
19
|
:tip-caption: Sugestia
|
19
20
|
:toc-title: Spis treści
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Portuguese translation, courtesy of Roberto Cortez <radcortez@yahoo.com>
|
1
|
+
// Portuguese translation, courtesy of Roberto Cortez <radcortez@yahoo.com> with updates from Andrew Rodrigues <arodrigues@gbif.org>
|
2
2
|
:appendix-caption: Apêndice
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Atenção
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Capítulo
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exemplo
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Importante
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listagem]
|
12
12
|
ifdef::manname-title[:manname-title: Nome]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Parte
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefácio]
|
16
|
-
|
17
|
+
:section-refsig: Secção
|
17
18
|
:table-caption: Tabela
|
18
19
|
:tip-caption: Sugestão
|
19
20
|
:toc-title: Índice
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Brazilian Portuguese translation, courtesy of Rafael Pestano <rmpestano@gmail.com>
|
1
|
+
// Brazilian Portuguese translation, courtesy of Rafael Pestano <rmpestano@gmail.com> with updates from Andrew Rodrigues <arodrigues@gbif.org>
|
2
2
|
:appendix-caption: Apêndice
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Cuidado
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Capítulo
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exemplo
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Importante
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listagem]
|
12
12
|
ifdef::manname-title[:manname-title: Nome]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Parte
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefácio]
|
16
|
-
|
17
|
+
:section-refsig: Seção
|
17
18
|
:table-caption: Tabela
|
18
19
|
:tip-caption: Dica
|
19
20
|
:toc-title: Índice
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Apendix
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Precauție
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exemplu
|
8
8
|
:figure-caption: Figură
|
9
9
|
:important-caption: Important
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listare]
|
12
12
|
ifdef::manname-title[:manname-title: Nume]
|
13
13
|
:note-caption: Notă
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefață]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Tabela
|
@@ -2,18 +2,19 @@
|
|
2
2
|
:appendix-caption: Приложение
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Внимание
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Глава
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Пример
|
8
8
|
:figure-caption: Рисунок
|
9
9
|
:important-caption: Важно
|
10
|
-
:last-update-label:
|
10
|
+
:last-update-label: Последнее обновление
|
11
11
|
ifdef::listing-caption[:listing-caption: Листинг]
|
12
12
|
ifdef::manname-title[:manname-title: Название]
|
13
13
|
:note-caption: Примечание
|
14
|
-
|
14
|
+
:part-signifier: Часть
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Предисловие]
|
16
|
-
|
17
|
+
:section-refsig: Раздел
|
17
18
|
:table-caption: Таблица
|
18
19
|
:tip-caption: Подсказка
|
19
20
|
:toc-title: Содержание
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Додатак
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Опрез
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Поглавље
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Пример
|
8
8
|
:figure-caption: Слика
|
9
9
|
:important-caption: Важно
|
@@ -11,8 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Листинг]
|
12
12
|
ifdef::manname-title[:manname-title: Назив]
|
13
13
|
:note-caption: Белешка
|
14
|
-
:part-
|
15
|
-
:part-refsig: {part-
|
14
|
+
:part-signifier: Део
|
15
|
+
:part-refsig: {part-signifier}
|
16
16
|
ifdef::preface-title[:preface-title: Предговор]
|
17
17
|
:section-refsig: Секција
|
18
18
|
:table-caption: Табела
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Dodatak
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Oprez
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Poglavlje
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Primer
|
8
8
|
:figure-caption: Slika
|
9
9
|
:important-caption: Važno
|
@@ -11,8 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listing]
|
12
12
|
ifdef::manname-title[:manname-title: Naziv]
|
13
13
|
:note-caption: Beleška
|
14
|
-
:part-
|
15
|
-
:part-refsig: {part-
|
14
|
+
:part-signifier: Deo
|
15
|
+
:part-refsig: {part-signifier}
|
16
16
|
ifdef::preface-title[:preface-title: Predgovor]
|
17
17
|
:section-refsig: Sekcija
|
18
18
|
:table-caption: Tabela
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Bilaga
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Var uppmärksam
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapitel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exempel
|
8
8
|
:figure-caption: Figur
|
9
9
|
:important-caption: Viktigt
|
@@ -11,8 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Lista]
|
12
12
|
ifdef::manname-title[:manname-title: Namn]
|
13
13
|
:note-caption: Notera
|
14
|
-
:part-
|
15
|
-
:part-refsig: {part-
|
14
|
+
:part-signifier: Del
|
15
|
+
:part-refsig: {part-signifier}
|
16
16
|
ifdef::preface-title[:preface-title: Förord]
|
17
17
|
:section-refsig: Avsnitt
|
18
18
|
:table-caption: Tabell
|