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
    
        data/Rakefile
    CHANGED
    
    | @@ -82,3 +82,60 @@ desc 'Open an irb session preloaded with this library' | |
| 82 82 | 
             
            task :console do
         | 
| 83 83 | 
             
              sh 'bundle console', :verbose => false
         | 
| 84 84 | 
             
            end
         | 
| 85 | 
            +
             | 
| 86 | 
            +
            namespace :build do
         | 
| 87 | 
            +
            desc 'Trigger builds for all dependent projects on Travis CI'
         | 
| 88 | 
            +
              task :dependents do
         | 
| 89 | 
            +
                if ENV['TRAVIS'].to_s == 'true'
         | 
| 90 | 
            +
                  next unless ENV['TRAVIS_PULL_REQUEST'].to_s == 'false' &&
         | 
| 91 | 
            +
                      ENV['TRAVIS_TAG'].to_s.empty? &&
         | 
| 92 | 
            +
                      (ENV['TRAVIS_JOB_NUMBER'].to_s.end_with? '.1')
         | 
| 93 | 
            +
                end
         | 
| 94 | 
            +
                # NOTE The TRAVIS_TOKEN env var must be defined in Travis interface.
         | 
| 95 | 
            +
                # Retrieve this token using the `travis token` command.
         | 
| 96 | 
            +
                # The GitHub user corresponding to the Travis user must have write access to the repository.
         | 
| 97 | 
            +
                # After granting permission, sign into Travis and resync the repositories.
         | 
| 98 | 
            +
                next unless (token = ENV['TRAVIS_TOKEN'])
         | 
| 99 | 
            +
                require 'json'
         | 
| 100 | 
            +
                require 'net/http'
         | 
| 101 | 
            +
                require 'open-uri'
         | 
| 102 | 
            +
                require 'yaml'
         | 
| 103 | 
            +
                %w(
         | 
| 104 | 
            +
                  asciidoctor/asciidoctor.js
         | 
| 105 | 
            +
                  asciidoctor/asciidoctorj
         | 
| 106 | 
            +
                  asciidoctor/asciidoctorj/asciidoctorj-1.6.0
         | 
| 107 | 
            +
                  asciidoctor/asciidoctor-diagram
         | 
| 108 | 
            +
                  asciidoctor/asciidoctor-reveal.js
         | 
| 109 | 
            +
                ).each do |project|
         | 
| 110 | 
            +
                  org, name, branch = project.split '/', 3
         | 
| 111 | 
            +
                  branch ||= 'master'
         | 
| 112 | 
            +
                  project = [org, name, branch] * '/'
         | 
