Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/es.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 # -*- coding: utf-8 -*- | |
2 # $Id: es.py 4572 2006-05-25 20:48:37Z richieadler $ | |
3 # Author: Marcelo Huerta San MartÃn <richieadler@users.sourceforge.net> | |
4 # Copyright: This module has been placed in the public domain. | |
5 | |
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. | |
10 | |
11 """ | |
12 Spanish-language mappings for language-dependent features of Docutils. | |
13 """ | |
14 | |
15 __docformat__ = 'reStructuredText' | |
16 | |
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.""" | |
41 | |
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.""" | |
56 | |
57 author_separators = [';', ','] | |
58 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
59 order.""" |