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

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

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

行番号 
1# Author: Jannie Hofmeyr
2# Contact: jhsh@sun.ac.za
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"""
13Afrikaans-language mappings for language-dependent features of Docutils.
14"""
15
16__docformat__ = 'reStructuredText'
17
18labels = {
19      'author': 'Auteur',
20      'authors': 'Auteurs',
21      'organization': 'Organisasie',
22      'address': 'Adres',
23      'contact': 'Kontak',
24      'version': 'Weergawe',
25      'revision': 'Revisie',
26      'status': 'Status',
27      'date': 'Datum',
28      'copyright': 'Kopiereg',
29      'dedication': 'Opdrag',
30      'abstract': 'Opsomming',
31      'attention': 'Aandag!',
32      'caution': 'Wees versigtig!',
33      'danger': '!GEVAAR!',
34      'error': 'Fout',
35      'hint': 'Wenk',
36      'important': 'Belangrik',
37      'note': 'Nota',
38      'tip': 'Tip', # hint and tip both have the same translation: wenk
39      'warning': 'Waarskuwing',
40      'contents': 'Inhoud'}
41"""Mapping of node class name to label text."""
42
43bibliographic_fields = {
44      'auteur': 'author',
45      'auteurs': 'authors',
46      'organisasie': 'organization',
47      'adres': 'address',
48      'kontak': 'contact',
49      'weergawe': 'version',
50      'revisie': 'revision',
51      'status': 'status',
52      'datum': 'date',
53      'kopiereg': 'copyright',
54      'opdrag': 'dedication',
55      'opsomming': 'abstract'}
56"""Afrikaans (lowcased) to canonical name mapping for bibliographic fields."""
57
58author_separators = [';', ',']
59"""List of separator strings for the 'Authors' bibliographic field. Tried in
60order."""
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。