Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/he.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
1 # Author: Meir Kriheli | |
2 # Id: $Id: he.py 4837 2006-12-26 09:59:41Z sfcben $ | |
3 # Copyright: This module has been placed in the public domain. | |
4 | |
5 # New language mappings are welcome. Before doing a new translation, please | |
6 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be | |
7 # translated for each language: one in docutils/languages, the other in | |
8 # docutils/parsers/rst/languages. | |
9 | |
10 """ | |
11 Hebrew-language mappings for language-dependent features of Docutils. | |
12 """ | |
13 | |
14 __docformat__ = 'reStructuredText' | |
15 | |
16 labels = { | |
17 # fixed: language-dependent | |
18 'author': u'\u05de\u05d7\u05d1\u05e8', | |
19 'authors': u'\u05de\u05d7\u05d1\u05e8\u05d9', | |
20 'organization': u'\u05d0\u05e8\u05d2\u05d5\u05df', | |
21 'address': u'\u05db\u05ea\u05d5\u05d1\u05ea', | |
22 'contact': u'\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8', | |
23 'version': u'\u05d2\u05e8\u05e1\u05d4', | |
24 'revision': u'\u05de\u05d4\u05d3\u05d5\u05e8\u05d4', | |
25 'status': u'\u05e1\u05d8\u05d8\u05d5\u05e1', | |
26 'date': u'\u05ea\u05d0\u05e8\u05d9\u05da', | |
27 'copyright': u'\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea', | |
28 'dedication': u'\u05d4\u05e7\u05d3\u05e9\u05d4', | |
29 'abstract': u'\u05ea\u05e7\u05e6\u05d9\u05e8', | |
30 'attention': u'\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1', | |
31 'caution': u'\u05d6\u05d4\u05d9\u05e8\u05d5\u05ea', | |
32 'danger': u'\u05e1\u05db\u05e0\u05d4', | |
33 'error': u'\u05e9\u05d2\u05d9\u05d0\u05d4' , | |
34 'hint': u'\u05e8\u05de\u05d6', | |
35 'important': u'\u05d7\u05e9\u05d5\u05d1', | |
36 'note': u'\u05d4\u05e2\u05e8\u05d4', | |
37 'tip': u'\u05d8\u05d9\u05e4', | |
38 'warning': u'\u05d0\u05d6\u05d4\u05e8\u05d4', | |
39 'contents': u'\u05ea\u05d5\u05db\u05df'} | |
40 """Mapping of node class name to label text.""" | |
41 | |
42 bibliographic_fields = { | |
43 # language-dependent: fixed | |
44 u'\u05de\u05d7\u05d1\u05e8': 'author', | |
45 u'\u05de\u05d7\u05d1\u05e8\u05d9': 'authors', | |
46 u'\u05d0\u05e8\u05d2\u05d5\u05df': 'organization', | |
47 u'\u05db\u05ea\u05d5\u05d1\u05ea': 'address', | |
48 u'\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8': 'contact', | |
49 u'\u05d2\u05e8\u05e1\u05d4': 'version', | |
50 u'\u05de\u05d4\u05d3\u05d5\u05e8\u05d4': 'revision', | |
51 u'\u05e1\u05d8\u05d8\u05d5\u05e1': 'status', | |
52 u'\u05ea\u05d0\u05e8\u05d9\u05da': 'date', | |
53 u'\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea': 'copyright', | |
54 u'\u05d4\u05e7\u05d3\u05e9\u05d4': 'dedication', | |
55 u'\u05ea\u05e7\u05e6\u05d9\u05e8': 'abstract'} | |
56 """Hebrew to canonical name mapping for bibliographic fields.""" | |
57 | |
58 author_separators = [';', ','] | |
59 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
60 order.""" |