1 | # Author: Nicola Larosa, Lele Gaifax |
---|
2 | # Contact: docutils@tekNico.net, lele@seldati.it |
---|
3 | # Revision: $Revision: 4229 $ |
---|
4 | # Date: $Date: 2005-12-23 00:46:16 +0100 (Fri, 23 Dec 2005) $ |
---|
5 | # Copyright: This module has been placed in the public domain. |
---|
6 | |
---|
7 | # Beware: the italian translation of the reStructuredText documentation |
---|
8 | # at http://docit.bice.dyndns.org/static/ReST, in particular |
---|
9 | # http://docit.bice.dyndns.org/static/ReST/ref/rst/directives.html, needs |
---|
10 | # to be synced with the content of this file. |
---|
11 | |
---|
12 | """ |
---|
13 | Italian-language mappings for language-dependent features of |
---|
14 | reStructuredText. |
---|
15 | """ |
---|
16 | |
---|
17 | __docformat__ = 'reStructuredText' |
---|
18 | |
---|
19 | |
---|
20 | directives = { |
---|
21 | 'attenzione': 'attention', |
---|
22 | 'cautela': 'caution', |
---|
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 | #'imagemap': 'imagemap', |
---|
49 | 'immagine': 'image', |
---|
50 | 'figura': 'figure', |
---|
51 | 'includi': 'include', |
---|
52 | 'grezzo': 'raw', |
---|
53 | 'sostituisci': 'replace', |
---|
54 | 'unicode': 'unicode', |
---|
55 | 'data': 'date', |
---|
56 | 'classe': 'class', |
---|
57 | 'ruolo': 'role', |
---|
58 | 'ruolo-predefinito': 'default-role', |
---|
59 | 'titolo': 'title', |
---|
60 | 'indice': 'contents', |
---|
61 | 'contenuti': 'contents', |
---|
62 | 'seznum': 'sectnum', |
---|
63 | 'sezioni-autonumerate': 'sectnum', |
---|
64 | 'annota-riferimenti-esterni': 'target-notes', |
---|
65 | 'intestazione': 'header', |
---|
66 | 'piede-pagina': 'footer', |
---|
67 | #'footnotes': 'footnotes', |
---|
68 | #'citations': 'citations', |
---|
69 | 'restructuredtext-test-directive': 'restructuredtext-test-directive'} |
---|
70 | """Italian name to registered (in directives/__init__.py) directive name |
---|
71 | mapping.""" |
---|
72 | |
---|
73 | roles = { |
---|
74 | 'abbreviazione': 'abbreviation', |
---|
75 | 'acronimo': 'acronym', |
---|
76 | 'indice': 'index', |
---|
77 | 'deponente': 'subscript', |
---|
78 | 'esponente': 'superscript', |
---|
79 | 'riferimento-titolo': 'title-reference', |
---|
80 | 'riferimento-pep': 'pep-reference', |
---|
81 | 'riferimento-rfc': 'rfc-reference', |
---|
82 | 'enfasi': 'emphasis', |
---|
83 | 'forte': 'strong', |
---|
84 | 'letterale': 'literal', |
---|
85 | 'riferimento-con-nome': 'named-reference', |
---|
86 | 'riferimento-anonimo': 'anonymous-reference', |
---|
87 | 'riferimento-nota': 'footnote-reference', |
---|
88 | 'riferimento-citazione': 'citation-reference', |
---|
89 | 'riferimento-sostituzione': 'substitution-reference', |
---|
90 | 'destinazione': 'target', |
---|
91 | 'riferimento-uri': 'uri-reference', |
---|
92 | 'grezzo': 'raw',} |
---|
93 | """Mapping of Italian role names to canonical role names for interpreted text. |
---|
94 | """ |
---|