buildframework/helium/external/python/lib/2.5/docutils-0.5-py2.5.egg/docutils/languages/pt_br.py
changeset 179 d8ac696cc51f
parent 1 be27ed110b50
child 180 e02a83d4c571
child 592 3215c239276a
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
     1 # $Id: pt_br.py 4564 2006-05-21 20:44:42Z wiemann $
       
     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'Atten\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."""