root/galaxy-central/eggs/docutils-0.4-py2.6.egg/docutils/languages/en.py @ 3

リビジョン 3, 1.9 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1# Author: David Goodger
2# Contact: goodger@users.sourceforge.net
3# Revision: $Revision: 2224 $
4# Date: $Date: 2004-06-05 21:40:46 +0200 (Sat, 05 Jun 2004) $
5# Copyright: This module has been placed in the public domain.
6
7# New language mappings are welcome.  Before doing a new translation, please
8# read <http://docutils.sf.net/docs/howto/i18n.html>.  Two files must be
9# translated for each language: one in docutils/languages, the other in
10# docutils/parsers/rst/languages.
11
12"""
13English-language mappings for language-dependent features of Docutils.
14"""
15
16__docformat__ = 'reStructuredText'
17
18labels = {
19      # fixed: language-dependent
20      'author': 'Author',
21      'authors': 'Authors',
22      'organization': 'Organization',
23      'address': 'Address',
24      'contact': 'Contact',
25      'version': 'Version',
26      'revision': 'Revision',
27      'status': 'Status',
28      'date': 'Date',
29      'copyright': 'Copyright',
30      'dedication': 'Dedication',
31      'abstract': 'Abstract',
32      'attention': 'Attention!',
33      'caution': 'Caution!',
34      'danger': '!DANGER!',
35      'error': 'Error',
36      'hint': 'Hint',
37      'important': 'Important',
38      'note': 'Note',
39      'tip': 'Tip',
40      'warning': 'Warning',
41      'contents': 'Contents'}
42"""Mapping of node class name to label text."""
43
44bibliographic_fields = {
45      # language-dependent: fixed
46      'author': 'author',
47      'authors': 'authors',
48      'organization': 'organization',
49      'address': 'address',
50      'contact': 'contact',
51      'version': 'version',
52      'revision': 'revision',
53      'status': 'status',
54      'date': 'date',
55      'copyright': 'copyright',
56      'dedication': 'dedication',
57      'abstract': 'abstract'}
58"""English (lowcased) to canonical name mapping for bibliographic fields."""
59
60author_separators = [';', ',']
61"""List of separator strings for the 'Authors' bibliographic field. Tried in
62order."""
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。