mizuho 0.9.6 → 0.9.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. data/README.markdown +4 -2
  2. data/Rakefile +0 -37
  3. data/asciidoc/BUGS +9 -18
  4. data/asciidoc/BUGS.txt +5 -14
  5. data/asciidoc/CHANGELOG +1433 -266
  6. data/asciidoc/CHANGELOG.txt +2821 -1810
  7. data/asciidoc/COPYING +339 -339
  8. data/asciidoc/COPYRIGHT +18 -18
  9. data/asciidoc/INSTALL +189 -30
  10. data/asciidoc/INSTALL.txt +175 -19
  11. data/asciidoc/MANIFEST +88 -0
  12. data/asciidoc/Makefile.in +29 -13
  13. data/asciidoc/README +16 -17
  14. data/asciidoc/README.txt +35 -36
  15. data/asciidoc/a2x.py +902 -0
  16. data/asciidoc/asciidoc.conf +610 -455
  17. data/asciidoc/asciidoc.py +1965 -1061
  18. data/asciidoc/asciidocapi.py +257 -0
  19. data/asciidoc/common.aap +2 -2
  20. data/asciidoc/configure +1170 -1023
  21. data/asciidoc/configure.ac +1 -1
  22. data/asciidoc/dblatex/asciidoc-dblatex.xsl +42 -0
  23. data/asciidoc/doc/a2x.1 +559 -102
  24. data/asciidoc/doc/a2x.1.txt +233 -91
  25. data/asciidoc/doc/article-docinfo.xml +87 -0
  26. data/asciidoc/doc/article.pdf +0 -0
  27. data/asciidoc/doc/article.txt +139 -122
  28. data/asciidoc/doc/asciidoc.1 +157 -46
  29. data/asciidoc/doc/asciidoc.1.txt +171 -118
  30. data/asciidoc/doc/asciidoc.conf +7 -8
  31. data/asciidoc/doc/asciidoc.dict +960 -635
  32. data/asciidoc/doc/asciidoc.txt +2335 -1464
  33. data/asciidoc/doc/asciidocapi.txt +189 -0
  34. data/asciidoc/doc/asciimathml.txt +14 -17
  35. data/asciidoc/doc/book-multi.txt +181 -155
  36. data/asciidoc/doc/book.epub +0 -0
  37. data/asciidoc/doc/book.txt +156 -131
  38. data/asciidoc/doc/customers.csv +18 -18
  39. data/asciidoc/doc/epub-notes.txt +210 -0
  40. data/asciidoc/doc/faq.txt +1122 -547
  41. data/asciidoc/doc/latex-backend.txt +192 -191
  42. data/asciidoc/doc/latex-bugs.txt +134 -0
  43. data/asciidoc/doc/latex-filter.pdf +0 -0
  44. data/asciidoc/doc/latex-filter.txt +196 -0
  45. data/asciidoc/doc/latexmath.txt +13 -136
  46. data/asciidoc/doc/latexmathml.txt +2 -2
  47. data/asciidoc/doc/main.aap +233 -297
  48. data/asciidoc/doc/music-filter.pdf +0 -0
  49. data/asciidoc/doc/music-filter.txt +55 -65
  50. data/asciidoc/doc/publishing-ebooks-with-asciidoc.txt +398 -0
  51. data/asciidoc/doc/slidy-example.txt +167 -0
  52. data/asciidoc/doc/slidy.txt +113 -0
  53. data/asciidoc/doc/source-highlight-filter.pdf +0 -0
  54. data/asciidoc/doc/source-highlight-filter.txt +45 -20
  55. data/asciidoc/doc/testasciidoc.txt +231 -0
  56. data/asciidoc/docbook-xsl/asciidoc-docbook-xsl.txt +30 -8
  57. data/asciidoc/docbook-xsl/chunked.xsl +17 -19
  58. data/asciidoc/docbook-xsl/common.xsl +106 -67
  59. data/asciidoc/docbook-xsl/epub.xsl +35 -0
  60. data/asciidoc/docbook-xsl/fo.xsl +3 -0
  61. data/asciidoc/docbook-xsl/htmlhelp.xsl +16 -17
  62. data/asciidoc/docbook-xsl/manpage.xsl +31 -31
  63. data/asciidoc/docbook-xsl/text.xsl +6 -1
  64. data/asciidoc/docbook-xsl/xhtml.xsl +14 -14
  65. data/asciidoc/docbook45.conf +759 -0
  66. data/asciidoc/filters/code/code-filter-readme.txt +37 -37
  67. data/asciidoc/filters/code/code-filter-test.txt +15 -15
  68. data/asciidoc/filters/code/code-filter.conf +8 -8
  69. data/asciidoc/filters/graphviz/asciidoc-graphviz-sample.txt +104 -64
  70. data/asciidoc/filters/graphviz/graphviz-filter.conf +20 -16
  71. data/asciidoc/filters/graphviz/graphviz2png.py +54 -39
  72. data/asciidoc/filters/latex/latex-filter.conf +18 -0
  73. data/asciidoc/filters/latex/latex2png.py +216 -0
  74. data/asciidoc/filters/music/music-filter.conf +8 -17
  75. data/asciidoc/filters/music/music2png.py +40 -32
  76. data/asciidoc/filters/source/source-highlight-filter.conf +40 -34
  77. data/asciidoc/help.conf +261 -96
  78. data/asciidoc/html4.conf +505 -460
  79. data/asciidoc/html5.conf +686 -0
  80. data/asciidoc/images/highlighter.png +0 -0
  81. data/asciidoc/images/icons/caution.png +0 -0
  82. data/asciidoc/images/icons/example.png +0 -0
  83. data/asciidoc/images/icons/important.png +0 -0
  84. data/asciidoc/images/icons/note.png +0 -0
  85. data/asciidoc/images/icons/tip.png +0 -0
  86. data/asciidoc/images/icons/warning.png +0 -0
  87. data/asciidoc/images/smallnew.png +0 -0
  88. data/asciidoc/javascripts/asciidoc.js +189 -0
  89. data/asciidoc/javascripts/slidy.js +2845 -0
  90. data/asciidoc/javascripts/toc.js +8 -0
  91. data/asciidoc/lang-de.conf +57 -0
  92. data/asciidoc/lang-en.conf +54 -0
  93. data/asciidoc/lang-es.conf +49 -9
  94. data/asciidoc/lang-fr.conf +59 -0
  95. data/asciidoc/lang-hu.conf +55 -0
  96. data/asciidoc/lang-it.conf +55 -0
  97. data/asciidoc/lang-nl.conf +57 -0
  98. data/asciidoc/lang-pt-BR.conf +56 -0
  99. data/asciidoc/lang-ru.conf +60 -0
  100. data/asciidoc/lang-uk.conf +60 -0
  101. data/asciidoc/latex.conf +700 -663
  102. data/asciidoc/main.aap +77 -0
  103. data/asciidoc/slidy.conf +136 -0
  104. data/asciidoc/{examples/website/xhtml11-manpage.css → stylesheets/asciidoc-manpage.css} +1 -1
  105. data/asciidoc/stylesheets/asciidoc.css +508 -0
  106. data/asciidoc/stylesheets/docbook-xsl.css +322 -272
  107. data/asciidoc/stylesheets/flask-manpage.css +1 -0
  108. data/asciidoc/stylesheets/flask.css +584 -0
  109. data/asciidoc/stylesheets/pygments.css +66 -0
  110. data/asciidoc/stylesheets/slidy.css +445 -0
  111. data/asciidoc/stylesheets/toc2.css +33 -0
  112. data/asciidoc/stylesheets/volnitsky-manpage.css +1 -0
  113. data/asciidoc/stylesheets/volnitsky.css +435 -0
  114. data/asciidoc/stylesheets/xhtml11-quirks.css +5 -3
  115. data/asciidoc/tests/asciidocapi.py +257 -0
  116. data/asciidoc/tests/data/deprecated-quotes.txt +12 -0
  117. data/asciidoc/tests/data/filters-test.txt +90 -0
  118. data/asciidoc/tests/data/lang-de-test.txt +106 -0
  119. data/asciidoc/tests/data/lang-en-test.txt +114 -0
  120. data/asciidoc/tests/data/lang-es-test.txt +106 -0
  121. data/asciidoc/tests/data/lang-fr-test.txt +106 -0
  122. data/asciidoc/tests/data/lang-hu-test.txt +106 -0
  123. data/asciidoc/tests/data/lang-nl-test.txt +94 -0
  124. data/asciidoc/tests/data/lang-pt-BR-test.txt +106 -0
  125. data/asciidoc/tests/data/lang-ru-test.txt +106 -0
  126. data/asciidoc/tests/data/lang-uk-test.txt +106 -0
  127. data/asciidoc/tests/data/oldtables.txt +64 -0
  128. data/asciidoc/tests/data/rcs-id-marker-test.txt +6 -0
  129. data/asciidoc/tests/data/testcases.conf +2 -0
  130. data/asciidoc/tests/data/testcases.txt +740 -0
  131. data/asciidoc/tests/data/utf8-bom-test.txt +9 -0
  132. data/asciidoc/tests/data/utf8-examples.txt +217 -0
  133. data/asciidoc/tests/testasciidoc.conf +520 -0
  134. data/asciidoc/tests/testasciidoc.py +411 -0
  135. data/asciidoc/text.conf +16 -16
  136. data/asciidoc/vim/syntax/asciidoc.vim +99 -91
  137. data/asciidoc/wordpress.conf +43 -3
  138. data/asciidoc/xhtml11-quirks.conf +61 -57
  139. data/asciidoc/xhtml11.conf +684 -645
  140. data/lib/mizuho.rb +2 -0
  141. data/lib/mizuho/generator.rb +2 -2
  142. data/test/generator_spec.rb +1 -1
  143. data/test/parser_spec.rb +1 -1
  144. data/test/spec_helper.rb +3 -4
  145. metadata +87 -88
  146. data/asciidoc/a2x +0 -674
  147. data/asciidoc/doc/article.css-embedded.html +0 -602
  148. data/asciidoc/doc/article.html +0 -46
  149. data/asciidoc/doc/asciidoc-revhistory.xml +0 -27
  150. data/asciidoc/doc/asciidoc.1.css-embedded.html +0 -598
  151. data/asciidoc/doc/asciidoc.1.css.html +0 -212
  152. data/asciidoc/doc/asciidoc.1.html +0 -190
  153. data/asciidoc/doc/asciidoc.css-embedded.html +0 -7853
  154. data/asciidoc/doc/asciidoc.css.html +0 -7416
  155. data/asciidoc/doc/asciidoc.html +0 -3339
  156. data/asciidoc/doc/book-multi.css-embedded.html +0 -575
  157. data/asciidoc/doc/book-multi.html +0 -55
  158. data/asciidoc/doc/book.css-embedded.html +0 -607
  159. data/asciidoc/doc/book.html +0 -43
  160. data/asciidoc/doc/docbook-xsl.css +0 -272
  161. data/asciidoc/doc/latex-backend.html +0 -117
  162. data/asciidoc/doc/music-filter.html +0 -566
  163. data/asciidoc/doc/source-highlight-filter.html +0 -214
  164. data/asciidoc/docbook.conf +0 -721
  165. data/asciidoc/examples/website/ASCIIMathML.js +0 -938
  166. data/asciidoc/examples/website/CHANGELOG.html +0 -4389
  167. data/asciidoc/examples/website/CHANGELOG.txt +0 -1810
  168. data/asciidoc/examples/website/INSTALL.html +0 -161
  169. data/asciidoc/examples/website/INSTALL.txt +0 -71
  170. data/asciidoc/examples/website/LaTeXMathML.js +0 -1223
  171. data/asciidoc/examples/website/README-website.html +0 -118
  172. data/asciidoc/examples/website/README-website.txt +0 -29
  173. data/asciidoc/examples/website/README.html +0 -125
  174. data/asciidoc/examples/website/README.txt +0 -36
  175. data/asciidoc/examples/website/a2x.1.html +0 -419
  176. data/asciidoc/examples/website/a2x.1.txt +0 -204
  177. data/asciidoc/examples/website/asciidoc-docbook-xsl.html +0 -130
  178. data/asciidoc/examples/website/asciidoc-docbook-xsl.txt +0 -43
  179. data/asciidoc/examples/website/asciidoc-graphviz-sample.txt +0 -130
  180. data/asciidoc/examples/website/asciimathml.txt +0 -64
  181. data/asciidoc/examples/website/build-website.sh +0 -25
  182. data/asciidoc/examples/website/customers.csv +0 -18
  183. data/asciidoc/examples/website/downloads.html +0 -257
  184. data/asciidoc/examples/website/downloads.txt +0 -121
  185. data/asciidoc/examples/website/faq.html +0 -673
  186. data/asciidoc/examples/website/faq.txt +0 -547
  187. data/asciidoc/examples/website/index.html +0 -419
  188. data/asciidoc/examples/website/index.txt +0 -245
  189. data/asciidoc/examples/website/latex-backend.html +0 -535
  190. data/asciidoc/examples/website/latex-backend.txt +0 -191
  191. data/asciidoc/examples/website/latexmathml.txt +0 -41
  192. data/asciidoc/examples/website/layout1.conf +0 -161
  193. data/asciidoc/examples/website/layout1.css +0 -65
  194. data/asciidoc/examples/website/layout2.conf +0 -158
  195. data/asciidoc/examples/website/layout2.css +0 -93
  196. data/asciidoc/examples/website/manpage.html +0 -266
  197. data/asciidoc/examples/website/manpage.txt +0 -118
  198. data/asciidoc/examples/website/music-filter.html +0 -242
  199. data/asciidoc/examples/website/music-filter.txt +0 -158
  200. data/asciidoc/examples/website/music1.abc +0 -12
  201. data/asciidoc/examples/website/music1.png +0 -0
  202. data/asciidoc/examples/website/music2.ly +0 -9
  203. data/asciidoc/examples/website/music2.png +0 -0
  204. data/asciidoc/examples/website/newlists.txt +0 -40
  205. data/asciidoc/examples/website/newtables.txt +0 -397
  206. data/asciidoc/examples/website/sample1.png +0 -0
  207. data/asciidoc/examples/website/sample3.png +0 -0
  208. data/asciidoc/examples/website/sample4.png +0 -0
  209. data/asciidoc/examples/website/source-highlight-filter.html +0 -286
  210. data/asciidoc/examples/website/source-highlight-filter.txt +0 -203
  211. data/asciidoc/examples/website/support.html +0 -78
  212. data/asciidoc/examples/website/support.txt +0 -5
  213. data/asciidoc/examples/website/toc.js +0 -69
  214. data/asciidoc/examples/website/userguide.html +0 -7460
  215. data/asciidoc/examples/website/userguide.txt +0 -4979
  216. data/asciidoc/examples/website/version83.txt +0 -37
  217. data/asciidoc/examples/website/version9.html +0 -143
  218. data/asciidoc/examples/website/version9.txt +0 -48
  219. data/asciidoc/examples/website/xhtml11-quirks.css +0 -41
  220. data/asciidoc/examples/website/xhtml11.css +0 -328
  221. data/asciidoc/stylesheets/xhtml11-manpage.css +0 -18
  222. data/asciidoc/stylesheets/xhtml11.css +0 -328