| 113 | 
            +
                  header = {
         | 
| 114 | 
            +
                    'Content-Type' => 'application/json',
         | 
| 115 | 
            +
                    'Accept' => 'application/json',
         | 
| 116 | 
            +
                    'Travis-API-Version' => '3',
         | 
| 117 | 
            +
                    'Authorization' => %(token #{token})
         | 
| 118 | 
            +
                  }
         | 
| 119 | 
            +
                  if (commit_hash = ENV['TRAVIS_COMMIT'])
         | 
| 120 | 
            +
                    commit_memo = %( (#{commit_hash.slice 0, 8})\n\nhttps://github.com/#{ENV['TRAVIS_REPO_SLUG'] || 'asciidoctor/asciidoctor'}/commit/#{commit_hash})
         | 
| 121 | 
            +
                  end
         | 
| 122 | 
            +
                  config = YAML.load open(%(https://raw.githubusercontent.com/#{project}/.travis-upstream-only.yml)) {|fd| fd.read } rescue {}
         | 
| 123 | 
            +
                  payload = {
         | 
| 124 | 
            +
                    'request' => {
         | 
| 125 | 
            +
                      'branch' => branch,
         | 
| 126 | 
            +
                      'message' => %(Build triggered by Asciidoctor#{commit_memo}),
         | 
| 127 | 
            +
                      'config' => config
         | 
| 128 | 
            +
                    }
         | 
| 129 | 
            +
                  }.to_json
         | 
| 130 | 
            +
                  (http = Net::HTTP.new 'api.travis-ci.org', 443).use_ssl = true
         | 
| 131 | 
            +
                  request = Net::HTTP::Post.new %(/repo/#{org}%2F#{name}/requests), header
         | 
| 132 | 
            +
                  request.body = payload
         | 
| 133 | 
            +
                  response = http.request request
         | 
| 134 | 
            +
                  if response.code == '202'
         | 
| 135 | 
            +
                    puts %(Successfully triggered build on #{project} repository)
         | 
| 136 | 
            +
                  else
         | 
| 137 | 
            +
                    warn %(Unable to trigger build on #{project} repository: #{response.code} - #{response.message})
         | 
| 138 | 
            +
                  end
         | 
| 139 | 
            +
                end
         | 
| 140 | 
            +
              end
         | 
| 141 | 
            +
            end
         | 
    
        data/asciidoctor.gemspec
    CHANGED
    
    | @@ -11,13 +11,19 @@ Gem::Specification.new do |s| | |
| 11 11 | 
             
              s.email = ['dan.j.allen@gmail.com']
         | 
| 12 12 | 
             
              s.homepage = 'http://asciidoctor.org'
         | 
| 13 13 | 
             
              s.license = 'MIT'
         | 
| 14 | 
            +
              s.metadata = {
         | 
| 15 | 
            +
                'bug_tracker_uri' => 'https://github.com/asciidoctor/asciidoctor/issues',
         | 
| 16 | 
            +
                'changelog_uri' => 'https://github.com/asciidoctor/asciidoctor/blob/master/CHANGELOG.adoc',
         | 
| 17 | 
            +
                'mailing_list_uri' => 'http://discuss.asciidoctor.org',
         | 
| 18 | 
            +
                'source_code_uri' => 'https://github.com/asciidoctor/asciidoctor'
         | 
| 19 | 
            +
              }
         | 
| 14 20 |  | 
| 15 21 | 
             
              files = begin
         | 
| 16 22 | 
             
                (result = Open3.popen3('git ls-files -z') {|_, out| out.read }.split %(\0)).empty? ? Dir['**/*'] : result
         | 
| 17 23 | 
             
              rescue
         | 
| 18 24 | 
             
                Dir['**/*']
         | 
| 19 25 | 
             
              end
         | 
| 20 | 
            -
              s.files = files.grep(/^(?:(?:data|lib|man)\/.+|Gemfile|Rakefile|LICENSE|(?:CHANGELOG| | 
| 26 | 
            +
              s.files = files.grep(/^(?:(?:data|lib|man)\/.+|Gemfile|Rakefile|LICENSE|(?:CHANGELOG|CONTRIBUTING|README(?:-\w+)?)\.adoc|#{s.name}\.gemspec)$/)
         | 
| 21 27 | 
             
              s.executables = files.grep(/^bin\//).map {|f| File.basename f }
         | 
| 22 28 | 
             
              s.require_paths = ['lib']
         | 
| 23 29 | 
             
              s.test_files = files.grep(/^(?:(?:features|test)\/.+)$/)
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Arabic translation, courtesy of Aboullaite Mohammed <aboullaite.mohammed@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 | 
            +
            // Bulgarian translation, courtesy of Ivan St. Ivanov <ivan.st.ivanov@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 | 
            +
            // Catalan translation, courtesy of Abel Salgado Romero <abelromero@gmail.com> and Alex Soto
         | 
| 2 | 
            +
            :appendix-caption: Apendix
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Atenció
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Exemple
         | 
| 8 | 
            +
            :figure-caption: Figura
         | 
| 9 | 
            +
            :important-caption: Important
         | 
| 10 | 
            +
            :last-update-label: Última actualització
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Llista]
         | 
| 12 | 
            +
            //:manname-title: NOM
         | 
| 13 | 
            +
            :note-caption: Nota
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Prefaci]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Taula
         | 
| 18 | 
            +
            :tip-caption: Suggeriment
         | 
| 19 | 
            +
            :toc-title: Índex
         | 
| 20 | 
            +
            :untitled-label: Sense títol
         | 
| 21 | 
            +
            :version-label: Versió
         | 
| 22 | 
            +
            :warning-caption: Advertència
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // czech translation, for reference only; matches the built-in behavior of core
         | 
| 2 | 
            +
            :appendix-caption: Příloha
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Upozornění
         | 
| 5 | 
            +
            :chapter-label: Kapitola
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Příklad
         | 
| 8 | 
            +
            :figure-caption: Obrázek
         | 
| 9 | 
            +
            :important-caption: Důležité
         | 
| 10 | 
            +
            :last-update-label: Změněno
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Seznam]
         | 
| 12 | 
            +
            //:manname-title: Název
         | 
| 13 | 
            +
            :note-caption: Poznámka
         | 
| 14 | 
            +
            :part-refsig: Část
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Úvod]
         | 
| 16 | 
            +
            :section-refsig: Oddíl
         | 
| 17 | 
            +
            :table-caption: Tabulka
         | 
| 18 | 
            +
            :tip-caption: Tip
         | 
| 19 | 
            +
            :toc-title: Obsah
         | 
| 20 | 
            +
            :untitled-label: Nepojmenovaný
         | 
| 21 | 
            +
            :version-label: Verze
         | 
| 22 | 
            +
            :warning-caption: Varování
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Danish translation, courtesy of Max Rydahl Andersen <manderse@redhat.com>
         | 
| 2 | 
            +
            :appendix-caption: Appendix
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Forsigtig
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Eksempel
         | 
| 8 | 
            +
            :figure-caption: Figur
         | 
| 9 | 
            +
            :important-caption: Vigtig
         | 
| 10 | 
            +
            :last-update-label: Sidst opdateret
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: List]
         | 
| 12 | 
            +
            //:manname-title: NAVN
         | 
| 13 | 
            +
            :note-caption: Notat
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Forord]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabel
         | 
| 18 | 
            +
            :tip-caption: Tips
         | 
| 19 | 
            +
            :toc-title: Indholdsfortegnelse
         | 
| 20 | 
            +
            :untitled-label: Unavngivet
         | 
| 21 | 
            +
            :version-label: Version
         | 
| 22 | 
            +
            :warning-caption: Advarsel
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // German translation, courtesy of Florian Wilhelm
         | 
| 2 | 
            +
            :appendix-caption: Anhang
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Achtung
         | 
| 5 | 
            +
            :chapter-label: Kapitel
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Beispiel
         | 
| 8 | 
            +
            :figure-caption: Abbildung
         | 
| 9 | 
            +
            :important-caption: Wichtig
         | 
| 10 | 
            +
            :last-update-label: Zuletzt aktualisiert
         | 
| 11 | 
            +
            //ifdef::listing-caption[:listing-caption: ???]
         | 
| 12 | 
            +
            //:manname-title: BEZEICHNUNG
         | 
| 13 | 
            +
            :note-caption: Anmerkung
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Vorwort]
         | 
| 16 | 
            +
            :section-refsig: Abschnitt
         | 
| 17 | 
            +
            :table-caption: Tabelle
         | 
| 18 | 
            +
            :tip-caption: Hinweis
         | 
| 19 | 
            +
            :toc-title: Inhalt
         | 
| 20 | 
            +
            :untitled-label: Ohne Titel
         | 
| 21 | 
            +
            :version-label: Version
         | 
| 22 | 
            +
            :warning-caption: Warnung
         | 
| @@ -0,0 +1,23 @@ | |
| 1 | 
            +
            // English translation, for reference only; matches the built-in behavior of core
         | 
| 2 | 
            +
            :appendix-caption: Appendix
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Caution
         | 
| 5 | 
            +
            :chapter-label: Chapter
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Example
         | 
| 8 | 
            +
            :figure-caption: Figure
         | 
| 9 | 
            +
            :important-caption: Important
         | 
| 10 | 
            +
            :last-update-label: Last updated
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Listing]
         | 
| 12 | 
            +
            //:manname-title: Name
         | 
| 13 | 
            +
            :note-caption: Note
         | 
| 14 | 
            +
            :part-label: Part
         | 
| 15 | 
            +
            :part-refsig: {part-label}
         | 
| 16 | 
            +
            ifdef::preface-title[:preface-title: Preface]
         | 
| 17 | 
            +
            :section-refsig: Section
         | 
| 18 | 
            +
            :table-caption: Table
         | 
| 19 | 
            +
            :tip-caption: Tip
         | 
| 20 | 
            +
            :toc-title: Table of Contents
         | 
| 21 | 
            +
            :untitled-label: Untitled
         | 
| 22 | 
            +
            :version-label: Version
         | 
| 23 | 
            +
            :warning-caption: Warning
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Spanish translation, courtesy of Eddú Meléndez <eddu.melendez@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Apéndice
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Precaución
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Ejemplo
         | 
| 8 | 
            +
            :figure-caption: Figura
         | 
| 9 | 
            +
            :important-caption: Importante
         | 
| 10 | 
            +
            :last-update-label: Ultima actualización
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Lista]
         | 
| 12 | 
            +
            //:manname-title: NOMBRE
         | 
| 13 | 
            +
            :note-caption: Nota
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Prefacio]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabla
         | 
| 18 | 
            +
            :tip-caption: Sugerencia
         | 
| 19 | 
            +
            :toc-title: Tabla de Contenido
         | 
| 20 | 
            +
            :untitled-label: Sin título
         | 
| 21 | 
            +
            :version-label: Versión
         | 
| 22 | 
            +
            :warning-caption: Aviso
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Persian (Farsi) translation, courtesy of Shahryar Eivazzadeh <shahryareiv@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 | 
            +
            // Finnish translation by Tero Hänninen
         | 
| 2 | 
            +
            :appendix-caption: Liitteet
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Huom
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Esimerkki
         | 
| 8 | 
            +
            :figure-caption: Kuvio
         | 
| 9 | 
            +
            :important-caption: Tärkeää
         | 
| 10 | 
            +
            :last-update-label: Viimeksi päivitetty
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Listaus]
         | 
| 12 | 
            +
            //:manname-title: NIMI
         | 
| 13 | 
            +
            :note-caption: Huomio
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Esipuhe]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Taulukko
         | 
| 18 | 
            +
            :tip-caption: Vinkki
         | 
| 19 | 
            +
            :toc-title: Sisällysluettelo
         | 
| 20 | 
            +
            :untitled-label: Nimetön
         | 
| 21 | 
            +
            :version-label: Versio
         | 
| 22 | 
            +
            :warning-caption: Varoitus
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // French translation, courtesy of Nicolas Comet <nicolas.comet@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Annexe
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Avertissement
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Exemple
         | 
| 8 | 
            +
            :figure-caption: Figure
         | 
| 9 | 
            +
            :important-caption: Important
         | 
| 10 | 
            +
            :last-update-label: Dernière mise à jour
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Liste]
         | 
| 12 | 
            +
            //:manname-title: NOM
         | 
| 13 | 
            +
            :note-caption: Note
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Préface]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tableau
         | 
| 18 | 
            +
            :tip-caption: Astuce
         | 
| 19 | 
            +
            :toc-title: Table des matières
         | 
| 20 | 
            +
            :untitled-label: Sans titre
         | 
| 21 | 
            +
            :version-label: Version
         | 
| 22 | 
            +
            :warning-caption: Attention
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Hungarian translation, courtesy of István Pató <istvan.pato@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: függelék
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Figyelmeztetés
         | 
| 5 | 
            +
            //:chapter-label: ???
         | 
| 6 | 
            +
            //:chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Példa
         | 
| 8 | 
            +
            :figure-caption: Ábra
         | 
| 9 | 
            +
            :important-caption: Fontos
         | 
| 10 | 
            +
            :last-update-label: Utolsó frissítés
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Lista]
         | 
