asciidoctor 2.0.7 → 2.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.adoc +169 -7
  3. data/LICENSE +2 -1
  4. data/README-de.adoc +5 -15
  5. data/README-fr.adoc +4 -14
  6. data/README-jp.adoc +234 -186
  7. data/README-zh_CN.adoc +7 -17
  8. data/README.adoc +18 -18
  9. data/asciidoctor.gemspec +4 -4
  10. data/data/locale/attributes-ar.adoc +4 -3
  11. data/data/locale/attributes-bg.adoc +4 -3
  12. data/data/locale/attributes-ca.adoc +6 -5
  13. data/data/locale/attributes-cs.adoc +4 -3
  14. data/data/locale/attributes-da.adoc +6 -5
  15. data/data/locale/attributes-de.adoc +4 -4
  16. data/data/locale/attributes-en.adoc +4 -4
  17. data/data/locale/attributes-es.adoc +6 -5
  18. data/data/locale/attributes-fa.adoc +4 -3
  19. data/data/locale/attributes-fi.adoc +4 -3
  20. data/data/locale/attributes-fr.adoc +6 -5
  21. data/data/locale/attributes-hu.adoc +4 -3
  22. data/data/locale/attributes-id.adoc +4 -3
  23. data/data/locale/attributes-it.adoc +4 -3
  24. data/data/locale/attributes-ja.adoc +4 -3
  25. data/data/locale/{attributes-kr.adoc → attributes-ko.adoc} +4 -3
  26. data/data/locale/attributes-nb.adoc +4 -3
  27. data/data/locale/attributes-nl.adoc +4 -3
  28. data/data/locale/attributes-nn.adoc +4 -3
  29. data/data/locale/attributes-pl.adoc +8 -7
  30. data/data/locale/attributes-pt.adoc +6 -5
  31. data/data/locale/attributes-pt_BR.adoc +6 -5
  32. data/data/locale/attributes-ro.adoc +4 -3
  33. data/data/locale/attributes-ru.adoc +6 -5
  34. data/data/locale/attributes-sr.adoc +4 -4
  35. data/data/locale/attributes-sr_Latn.adoc +4 -4
  36. data/data/locale/attributes-sv.adoc +4 -4
  37. data/data/locale/attributes-tr.adoc +4 -3
  38. data/data/locale/attributes-uk.adoc +6 -5
  39. data/data/locale/attributes-zh_CN.adoc +4 -3
  40. data/data/locale/attributes-zh_TW.adoc +4 -3
  41. data/data/stylesheets/asciidoctor-default.css +33 -30
  42. data/lib/asciidoctor.rb +89 -791
  43. data/lib/asciidoctor/abstract_block.rb +19 -11
  44. data/lib/asciidoctor/abstract_node.rb +21 -15
  45. data/lib/asciidoctor/attribute_list.rb +59 -67
  46. data/lib/asciidoctor/cli/invoker.rb +2 -0
  47. data/lib/asciidoctor/cli/options.rb +3 -3
  48. data/lib/asciidoctor/convert.rb +167 -162
  49. data/lib/asciidoctor/converter.rb +14 -13
  50. data/lib/asciidoctor/converter/docbook5.rb +10 -26
  51. data/lib/asciidoctor/converter/html5.rb +62 -43
  52. data/lib/asciidoctor/converter/manpage.rb +13 -12
  53. data/lib/asciidoctor/converter/template.rb +6 -3
  54. data/lib/asciidoctor/document.rb +25 -41
  55. data/lib/asciidoctor/extensions.rb +3 -3
  56. data/lib/asciidoctor/helpers.rb +38 -39
  57. data/lib/asciidoctor/inline.rb +1 -1
  58. data/lib/asciidoctor/load.rb +101 -101
  59. data/lib/asciidoctor/parser.rb +30 -25
  60. data/lib/asciidoctor/path_resolver.rb +35 -25
  61. data/lib/asciidoctor/reader.rb +14 -7
  62. data/lib/asciidoctor/rx.rb +722 -0
  63. data/lib/asciidoctor/substitutors.rb +61 -39
  64. data/lib/asciidoctor/syntax_highlighter.rb +22 -8
  65. data/lib/asciidoctor/syntax_highlighter/coderay.rb +1 -1
  66. data/lib/asciidoctor/syntax_highlighter/highlightjs.rb +12 -4
  67. data/lib/asciidoctor/syntax_highlighter/prettify.rb +7 -4
  68. data/lib/asciidoctor/syntax_highlighter/pygments.rb +2 -3
  69. data/lib/asciidoctor/syntax_highlighter/rouge.rb +15 -7
  70. data/lib/asciidoctor/table.rb +52 -23
  71. data/lib/asciidoctor/version.rb +1 -1
  72. data/man/asciidoctor.1 +6 -6
  73. data/man/asciidoctor.adoc +4 -3
  74. metadata +10 -9
