<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># -*- coding: utf-8 -*-
# $Id: fa.py 4564 2016-08-10 11:48:42Z
# Author: Shahin &lt;me@5hah.in&gt;
# Copyright: This module has been placed in the public domain.

# New language mappings are welcome.  Before doing a new translation, please
# read &lt;http://docutils.sf.net/docs/howto/i18n.html&gt;.  Two files must be
# translated for each language: one in docutils/languages, the other in
# docutils/parsers/rst/languages.

"""
Arabic-language mappings for language-dependent features of Docutils.
"""

__docformat__ = 'reStructuredText'

labels = {
      # fixed: language-dependent
      u'author': u'Ш§Щ„Щ…Ш¤Щ„ЩЃ',
      u'authors': u'Ш§Щ„Щ…Ш¤Щ„ЩЃЩ€Щ†',
      u'organization': u'Ш§Щ„ШЄЩ†ШёЩЉЩ…',
      u'address': u'Ш§Щ„Ш№Щ†Щ€Ш§Щ†',
      u'contact': u'Ш§ШЄШµЩ„',
      u'version': u'Щ†ШіШ®Ш©',
      u'revision': u'Щ…Ш±Ш§Ш¬Ш№Ш©',
      u'status': u'Ш§Щ„Ш­Ш§Щ„Ш©',
      u'date': u'ШЄШ§Ш±ЫЊШ®',
      u'copyright': u'Ш§Щ„Ш­Щ‚Щ€Щ‚',
      u'dedication': u'ШҐЩ‡ШЇШ§ШЎ',
      u'abstract': u'Щ…Щ„Ш®Шµ',
      u'attention': u'ШЄЩ†ШЁЩЉЩ‡',
      u'caution': u'Ш§Ш­ШЄЫЊШ§Ш·',
      u'danger': u'Ш®Ш·Ш±',
      u'error': u'Ш®Ш·ШЈ',
      u'hint': u'ШЄЩ„Щ…ЩЉШ­',
      u'important': u'Щ…Щ‡Щ…',
      u'note': u'Щ…Щ„Ш§Ш­ШёШ©',
      u'tip': u'Щ†ШµЩЉШ­Ш©',
      u'warning': u'ШЄШ­Ш°ЩЉШ±',
      u'contents': u'Ш§Щ„Щ…Ш­ШЄЩ€Щ‰'}
"""Mapping of node class name to label text."""

bibliographic_fields = {
      # language-dependent: fixed
      u'Щ…Ш¤Щ„ЩЃ': u'author',
      u'Щ…Ш¤Щ„ЩЃЩ€Щ†': u'authors',
      u'Ш§Щ„ШЄЩ†ШёЩЉЩ…': u'organization',
      u'Ш§Щ„Ш№Щ†Щ€Ш§Щ†': u'address',
      u'Ш§ШЄШµЩ„': u'contact',
      u'Щ†ШіШ®Ш©': u'version',
      u'Щ…Ш±Ш§Ш¬Ш№Ш©': u'revision',
      u'Ш§Щ„Ш­Ш§Щ„Ш©': u'status',
      u'ШЄШ§Ш±ЫЊШ®': u'date',
      u'Ш§Щ„Ш­Щ‚Щ€Щ‚': u'copyright',
      u'ШҐЩ‡ШЇШ§ШЎ': u'dedication',
      u'Щ…Щ„Ш®Шµ': u'abstract'}
"""Arabic (lowcased) to canonical name mapping for bibliographic fields."""

author_separators = [u'Ш›', u'ШЊ']
"""List of separator strings for the 'Authors' bibliographic field. Tried in
order."""
</pre></body></html>