Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/languages/fa.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 # -*- coding: utf-8 -*- | |
| 2 # $Id: fa.py 4564 2016-08-10 11:48:42Z | |
| 3 # Author: Shahin <me@5hah.in> | |
| 4 # Copyright: This module has been placed in the public domain. | |
| 5 | |
| 6 # New language mappings are welcome. Before doing a new translation, please | |
| 7 # read <http://docutils.sf.net/docs/howto/i18n.html>. Two files must be | |
| 8 # translated for each language: one in docutils/languages, the other in | |
| 9 # docutils/parsers/rst/languages. | |
| 10 | |
| 11 """ | |
| 12 Persian-language mappings for language-dependent features of Docutils. | |
| 13 """ | |
| 14 | |
| 15 __docformat__ = 'reStructuredText' | |
| 16 | |
| 17 labels = { | |
| 18 # fixed: language-dependent | |
| 19 u'author': u'نویسنده', | |
| 20 u'authors': u'نویسندگان', | |
| 21 u'organization': u'سازمان', | |
| 22 u'address': u'آدرس', | |
| 23 u'contact': u'تماس', | |
| 24 u'version': u'نسخه', | |
| 25 u'revision': u'بازبینی', | |
| 26 u'status': u'وضعیت', | |
| 27 u'date': u'تاریخ', | |
| 28 u'copyright': u'کپیرایت', | |
| 29 u'dedication': u'تخصیص', | |
| 30 u'abstract': u'چکیده', | |
| 31 u'attention': u'توجه!', | |
| 32 u'caution': u'احتیاط!', | |
| 33 u'danger': u'خطر!', | |
| 34 u'error': u'خطا', | |
| 35 u'hint': u'راهنما', | |
| 36 u'important': u'مهم', | |
| 37 u'note': u'یادداشت', | |
| 38 u'tip': u'نکته', | |
| 39 u'warning': u'اخطار', | |
| 40 u'contents': u'محتوا'} | |
| 41 """Mapping of node class name to label text.""" | |
| 42 | |
| 43 bibliographic_fields = { | |
| 44 # language-dependent: fixed | |
| 45 u'نویسنده': u'author', | |
| 46 u'نویسندگان': u'authors', | |
| 47 u'سازمان': u'organization', | |
| 48 u'آدرس': u'address', | |
| 49 u'تماس': u'contact', | |
| 50 u'نسخه': u'version', | |
| 51 u'بازبینی': u'revision', | |
| 52 u'وضعیت': u'status', | |
| 53 u'تاریخ': u'date', | |
| 54 u'کپیرایت': u'copyright', | |
| 55 u'تخصیص': u'dedication', | |
| 56 u'چکیده': u'abstract'} | |
| 57 """Persian (lowcased) to canonical name mapping for bibliographic fields.""" | |
| 58 | |
| 59 author_separators = [u'؛', u'،'] | |
| 60 """List of separator strings for the 'Authors' bibliographic field. Tried in | |
| 61 order.""" |
