This file is indexed.

/usr/lib/python2.7/dist-packages/docutils/parsers/rst/languages/sv.py is in python-docutils 0.14+dfsg-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# -*- coding: utf-8 -*-
# $Id: sv.py 8012 2017-01-03 23:08:19Z milde $
# Author: Adam Chodorowski <chodorowski@users.sourceforge.net>
# Copyright: This module has been placed in the public domain.

# New language mappings are welcome.  Before doing a new translation, please
# read <http://docutils.sf.net/docs/howto/i18n.html>.  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 = {
      u'observera': 'attention',
      u'akta': 'caution', # also 'försiktigt'
      u'kod': 'code',
      u'fara': 'danger',
      u'fel': 'error',
      u'vink': 'hint', # also 'hint'
      u'viktigt': 'important',
      u'notera': 'note',
      u'tips': 'tip',
      u'varning': 'warning',
      u'anmärkning': 'admonition', # literal 'tillrättavisning', 'förmaning'
      u'sidorad': 'sidebar',
      u'ämne': 'topic',
      u'tema': 'topic',
      u'rad-block': 'line-block',
      u'parsed-literal (translation required)': 'parsed-literal', # 'tolkad-bokstavlig'?
      u'rubrik': 'rubric',
      u'epigraf': 'epigraph',
      u'höjdpunkter': 'highlights',
      u'pull-quote (translation required)': 'pull-quote',
      u'sammansatt': 'compound',
      u'container': 'container',
      # u'frågor': 'questions',
      # NOTE: A bit long, but recommended by http://www.nada.kth.se/dataterm/:
      # u'frågor-och-svar': 'questions',
      # u'vanliga-frågor': 'questions',
      u'tabell': 'table',
      u'csv-tabell': 'csv-table',
      u'list-tabell': 'list-table',
      u'meta': 'meta',
      u'matematik': 'math',
      # u'bildkarta': 'imagemap',   # FIXME: Translation might be too literal.
      u'bild': 'image',
      u'figur': 'figure',
      u'inkludera': 'include',
      u'rå': 'raw',
      u'ersätta': 'replace',
      u'unicode': 'unicode',
      u'datum': 'date',
      u'klass': 'class',
      u'roll': 'role',
      u'standardroll': 'default-role',
      u'titel': 'title',
      u'innehåll': 'contents',
      u'sektionsnumrering': 'sectnum',
      u'target-notes (translation required)': 'target-notes',
      u'sidhuvud': 'header',
      u'sidfot': 'footer',
      # u'fotnoter': 'footnotes',
      # u'citeringar': 'citations',
      }
"""Swedish name to registered (in directives/__init__.py) directive name
mapping."""

roles = {
      u'förkortning': 'abbreviation',
      u'akronym': 'acronym',
      u'kod': 'code',
      u'index': 'index',
      u'nedsänkt': 'subscript',
      u'upphöjd': 'superscript',
      u'titel-referens': 'title-reference',
      u'pep-referens': 'pep-reference',
      u'rfc-referens': 'rfc-reference',
      u'betoning': 'emphasis',
      u'stark': 'strong',
      u'bokstavlig': 'literal', # also 'ordagranna'
      u'matematik': 'math',
      u'namngiven-referens': 'named-reference',
      u'anonym-referens': 'anonymous-reference',
      u'fotnot-referens': 'footnote-reference',
      u'citat-referens': 'citation-reference',
      u'ersättnings-referens': 'substitution-reference',
      u'mål': 'target',
      u'uri-referens': 'uri-reference',
      u'rå': 'raw',}
"""Mapping of Swedish role names to canonical role names for interpreted text.
"""