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

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

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

行番号 
1# :Author: Miroslav Vasko
2# :Contact: zemiak@zoznam.sk
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"""
13Slovak-language mappings for language-dependent features of Docutils.
14"""
15
16__docformat__ = 'reStructuredText'
17
18labels = {
19      'author': u'Autor',
20      'authors': u'Autori',
21      'organization': u'Organiz\u00E1cia',
22      'address': u'Adresa',
23      'contact': u'Kontakt',
24      'version': u'Verzia',
25      'revision': u'Rev\u00EDzia',
26      'status': u'Stav',
27      'date': u'D\u00E1tum',
28      'copyright': u'Copyright',
29      'dedication': u'Venovanie',
30      'abstract': u'Abstraktne',
31      'attention': u'Pozor!',
32      'caution': u'Opatrne!',
33      'danger': u'!NEBEZPE\u010cENSTVO!',
34      'error': u'Chyba',
35      'hint': u'Rada',
36      'important': u'D\u00F4le\u017Eit\u00E9',
37      'note': u'Pozn\u00E1mka',
38      'tip': u'Tip',
39      'warning': u'Varovanie',
40      'contents': u'Obsah'}
41"""Mapping of node class name to label text."""
42
43bibliographic_fields = {
44      u'autor': 'author',
45      u'autori': 'authors',
46      u'organiz\u00E1cia': 'organization',
47      u'adresa': 'address',
48      u'kontakt': 'contact',
49      u'verzia': 'version',
50      u'rev\u00EDzia': 'revision',
51      u'stav': 'status',
52      u'd\u00E1tum': 'date',
53      u'copyright': 'copyright',
54      u'venovanie': 'dedication',
55      u'abstraktne': 'abstract'}
56"""Slovak (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 を参照してください。