PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
aws
/
lib
/
python2.7
/
site-packages
/
docutils
/
parsers
/
rst
/
languages
# $Id: __init__.py 7648 2013-04-18 07:36:22Z milde $ # Author: David Goodger <goodger@python.org> # Copyright: This module has been placed in the public domain. # Internationalization details are documented in # <http://docutils.sf.net/docs/howto/i18n.html>. """ This package contains modules for language-dependent features of reStructuredText. """ __docformat__ = 'reStructuredText' import sys from docutils.utils import normalize_language_tag if sys.version_info < (2,5): from docutils._compat import __import__ _languages = {} def get_language(language_code): for tag in normalize_language_tag(language_code): tag = tag.replace('-','_') # '-' not valid in module names if tag in _languages: return _languages[tag] try: module = __import__(tag, globals(), locals(), level=1) except ImportError: try: module = __import__(tag, globals(), locals(), level=0) except ImportError: continue _languages[tag] = module return module return None
[-] af.py
[edit]
[-] pt_br.pyc
[edit]
[-] nl.py
[edit]
[-] gl.py
[edit]
[-] ca.pyc
[edit]
[-] ja.py
[edit]
[-] sk.pyc
[edit]
[+]
..
[-] sk.py
[edit]
[-] it.pyc
[edit]
[-] lv.py
[edit]
[-] he.py
[edit]
[-] cs.py
[edit]
[-] nl.pyc
[edit]
[-] sv.py
[edit]
[-] de.py
[edit]
[-] __init__.pyc
[edit]
[-] sv.pyc
[edit]
[-] zh_cn.pyc
[edit]
[-] es.py
[edit]
[-] de.pyc
[edit]
[-] af.pyc
[edit]
[-] pl.pyc
[edit]
[-] eo.py
[edit]
[-] zh_tw.pyc
[edit]
[-] fa.py
[edit]
[-] gl.pyc
[edit]
[-] ca.py
[edit]
[-] en.pyc
[edit]
[-] fr.pyc
[edit]
[-] fi.pyc
[edit]
[-] en.py
[edit]
[-] cs.pyc
[edit]
[-] ja.pyc
[edit]
[-] lv.pyc
[edit]
[-] fr.py
[edit]
[-] pt_br.py
[edit]
[-] ru.py
[edit]
[-] he.pyc
[edit]
[-] eo.pyc
[edit]
[-] ru.pyc
[edit]
[-] es.pyc
[edit]
[-] it.py
[edit]
[-] zh_cn.py
[edit]
[-] __init__.py
[edit]
[-] da.py
[edit]
[-] lt.py
[edit]
[-] fa.pyc
[edit]
[-] pl.py
[edit]
[-] da.pyc
[edit]
[-] zh_tw.py
[edit]
[-] lt.pyc
[edit]
[-] fi.py
[edit]