| 12 | 
            +
            //:manname-title: NÉV
         | 
| 13 | 
            +
            :note-caption: Megjegyzés
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Előszó]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Táblázat
         | 
| 18 | 
            +
            :tip-caption: Tipp
         | 
| 19 | 
            +
            :toc-title: Tartalomjegyzék
         | 
| 20 | 
            +
            :untitled-label: Névtelen
         | 
| 21 | 
            +
            :version-label: Verzió
         | 
| 22 | 
            +
            :warning-caption: Figyelem
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Bahasa Indonesia, courtesy of Triyan W. Nugroho <triyan.wn@gmail.com>
         | 
| 2 | 
            +
            :appendix-caption: Lampiran
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Perhatian
         | 
| 5 | 
            +
            :chapter-label: Bab
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Contoh
         | 
| 8 | 
            +
            :figure-caption: Gambar
         | 
| 9 | 
            +
            :important-caption: Penting
         | 
| 10 | 
            +
            :last-update-label: Pembaruan terakhir
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Daftar]
         | 
| 12 | 
            +
            //:manname-title: NAMA
         | 
| 13 | 
            +
            :note-caption: Catatan
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            //ifdef::preface-title[:preface-title: ???]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabel
         | 
| 18 | 
            +
            :tip-caption: Tips
         | 
