comparison env/lib/python3.9/site-packages/docutils/languages/es.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
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."""