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