@@ -1,6 +1,6 @@
1
1
  = Asciidoctor
2
2
  Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>; Ryan Waldron <https://github.com/erebor[@erebor]>
3
- v2.0.7, 2019-04-13
3
+ v2.0.12, 2020-11-10
4
4
  // settings:
5
5
  :page-layout: base
6
6
  :idprefix:
@@ -9,7 +9,6 @@ v2.0.7, 2019-04-13
9
9
  :language: {source-language}
10
10
  ifndef::env-github[:icons: font]
11
11
  ifdef::env-github[]
12
- :status:
13
12
  :outfilesuffix: .adoc
14
13
  :caution-caption: :fire:
15
14
  :important-caption: :exclamation:
@@ -18,7 +17,7 @@ ifdef::env-github[]
18
17
  :warning-caption: :warning:
19
18
  endif::[]
20
19
  // Variables:
21
- :release-version: 2.0.7
20
+ :release-version: 2.0.12
22
21
  // URIs:
23
22
  :uri-org: https://github.com/asciidoctor
24
23
  :uri-repo: {uri-org}/asciidoctor
@@ -41,7 +40,7 @@ endif::[]
41
40
  :uri-contribute: {uri-rel-file-base}CONTRIBUTING.adoc
42
41
  :uri-license: {uri-rel-file-base}LICENSE
43
42
  :uri-tests: {uri-rel-tree-base}test
44
- :uri-discuss: http://discuss.asciidoctor.org
43
+ :uri-discuss: https://discuss.asciidoctor.org
45
44
  :uri-irc: irc://irc.freenode.org/#asciidoctor
46
45
  :uri-rubygem: https://rubygems.org/gems/asciidoctor
47
46
  :uri-what-is-asciidoc: {uri-docs}/what-is-asciidoc
@@ -62,8 +61,8 @@ endif::[]
62
61
 
63
62
  {uri-project}/[Asciidoctor] 是一个 _快速_ 文本处理器和发布工具链,它可以将 {uri-what-is-asciidoc}[AsciiDoc] 文档转化成 HTML 5、 DocBook 5 以及其他格式。
64
63
  Asciidoctor 由 Ruby 编写,打包成 RubyGem,然后发布到 {uri-rubygem}[RubyGems.org] 上。
65
- 这个 gem 还被包含道几个 Linux 发行版中,其中包括 Fedora、Debian 和 Ubuntu。
66
- Asciidoctor 是开源的,{uri-repo}[代码]托管在 GitHub,遵从 {uri-license}[MIT] 协议。
64
+ 这个 gem 还被包含到几个 Linux 发行版中,其中包括 Fedora、Debian 和 Ubuntu。
65
+ Asciidoctor 是开源的,link:{uri-repo}[代码托管在 GitHub],遵从 {uri-license}[MIT] 协议。
67
66
 
68
67
  该文档有如下语言的翻译版:
69
68
 
@@ -89,15 +88,6 @@ Asciidoctor 也可以运行在 JavaScript 上。
89
88
  Asciidoctor.js 被用于预览 AsciiDoc,支持 Chrome 扩展,Atom,Brackets 或其他基于 Web 的工具。
90
89
  ****
91
90
 