@@ -1,3 +1,11 @@
1
+ /*
2
+ * IMPORTANT:
3
+ * This file (toc.js is) deprecated (superceded by asciidoc-xhtml11.js in
4
+ * AsciiDoc 8.5.1. toc.js is retained for compatibility with user customised
5
+ * (pre 8.5.1) xhtml11 [header] and [footer] sections.
6
+ *
7
+ */
8
+
1
9
  /* Author: Mihai Bazon, September 2002
2
10
  * http://students.infoiasi.ro/~mishoo
3
11
  *
@@ -0,0 +1,57 @@
1
+ #
2
+ # AsciiDoc German language configuration file.
3
+ # Originally written by Michael Wild
4
+ #
5
+
6
+ [attributes]
7
+ # Left and right single and double quote characters.
8
+ lsquo=‚
9
+ rsquo=‘
10
+ ldquo=„
11
+ rdquo=“
12
+
13
+ # Captions, used by (X)HTML backends.
14
+ # Captions on RHS are displayed in outputs.
15
+ ifdef::basebackend-html[]
16
+
17
+ caution-caption=Achtung
18
+ important-caption=Wichtig
19
+ note-caption=Anmerkung
20
+ tip-caption=Tipp
21
+ warning-caption=Warnung
22
+ figure-caption=Abbildung
23
+ table-caption=Tabelle
24
+ example-caption=Beispiel
25
+ toc-title=Inhaltsverzeichnis
26
+ appendix-caption=Anhang
27
+ # Man page NAME section title.
28
+ manname-title=NAME
29
+
30
+ [footer-text]
31
+ Version {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
32
+ Letzte Änderung {docdate} {doctime}
33
+
34
+ endif::basebackend-html[]
35
+
36
+
37
+ [specialsections]
38
+ # DocBook special sections.
39
+ # The regular expression on LHS is matched against source titles.
40
+ ifdef::basebackend-docbook[]
41
+
42
+ ifdef::doctype-article[]
43
+ ^Zusammenfassung$=abstract
44
+ endif::doctype-article[]
45
+
46
+ ifdef::doctype-book[]
47
+ ^Kolophon$=colophon
48
+ ^Widmung$=dedication
49
+ ^Vorwort$=preface
50
+ endif::doctype-book[]
51
+
52
+ ^Stichwortverzeichnis$=index
53
+ ^Literaturverzeichnis$=bibliography
54
+ ^Glossar$=glossary
55
+ ^Anhang [A-Z][:.](?P<title>.*)$=appendix
56
+
57
+ endif::basebackend-docbook[]
@@ -0,0 +1,54 @@
1
+ #
2
+ # AsciiDoc English language configuration file.
3
+ #
4
+
5
+ [attributes]
6
+ # Captions, used by (X)HTML backends.
7
+ # Captions on RHS are displayed in outputs.
8
+ ifdef::basebackend-html[]
9
+
10
+ caution-caption=Caution
11
+ important-caption=Important
12
+ note-caption=Note
13
+ tip-caption=Tip
14
+ warning-caption=Warning
15
+ figure-caption=Figure
16
+ table-caption=Table
17
+ example-caption=Example
18
+ toc-title=Table of Contents
19
+ appendix-caption=Appendix
20
+ # Man page NAME section title.
21
+ manname-title=NAME
22
+
23
+ [footer-text]
24
+ Version {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
25
+ Last updated {docdate} {doctime}
26
+
27
+ endif::basebackend-html[]
28
+
29
+
30
+ [specialsections]
31
+ # DocBook special sections.
32
+ # The regular expression on LHS is matched against source titles.
33
+ ifdef::basebackend-docbook[]
34
+
35
+ ifdef::doctype-article[]
36
+ ^Abstract$=abstract
37
+ endif::doctype-article[]
38
+
39
+ ifdef::doctype-book[]
40
+ ^Colophon$=colophon
41
+ ^Dedication$=dedication
42
+ ^Preface$=preface
43
+ endif::doctype-book[]
44
+
45
+ ^Index$=index
46
+ ^(Bibliography|References)$=bibliography
47
+ ^Glossary$=glossary
48
+ ^Appendix [A-Z][:.](?P<title>.*)$=appendix
49
+
50
+ endif::basebackend-docbook[]
51
+
52
+ ifdef::doctype-manpage[]
53
+ (?i)^SYNOPSIS$=synopsis
54
+ endif::doctype-manpage[]
@@ -1,15 +1,55 @@
1
- [attributes]
1
+ #
2
+ # AsciiDoc Spanish language configuration file.
3
+ #
2
4
 
5
+ [attributes]
6
+ # Captions, used by (X)HTML backends.
7
+ # Captions on RHS are displayed in outputs.
3
8
  ifdef::basebackend-html[]
4
9
 
5
- # Captions, used by HTML backends.
6
- caution_caption=Atención
7
- important_caption=Importante
8
- note_caption=Nota
9
- tip_caption=Sugerencia
10
- warning_caption=Aviso
11
- figure_caption="Figura: "
12
- table_caption="Tabla: "
10
+ caution-caption=Atención
11
+ important-caption=Importante
12
+ note-caption=Nota
13
+ tip-caption=Sugerencia
14
+ warning-caption=Aviso
15
+ figure-caption=Figura
16
+ table-caption=Tabla
17
+ example-caption=Ejemplo
18
+ toc-title=Tabla de contenidos
19
+ appendix-caption=Apéndice
20
+ # Man page NAME section title.
21
+ manname-title=NOMBRE DE REFERENCIA
22
+
23
+ [footer-text]
24
+ #TODO: Translation of 'Version' and 'Last updated'.
25
+ Version {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
26
+ Last updated {docdate} {doctime}
13
27
 
14
28
  endif::basebackend-html[]
15
29
 
30
+
31
+ [specialsections]
32
+ # DocBook special sections.
33
+ # The regular expression on LHS is matched against source titles.
34
+ ifdef::basebackend-docbook[]
35
+
36
+ ifdef::doctype-article[]
37
+ ^Resumen$=abstract
38
+ endif::doctype-article[]
39
+
40
+ ifdef::doctype-book[]
41
+ ^Colofón$=colophon
42
+ ^Dedicación$=dedication
43
+ ^Prefacio$=preface
44
+ endif::doctype-book[]
45
+
46
+ ^Índice$=index
47
+ ^(Bibliografía|Referencias)$=bibliography
48
+ ^Glosario$=glossary
49
+ ^Apéndice [A-Z][:.](?P<title>.*)$=appendix
50
+
51
+ endif::basebackend-docbook[]
52
+
53
+ ifdef::doctype-manpage[]
54
+ (?i)^SINOPSIS$=synopsis
55
+ endif::doctype-manpage[]
@@ -0,0 +1,59 @@
1
+ #
2
+ # AsciiDoc French language configuration file.
3
+ # Originally written by Yves-Alexis Perez
4
+ #
5
+
6
+ [attributes]
7
+ # Left and right single and double quote characters.
8
+ ldquo=&#0171;
9
+ rdquo=&#0187;
10
+
11
+ # Captions, used by (X)HTML backends.
12
+ # Captions on RHS are displayed in outputs.
13
+ ifdef::basebackend-html[]
14
+
15
+ tip-caption=Astuce
16
+ caution-caption=Avertissement
17
+ important-caption=Important
18
+ note-caption=Note
19
+ warning-caption=Attention
20
+ figure-caption=Figure
21
+ table-caption=Tableau
22
+ example-caption=Exemple
23
+ toc-title=Table des matières
24
+ appendix-caption=Appendice
25
+ # Man page NAME section title.
26
+ manname-title=NOM
27
+
28
+ [footer-text]
29
+ Version {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
30
+ Dernière mise à jour {docdate} {doctime}
31
+
32
+ endif::basebackend-html[]
33
+
34
+
35
+ [specialsections]
36
+ # DocBook special sections.
37
+ # The regular expression on LHS is matched against source titles.
38
+ ifdef::basebackend-docbook[]
39
+
40
+ ifdef::doctype-article[]
41
+ ^Résumé$=abstract
42
+ endif::doctype-article[]
43
+
44
+ ifdef::doctype-book[]
45
+ ^Colophon$=colophon
46
+ ^Dédicace$=dedication
47
+ ^Préface$=preface
48
+ endif::doctype-book[]
49
+
50
+ ^Index$=index
51
+ ^(Bibliographie|Références)$=bibliography
52
+ ^Glossaire$=glossary
53
+ ^Appendice [A-Z][:.](?P<title>.*)$=appendix
54
+
55
+ endif::basebackend-docbook[]
56
+
57
+ ifdef::doctype-manpage[]
58
+ (?i)^SYNOPSIS$=synopsis
59
+ endif::doctype-manpage[]
@@ -0,0 +1,55 @@
1
+ #
2
+ # AsciiDoc Hungarian language configuration file.
3
+ # Originally written by Miklos Vajna
4
+ #
5
+
6
+ [attributes]
7
+ # Captions, used by (X)HTML backends.
8
+ # Captions on RHS are displayed in outputs.
9
+ ifdef::basebackend-html[]
10
+
11
+ caution-caption=Figyelmeztetés
12
+ important-caption=Fontos
13
+ note-caption=Megjegyzés
14
+ tip-caption=Tipp
15
+ warning-caption=Figyelem
16
+ figure-caption=Ábra
17
+ table-caption=Táblázat
18
+ example-caption=Példa
19
+ toc-title=Tartalomjegyzék
20
+ appendix-caption=függelék
21
+ # Man page NAME section title.
22
+ manname-title=NÉV
23
+
24
+ [footer-text]
25
+ Verzió {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
26
+ Utolsó frissítés: {docdate} {doctime}
27
+
28
+ endif::basebackend-html[]
29
+
30
+
31
+ [specialsections]
32
+ # DocBook special sections.
33
+ # The regular expression on LHS is matched against source titles.
34
+ ifdef::basebackend-docbook[]
35
+
36
+ ifdef::doctype-article[]
37
+ ^Kivonat$=abstract
38
+ endif::doctype-article[]
39
+
40
+ ifdef::doctype-book[]
41
+ ^Utószó$=colophon
42
+ ^Ajánlás$=dedication
43
+ ^Előszó$=preface
44
+ endif::doctype-book[]
45
+
46
+ ^Index$=index
47
+ ^(Bibliográfia|Hivatkozások)$=bibliography
48
+ ^Szójegyzék$=glossary
49
+ ^[A-Z] függelék[:.](?P<title>.*)$=appendix
50
+
51
+ endif::basebackend-docbook[]
52
+
53
+ ifdef::doctype-manpage[]
54
+ (?i)^ÁTTEKINTÉS$=synopsis
55
+ endif::doctype-manpage[]
@@ -0,0 +1,55 @@
1
+ #
2
+ # AsciiDoc Italian language configuration file.
3
+ #
4
+
5
+ [attributes]
6
+ # Captions, used by (X)HTML backends.
7
+ # Captions on RHS are displayed in outputs.
8
+ ifdef::basebackend-html[]
9
+
10
+ caution-caption=Attenzione
11
+ important-caption=Importante
12
+ note-caption=Nota
13
+ tip-caption=Suggerimento
14
+ warning-caption=Avvertenza
15
+ figure-caption=Figura
16
+ table-caption=Tabella
17
+ example-caption=Esempio
18
+ toc-title=Sommario
19
+ appendix-caption=Appendice
20
+ # Man page NAME section title.
21
+ manname-title=NOME
22
+
23
+ [footer-text]
24
+ #TODO: Translation of 'Version' and 'Last updated'.
25
+ Version {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
26
+ Last updated {docdate} {doctime}
27
+
28
+ endif::basebackend-html[]
29
+
30
+
31
+ [specialsections]
32
+ # DocBook special sections.
33
+ # The regular expression on LHS is matched against source titles.
34
+ ifdef::basebackend-docbook[]
35
+
36
+ ifdef::doctype-article[]
37
+ ^Abstract$=abstract
38
+ endif::doctype-article[]
39
+
40
+ ifdef::doctype-book[]
41
+ ^Colofone$=colophon
42
+ ^Dedica$=dedication
43
+ ^Prefazione$=preface
44
+ endif::doctype-book[]
45
+
46
+ ^Index$=index
47
+ ^(Bibliografia|Riferimenti)$=bibliography
48
+ ^Glossario$=glossary
49
+ ^Appendice [A-Z][:.](?P<title>.*)$=appendix
50
+
51
+ endif::basebackend-docbook[]
52
+
53
+ ifdef::doctype-manpage[]
54
+ (?i)^SINOSSI$=synopsis
55
+ endif::doctype-manpage[]
@@ -0,0 +1,57 @@
1
+ #
2
+ # AsciiDoc Dutch language configuration file.
3
+ # Originally written by Dag Wieërs
4
+ #
5
+
6
+ [attributes]
7
+ # Left and right single and double quote characters.
8
+ lsquo=&#8218;
9
+ rsquo=&#8216;
10
+ ldquo=&#8222;
11
+ rdquo=&#8220;
12
+
13
+ # Captions, used by (X)HTML backends.
14
+ # Captions on RHS are displayed in outputs.
15
+ ifdef::basebackend-html[]
16
+
17
+ caution-caption=Let op
18
+ important-caption=Belangrijk
19
+ note-caption=Opmerking
20
+ tip-caption=Tip
21
+ warning-caption=Waarschuwing
22
+ figure-caption=Figuur
23
+ table-caption=Tabel
24
+ example-caption=Voorbeeld
25
+ toc-title=Inhoudsopgave
26
+ appendix-caption=Bijlage
27
+ # Man page NAME section title.
28
+ manname-title=NAME
29
+
30
+ [footer-text]
31
+ Versie {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
32
+ Laatst bijgewerkt {docdate} {doctime}
33
+
34
+ endif::basebackend-html[]
35
+
36
+
37
+ [specialsections]
38
+ # DocBook special sections.
39
+ # The regular expression on LHS is matched against source titles.
40
+ ifdef::basebackend-docbook[]
41
+
42
+ ifdef::doctype-article[]
43
+ ^Samenvatting$=abstract
44
+ endif::doctype-article[]
45
+
46
+ ifdef::doctype-book[]
47
+ ^Colofon$=colophon
48
+ ^Opdracht$=dedication
49
+ ^Voorwoord$=preface
50
+ endif::doctype-book[]
51
+
52
+ ^Register$=index
53
+ ^Literatuurlijst$=bibliography
54
+ ^Woordenlijst$=glossary
55
+ ^Bijlage [A-Z][:.](?P<title>.*)$=appendix
56
+
57
+ endif::basebackend-docbook[]
@@ -0,0 +1,56 @@
1
+ #
2
+ # AsciiDoc Portugues language configuration file.
3
+ # Originally written by Thiago Farina
4
+ #
5
+
6
+ [attributes]
7
+ # Captions, used by (X)HTML backends.
8
+ # Captions on RHS are displayed in outputs.
9
+ ifdef::basebackend-html[]
10
+
11
+ caution-caption=Atenção
12
+ important-caption=Importante
13
+ note-caption=Nota
14
+ tip-caption=Sugestão
15
+ warning-caption=Aviso
16
+ figure-caption=Figura
17
+ table-caption=Tabela
18
+ example-caption=Exemplo
19
+ toc-title=Tabela de conteúdos
20
+ appendix-caption=Appêndice
21
+ # Man page NAME section title.
22
+ manname-title=NOME
23
+
24
+ [footer-text]
25
+ #TODO: Translation of 'Version' and 'Last updated'.
26
+ Version {revnumber}{basebackend-xhtml11?<br />}{basebackend-xhtml11=<br>}
27
+ Last updated {docdate} {doctime}
28
+
29
+ endif::basebackend-html[]
30
+
31
+
32
+ [specialsections]
33
+ # DocBook special sections.
34
+ # The regular expression on LHS is matched against source titles.
35
+ ifdef::basebackend-docbook[]
36
+
37
+ ifdef::doctype-article[]
38
+ ^Resumo$=abstract
39
+ endif::doctype-article[]
40
+
41
+ ifdef::doctype-book[]
42
+ ^Cólofon$=colophon
43
+ ^Dedicação$=dedication
44
+ ^Prefácio$=preface
45
+ endif::doctype-book[]
46
+
47
+ ^Índice$=index
48
+ ^(Bibliografia|Referências)$=bibliography
49
+ ^Glossário$=glossary
50
+ ^Appêndice [A-Z][:.](?P<title>.*)$=appendix
51
+
52
+ endif::basebackend-docbook[]
53
+
54
+ ifdef::doctype-manpage[]
55
+ (?i)^SINOPSE$=synopsis
56
+ endif::doctype-manpage[]