Stop generating invalid doctree if "use_latex_toc" setting is True.
[docutils.git] / docutils / docutils / languages / gl.py
blobf3864abfdafbe5a8268f00b9db6e39fb4d7e1af2
1 # Author: David Goodger
2 # Contact: goodger@users.sourceforge.net
3 # Revision: $Revision: 2224 $
4 # Date: $Date: 2004-06-05 21:40:46 +0200 (Sat, 05 Jun 2004) $
5 # Copyright: This module has been placed in the public domain.
7 # New language mappings are welcome. Before doing a new translation, please
8 # read <https://docutils.sourceforge.io/docs/howto/i18n.html>.
9 # Two files must be translated for each language: one in docutils/languages,
10 # the other in docutils/parsers/rst/languages.
12 """
13 Galician-language mappings for language-dependent features of Docutils.
14 """
16 __docformat__ = 'reStructuredText'
18 labels = {
19 # fixed: language-dependent
20 'author': 'Autor',
21 'authors': 'Autores',
22 'organization': 'Organización',
23 'address': 'Enderezo',
24 'contact': 'Contacto',
25 'version': 'Versión',
26 'revision': 'Revisión',
27 'status': 'Estado',
28 'date': 'Data',
29 'copyright': 'Dereitos de copia',
30 'dedication': 'Dedicatoria',
31 'abstract': 'Abstract',
32 'attention': 'Atención!',
33 'caution': 'Advertencia!',
34 'danger': 'PERIGO!',
35 'error': 'Erro',
36 'hint': 'Consello',
37 'important': 'Importante',
38 'note': 'Nota',
39 'tip': 'Suxestión',
40 'warning': 'Aviso',
41 'contents': 'Contido'}
42 """Mapping of node class name to label text."""
44 bibliographic_fields = {
45 # language-dependent: fixed
46 'autor': 'author',
47 'autores': 'authors',
48 'organización': 'organization',
49 'enderezo': 'address',
50 'contacto': 'contact',
51 'versión': 'version',
52 'revisión': 'revision',
53 'estado': 'status',
54 'data': 'date',
55 'dereitos de copia': 'copyright',
56 'dedicatoria': 'dedication',
57 'abstract': 'abstract'}
58 """Galician (lowcased) to canonical name mapping for bibliographic fields."""
60 author_separators = [';', ',']
61 """List of separator strings for the 'Authors' bibliographic field. Tried in
62 order."""