Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/it.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
1 # $Id: it.py 4564 2006-05-21 20:44:42Z wiemann $ | |
2 # Author: Nicola Larosa <docutils@tekNico.net> | |
3 # Copyright: This module has been placed in the public domain. | |
4 | |
5 # New language mappings are welcome. Before doing a new translation, please | |
6 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be | |
7 # translated for each language: one in docutils/languages, the other in | |
8 # docutils/parsers/rst/languages. | |
9 | |
10 """ | |
11 Italian-language mappings for language-dependent features of Docutils. | |
12 """ | |
13 | |
14 __docformat__ = 'reStructuredText' | |
15 | |
16 labels = { | |
17 'author': 'Autore', | |
18 'authors': 'Autori', | |
19 'organization': 'Organizzazione', | |
20 'address': 'Indirizzo', | |
21 'contact': 'Contatti', | |
22 'version': 'Versione', | |
23 'revision': 'Revisione', | |
24 'status': 'Status', | |
25 'date': 'Data', | |
26 'copyright': 'Copyright', | |
27 'dedication': 'Dedica', | |
28 'abstract': 'Riassunto', | |
29 'attention': 'Attenzione!', | |
30 'caution': 'Cautela!', | |
31 'danger': '!PERICOLO!', | |
32 'error': 'Errore', | |
33 'hint': 'Suggerimento', | |
34 'important': 'Importante', | |
35 'note': 'Nota', | |
36 'tip': 'Consiglio', | |
37 'warning': 'Avvertenza', | |
38 'contents': 'Indice'} | |
39 """Mapping of node class name to label text.""" | |
40 | |
41 bibliographic_fields = { | |
42 'autore': 'author', | |
43 'autori': 'authors', | |
44 'organizzazione': 'organization', | |
45 'indirizzo': 'address', | |
46 'contatto': 'contact', | |
47 'versione': 'version', | |
48 'revisione': 'revision', | |
49 'status': 'status', | |
50 'data': 'date', | |
51 'copyright': 'copyright', | |
52 'dedica': 'dedication', | |
53 'riassunto': 'abstract'} | |
54 """Italian (lowcased) to canonical name mapping for bibliographic fields.""" | |
55 | |
56 author_separators = [';', ','] | |
57 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
58 order.""" |