comparison env/lib/python3.9/site-packages/docutils/parsers/rst/languages/it.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 # $Id: it.py 7119 2011-09-02 13:00:23Z milde $
2 # Authors: Nicola Larosa <docutils@tekNico.net>;
3 # Lele Gaifax <lele@seldati.it>
4 # Copyright: This module has been placed in the public domain.
5
6 # Beware: the italian translation of the reStructuredText documentation
7 # at http://docit.bice.dyndns.org/static/ReST, in particular
8 # http://docit.bice.dyndns.org/static/ReST/ref/rst/directives.html, needs
9 # to be synced with the content of this file.
10
11 """
12 Italian-language mappings for language-dependent features of
13 reStructuredText.
14 """
15
16 __docformat__ = 'reStructuredText'
17
18
19 directives = {
20 'attenzione': 'attention',
21 'cautela': 'caution',
22 'code (translation required)': 'code',
23 'pericolo': 'danger',
24 'errore': 'error',
25 'suggerimento': 'hint',
26 'importante': 'important',
27 'nota': 'note',
28 'consiglio': 'tip',
29 'avvertenza': 'warning',
30 'ammonizione': 'admonition',
31 'riquadro': 'sidebar',
32 'argomento': 'topic',
33 'blocco-di-righe': 'line-block',
34 'blocco-interpretato': 'parsed-literal',
35 'rubrica': 'rubric',
36 'epigrafe': 'epigraph',
37 'punti-salienti': 'highlights',
38 'estratto-evidenziato': 'pull-quote',
39 'composito': 'compound',
40 u'container (translation required)': 'container',
41 #'questions': 'questions',
42 #'qa': 'questions',
43 #'faq': 'questions',
44 'tabella': 'table',
45 'tabella-csv': 'csv-table',
46 'tabella-elenco': 'list-table',
47 'meta': 'meta',
48 'math (translation required)': 'math',
49 #'imagemap': 'imagemap',
50 'immagine': 'image',
51 'figura': 'figure',
52 'includi': 'include',
53 'grezzo': 'raw',
54 'sostituisci': 'replace',
55 'unicode': 'unicode',
56 'data': 'date',
57 'classe': 'class',
58 'ruolo': 'role',
59 'ruolo-predefinito': 'default-role',
60 'titolo': 'title',
61 'indice': 'contents',
62 'contenuti': 'contents',
63 'seznum': 'sectnum',
64 'sezioni-autonumerate': 'sectnum',
65 'annota-riferimenti-esterni': 'target-notes',
66 'intestazione': 'header',
67 'piede-pagina': 'footer',
68 #'footnotes': 'footnotes',
69 #'citations': 'citations',
70 'restructuredtext-test-directive': 'restructuredtext-test-directive'}
71 """Italian name to registered (in directives/__init__.py) directive name
72 mapping."""
73
74 roles = {
75 'abbreviazione': 'abbreviation',
76 'acronimo': 'acronym',
77 u'code (translation required)': 'code',
78 'indice': 'index',
79 'deponente': 'subscript',
80 'esponente': 'superscript',
81 'riferimento-titolo': 'title-reference',
82 'riferimento-pep': 'pep-reference',
83 'riferimento-rfc': 'rfc-reference',
84 'enfasi': 'emphasis',
85 'forte': 'strong',
86 'letterale': 'literal',
87 'math (translation required)': 'math',
88 'riferimento-con-nome': 'named-reference',
89 'riferimento-anonimo': 'anonymous-reference',
90 'riferimento-nota': 'footnote-reference',
91 'riferimento-citazione': 'citation-reference',
92 'riferimento-sostituzione': 'substitution-reference',
93 'destinazione': 'target',
94 'riferimento-uri': 'uri-reference',
95 'grezzo': 'raw',}
96 """Mapping of Italian role names to canonical role names for interpreted text.
97 """