~ubuntu-branches/ubuntu/karmic/python-docutils/karmic

« back to all changes in this revision

Viewing changes to docutils/parsers/rst/languages/en.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
1
# Author: David Goodger
2
2
# Contact: goodger@users.sourceforge.net
3
 
# Revision: $Revision: 1.16 $
4
 
# Date: $Date: 2004/04/17 22:50:37 $
 
3
# Revision: $Revision: 4229 $
 
4
# Date: $Date: 2005-12-23 00:46:16 +0100 (Fri, 23 Dec 2005) $
5
5
# Copyright: This module has been placed in the public domain.
6
6
 
7
7
# New language mappings are welcome.  Before doing a new translation, please
8
 
# read <http://docutils.sf.net/spec/howto/i18n.html>.  Two files must be
 
8
# read <http://docutils.sf.net/docs/howto/i18n.html>.  Two files must be
9
9
# translated for each language: one in docutils/languages, the other in
10
10
# docutils/parsers/rst/languages.
11
11
 
37
37
      'epigraph': 'epigraph',
38
38
      'highlights': 'highlights',
39
39
      'pull-quote': 'pull-quote',
 
40
      'compound': 'compound',
 
41
      'container': 'container',
 
42
      #'questions': 'questions',
40
43
      'table': 'table',
41
 
      #'questions': 'questions',
 
44
      'csv-table': 'csv-table',
 
45
      'list-table': 'list-table',
42
46
      #'qa': 'questions',
43
47
      #'faq': 'questions',
44
48
      'meta': 'meta',
49
53
      'raw': 'raw',
50
54
      'replace': 'replace',
51
55
      'unicode': 'unicode',
 
56
      'date': 'date',
52
57
      'class': 'class',
53
58
      'role': 'role',
 
59
      'default-role': 'default-role',
 
60
      'title': 'title',
54
61
      'contents': 'contents',
55
62
      'sectnum': 'sectnum',
56
63
      'section-numbering': 'sectnum',
 
64
      'header': 'header',
 
65
      'footer': 'footer',
57
66
      #'footnotes': 'footnotes',
58
67
      #'citations': 'citations',
59
68
      'target-notes': 'target-notes',
91
100
    'target': 'target',
92
101
    'uri-reference': 'uri-reference',
93
102
    'uri': 'uri-reference',
94
 
    'url': 'uri-reference',}
 
103
    'url': 'uri-reference',
 
104
    'raw': 'raw',}
95
105
"""Mapping of English role names to canonical role names for interpreted text.
96
106
"""