~ubuntu-branches/ubuntu/jaunty/python-docutils/jaunty

« back to all changes in this revision

Viewing changes to docutils/languages/fi.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
# 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
"""
 
13
Finnish-language mappings for language-dependent features of Docutils.
 
14
"""
 
15
 
 
16
__docformat__ = 'reStructuredText'
 
17
 
 
18
labels = {
 
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
 
 
44
bibliographic_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
 
 
60
author_separators = [';', ',']
 
61
"""List of separator strings for the 'Authors' bibliographic field. Tried in
 
62
order."""