| 19 | 
            +
            :toc-title: Daftar Isi
         | 
| 20 | 
            +
            :untitled-label: Tak Berjudul
         | 
| 21 | 
            +
            :version-label: Versi
         | 
| 22 | 
            +
            :warning-caption: Peringatan
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Italian translation, courtesy of Marco Ciampa <ciampix@libero.it>
         | 
| 2 | 
            +
            :appendix-caption: Appendice
         | 
| 3 | 
            +
            :appendix-refsig: {appendix-caption}
         | 
| 4 | 
            +
            :caution-caption: Attenzione
         | 
| 5 | 
            +
            :chapter-label: Capitolo
         | 
| 6 | 
            +
            :chapter-refsig: {chapter-label}
         | 
| 7 | 
            +
            :example-caption: Esempio
         | 
| 8 | 
            +
            :figure-caption: Figura
         | 
| 9 | 
            +
            :important-caption: Importante
         | 
| 10 | 
            +
            :last-update-label: Ultimo aggiornamento
         | 
| 11 | 
            +
            ifdef::listing-caption[:listing-caption: Elenco]
         | 
| 12 | 
            +
            //:manname-title: NOME
         | 
| 13 | 
            +
            :note-caption: Nota
         | 
| 14 | 
            +
            //:part-refsig: ???
         | 
| 15 | 
            +
            ifdef::preface-title[:preface-title: Prefazione]
         | 
| 16 | 
            +
            //:section-refsig: ???
         | 
| 17 | 
            +
            :table-caption: Tabella
         | 
| 18 | 
            +
            :tip-caption: Suggerimento
         | 
| 19 | 
            +
            :toc-title: Indice
         | 
| 20 | 
            +
            :untitled-label: Senza titolo
         | 
| 21 | 
            +
            :version-label: Versione
         | 
| 22 | 
            +
            :warning-caption: Attenzione
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            // Japanese translation, courtesy of Takayuki Konishi <seannos.takayuki@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 | 
            +
            // Korean translation, courtesy of Sungsik Nam <jmyl@me.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: 경고
         |