~ubuntu-branches/ubuntu/jaunty/python-docutils/jaunty

« back to all changes in this revision

Viewing changes to docutils/languages/es.py

  • Committer: Bazaar Package Importer
  • Author(s): martin f. krafft
  • Date: 2006-07-10 11:45:05 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060710114505-otkhqcslevewxmz5
Tags: 0.4-3
Added build dependency on python-central (closes: #377580).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: iso-8859-1 -*-
2
 
# Author: Marcelo Huerta San Mart�n
3
 
# Contact: mghsm@uol.com.ar
4
 
# Revision: $Revision: 1.4 $
5
 
# Date: $Date: 2004/04/15 15:19:41 $
6
 
# Copyright: This module has been placed in the public domain.
 
1
# -*- coding: utf-8 -*-
 
2
# Author: Marcelo Huerta San Martín
 
3
# Contact: mghsm@uol.com.ar
 
4
# Revision: $Revision: 3968 $
 
5
# Date: $Date: 2005-10-29 14:28:44 +0200 (Sat, 29 Oct 2005) $
 
6
# Copyright: This module has been placed in the public domain.
7
7
 
8
8
# New language mappings are welcome.  Before doing a new translation, please
9
 
# read <http://docutils.sf.net/spec/howto/i18n.html>.  Two files must be
 
9
# read <http://docutils.sf.net/docs/howto/i18n.html>.  Two files must be
10
10
# translated for each language: one in docutils/languages, the other in
11
11
# docutils/parsers/rst/languages.
12
 
 
13
 
"""
14
 
Spanish-language mappings for language-dependent features of Docutils.
15
 
"""
16
 
 
17
 
__docformat__ = 'reStructuredText'
18
 
 
19
 
labels = {
20
 
      'author': u'Autor',
21
 
      'authors': u'Autores',
22
 
      'organization': u'Organizaci\u00f3n',
23
 
      'address': u'Direcci\u00f3n',
24
 
      'contact': u'Contacto',
25
 
      'version': u'Versi\u00f3n',
26
 
      'revision': u'Revisi\u00f3n',
27
 
      'status': u'Estado',
28
 
      'date': u'Fecha',
29
 
      'copyright': u'Copyright',
30
 
      'dedication': u'Dedicatoria',
31
 
      'abstract': u'Resumen',
32
 
      'attention': u'\u00a1Atenci\u00f3n!',
33
 
      'caution': u'\u00a1Precauci\u00f3n!',
34
 
      'danger': u'\u00a1PELIGRO!',
35
 
      'error': u'Error',
36
 
      'hint': u'Sugerencia',
37
 
      'important': u'Importante',
38
 
      'note': u'Nota',
39
 
      'tip': u'Consejo',
40
 
      'warning': u'Advertencia',
41
 
      'contents': u'Contenido'}
42
 
"""Mapping of node class name to label text."""
43
 
 
44
 
bibliographic_fields = {
45
 
      u'autor': 'author',
46
 
      u'autores': 'authors',
47
 
      u'organizaci\u00f3n': 'organization',
48
 
      u'direcci\u00f3n': 'address',
49
 
      u'contacto': 'contact',
50
 
      u'versi\u00f3n': 'version',
51
 
      u'revisi\u00f3n': 'revision',
52
 
      u'estado': 'status',
53
 
      u'fecha': 'date',
54
 
      u'copyright': 'copyright',
55
 
      u'dedicatoria': 'dedication',
56
 
      u'resumen': 'abstract'}
57
 
"""Spanish (lowcased) to canonical name mapping for bibliographic fields."""
58
 
 
59
 
author_separators = [';', ',']
60
 
"""List of separator strings for the 'Authors' bibliographic field. Tried in
61
 
order."""
 
12
 
 
13
"""
 
14
Spanish-language mappings for language-dependent features of Docutils.
 
15
"""
 
16
 
 
17
__docformat__ = 'reStructuredText'
 
18
 
 
19
labels = {
 
20
      'author': u'Autor',
 
21
      'authors': u'Autores',
 
22
      'organization': u'Organizaci\u00f3n',
 
23
      'address': u'Direcci\u00f3n',
 
24
      'contact': u'Contacto',
 
25
      'version': u'Versi\u00f3n',
 
26
      'revision': u'Revisi\u00f3n',
 
27
      'status': u'Estado',
 
28
      'date': u'Fecha',
 
29
      'copyright': u'Copyright',
 
30
      'dedication': u'Dedicatoria',
 
31
      'abstract': u'Resumen',
 
32
      'attention': u'\u00a1Atenci\u00f3n!',
 
33
      'caution': u'\u00a1Precauci\u00f3n!',
 
34
      'danger': u'\u00a1PELIGRO!',
 
35
      'error': u'Error',
 
36
      'hint': u'Sugerencia',
 
37
      'important': u'Importante',
 
38
      'note': u'Nota',
 
39
      'tip': u'Consejo',
 
40
      'warning': u'Advertencia',
 
41
      'contents': u'Contenido'}
 
42
"""Mapping of node class name to label text."""
 
43
 
 
44
bibliographic_fields = {
 
45
      u'autor': 'author',
 
46
      u'autores': 'authors',
 
47
      u'organizaci\u00f3n': 'organization',
 
48
      u'direcci\u00f3n': 'address',
 
49
      u'contacto': 'contact',
 
50
      u'versi\u00f3n': 'version',
 
51
      u'revisi\u00f3n': 'revision',
 
52
      u'estado': 'status',
 
53
      u'fecha': 'date',
 
54
      u'copyright': 'copyright',
 
55
      u'dedicatoria': 'dedication',
 
56
      u'resumen': 'abstract'}
 
57
"""Spanish (lowcased) to canonical name mapping for bibliographic fields."""
 
58
 
 
59
author_separators = [';', ',']
 
60
"""List of separator strings for the 'Authors' bibliographic field. Tried in
 
61
order."""