it.py 1.8 KB

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