aa-intel-tool 2.13.0__py3-none-any.whl → 2.13.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aa_intel_tool/__init__.py +1 -1
- aa_intel_tool/constants.py +38 -35
- aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +8 -8
- aa_intel_tool/locale/django.pot +7 -7
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/ja/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +10 -10
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +11 -12
- aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/sk/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +6 -6
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +12 -10
- aa_intel_tool/parser/general.py +7 -1
- aa_intel_tool/parser/module/dscan.py +4 -4
- aa_intel_tool/tests/__init__.py +17 -0
- aa_intel_tool/tests/test_access.py +1 -6
- aa_intel_tool/tests/test_auth_hooks.py +1 -6
- {aa_intel_tool-2.13.0.dist-info → aa_intel_tool-2.13.1.dist-info}/METADATA +5 -9
- {aa_intel_tool-2.13.0.dist-info → aa_intel_tool-2.13.1.dist-info}/RECORD +28 -28
- {aa_intel_tool-2.13.0.dist-info → aa_intel_tool-2.13.1.dist-info}/WHEEL +0 -0
- {aa_intel_tool-2.13.0.dist-info → aa_intel_tool-2.13.1.dist-info}/licenses/LICENSE +0 -0
aa_intel_tool/__init__.py
CHANGED
aa_intel_tool/constants.py
CHANGED
|
@@ -4,6 +4,7 @@ App constants
|
|
|
4
4
|
|
|
5
5
|
# Standard Library
|
|
6
6
|
import re
|
|
7
|
+
from enum import Enum
|
|
7
8
|
|
|
8
9
|
# Django
|
|
9
10
|
from django.utils.translation import gettext_lazy as _
|
|
@@ -17,63 +18,65 @@ import aa_intel_tool.parser.module.fleetcomp
|
|
|
17
18
|
INTERNAL_URL_PREFIX = "-"
|
|
18
19
|
|
|
19
20
|
|
|
20
|
-
|
|
21
|
-
distance_units_on_grid: str = ( # pylint: disable=invalid-name
|
|
21
|
+
class DistanceUnits(Enum):
|
|
22
22
|
"""
|
|
23
|
-
|
|
24
|
-
|км|м # Russian
|
|
25
|
-
"""
|
|
26
|
-
)
|
|
27
|
-
distance_units_off_grid: str = ( # pylint: disable=invalid-name
|
|
23
|
+
Localised distance units
|
|
28
24
|
"""
|
|
29
|
-
AU # Client in: English, Chinese, Japanese, Korean, Spanish
|
|
30
|
-
|UA # Client in: French
|
|
31
|
-
|AE # German
|
|
32
|
-
|а.е. # Russian
|
|
33
|
-
"""
|
|
34
|
-
)
|
|
35
25
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
ON_GRID = r"""
|
|
27
|
+
km|m # Client in: English, German, Chinese, French, Japanese, Korean, Spanish
|
|
28
|
+
|км|м # Client in: Russian
|
|
29
|
+
"""
|
|
30
|
+
OFF_GRID = r"""
|
|
31
|
+
AU # Client in: English, Chinese, Japanese, Korean, Spanish
|
|
32
|
+
|UA # Client in: French
|
|
33
|
+
|AE # Client in: German
|
|
34
|
+
|а.е. # Client in: Russian
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
DISTANCE_UNITS: str = f"{DistanceUnits.ON_GRID.value}|{DistanceUnits.OFF_GRID.value}"
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"
|
|
45
|
-
|
|
41
|
+
class RegexPattern(Enum):
|
|
42
|
+
"""
|
|
43
|
+
Pre-compiled regex patterns
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
CHATLIST = re.compile(pattern=r"(?im)^[a-zA-Z0-9\u0080-\uFFFF -_]{3,37}$")
|
|
47
|
+
DSCAN = re.compile(
|
|
48
|
+
pattern=rf"(?im)^(\d+)[\t](.*)[\t](.*)[\t](-|(.*) ({DISTANCE_UNITS}))$",
|
|
46
49
|
flags=re.VERBOSE,
|
|
47
|
-
)
|
|
48
|
-
|
|
49
|
-
pattern=r"(?im)^([a-zA-Z0-9 -_]{3,37})[\t](.*)[\t](.*)[\t](.*)[\t](.*)[\t]([0-5] - [0-5] - [0-5])([\t](.*))?$"
|
|
50
|
-
)
|
|
51
|
-
|
|
52
|
-
pattern=rf"{
|
|
53
|
-
)
|
|
54
|
-
|
|
55
|
-
pattern=rf"{
|
|
56
|
-
)
|
|
57
|
-
|
|
50
|
+
)
|
|
51
|
+
FLEETCOMP = re.compile(
|
|
52
|
+
pattern=r"(?im)^([a-zA-Z0-9 -_]{3,37})[\t](.*)[\t](.*)[\t](.*)[\t](.*)[\t]([0-5] - [0-5] - [0-5])([\t](.*))?$"
|
|
53
|
+
)
|
|
54
|
+
LOCALISED_ON_GRID = re.compile(
|
|
55
|
+
pattern=rf"{DistanceUnits.ON_GRID.value}", flags=re.VERBOSE
|
|
56
|
+
)
|
|
57
|
+
LOCALISED_OFF_GRID = re.compile(
|
|
58
|
+
pattern=rf"{DistanceUnits.OFF_GRID.value}", flags=re.VERBOSE
|
|
59
|
+
)
|
|
60
|
+
|
|
58
61
|
|
|
59
62
|
# Supported intel types and their parameters
|
|
60
63
|
SUPPORTED_INTEL_TYPES = {
|
|
61
64
|
"chatlist": {
|
|
62
65
|
"name": _("Chat list"),
|
|
63
66
|
"parser": aa_intel_tool.parser.module.chatlist.parse,
|
|
64
|
-
"pattern":
|
|
67
|
+
"pattern": RegexPattern.CHATLIST.value,
|
|
65
68
|
"template": "aa_intel_tool/views/scan/chatlist.html",
|
|
66
69
|
},
|
|
67
70
|
"dscan": {
|
|
68
71
|
"name": _("D-Scan"),
|
|
69
72
|
"parser": aa_intel_tool.parser.module.dscan.parse,
|
|
70
|
-
"pattern":
|
|
73
|
+
"pattern": RegexPattern.DSCAN.value,
|
|
71
74
|
"template": "aa_intel_tool/views/scan/dscan.html",
|
|
72
75
|
},
|
|
73
76
|
"fleetcomp": {
|
|
74
77
|
"name": _("Fleet composition"),
|
|
75
78
|
"parser": aa_intel_tool.parser.module.fleetcomp.parse,
|
|
76
|
-
"pattern":
|
|
79
|
+
"pattern": RegexPattern.FLEETCOMP.value,
|
|
77
80
|
"template": "aa_intel_tool/views/scan/fleetcomp.html",
|
|
78
81
|
},
|
|
79
82
|
}
|
|
@@ -6,7 +6,7 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
9
|
-
"POT-Creation-Date: 2026-
|
|
9
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
10
10
|
"PO-Revision-Date: 2024-07-10 14:26+0000\n"
|
|
11
11
|
"Last-Translator: Dadas Aideron <dadas.aideron@gmail.com>\n"
|
|
12
12
|
"Language-Team: Czech <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/cs/>\n"
|
|
@@ -38,16 +38,16 @@ msgstr ""
|
|
|
38
38
|
msgid "Raw data"
|
|
39
39
|
msgstr ""
|
|
40
40
|
|
|
41
|
-
#: aa_intel_tool/constants.py:
|
|
41
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
42
42
|
msgid "Chat list"
|
|
43
43
|
msgstr ""
|
|
44
44
|
|
|
45
|
-
#: aa_intel_tool/constants.py:
|
|
45
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
46
46
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
47
47
|
msgid "D-Scan"
|
|
48
48
|
msgstr ""
|
|
49
49
|
|
|
50
|
-
#: aa_intel_tool/constants.py:
|
|
50
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
51
51
|
#: aa_intel_tool/models.py:123
|
|
52
52
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
53
53
|
msgid "Fleet composition"
|
|
@@ -152,11 +152,11 @@ msgstr ""
|
|
|
152
152
|
msgid "Scan data"
|
|
153
153
|
msgstr ""
|
|
154
154
|
|
|
155
|
-
#: aa_intel_tool/parser/general.py:
|
|
155
|
+
#: aa_intel_tool/parser/general.py:51
|
|
156
156
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
157
157
|
msgstr ""
|
|
158
158
|
|
|
159
|
-
#: aa_intel_tool/parser/general.py:
|
|
159
|
+
#: aa_intel_tool/parser/general.py:69
|
|
160
160
|
msgid "No data to parse …"
|
|
161
161
|
msgstr ""
|
|
162
162
|
|
|
Binary file
|
|
@@ -6,8 +6,8 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
9
|
-
"POT-Creation-Date: 2026-
|
|
10
|
-
"PO-Revision-Date: 2026-01-
|
|
9
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
10
|
+
"PO-Revision-Date: 2026-01-28 15:53+0000\n"
|
|
11
11
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
12
12
|
"Language-Team: German <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/de/>\n"
|
|
13
13
|
"Language: de\n"
|
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
|
15
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
18
|
-
"X-Generator: Weblate 5.15.
|
|
18
|
+
"X-Generator: Weblate 5.15.2\n"
|
|
19
19
|
|
|
20
20
|
#: aa_intel_tool/__init__.py:10
|
|
21
21
|
#: aa_intel_tool/templates/aa_intel_tool/base.html:7
|
|
@@ -38,16 +38,16 @@ msgstr "In einem neuen Browser-Tab öffnen"
|
|
|
38
38
|
msgid "Raw data"
|
|
39
39
|
msgstr "Rohdaten"
|
|
40
40
|
|
|
41
|
-
#: aa_intel_tool/constants.py:
|
|
41
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
42
42
|
msgid "Chat list"
|
|
43
43
|
msgstr "Chatliste"
|
|
44
44
|
|
|
45
|
-
#: aa_intel_tool/constants.py:
|
|
45
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
46
46
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
47
47
|
msgid "D-Scan"
|
|
48
48
|
msgstr "D-Scan"
|
|
49
49
|
|
|
50
|
-
#: aa_intel_tool/constants.py:
|
|
50
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
51
51
|
#: aa_intel_tool/models.py:123
|
|
52
52
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
53
53
|
msgid "Fleet composition"
|
|
@@ -152,11 +152,11 @@ msgstr "Verarbeitete Scandaten"
|
|
|
152
152
|
msgid "Scan data"
|
|
153
153
|
msgstr "Scandaten"
|
|
154
154
|
|
|
155
|
-
#: aa_intel_tool/parser/general.py:
|
|
155
|
+
#: aa_intel_tool/parser/general.py:51
|
|
156
156
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
157
157
|
msgstr "Kein passender Parser gefunden. Die Eingabe ist kein unterstützter Inteltyp oder fehlerhaft …"
|
|
158
158
|
|
|
159
|
-
#: aa_intel_tool/parser/general.py:
|
|
159
|
+
#: aa_intel_tool/parser/general.py:69
|
|
160
160
|
msgid "No data to parse …"
|
|
161
161
|
msgstr "Keine Daten zum Parsen …"
|
|
162
162
|
|
aa_intel_tool/locale/django.pot
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
#, fuzzy
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: AA Intel Tool 2.13.
|
|
9
|
+
"Project-Id-Version: AA Intel Tool 2.13.1\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2026-
|
|
11
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -39,16 +39,16 @@ msgstr ""
|
|
|
39
39
|
msgid "Raw data"
|
|
40
40
|
msgstr ""
|
|
41
41
|
|
|
42
|
-
#: aa_intel_tool/constants.py:
|
|
42
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
43
43
|
msgid "Chat list"
|
|
44
44
|
msgstr ""
|
|
45
45
|
|
|
46
|
-
#: aa_intel_tool/constants.py:
|
|
46
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
47
47
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
48
48
|
msgid "D-Scan"
|
|
49
49
|
msgstr ""
|
|
50
50
|
|
|
51
|
-
#: aa_intel_tool/constants.py:
|
|
51
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
52
52
|
#: aa_intel_tool/models.py:123
|
|
53
53
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
54
54
|
msgid "Fleet composition"
|
|
@@ -153,12 +153,12 @@ msgstr ""
|
|
|
153
153
|
msgid "Scan data"
|
|
154
154
|
msgstr ""
|
|
155
155
|
|
|
156
|
-
#: aa_intel_tool/parser/general.py:
|
|
156
|
+
#: aa_intel_tool/parser/general.py:51
|
|
157
157
|
msgid ""
|
|
158
158
|
"No suitable parser found. Input is not a supported intel type or malformed …"
|
|
159
159
|
msgstr ""
|
|
160
160
|
|
|
161
|
-
#: aa_intel_tool/parser/general.py:
|
|
161
|
+
#: aa_intel_tool/parser/general.py:69
|
|
162
162
|
msgid "No data to parse …"
|
|
163
163
|
msgstr ""
|
|
164
164
|
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2026-
|
|
11
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
12
12
|
"PO-Revision-Date: 2025-07-29 20:18+0000\n"
|
|
13
13
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
14
14
|
"Language-Team: Spanish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/es/>\n"
|
|
@@ -40,16 +40,16 @@ msgstr "Abrir en una nueva pestaña del navegador"
|
|
|
40
40
|
msgid "Raw data"
|
|
41
41
|
msgstr "datos RAW"
|
|
42
42
|
|
|
43
|
-
#: aa_intel_tool/constants.py:
|
|
43
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
44
44
|
msgid "Chat list"
|
|
45
45
|
msgstr "Lista de Chat"
|
|
46
46
|
|
|
47
|
-
#: aa_intel_tool/constants.py:
|
|
47
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
48
48
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
49
49
|
msgid "D-Scan"
|
|
50
50
|
msgstr "D-Scan"
|
|
51
51
|
|
|
52
|
-
#: aa_intel_tool/constants.py:
|
|
52
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
53
53
|
#: aa_intel_tool/models.py:123
|
|
54
54
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
55
55
|
msgid "Fleet composition"
|
|
@@ -164,11 +164,11 @@ msgstr "Datos de escaneo no válidos"
|
|
|
164
164
|
msgid "Scan data"
|
|
165
165
|
msgstr "Datos de escaneo no válidos"
|
|
166
166
|
|
|
167
|
-
#: aa_intel_tool/parser/general.py:
|
|
167
|
+
#: aa_intel_tool/parser/general.py:51
|
|
168
168
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
169
169
|
msgstr ""
|
|
170
170
|
|
|
171
|
-
#: aa_intel_tool/parser/general.py:
|
|
171
|
+
#: aa_intel_tool/parser/general.py:69
|
|
172
172
|
msgid "No data to parse …"
|
|
173
173
|
msgstr ""
|
|
174
174
|
|
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
13
|
-
"POT-Creation-Date: 2026-
|
|
13
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
14
14
|
"PO-Revision-Date: 2025-08-03 04:24+0000\n"
|
|
15
15
|
"Last-Translator: The “Devcutter” Guy <mick162534@gmail.com>\n"
|
|
16
16
|
"Language-Team: French <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/fr/>\n"
|
|
@@ -42,16 +42,16 @@ msgstr "Ouvrir dans un nouvel onglet"
|
|
|
42
42
|
msgid "Raw data"
|
|
43
43
|
msgstr "Données brute"
|
|
44
44
|
|
|
45
|
-
#: aa_intel_tool/constants.py:
|
|
45
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
46
46
|
msgid "Chat list"
|
|
47
47
|
msgstr "Liste de conversation"
|
|
48
48
|
|
|
49
|
-
#: aa_intel_tool/constants.py:
|
|
49
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
50
50
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
51
51
|
msgid "D-Scan"
|
|
52
52
|
msgstr "Scanner directionnel"
|
|
53
53
|
|
|
54
|
-
#: aa_intel_tool/constants.py:
|
|
54
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
55
55
|
#: aa_intel_tool/models.py:123
|
|
56
56
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
57
57
|
msgid "Fleet composition"
|
|
@@ -160,11 +160,11 @@ msgstr "Données du scanner transformées"
|
|
|
160
160
|
msgid "Scan data"
|
|
161
161
|
msgstr "Données du scanner"
|
|
162
162
|
|
|
163
|
-
#: aa_intel_tool/parser/general.py:
|
|
163
|
+
#: aa_intel_tool/parser/general.py:51
|
|
164
164
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
165
165
|
msgstr ""
|
|
166
166
|
|
|
167
|
-
#: aa_intel_tool/parser/general.py:
|
|
167
|
+
#: aa_intel_tool/parser/general.py:69
|
|
168
168
|
msgid "No data to parse …"
|
|
169
169
|
msgstr ""
|
|
170
170
|
|
|
@@ -7,7 +7,7 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
10
|
-
"POT-Creation-Date: 2026-
|
|
10
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
11
11
|
"PO-Revision-Date: 2024-05-10 14:07+0000\n"
|
|
12
12
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
|
13
13
|
"Language-Team: Italian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/it/>\n"
|
|
@@ -39,16 +39,16 @@ msgstr ""
|
|
|
39
39
|
msgid "Raw data"
|
|
40
40
|
msgstr ""
|
|
41
41
|
|
|
42
|
-
#: aa_intel_tool/constants.py:
|
|
42
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
43
43
|
msgid "Chat list"
|
|
44
44
|
msgstr ""
|
|
45
45
|
|
|
46
|
-
#: aa_intel_tool/constants.py:
|
|
46
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
47
47
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
48
48
|
msgid "D-Scan"
|
|
49
49
|
msgstr ""
|
|
50
50
|
|
|
51
|
-
#: aa_intel_tool/constants.py:
|
|
51
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
52
52
|
#: aa_intel_tool/models.py:123
|
|
53
53
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
54
54
|
msgid "Fleet composition"
|
|
@@ -153,11 +153,11 @@ msgstr ""
|
|
|
153
153
|
msgid "Scan data"
|
|
154
154
|
msgstr ""
|
|
155
155
|
|
|
156
|
-
#: aa_intel_tool/parser/general.py:
|
|
156
|
+
#: aa_intel_tool/parser/general.py:51
|
|
157
157
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
158
158
|
msgstr ""
|
|
159
159
|
|
|
160
|
-
#: aa_intel_tool/parser/general.py:
|
|
160
|
+
#: aa_intel_tool/parser/general.py:69
|
|
161
161
|
msgid "No data to parse …"
|
|
162
162
|
msgstr ""
|
|
163
163
|
|
|
Binary file
|
|
@@ -3,21 +3,21 @@
|
|
|
3
3
|
# This file is distributed under the same license as the PACKAGE package.
|
|
4
4
|
# Anata_no_Usiro <yt23542354m@gmail.com>, 2024.
|
|
5
5
|
# Dexsar <dexsar.paf@gmail.com>, 2025.
|
|
6
|
-
# Peter Pfeufer <info@ppfeufer.de>, 2025.
|
|
6
|
+
# Peter Pfeufer <info@ppfeufer.de>, 2025, 2026.
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2026-
|
|
12
|
-
"PO-Revision-Date:
|
|
13
|
-
"Last-Translator:
|
|
11
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
12
|
+
"PO-Revision-Date: 2026-01-28 15:53+0000\n"
|
|
13
|
+
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
14
14
|
"Language-Team: Japanese <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ja/>\n"
|
|
15
15
|
"Language: ja\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
20
|
-
"X-Generator: Weblate 5.
|
|
20
|
+
"X-Generator: Weblate 5.15.2\n"
|
|
21
21
|
|
|
22
22
|
#: aa_intel_tool/__init__.py:10
|
|
23
23
|
#: aa_intel_tool/templates/aa_intel_tool/base.html:7
|
|
@@ -40,16 +40,16 @@ msgstr "ブラウザの新しいタブで開く"
|
|
|
40
40
|
msgid "Raw data"
|
|
41
41
|
msgstr "未加工データ"
|
|
42
42
|
|
|
43
|
-
#: aa_intel_tool/constants.py:
|
|
43
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
44
44
|
msgid "Chat list"
|
|
45
45
|
msgstr "チャット一覧"
|
|
46
46
|
|
|
47
|
-
#: aa_intel_tool/constants.py:
|
|
47
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
48
48
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
49
49
|
msgid "D-Scan"
|
|
50
50
|
msgstr "指向性スキャン"
|
|
51
51
|
|
|
52
|
-
#: aa_intel_tool/constants.py:
|
|
52
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
53
53
|
#: aa_intel_tool/models.py:123
|
|
54
54
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
55
55
|
msgid "Fleet composition"
|
|
@@ -154,11 +154,11 @@ msgstr ""
|
|
|
154
154
|
msgid "Scan data"
|
|
155
155
|
msgstr ""
|
|
156
156
|
|
|
157
|
-
#: aa_intel_tool/parser/general.py:
|
|
157
|
+
#: aa_intel_tool/parser/general.py:51
|
|
158
158
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
159
159
|
msgstr "適切なパーサーが見つかりません。入力はサポートされているIntelタイプではないか、不正な形式です…"
|
|
160
160
|
|
|
161
|
-
#: aa_intel_tool/parser/general.py:
|
|
161
|
+
#: aa_intel_tool/parser/general.py:69
|
|
162
162
|
msgid "No data to parse …"
|
|
163
163
|
msgstr "パースすべきデータが存在しません…"
|
|
164
164
|
|
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
13
|
-
"POT-Creation-Date: 2026-
|
|
13
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
14
14
|
"PO-Revision-Date: 2025-04-28 07:24+0000\n"
|
|
15
15
|
"Last-Translator: SiO4 <hohoit0078@gmail.com>\n"
|
|
16
16
|
"Language-Team: Korean <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ko/>\n"
|
|
@@ -42,16 +42,16 @@ msgstr "새 탭에서 열기"
|
|
|
42
42
|
msgid "Raw data"
|
|
43
43
|
msgstr "원본 데이터"
|
|
44
44
|
|
|
45
|
-
#: aa_intel_tool/constants.py:
|
|
45
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
46
46
|
msgid "Chat list"
|
|
47
47
|
msgstr "챗 리스트"
|
|
48
48
|
|
|
49
|
-
#: aa_intel_tool/constants.py:
|
|
49
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
50
50
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
51
51
|
msgid "D-Scan"
|
|
52
52
|
msgstr "전방위 스캐너"
|
|
53
53
|
|
|
54
|
-
#: aa_intel_tool/constants.py:
|
|
54
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
55
55
|
#: aa_intel_tool/models.py:123
|
|
56
56
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
57
57
|
msgid "Fleet composition"
|
|
@@ -158,11 +158,11 @@ msgstr "처리된 스캔 데이터"
|
|
|
158
158
|
msgid "Scan data"
|
|
159
159
|
msgstr "스캔 데이터"
|
|
160
160
|
|
|
161
|
-
#: aa_intel_tool/parser/general.py:
|
|
161
|
+
#: aa_intel_tool/parser/general.py:51
|
|
162
162
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
163
163
|
msgstr "지원하는 파서를 찾을 수 없습니다. 지원하지 않는 인텔 타입이거나, 잘못된 형식입니다…"
|
|
164
164
|
|
|
165
|
-
#: aa_intel_tool/parser/general.py:
|
|
165
|
+
#: aa_intel_tool/parser/general.py:69
|
|
166
166
|
msgid "No data to parse …"
|
|
167
167
|
msgstr "가져올 데이터가 없습니다…"
|
|
168
168
|
|
|
Binary file
|
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
3
|
# This file is distributed under the same license as the PACKAGE package.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
4
|
+
# Peter Pfeufer <info@ppfeufer.de>, 2026.
|
|
6
5
|
msgid ""
|
|
7
6
|
msgstr ""
|
|
8
7
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
9
8
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
10
|
-
"POT-Creation-Date: 2026-
|
|
11
|
-
"PO-Revision-Date:
|
|
12
|
-
"Last-Translator:
|
|
9
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
10
|
+
"PO-Revision-Date: 2026-02-01 14:23+0000\n"
|
|
11
|
+
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
13
12
|
"Language-Team: Dutch <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/nl/>\n"
|
|
14
13
|
"Language: nl_NL\n"
|
|
15
14
|
"MIME-Version: 1.0\n"
|
|
16
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
18
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
19
|
-
"X-Generator: Weblate 5.
|
|
18
|
+
"X-Generator: Weblate 5.15.2\n"
|
|
20
19
|
|
|
21
20
|
#: aa_intel_tool/__init__.py:10
|
|
22
21
|
#: aa_intel_tool/templates/aa_intel_tool/base.html:7
|
|
@@ -25,7 +24,7 @@ msgstr ""
|
|
|
25
24
|
#: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
|
|
26
25
|
#: aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html:5
|
|
27
26
|
msgid "Intel Parser"
|
|
28
|
-
msgstr ""
|
|
27
|
+
msgstr "Intel Parser"
|
|
29
28
|
|
|
30
29
|
#: aa_intel_tool/admin.py:77 aa_intel_tool/models.py:46
|
|
31
30
|
msgid "Scan type"
|
|
@@ -39,16 +38,16 @@ msgstr ""
|
|
|
39
38
|
msgid "Raw data"
|
|
40
39
|
msgstr ""
|
|
41
40
|
|
|
42
|
-
#: aa_intel_tool/constants.py:
|
|
41
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
43
42
|
msgid "Chat list"
|
|
44
43
|
msgstr ""
|
|
45
44
|
|
|
46
|
-
#: aa_intel_tool/constants.py:
|
|
45
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
47
46
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
48
47
|
msgid "D-Scan"
|
|
49
48
|
msgstr ""
|
|
50
49
|
|
|
51
|
-
#: aa_intel_tool/constants.py:
|
|
50
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
52
51
|
#: aa_intel_tool/models.py:123
|
|
53
52
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
54
53
|
msgid "Fleet composition"
|
|
@@ -153,11 +152,11 @@ msgstr ""
|
|
|
153
152
|
msgid "Scan data"
|
|
154
153
|
msgstr ""
|
|
155
154
|
|
|
156
|
-
#: aa_intel_tool/parser/general.py:
|
|
155
|
+
#: aa_intel_tool/parser/general.py:51
|
|
157
156
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
158
157
|
msgstr ""
|
|
159
158
|
|
|
160
|
-
#: aa_intel_tool/parser/general.py:
|
|
159
|
+
#: aa_intel_tool/parser/general.py:69
|
|
161
160
|
msgid "No data to parse …"
|
|
162
161
|
msgstr ""
|
|
163
162
|
|
|
@@ -6,7 +6,7 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
9
|
-
"POT-Creation-Date: 2026-
|
|
9
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
10
10
|
"PO-Revision-Date: 2024-05-10 14:07+0000\n"
|
|
11
11
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
12
12
|
"Language-Team: Polish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/pl/>\n"
|
|
@@ -38,16 +38,16 @@ msgstr ""
|
|
|
38
38
|
msgid "Raw data"
|
|
39
39
|
msgstr ""
|
|
40
40
|
|
|
41
|
-
#: aa_intel_tool/constants.py:
|
|
41
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
42
42
|
msgid "Chat list"
|
|
43
43
|
msgstr ""
|
|
44
44
|
|
|
45
|
-
#: aa_intel_tool/constants.py:
|
|
45
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
46
46
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
47
47
|
msgid "D-Scan"
|
|
48
48
|
msgstr ""
|
|
49
49
|
|
|
50
|
-
#: aa_intel_tool/constants.py:
|
|
50
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
51
51
|
#: aa_intel_tool/models.py:123
|
|
52
52
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
53
53
|
msgid "Fleet composition"
|
|
@@ -152,11 +152,11 @@ msgstr ""
|
|
|
152
152
|
msgid "Scan data"
|
|
153
153
|
msgstr ""
|
|
154
154
|
|
|
155
|
-
#: aa_intel_tool/parser/general.py:
|
|
155
|
+
#: aa_intel_tool/parser/general.py:51
|
|
156
156
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
157
157
|
msgstr ""
|
|
158
158
|
|
|
159
|
-
#: aa_intel_tool/parser/general.py:
|
|
159
|
+
#: aa_intel_tool/parser/general.py:69
|
|
160
160
|
msgid "No data to parse …"
|
|
161
161
|
msgstr ""
|
|
162
162
|
|
|
@@ -9,7 +9,7 @@ msgid ""
|
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
12
|
-
"POT-Creation-Date: 2026-
|
|
12
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
13
13
|
"PO-Revision-Date: 2025-03-25 13:24+0000\n"
|
|
14
14
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
15
15
|
"Language-Team: Russian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ru/>\n"
|
|
@@ -41,16 +41,16 @@ msgstr "Открыть в новой вкладке"
|
|
|
41
41
|
msgid "Raw data"
|
|
42
42
|
msgstr "Исходные данные"
|
|
43
43
|
|
|
44
|
-
#: aa_intel_tool/constants.py:
|
|
44
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
45
45
|
msgid "Chat list"
|
|
46
46
|
msgstr "Список чата"
|
|
47
47
|
|
|
48
|
-
#: aa_intel_tool/constants.py:
|
|
48
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
49
49
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
50
50
|
msgid "D-Scan"
|
|
51
51
|
msgstr "Подскан"
|
|
52
52
|
|
|
53
|
-
#: aa_intel_tool/constants.py:
|
|
53
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
54
54
|
#: aa_intel_tool/models.py:123
|
|
55
55
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
56
56
|
msgid "Fleet composition"
|
|
@@ -157,11 +157,11 @@ msgstr "Обработанные данные скана"
|
|
|
157
157
|
msgid "Scan data"
|
|
158
158
|
msgstr "Данные скана"
|
|
159
159
|
|
|
160
|
-
#: aa_intel_tool/parser/general.py:
|
|
160
|
+
#: aa_intel_tool/parser/general.py:51
|
|
161
161
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
162
162
|
msgstr "Не найден подходящий анализатор. Формат входных данных не поддерживается или данные неполны …"
|
|
163
163
|
|
|
164
|
-
#: aa_intel_tool/parser/general.py:
|
|
164
|
+
#: aa_intel_tool/parser/general.py:69
|
|
165
165
|
msgid "No data to parse …"
|
|
166
166
|
msgstr "Нет данных для анализа …"
|
|
167
167
|
|
|
@@ -7,7 +7,7 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
10
|
-
"POT-Creation-Date: 2026-
|
|
10
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
11
11
|
"PO-Revision-Date: 2024-05-10 14:07+0000\n"
|
|
12
12
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
|
13
13
|
"Language-Team: Slovak <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/sk/>\n"
|
|
@@ -39,16 +39,16 @@ msgstr ""
|
|
|
39
39
|
msgid "Raw data"
|
|
40
40
|
msgstr ""
|
|
41
41
|
|
|
42
|
-
#: aa_intel_tool/constants.py:
|
|
42
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
43
43
|
msgid "Chat list"
|
|
44
44
|
msgstr ""
|
|
45
45
|
|
|
46
|
-
#: aa_intel_tool/constants.py:
|
|
46
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
47
47
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
48
48
|
msgid "D-Scan"
|
|
49
49
|
msgstr ""
|
|
50
50
|
|
|
51
|
-
#: aa_intel_tool/constants.py:
|
|
51
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
52
52
|
#: aa_intel_tool/models.py:123
|
|
53
53
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
54
54
|
msgid "Fleet composition"
|
|
@@ -153,11 +153,11 @@ msgstr ""
|
|
|
153
153
|
msgid "Scan data"
|
|
154
154
|
msgstr ""
|
|
155
155
|
|
|
156
|
-
#: aa_intel_tool/parser/general.py:
|
|
156
|
+
#: aa_intel_tool/parser/general.py:51
|
|
157
157
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
158
158
|
msgstr ""
|
|
159
159
|
|
|
160
|
-
#: aa_intel_tool/parser/general.py:
|
|
160
|
+
#: aa_intel_tool/parser/general.py:69
|
|
161
161
|
msgid "No data to parse …"
|
|
162
162
|
msgstr ""
|
|
163
163
|
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2026-
|
|
11
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
12
12
|
"PO-Revision-Date: 2025-11-01 19:17+0000\n"
|
|
13
13
|
"Last-Translator: s0k0l -_- <salarysalo@gmail.com>\n"
|
|
14
14
|
"Language-Team: Ukrainian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/uk/>\n"
|
|
@@ -40,16 +40,16 @@ msgstr "Нова вкладка браузера"
|
|
|
40
40
|
msgid "Raw data"
|
|
41
41
|
msgstr "Необроблені дані"
|
|
42
42
|
|
|
43
|
-
#: aa_intel_tool/constants.py:
|
|
43
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
44
44
|
msgid "Chat list"
|
|
45
45
|
msgstr "Список чатів"
|
|
46
46
|
|
|
47
|
-
#: aa_intel_tool/constants.py:
|
|
47
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
48
48
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
49
49
|
msgid "D-Scan"
|
|
50
50
|
msgstr "Д-скан"
|
|
51
51
|
|
|
52
|
-
#: aa_intel_tool/constants.py:
|
|
52
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
53
53
|
#: aa_intel_tool/models.py:123
|
|
54
54
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
55
55
|
msgid "Fleet composition"
|
|
@@ -154,11 +154,11 @@ msgstr "Оброблені дані скану"
|
|
|
154
154
|
msgid "Scan data"
|
|
155
155
|
msgstr "Дані скану"
|
|
156
156
|
|
|
157
|
-
#: aa_intel_tool/parser/general.py:
|
|
157
|
+
#: aa_intel_tool/parser/general.py:51
|
|
158
158
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
159
159
|
msgstr "Нема підходящого парсеру для даних. Введені дані не підтримуються або пошкоджені…"
|
|
160
160
|
|
|
161
|
-
#: aa_intel_tool/parser/general.py:
|
|
161
|
+
#: aa_intel_tool/parser/general.py:69
|
|
162
162
|
msgid "No data to parse …"
|
|
163
163
|
msgstr "Нема даних для розбору…"
|
|
164
164
|
|
|
@@ -4,20 +4,21 @@
|
|
|
4
4
|
# Dehao Wu <wudehao2000@163.com>, 2024.
|
|
5
5
|
# Faer Yili <yilifaer@gmail.com>, 2024.
|
|
6
6
|
# SAM_FPS <sam_fps@163.com>, 2024.
|
|
7
|
-
# Peter Pfeufer <info@ppfeufer.de>, 2024, 2025.
|
|
7
|
+
# Peter Pfeufer <info@ppfeufer.de>, 2024, 2025, 2026.
|
|
8
8
|
# 陈康立 <amadis0814@gmail.com>, 2024.
|
|
9
9
|
# Chilmore <chenmo1203@gmail.com>, 2025.
|
|
10
10
|
# Kelly Hsueh <kelly_hsueh@users.noreply.weblate.ppfeufer.de>, 2025.
|
|
11
11
|
# AKA Patrick <hsc844766246@gmail.com>, 2025.
|
|
12
12
|
# LichenKass <yuanchengwei_sz@163.com>, 2025.
|
|
13
13
|
# Heimi <204420064@qq.com>, 2026.
|
|
14
|
+
# nm l <mmttyyluo@gmail.com>, 2026.
|
|
14
15
|
msgid ""
|
|
15
16
|
msgstr ""
|
|
16
17
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
17
18
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
18
|
-
"POT-Creation-Date: 2026-
|
|
19
|
-
"PO-Revision-Date: 2026-01-
|
|
20
|
-
"Last-Translator:
|
|
19
|
+
"POT-Creation-Date: 2026-02-03 12:23+0100\n"
|
|
20
|
+
"PO-Revision-Date: 2026-01-26 05:17+0000\n"
|
|
21
|
+
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
21
22
|
"Language-Team: Chinese (Simplified Han script) <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/zh_Hans/>\n"
|
|
22
23
|
"Language: zh_Hans\n"
|
|
23
24
|
"MIME-Version: 1.0\n"
|
|
@@ -47,16 +48,16 @@ msgstr "新浏览器页签打开"
|
|
|
47
48
|
msgid "Raw data"
|
|
48
49
|
msgstr "原始数据"
|
|
49
50
|
|
|
50
|
-
#: aa_intel_tool/constants.py:
|
|
51
|
+
#: aa_intel_tool/constants.py:65 aa_intel_tool/models.py:24
|
|
51
52
|
msgid "Chat list"
|
|
52
53
|
msgstr "聊天列表"
|
|
53
54
|
|
|
54
|
-
#: aa_intel_tool/constants.py:
|
|
55
|
+
#: aa_intel_tool/constants.py:71 aa_intel_tool/models.py:22
|
|
55
56
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
56
57
|
msgid "D-Scan"
|
|
57
58
|
msgstr "定向扫描"
|
|
58
59
|
|
|
59
|
-
#: aa_intel_tool/constants.py:
|
|
60
|
+
#: aa_intel_tool/constants.py:77 aa_intel_tool/models.py:23
|
|
60
61
|
#: aa_intel_tool/models.py:123
|
|
61
62
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
62
63
|
msgid "Fleet composition"
|
|
@@ -133,8 +134,9 @@ msgid "Structures (on grid)"
|
|
|
133
134
|
msgstr "建筑(在场的)"
|
|
134
135
|
|
|
135
136
|
#: aa_intel_tool/models.py:119
|
|
137
|
+
#, fuzzy
|
|
136
138
|
msgid "Starbases (on grid)"
|
|
137
|
-
msgstr ""
|
|
139
|
+
msgstr "母星(网格内)"
|
|
138
140
|
|
|
139
141
|
#: aa_intel_tool/models.py:120
|
|
140
142
|
msgid "Deployables (on grid)"
|
|
@@ -161,11 +163,11 @@ msgstr ""
|
|
|
161
163
|
msgid "Scan data"
|
|
162
164
|
msgstr ""
|
|
163
165
|
|
|
164
|
-
#: aa_intel_tool/parser/general.py:
|
|
166
|
+
#: aa_intel_tool/parser/general.py:51
|
|
165
167
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
166
168
|
msgstr ""
|
|
167
169
|
|
|
168
|
-
#: aa_intel_tool/parser/general.py:
|
|
170
|
+
#: aa_intel_tool/parser/general.py:69
|
|
169
171
|
msgid "No data to parse …"
|
|
170
172
|
msgstr ""
|
|
171
173
|
|
aa_intel_tool/parser/general.py
CHANGED
|
@@ -30,12 +30,18 @@ def check_intel_type(scan_data: list) -> str:
|
|
|
30
30
|
:rtype:
|
|
31
31
|
"""
|
|
32
32
|
|
|
33
|
+
logger.info(msg="Checking intel type …")
|
|
34
|
+
logger.info(msg=f"Supported intel types: {list(SUPPORTED_INTEL_TYPES.keys())}")
|
|
35
|
+
|
|
33
36
|
for intel_type, intel_type_attributes in SUPPORTED_INTEL_TYPES.items():
|
|
37
|
+
logger.info(msg=f"Checking for intel type: {intel_type_attributes['name']}")
|
|
38
|
+
logger.info(msg=f"Using pattern: {intel_type_attributes['pattern']}")
|
|
39
|
+
|
|
34
40
|
if all(
|
|
35
41
|
re.match(pattern=intel_type_attributes["pattern"], string=string)
|
|
36
42
|
for string in scan_data
|
|
37
43
|
):
|
|
38
|
-
logger.
|
|
44
|
+
logger.info(msg=f"Detected intel type: {intel_type_attributes['name']}")
|
|
39
45
|
|
|
40
46
|
return intel_type
|
|
41
47
|
|
|
@@ -46,11 +46,11 @@ def _is_on_grid(distance: str) -> bool:
|
|
|
46
46
|
|
|
47
47
|
# AA Intel Tool
|
|
48
48
|
from aa_intel_tool.constants import ( # pylint: disable=import-outside-toplevel
|
|
49
|
-
|
|
49
|
+
RegexPattern,
|
|
50
50
|
)
|
|
51
51
|
|
|
52
52
|
# Check if we have a distance
|
|
53
|
-
match = re.search(pattern=
|
|
53
|
+
match = re.search(pattern=RegexPattern.LOCALISED_ON_GRID.value, string=distance)
|
|
54
54
|
|
|
55
55
|
# Check if the distance is within the grid size
|
|
56
56
|
return (
|
|
@@ -298,7 +298,7 @@ def _get_scan_details(scan_data: list) -> tuple:
|
|
|
298
298
|
|
|
299
299
|
# AA Intel Tool
|
|
300
300
|
from aa_intel_tool.constants import ( # pylint: disable=import-outside-toplevel
|
|
301
|
-
|
|
301
|
+
RegexPattern,
|
|
302
302
|
)
|
|
303
303
|
|
|
304
304
|
ansiblex_destination = None
|
|
@@ -321,7 +321,7 @@ def _get_scan_details(scan_data: list) -> tuple:
|
|
|
321
321
|
# This is why we use re.search() to get the parts of the D-Scan entry, instead of re-split()
|
|
322
322
|
#
|
|
323
323
|
# Thanks CCP for sanitizing your inputs! 😂
|
|
324
|
-
line = re.search(pattern=
|
|
324
|
+
line = re.search(pattern=RegexPattern.DSCAN.value, string=entry)
|
|
325
325
|
entry_id = int(line.group(1))
|
|
326
326
|
|
|
327
327
|
counter["all"][entry_id] += 1
|
aa_intel_tool/tests/__init__.py
CHANGED
|
@@ -8,6 +8,9 @@ import socket
|
|
|
8
8
|
# Django
|
|
9
9
|
from django.test import TestCase
|
|
10
10
|
|
|
11
|
+
# AA Intel Tool
|
|
12
|
+
from aa_intel_tool.tests.utils import create_fake_user
|
|
13
|
+
|
|
11
14
|
|
|
12
15
|
class SocketAccessError(Exception):
|
|
13
16
|
"""Error raised when a test script accesses the network"""
|
|
@@ -31,6 +34,20 @@ class BaseTestCase(TestCase):
|
|
|
31
34
|
socket.socket = cls.guard
|
|
32
35
|
return super().setUpClass()
|
|
33
36
|
|
|
37
|
+
def setUp(self):
|
|
38
|
+
"""
|
|
39
|
+
Set up test users
|
|
40
|
+
|
|
41
|
+
:return:
|
|
42
|
+
:rtype:
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
super().setUp()
|
|
46
|
+
|
|
47
|
+
self.user_1001 = create_fake_user(
|
|
48
|
+
character_id=10001, character_name="Wesley Crusher"
|
|
49
|
+
)
|
|
50
|
+
|
|
34
51
|
@classmethod
|
|
35
52
|
def tearDownClass(cls):
|
|
36
53
|
socket.socket = cls.socket_original
|
|
@@ -10,7 +10,7 @@ from django.urls import reverse
|
|
|
10
10
|
|
|
11
11
|
# AA Intel Tool
|
|
12
12
|
from aa_intel_tool.tests import BaseTestCase
|
|
13
|
-
from aa_intel_tool.tests.utils import
|
|
13
|
+
from aa_intel_tool.tests.utils import response_content_to_str
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class TestAccess(BaseTestCase):
|
|
@@ -26,11 +26,6 @@ class TestAccess(BaseTestCase):
|
|
|
26
26
|
|
|
27
27
|
super().setUpClass()
|
|
28
28
|
|
|
29
|
-
# User
|
|
30
|
-
cls.user_1001 = create_fake_user(
|
|
31
|
-
character_id=1001, character_name="Peter Parker"
|
|
32
|
-
)
|
|
33
|
-
|
|
34
29
|
cls.html_menu = f"""
|
|
35
30
|
<li class="d-flex flex-wrap m-2 p-2 pt-0 pb-0 mt-0 mb-0 me-0 pe-0">
|
|
36
31
|
<i class="nav-link fa-solid fa-clipboard-list fa-fw align-self-center me-3 active"></i>
|
|
@@ -10,7 +10,7 @@ from django.urls import reverse
|
|
|
10
10
|
|
|
11
11
|
# AA Intel Tool
|
|
12
12
|
from aa_intel_tool.tests import BaseTestCase
|
|
13
|
-
from aa_intel_tool.tests.utils import
|
|
13
|
+
from aa_intel_tool.tests.utils import response_content_to_str
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class TestHooks(BaseTestCase):
|
|
@@ -26,11 +26,6 @@ class TestHooks(BaseTestCase):
|
|
|
26
26
|
|
|
27
27
|
super().setUpClass()
|
|
28
28
|
|
|
29
|
-
# User
|
|
30
|
-
cls.user_1001 = create_fake_user(
|
|
31
|
-
character_id=1001, character_name="Peter Parker"
|
|
32
|
-
)
|
|
33
|
-
|
|
34
29
|
cls.html_menu = f"""
|
|
35
30
|
<li class="d-flex flex-wrap m-2 p-2 pt-0 pb-0 mt-0 mb-0 me-0 pe-0">
|
|
36
31
|
<i class="nav-link fa-solid fa-clipboard-list fa-fw align-self-center me-3 "></i>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aa-intel-tool
|
|
3
|
-
Version: 2.13.
|
|
3
|
+
Version: 2.13.1
|
|
4
4
|
Summary: A simple parser for D-Scans and more for Alliance Auth
|
|
5
5
|
Project-URL: Changelog, https://github.com/ppfeufer/aa-intel-tool/blob/master/CHANGELOG.md
|
|
6
6
|
Project-URL: Codecov, https://codecov.io/gh/ppfeufer/aa-intel-tool
|
|
@@ -784,15 +784,11 @@ See [Settings](#settings) section for details.
|
|
|
784
784
|
|
|
785
785
|
## Installation<a name="installation"></a>
|
|
786
786
|
|
|
787
|
-
> [!
|
|
788
|
-
>
|
|
789
|
-
> **AA Intel Tool >= 2.0.0 needs at least Alliance Auth v4.0.0!**
|
|
790
|
-
>
|
|
791
|
-
> Please make sure to update your Alliance Auth instance _before_ you install this
|
|
792
|
-
> module or update to the latest version, otherwise an update to Alliance Auth will
|
|
793
|
-
> be pulled in unsupervised.
|
|
787
|
+
> [!IMPORTANT]
|
|
794
788
|
>
|
|
795
|
-
>
|
|
789
|
+
> This app is utilising features that are only available in Alliance Auth >= 4.12.0.
|
|
790
|
+
> Please make sure to update your Alliance Auth instance before installing this app,
|
|
791
|
+
> otherwise, an update to Alliance Auth will be pulled in unsupervised.
|
|
796
792
|
|
|
797
793
|
**Important**: Please make sure you meet all preconditions before you proceed:
|
|
798
794
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
aa_intel_tool/__init__.py,sha256=
|
|
1
|
+
aa_intel_tool/__init__.py,sha256=ZNO66iFlR_rCMiVSZU9aqpbYLjjGJow8n_f8tTV6XrQ,174
|
|
2
2
|
aa_intel_tool/admin.py,sha256=5ZDNtIE6eQL7DRkquSuHdUJ9HToDhQkN1AZCeIDtr8s,2419
|
|
3
3
|
aa_intel_tool/app_settings.py,sha256=b0oPdMkLhoHtNk_SuI-XdAlVTbJatbnF9kot44KXCO8,5647
|
|
4
4
|
aa_intel_tool/apps.py,sha256=b8eX3yTo6THMIxg2g_O9ttKd7d-Aa3c9-WqoZa-5Gpk,439
|
|
5
5
|
aa_intel_tool/auth_hooks.py,sha256=wfzZCG4l1AhaZ5SqXLUefEONlACDp4RP3h_EoFTP4iU,1491
|
|
6
|
-
aa_intel_tool/constants.py,sha256=
|
|
6
|
+
aa_intel_tool/constants.py,sha256=fa7SFFJSZn-j_hWQGuspKDqsY861idlmAWtPm3HoJe0,2322
|
|
7
7
|
aa_intel_tool/exceptions.py,sha256=Cz_c-lUPJJpHEfdlYj2aIGqnzw_tfnBkxFcD7TXTRsA,889
|
|
8
8
|
aa_intel_tool/form.py,sha256=naH20ZGyktwM-JBZeC98FRlptLpYe5PvQYu-Xto7-z4,545
|
|
9
9
|
aa_intel_tool/models.py,sha256=oZ0_pPl-4XiGOspVx-9n8DITqsfIv2yizFn532BtZcg,4057
|
|
@@ -13,42 +13,42 @@ aa_intel_tool/urls.py,sha256=WU3UwrVvz7iXmidy4wd3aWWo-p6Bm87-iVIWAKaDEsc,752
|
|
|
13
13
|
aa_intel_tool/helper/data_structure.py,sha256=ajH_hDWR5TV22gF0AMIZsu1PcY73OzPdOHx1d_D0GsM,302
|
|
14
14
|
aa_intel_tool/helper/eve_character.py,sha256=58I3NGHQo2Exy8nMjbykMNLyZoNeZRZvgn8RIdnmhLo,4826
|
|
15
15
|
aa_intel_tool/helper/urls.py,sha256=CQZXc-yGDM_yOnoLjCJxVTqdOQRN8iYxqmoQ7uCxADs,456
|
|
16
|
-
aa_intel_tool/locale/django.pot,sha256=
|
|
16
|
+
aa_intel_tool/locale/django.pot,sha256=IFfmTT6u2lDXREQyhjRxGHgX_R4bW39ZvTN0wZoW_KE,12536
|
|
17
17
|
aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=CHgMtrHlb-VEo5fUh2G3IrCNxoIScE-LzX6xjz1YkRc,864
|
|
18
|
-
aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
|
19
|
-
aa_intel_tool/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
20
|
-
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=
|
|
18
|
+
aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po,sha256=7Asd_Us4h83J1Xb6L9j637BGr9l6VzIZ0kX6x1uErE8,12896
|
|
19
|
+
aa_intel_tool/locale/de/LC_MESSAGES/django.mo,sha256=2XpJcGZxGwkzqf_MkXYsHgfd11MYW4tGz5O7bVceHvA,7754
|
|
20
|
+
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=1FZUDSoZ1RqF1A65kGDnMzjPbF8HULUwzXYyWxf4nrw,16764
|
|
21
21
|
aa_intel_tool/locale/es/LC_MESSAGES/django.mo,sha256=V036sIj1DoDmVV-8x2h63-ORR0i9GhKSIXHiPLnviu8,2091
|
|
22
|
-
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=
|
|
22
|
+
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=xvEN9_tYLwRiguxwBKPKuLwGQiicsnvPAd764L17xo8,13828
|
|
23
23
|
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo,sha256=XTwnByCB27gm04dVoP8QXG8FI1kQVGItFqvBC5PqN1c,6635
|
|
24
|
-
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=
|
|
24
|
+
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=ofRFe__3KmRHyoG3RTO7cU43-SBOUv8daoHCX7bM4sM,17253
|
|
25
25
|
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.mo,sha256=dqJTO-ELuQ2KgN37kNG65LG7jjb4IhNkU2Tq1C4vswg,483
|
|
26
|
-
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po,sha256=
|
|
27
|
-
aa_intel_tool/locale/ja/LC_MESSAGES/django.mo,sha256=
|
|
28
|
-
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=
|
|
26
|
+
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po,sha256=bDvDmwcv8YDtIAONHiI_E2g_9cZE2NQp-Ctr43qQfaY,12585
|
|
27
|
+
aa_intel_tool/locale/ja/LC_MESSAGES/django.mo,sha256=V3vZMK9vB0cjzL_F9v0x5yvkD-h3H3uQRnSm8x_4-uY,6982
|
|
28
|
+
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=_HgqEa3i1NtcM8zZ41R2QjeIhEK3nGWdMoy5Hd74lBA,15629
|
|
29
29
|
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.mo,sha256=2aMqsSR_qUV9PzMoBBrcfyQxyg3fLte-9zinJftQ4BQ,7525
|
|
30
|
-
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=
|
|
31
|
-
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.mo,sha256
|
|
32
|
-
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po,sha256=
|
|
30
|
+
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=EZ0jKyB2XgNBj8BFcmOnH-bQt4uROEgiuq2U-J3ZVfA,17316
|
|
31
|
+
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.mo,sha256=-72EAu4tdbqUu2TrKHkDpRe2h87C8jJhRRl328qSS-I,530
|
|
32
|
+
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po,sha256=M8uQ4-_FMB0gI1a7iBwyPe3ieFmqSmIRI7n89H99xbU,12599
|
|
33
33
|
aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.mo,sha256=pviaTemIpmyQrIz-vEadYrZgOgntLAb5QtEkupkf35k,926
|
|
34
|
-
aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po,sha256=
|
|
34
|
+
aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po,sha256=4kPBaR5Cn6pIN1nGpsMlP3Ypi0P7kDuLi-QkR6e9DuI,12845
|
|
35
35
|
aa_intel_tool/locale/ru/LC_MESSAGES/django.mo,sha256=cCSOc2yqFfkri0YWXGCNfUGqaneRqzPcP-bZtWxXm9c,10447
|
|
36
|
-
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=
|
|
36
|
+
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=Ss2dz8RrWZQMGSvXR2VzgmjF7KjP9pSW9BUh_4qLiCo,20161
|
|
37
37
|
aa_intel_tool/locale/sk/LC_MESSAGES/django.mo,sha256=ag8xFgumlPADbLURJ5FQ4EARs6lIPpB4ulbuizC8J0I,558
|
|
38
|
-
aa_intel_tool/locale/sk/LC_MESSAGES/django.po,sha256=
|
|
38
|
+
aa_intel_tool/locale/sk/LC_MESSAGES/django.po,sha256=3iCW1_fpGcq2qep8-4WOG_N3yZdnzM8O7AxtV2LDEF8,12736
|
|
39
39
|
aa_intel_tool/locale/uk/LC_MESSAGES/django.mo,sha256=mNhp11QGDZuEZipt58h5cFa9BCvJWSY1p42S3DzLyS8,10130
|
|
40
|
-
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=
|
|
40
|
+
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=JhKuF2pY8cPmBXdJhULpqoi13Z5AYmP8R-4uSOuWxn8,19214
|
|
41
41
|
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=Y4eagMmuIQTfIEvSSgtu7yi7HuPYnwiiPpwVDei_wAg,2657
|
|
42
|
-
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256=
|
|
42
|
+
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256=juokezERaUi3Ex2N88X0wy-Id07m_LFjLDbkzsvtrTE,13769
|
|
43
43
|
aa_intel_tool/management/commands/aa_intel_tool_load_eve_types.py,sha256=cJx-nBapW3YQcExnKzwJSYbaNb1pjklbjTYJDV-oHb4,1796
|
|
44
44
|
aa_intel_tool/migrations/0001_initial.py,sha256=nwtThaFJ7wrOZld0MzQ-MLpHB9xG-SJOZPl8FbM8dFE,4339
|
|
45
45
|
aa_intel_tool/migrations/0002_alter_scan_raw_data.py,sha256=LDXPIxhCJ3QToQqmdyZubNEgiuGPsZZTBGKTOyApULw,405
|
|
46
46
|
aa_intel_tool/migrations/__init__.py,sha256=DlW5327gBRgSG2GG_T0E1NcpiTFtYs0Vty1fzj4eiPY,34
|
|
47
47
|
aa_intel_tool/parser/__init__.py,sha256=BAFdCEaeC0cmv74ZuZGZJCgJOiliMVBpgdQI63ABJ2U,30
|
|
48
|
-
aa_intel_tool/parser/general.py,sha256=
|
|
48
|
+
aa_intel_tool/parser/general.py,sha256=gg-WpCegIhI1jXRSLCz2wN6h4TMFvCa0Ie449iE-pXI,2107
|
|
49
49
|
aa_intel_tool/parser/helper/db.py,sha256=SlIfxgtJ-JGXcCDaV73LY5hIpcShgQ_8RbMbiHiVXFQ,819
|
|
50
50
|
aa_intel_tool/parser/module/chatlist.py,sha256=oWPBqJCcgLn77kYOLbPM6ofL9whBwnicK1-jVrJOQXo,9549
|
|
51
|
-
aa_intel_tool/parser/module/dscan.py,sha256=
|
|
51
|
+
aa_intel_tool/parser/module/dscan.py,sha256=dXPmYnWgA1812MZjP__XBDRFJzlx1lOAOPjXvV_RRTI,11275
|
|
52
52
|
aa_intel_tool/parser/module/fleetcomp.py,sha256=L88feS-fJmGX07Nb3avPeTs8hcQXxsk3lqqhjxXCSvw,6387
|
|
53
53
|
aa_intel_tool/scripts/drop_tables.sql,sha256=fJa_scRF95SxCmaMqFGzL4HhUwk5GN5cLexEbS_qwgw,192
|
|
54
54
|
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css,sha256=u7l3WdYxdRqY7XGQ2uOSEb_HoFcy3SXHYKBFDq1SQ-k,3729
|
|
@@ -111,11 +111,11 @@ aa_intel_tool/templates/aa_intel_tool/views/index.html,sha256=VoeKZahgcXHD3kXDLk
|
|
|
111
111
|
aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html,sha256=yAbGhtE7QwfxhWyyqMHOKEvQe44LCZZ7NLnVBr298AE,1839
|
|
112
112
|
aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html,sha256=dg07XT0G5MTUxLy1DPw5TFHnPa0YdVfgh4CIG0vqPd8,2316
|
|
113
113
|
aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html,sha256=KZDzzDPPGjXrFARKFyvnVvtmy0dnZcIQTKffEhOf5jg,2149
|
|
114
|
-
aa_intel_tool/tests/__init__.py,sha256=
|
|
115
|
-
aa_intel_tool/tests/test_access.py,sha256=
|
|
114
|
+
aa_intel_tool/tests/__init__.py,sha256=JIv98Cj2Fzvvt2UWYXOwOuzLgpXf53XW1s6QrVqnFFc,1194
|
|
115
|
+
aa_intel_tool/tests/test_access.py,sha256=Ygk8z7VbOfZ-2E4trmxMmaztDM3aT1X2SpGONOEVoP8,2406
|
|
116
116
|
aa_intel_tool/tests/test_admin.py,sha256=4fq5T9PvMeglTqqq5hEWu6tnBSjaD474vRU77Vx-sFk,2528
|
|
117
117
|
aa_intel_tool/tests/test_app_settings.py,sha256=iafiwPiFCQlgsu4taup9WURcwA3JkkjddwMEWehH7kI,8629
|
|
118
|
-
aa_intel_tool/tests/test_auth_hooks.py,sha256=
|
|
118
|
+
aa_intel_tool/tests/test_auth_hooks.py,sha256=m2N40-YOsb_LMzrdw8G5GSmDIjYQPhymh2McP1mDF2I,2110
|
|
119
119
|
aa_intel_tool/tests/test_helper_data_structures.py,sha256=amv5vkzvkgClLz2o-Z8q4w9ymPGrMAMzHuvEhMdd7YY,771
|
|
120
120
|
aa_intel_tool/tests/test_helper_eve_character.py,sha256=Qh-RjODLHm5CfCXgHgoI5u4Jc7bMTICIr8wmEKiq4_4,12348
|
|
121
121
|
aa_intel_tool/tests/test_helper_urls.py,sha256=OxPPr_k3jKfJuvo90QLPEZCiYu2bV8TIios7Ff6tylY,1875
|
|
@@ -139,7 +139,7 @@ aa_intel_tool/tests/test-data/fleetcomp.txt,sha256=xve1oVfrKyLZrFp3FdqDDvQuahRym
|
|
|
139
139
|
aa_intel_tool/views/__init__.py,sha256=zf5e30BdJ772oDJkQnBfFIi5a7-HEJByUIkv0iz3Kr8,29
|
|
140
140
|
aa_intel_tool/views/ajax.py,sha256=7xBsd0Eg6enDl7JeI9vNJXaF66lWjhStLfYdJGAobvM,911
|
|
141
141
|
aa_intel_tool/views/general.py,sha256=KB9McJzD36HZpNxj0BBPHC7m9gtM706n2Dep_ya-vJ4,4111
|
|
142
|
-
aa_intel_tool-2.13.
|
|
143
|
-
aa_intel_tool-2.13.
|
|
144
|
-
aa_intel_tool-2.13.
|
|
145
|
-
aa_intel_tool-2.13.
|
|
142
|
+
aa_intel_tool-2.13.1.dist-info/METADATA,sha256=ZSZTMg4RBmWz2tkak1Rt5xutjogyjmi3_Ne-UoGjtjg,55086
|
|
143
|
+
aa_intel_tool-2.13.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
144
|
+
aa_intel_tool-2.13.1.dist-info/licenses/LICENSE,sha256=UTib95uJWe2NQIG3TzU8-Hm-eaEZFqv9fqsjNT_xKWU,35151
|
|
145
|
+
aa_intel_tool-2.13.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|