92
- ifdef::status[]
93
- .*Project health*
94
- image:https://img.shields.io/travis/asciidoctor/asciidoctor/master.svg[Build Status (Travis CI), link=https://travis-ci.org/asciidoctor/asciidoctor]
95
- image:https://ci.appveyor.com/api/projects/status/ifplu67oxvgn6ceq/branch/master?svg=true&amp;passingText=green%20bar&amp;failingText=%23fail&amp;pendingText=building%2E%2E%2E[Build Status (AppVeyor), link=https://ci.appveyor.com/project/asciidoctor/asciidoctor]
96
- //image:https://img.shields.io/coveralls/asciidoctor/asciidoctor/master.svg[Coverage Status, link=https://coveralls.io/r/asciidoctor/asciidoctor]
97
- //image:https://codeclimate.com/github/asciidoctor/asciidoctor/badges/gpa.svg[Code Climate, link="https://codeclimate.com/github/asciidoctor/asciidoctor"]
98
- image:https://inch-ci.org/github/asciidoctor/asciidoctor.svg?branch=master[Inline docs, link="https://inch-ci.org/github/asciidoctor/asciidoctor"]
99
- endif::[]
100
-
101
91
  [#the-big-picture]
102
92
  == 整体概况
103
93
 
@@ -326,7 +316,7 @@ WARNING: 当你通过 API 使用 Asciidoctor 时,默认的安全模式是 `:se
326
316
  在 secure 模式下,很多核心特性将不可用,包括 `include` 特性。
327
317
  如果你想启用这些特性,你需要明确设置安全模式为 `:server` (推荐)或 `:safe`。
328
318
 
329
- 你也可以将 AsciiDoc 字符串转化我内嵌的 HTML (为了插入到一个 HTML 页面),用法如下:
319
+ 你也可以将 AsciiDoc 字符串转化为可内嵌的 HTML (为了插入到一个 HTML 页面),用法如下:
330
320
 
331
321
  [source]
332
322
  ----
@@ -412,7 +402,7 @@ Asciidoctor 组织在 GitHub 托管代码、议案跟踪和相关子项目。
412
402
  [#copyright-and-licensing]
413
403
  == 版权和协议
414
404
 
415
- Copyright (C) 2012-2019 Dan Allen, Ryan Waldron and the Asciidoctor Project.
405
+ Copyright (C) 2012-2020 Dan Allen, Sarah White, Ryan Waldron, and the individual contributors to Asciidoctor.
416
406
  这个软件的免费使用是在MIT许可条款授予的。
417
407
 
418
408
  请看 {uri-license}[版权声明] 文件来获取更多详细信息。
@@ -1,6 +1,6 @@
1
1
  = Asciidoctor
2
2
  Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>; Ryan Waldron <https://github.com/erebor[@erebor]>
3
- v2.0.7, 2019-04-13
3
+ v2.0.12, 2020-11-10
4
4
  // settings:
5
5
  :idprefix:
6
6
  :idseparator: -
@@ -17,7 +17,7 @@ ifdef::env-github[]
17
17
  :warning-caption: :warning:
18
18
  endif::[]
19
19
  // Variables:
20
- :release-version: 2.0.7
20
+ :release-version: 2.0.12
21
21
  // URIs:
22
22
  :uri-org: https://github.com/asciidoctor
23
23
  :uri-repo: {uri-org}/asciidoctor
@@ -27,6 +27,7 @@ endif::[]
27
27
  :uri-maven-plugin: {uri-org}/asciidoctor-maven-plugin
28
28
  :uri-asciidoclet: {uri-org}/asciidoclet
29
29
  :uri-project: https://asciidoctor.org
30
+ :uri-gem: https://rubygems.org/gems/asciidoctor
30
31
  ifdef::env-site[:uri-project: link:]
31
32
  :uri-docs: {uri-project}/docs
32
33
  :uri-news: {uri-project}/news
@@ -43,7 +44,7 @@ endif::[]
43
44
  :uri-contribute: {uri-rel-file-base}CONTRIBUTING.adoc
44
45
  :uri-license: {uri-rel-file-base}LICENSE
45
46
  :uri-tests: {uri-rel-tree-base}test
46
- :uri-discuss: http://discuss.asciidoctor.org
47
+ :uri-discuss: https://discuss.asciidoctor.org
47
48
  :uri-irc: irc://irc.freenode.org/#asciidoctor
48
49
  :uri-rubygem: https://rubygems.org/gems/asciidoctor
49
50
  :uri-what-is-asciidoc: {uri-docs}/what-is-asciidoc
@@ -91,12 +92,12 @@ endif::[]
91
92
 
92
93
  ifdef::status[]
93
94
  //.*Project health*
94
- image:https://img.shields.io/travis/asciidoctor/asciidoctor/master.svg[Build Status (Travis CI),link=https://travis-ci.org/asciidoctor/asciidoctor]
95
- image:https://ci.appveyor.com/api/projects/status/ifplu67oxvgn6ceq/branch/master?svg=true&amp;passingText=green%20bar&amp;failingText=%23fail&amp;pendingText=building%2E%2E%2E[Build Status (AppVeyor),link=https://ci.appveyor.com/project/asciidoctor/asciidoctor]
95
+ image:https://img.shields.io/gem/v/asciidoctor.svg[Latest Release, link={uri-gem}]
96
+ image:https://img.shields.io/badge/rubydoc.info-{release-version}-blue.svg[library (API) docs,link=https://www.rubydoc.info/gems/asciidoctor/{release-version}]
97
+ image:https://github.com/asciidoctor/asciidoctor/workflows/CI/badge.svg[Build Status (GitHub Actions),link={uri-repo}/actions]
96
98
  //image:https://img.shields.io/coveralls/asciidoctor/asciidoctor/master.svg[Coverage Status,link=https://coveralls.io/r/asciidoctor/asciidoctor]
97
99
  //image:https://codeclimate.com/github/asciidoctor/asciidoctor/badges/gpa.svg[Code Climate,link=https://codeclimate.com/github/asciidoctor/asciidoctor]
98
100
  image:https://inch-ci.org/github/asciidoctor/asciidoctor.svg?branch=master[Inline docs,link=https://inch-ci.org/github/asciidoctor/asciidoctor]
99
- image:https://img.shields.io/badge/rubydoc.info-{release-version}-blue.svg[library (API) docs,link=https://www.rubydoc.info/gems/asciidoctor/{release-version}]
100
101
  endif::[]
101
102
 
102
103
  == Sponsors
@@ -105,11 +106,6 @@ We want to recognize our {uri-project}/supporters[sponsors] for their commitment
105
106
  Thank you sponsors!
106
107
  Without your generous support, Asciidoctor would not be possible.
107
108
 
108
- ifndef::env-site,env-yard[]
109
- Major funding for Asciidoctor is provided by our *Change Maker*, https://opendevise.com[OpenDevise], our *Strategy Sponsors*, https://www.khronos.org/[Khronos Group] and Linda Roberts, and our *Pull Request Backers*, Brian Dominick, Guillaume Grossetie, and Abel Salgado Romero.
110
- Additional funding is provided by the supporters listed on our {uri-project}/supporters[Community Backers] page.
111
- endif::[]
112
-
113
109
  You can support this project by becoming a sponsor through https://opencollective.com/asciidoctor[OpenCollective].
114
110
 
115
111
  == The Big Picture
@@ -164,7 +160,7 @@ Asciidoctor works best when you use UTF-8 everywhere.
164
160
 
165
161
  == Installation
166
162
 
167
- Asciidoctor can be installed using (a) package managers for popular Linux distributions, (b) Homebrew for macOS, (c) the `gem install` command (recommended for Windows users), (d) the Asciidoctor Docker image, or (e) Bundler.
163
+ Asciidoctor can be installed using (a) package managers for popular Linux distributions, (b) Homebrew for macOS, (c) the `gem install` command (recommended for Windows users or if you'll be installing additional gems), (d) the Asciidoctor Docker image, or (e) Bundler.
168
164
 
169
165
  The benefit of using your operating system's package manager to install the gem is that it handles installing Ruby and the RubyGems library if those packages are not already installed on your machine.
170
166
 
@@ -241,11 +237,11 @@ Or you use the https://rubyinstaller.org/downloads/[Rubyinstaller], download the
241
237
  [#gem-install]
242
238
  === (d) gem install
243
239
 
244
- Before installing Asciidoctor using `gem install`, you should use https://rvm.io[RVM] to install Ruby in your home directory (i.e., user space).
245
- Then, you can safely use the `gem` command to install or update the Asciidoctor gem.
240
+ Before installing Asciidoctor using `gem install`, you should set up https://rvm.io[RVM] to install Ruby in your home directory (i.e., user space).
241
+ Then, you can safely use the `gem` command to install or update the Asciidoctor gem, or any other gem for that matter.
246
242
  When using RVM, gems are installed in a location isolated from the system.
247
243
 
248
- Open a terminal and type:
244
+ Once you've installed Ruby using RVM, and you have activated it using `rvm use 2.6`, open a terminal and type:
249
245
 
250
246
  $ gem install asciidoctor
251
247
 
@@ -456,9 +452,9 @@ Source repository (git):: {uri-repo}
456
452
  Issue tracker:: {uri-issues}
457
453
  Asciidoctor organization on GitHub:: {uri-org}
458
454
 
459
- == License
455
+ == Copyright and License
460
456
 
461
- Copyright (C) 2012-2019 Dan Allen, Sarah White and the individual contributors to Asciidoctor.
457
+ Copyright (C) 2012-2020 Dan Allen, Sarah White, Ryan Waldron, and the individual contributors to Asciidoctor.
462
458
  Use of this software is granted under the terms of the MIT License.
463
459
 
464
460
  See the {uri-license}[LICENSE] for the full license text.
@@ -468,7 +464,11 @@ See the {uri-license}[LICENSE] for the full license text.
468
464
  *Asciidoctor* is led by https://github.com/mojavelinux[Dan Allen] and https://github.com/graphitefriction[Sarah White] and has received contributions from {uri-contributors}[many individuals] in Asciidoctor's awesome community.
469
465
  The project was initiated in 2012 by https://github.com/erebor[Ryan Waldron] and based on {uri-prototype}[a prototype] written by https://github.com/nickh[Nick Hengeveld].
470
466
 
471
- *AsciiDoc* was started by Stuart Rackham and has received contributions from many individuals in the AsciiDoc community.
467
+ *AsciiDoc* was started and maintained by Stuart Rackham from https://github.com/asciidoc/asciidoc/blob/master/CHANGELOG.txt[2002 to 2013] and has received contributions from many individuals in the https://github.com/asciidoc/asciidoc/graphs/contributors[AsciiDoc community].
468
+
469
+ == Trademarks
470
+
471
+ AsciiDoc is a Trademark of the Eclipse Foundation, Inc.
472
472
 
473
473
  ifndef::env-site[]
474
474
  == Changelog
@@ -40,14 +40,14 @@ Gem::Specification.new do |s|
40
40
  # concurrent-ruby, haml, slim, and tilt are needed for testing custom templates
41
41
  s.add_development_dependency 'concurrent-ruby', '~> 1.1.0'
42
42
  s.add_development_dependency 'cucumber', '~> 3.1.0'
43
- # erubis is needed for testing alternate eRuby impls
44
- s.add_development_dependency 'erubis', '~> 2.7.0'
43
+ # erubi is needed for testing alternate eRuby impls
44
+ s.add_development_dependency 'erubi', '~> 1.9.0'
45
45
  s.add_development_dependency 'haml', '~> 5.0.0'
46
46
  s.add_development_dependency 'minitest', '~> 5.11.0'
47
47
  s.add_development_dependency 'nokogiri', '~> 1.10.0'
48
48
  s.add_development_dependency 'rake', '~> 12.3.0'
49
- # Asciidoctor supports Rouge >= 3
50
- s.add_development_dependency 'rouge', '~> 3.3.0'
49
+ # Asciidoctor supports Rouge >= 2
50
+ s.add_development_dependency 'rouge', '~> 3.15.0'
51
51
  s.add_development_dependency 'rspec-expectations', '~> 3.8.0'
52
52
  s.add_development_dependency 'slim', '~> 4.0.0'
53
53
  s.add_development_dependency 'tilt', '~> 2.0.0'
@@ -2,8 +2,8 @@
2
2
  :appendix-caption: ملحق
3
3
  :appendix-refsig: {appendix-caption}
4
4
  :caution-caption: تنبيه
5
- //:chapter-label: ???
6
- //:chapter-refsig: {chapter-label}
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-refsig: ???
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-label: ???
6
- //:chapter-refsig: {chapter-label}
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-refsig: ???
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: Apendix
2
+ :appendix-caption: Apèndix
3
3
  :appendix-refsig: {appendix-caption}
4
4
  :caution-caption: Atenció
5
- //:chapter-label: ???
6
- //:chapter-refsig: {chapter-label}
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
- //:part-refsig: ???
14
+ :part-signifier: Part
15
+ :part-refsig: {part-signifier}
15
16
  ifdef::preface-title[:preface-title: Prefaci]
16
- //:section-refsig: ???
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-label: Kapitola
6
- :chapter-refsig: {chapter-label}
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-refsig: Část
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
- //:chapter-label: ???
6
- //:chapter-refsig: {chapter-label}
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
- //:part-refsig: ???
14
+ :part-signifier: Del
15
+ :part-refsig: {part-signifier}
15
16
  ifdef::preface-title[:preface-title: Forord]
16
- //:section-refsig: ???
17
+ :section-refsig: Sektion
17
18
  :table-caption: Tabel
18
19
  :tip-caption: Tips
19
20
  :toc-title: Indholdsfortegnelse
@@ -2,8 +2,8 @@
2
2
  :appendix-caption: Anhang
3
3
  :appendix-refsig: {appendix-caption}
4
4
  :caution-caption: Achtung
5
- :chapter-label: Kapitel
6
- :chapter-refsig: {chapter-label}
5
+ :chapter-signifier: Kapitel
6
+ :chapter-refsig: {chapter-signifier}
7
7
  :example-caption: Beispiel
8
8
  :figure-caption: Abbildung
9
9
  :important-caption: Wichtig
@@ -11,8 +11,8 @@
11
11
  ifdef::listing-caption[:listing-caption: Listing]
12
12
  ifdef::manname-title[:manname-title: Bezeichnung]
13
13
  :note-caption: Anmerkung
14
- :part-label: Teil
15
- :part-refsig: {part-label}
14
+ :part-signifier: Teil
15
+ :part-refsig: {part-signifier}
16
16
  ifdef::preface-title[:preface-title: Vorwort]
17
17
  :section-refsig: Abschnitt
18
18
  :table-caption: Tabelle
@@ -2,8 +2,8 @@
2
2
  :appendix-caption: Appendix
3
3
  :appendix-refsig: {appendix-caption}
4
4
  :caution-caption: Caution
5
- :chapter-label: Chapter
6
- :chapter-refsig: {chapter-label}
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-label: Part
15
- :part-refsig: {part-label}
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
- //:chapter-label: ???
6
- //:chapter-refsig: {chapter-label}
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
- //:part-refsig: ???
14
+ :part-signifier: Parte
15
+ :part-refsig: {part-signifier}
15
16
  ifdef::preface-title[:preface-title: Prefacio]
16
- //:section-refsig: ???
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-label: ???
6
- //:chapter-refsig: {chapter-label}
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-refsig: ???
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-label: ???
6
- //:chapter-refsig: {chapter-label}
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-refsig: ???
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
4
  :caution-caption: Avertissement
5
- //:chapter-label: Chapitre
6
- //:chapter-refsig: {chapter-label}
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,9 +11,10 @@
11
11
  ifdef::listing-caption[:listing-caption: Liste]
12
12
  ifdef::manname-title[:manname-title: Nom]
13
13
  :note-caption: Note
14
- //:part-refsig: ???
14
+ :part-signifier: Partie
15
+ :part-refsig: {part-signifier}
15
16
  ifdef::preface-title[:preface-title: Préface]
16
- //:section-refsig: ???
17
+ :section-refsig: Section
17
18
  :table-caption: Tableau
18
19
  :tip-caption: Astuce
19
20
  :toc-title: Table des matières