Mercurial > repos > bcclaywell > argo_navis
comparison venv/lib/python2.7/site-packages/docutils/languages/pt_br.py @ 0:d67268158946 draft
planemo upload commit a3f181f5f126803c654b3a66dd4e83a48f7e203b
author | bcclaywell |
---|---|
date | Mon, 12 Oct 2015 17:43:33 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d67268158946 |
---|---|
1 # $Id: pt_br.py 5567 2008-06-03 01:11:03Z goodger $ | |
2 # Author: David Goodger <goodger@python.org> | |
3 # Copyright: This module has been placed in the public domain. | |
4 | |
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. | |
9 | |
10 """ | |
11 Brazilian Portuguese-language mappings for language-dependent features of Docutils. | |
12 """ | |
13 | |
14 __docformat__ = 'reStructuredText' | |
15 | |
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.""" | |
41 | |
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.""" | |
57 | |
58 author_separators = [';', ','] | |
59 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
60 order.""" |