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