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

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

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

行番号 
1# Author: Asko Soukka
2# Contact: asko.soukka@iki.fi
3# Revision: $Revision: 2609 $
4# Date: $Date: 2004-09-13 21:25:33 +0200 (Mon, 13 Sep 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"""
13Finnish-language mappings for language-dependent features of Docutils.
14"""
15
16__docformat__ = 'reStructuredText'
17
18labels = {
19      # fixed: language-dependent
20      u'author': u'Tekij\u00e4',
21      u'authors': u'Tekij\u00e4t',
22      u'organization': u'Yhteis\u00f6',
23      u'address': u'Osoite',
24      u'contact': u'Yhteystiedot',
25      u'version': u'Versio',
26      u'revision': u'Vedos',
27      u'status': u'Tila',
28      u'date': u'P\u00e4iv\u00e4ys',
29      u'copyright': u'Tekij\u00e4noikeudet',
30      u'dedication': u'Omistuskirjoitus',
31      u'abstract': u'Tiivistelm\u00e4',
32      u'attention': u'Huomio!',
33      u'caution': u'Varo!',
34      u'danger': u'!VAARA!',
35      u'error': u'Virhe',
36      u'hint': u'Vihje',
37      u'important': u'T\u00e4rke\u00e4\u00e4',
38      u'note': u'Huomautus',
39      u'tip': u'Neuvo',
40      u'warning': u'Varoitus',
41      u'contents': u'Sis\u00e4llys'}
42"""Mapping of node class name to label text."""
43
44bibliographic_fields = {
45      # language-dependent: fixed
46      u'tekij\u00e4': u'author',
47      u'tekij\u00e4t': u'authors',
48      u'yhteis\u00f6': u'organization',
49      u'osoite': u'address',
50      u'yhteystiedot': u'contact',
51      u'versio': u'version',
52      u'vedos': u'revision',
53      u'tila': u'status',
54      u'p\u00e4iv\u00e4ys': u'date',
55      u'tekij\u00e4noikeudet': u'copyright',
56      u'omistuskirjoitus': u'dedication',
57      u'tiivistelm\u00e4': u'abstract'}
58"""Finnish (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 を参照してください。