add note on revision numbering (feature request #50)
[docutils.git] / docutils / languages / pt_br.py
blobf4adfbbf62b7b0ce1e34d2c59132bf6ea9622bfd
1 # $Id$
2 # Author: David Goodger <goodger@python.org>
3 # Copyright: This module has been placed in the public domain.
5 # New language mappings are welcome. Before doing a new translation, please
6 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be
7 # translated for each language: one in docutils/languages, the other in
8 # docutils/parsers/rst/languages.
10 """
11 Brazilian Portuguese-language mappings for language-dependent features of Docutils.
12 """
14 __docformat__ = 'reStructuredText'
16 labels = {
17 # fixed: language-dependent
18 'author': u'Autor',
19 'authors': u'Autores',
20 'organization': u'Organiza\u00E7\u00E3o',
21 'address': u'Endere\u00E7o',
22 'contact': u'Contato',
23 'version': u'Vers\u00E3o',
24 'revision': u'Revis\u00E3o',
25 'status': u'Estado',
26 'date': u'Data',
27 'copyright': u'Copyright',
28 'dedication': u'Dedicat\u00F3ria',
29 'abstract': u'Resumo',
30 'attention': u'Aten\u00E7\u00E3o!',
31 'caution': u'Cuidado!',
32 'danger': u'PERIGO!',
33 'error': u'Erro',
34 'hint': u'Sugest\u00E3o',
35 'important': u'Importante',
36 'note': u'Nota',
37 'tip': u'Dica',
38 'warning': u'Aviso',
39 'contents': u'Sum\u00E1rio'}
40 """Mapping of node class name to label text."""
42 bibliographic_fields = {
43 # language-dependent: fixed
44 u'autor': 'author',
45 u'autores': 'authors',
46 u'organiza\u00E7\u00E3o': 'organization',
47 u'endere\u00E7o': 'address',
48 u'contato': 'contact',
49 u'vers\u00E3o': 'version',
50 u'revis\u00E3o': 'revision',
51 u'estado': 'status',
52 u'data': 'date',
53 u'copyright': 'copyright',
54 u'dedicat\u00F3ria': 'dedication',
55 u'resumo': 'abstract'}
56 """Brazilian Portuguese (lowcased) to canonical name mapping for bibliographic fields."""
58 author_separators = [';', ',']
59 """List of separator strings for the 'Authors' bibliographic field. Tried in
60 order."""