/opt/imunify360/venv/lib/python3.11/site-packages/docutils/parsers/rst/languages
NameSizeModeActions
__pycache__/-0755rm
af.py37270644editdlrm
ar.py30510644editdlrm
ca.py44060644editdlrm
cs.py48080644editdlrm
da.py37190644editdlrm
de.py35470644editdlrm
en.py35140644editdlrm
eo.py38250644editdlrm
es.py41580644editdlrm
fa.py31710644editdlrm
fi.py35260644editdlrm
fr.py37820644editdlrm
gl.py36320644editdlrm
he.py36410644editdlrm
it.py33220644editdlrm
ja.py37760644editdlrm
ko.py33770644editdlrm
lt.py35190644editdlrm
lv.py33760644editdlrm
nl.py37610644editdlrm
pl.py34430644editdlrm
pt_br.py39600644editdlrm
ru.py33980644editdlrm
sk.py39470644editdlrm
sv.py32610644editdlrm
uk.py34410644editdlrm
zh_cn.py39250644editdlrm
zh_tw.py51600644editdlrm
__init__.py12220644editdlrm
Edit: /opt/imunify360/venv/lib/python3.11/site-packages/docutils/parsers/rst/languages/sv.py (3261B)
# $Id: sv.py 9030 2022-03-05 23:28:32Z milde $ # Author: Adam Chodorowski # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please # read . # Two files must be translated for each language: one in docutils/languages, # the other in docutils/parsers/rst/languages. """ Swedish language mappings for language-dependent features of reStructuredText. """ __docformat__ = 'reStructuredText' directives = { 'observera': 'attention', 'akta': 'caution', # also 'försiktigt' 'kod': 'code', 'fara': 'danger', 'fel': 'error', 'vink': 'hint', # also 'hint' 'viktigt': 'important', 'notera': 'note', 'tips': 'tip', 'varning': 'warning', 'anmärkning': 'admonition', # literal 'tillrättavisning', 'förmaning' 'sidorad': 'sidebar', 'ämne': 'topic', 'tema': 'topic', 'rad-block': 'line-block', # 'tolkad-bokstavlig'? 'parsed-literal (translation required)': 'parsed-literal', 'rubrik': 'rubric', 'epigraf': 'epigraph', 'höjdpunkter': 'highlights', 'pull-quote (translation required)': 'pull-quote', 'sammansatt': 'compound', 'container': 'container', # 'frågor': 'questions', # NOTE: A bit long, but recommended by http://www.nada.kth.se/dataterm/: # 'frågor-och-svar': 'questions', # 'vanliga-frågor': 'questions', 'tabell': 'table', 'csv-tabell': 'csv-table', 'list-tabell': 'list-table', 'meta': 'meta', 'matematik': 'math', # 'bildkarta': 'imagemap', # FIXME: Translation might be too literal. 'bild': 'image', 'figur': 'figure', 'inkludera': 'include', 'rå': 'raw', 'ersätta': 'replace', 'unicode': 'unicode', 'datum': 'date', 'klass': 'class', 'roll': 'role', 'standardroll': 'default-role', 'titel': 'title', 'innehåll': 'contents', 'sektionsnumrering': 'sectnum', 'target-notes (translation required)': 'target-notes', 'sidhuvud': 'header', 'sidfot': 'footer', # 'fotnoter': 'footnotes', # 'citeringar': 'citations', } """Swedish name to registered (in directives/__init__.py) directive name mapping.""" roles = { 'förkortning': 'abbreviation', 'akronym': 'acronym', 'kod': 'code', 'index': 'index', 'nedsänkt': 'subscript', 'upphöjd': 'superscript', 'titel-referens': 'title-reference', 'pep-referens': 'pep-reference', 'rfc-referens': 'rfc-reference', 'betoning': 'emphasis', 'stark': 'strong', 'bokstavlig': 'literal', # also 'ordagranna' 'matematik': 'math', 'namngiven-referens': 'named-reference', 'anonym-referens': 'anonymous-reference', 'fotnot-referens': 'footnote-reference', 'citat-referens': 'citation-reference', 'ersättnings-referens': 'substitution-reference', 'mål': 'target', 'uri-referens': 'uri-reference', 'rå': 'raw', } """Mapping of Swedish role names to canonical role names for interpreted text. """