| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # Author: Marcelo Huerta San Martテュn |
|---|
| 3 | # Contact: mghsm@uol.com.ar |
|---|
| 4 | # Revision: $Revision: 3968 $ |
|---|
| 5 | # Date: $Date: 2005-10-29 14:28:44 +0200 (Sat, 29 Oct 2005) $ |
|---|
| 6 | # Copyright: This module has been placed in the public domain. |
|---|
| 7 | |
|---|
| 8 | # New language mappings are welcome. Before doing a new translation, please |
|---|
| 9 | # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be |
|---|
| 10 | # translated for each language: one in docutils/languages, the other in |
|---|
| 11 | # docutils/parsers/rst/languages. |
|---|
| 12 | |
|---|
| 13 | """ |
|---|
| 14 | Spanish-language mappings for language-dependent features of Docutils. |
|---|
| 15 | """ |
|---|
| 16 | |
|---|
| 17 | __docformat__ = 'reStructuredText' |
|---|
| 18 | |
|---|
| 19 | labels = { |
|---|
| 20 | 'author': u'Autor', |
|---|
| 21 | 'authors': u'Autores', |
|---|
| 22 | 'organization': u'Organizaci\u00f3n', |
|---|
| 23 | 'address': u'Direcci\u00f3n', |
|---|
| 24 | 'contact': u'Contacto', |
|---|
| 25 | 'version': u'Versi\u00f3n', |
|---|
| 26 | 'revision': u'Revisi\u00f3n', |
|---|
| 27 | 'status': u'Estado', |
|---|
| 28 | 'date': u'Fecha', |
|---|
| 29 | 'copyright': u'Copyright', |
|---|
| 30 | 'dedication': u'Dedicatoria', |
|---|
| 31 | 'abstract': u'Resumen', |
|---|
| 32 | 'attention': u'\u00a1Atenci\u00f3n!', |
|---|
| 33 | 'caution': u'\u00a1Precauci\u00f3n!', |
|---|
| 34 | 'danger': u'\u00a1PELIGRO!', |
|---|
| 35 | 'error': u'Error', |
|---|
| 36 | 'hint': u'Sugerencia', |
|---|
| 37 | 'important': u'Importante', |
|---|
| 38 | 'note': u'Nota', |
|---|
| 39 | 'tip': u'Consejo', |
|---|
| 40 | 'warning': u'Advertencia', |
|---|
| 41 | 'contents': u'Contenido'} |
|---|
| 42 | """Mapping of node class name to label text.""" |
|---|
| 43 | |
|---|
| 44 | bibliographic_fields = { |
|---|
| 45 | u'autor': 'author', |
|---|
| 46 | u'autores': 'authors', |
|---|
| 47 | u'organizaci\u00f3n': 'organization', |
|---|
| 48 | u'direcci\u00f3n': 'address', |
|---|
| 49 | u'contacto': 'contact', |
|---|
| 50 | u'versi\u00f3n': 'version', |
|---|
| 51 | u'revisi\u00f3n': 'revision', |
|---|
| 52 | u'estado': 'status', |
|---|
| 53 | u'fecha': 'date', |
|---|
| 54 | u'copyright': 'copyright', |
|---|
| 55 | u'dedicatoria': 'dedication', |
|---|
| 56 | u'resumen': 'abstract'} |
|---|
| 57 | """Spanish (lowcased) to canonical name mapping for bibliographic fields.""" |
|---|
| 58 | |
|---|
| 59 | author_separators = [';', ','] |
|---|
| 60 | """List of separator strings for the 'Authors' bibliographic field. Tried in |
|---|
| 61 | order.""" |
|---|