aa-intel-tool 2.11.1__py3-none-any.whl → 2.12.0__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.
Files changed (60) hide show
  1. aa_intel_tool/__init__.py +1 -1
  2. aa_intel_tool/admin.py +1 -3
  3. aa_intel_tool/app_settings.py +109 -11
  4. aa_intel_tool/helper/eve_character.py +2 -4
  5. aa_intel_tool/helper/urls.py +20 -0
  6. aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +9 -9
  7. aa_intel_tool/locale/de/LC_MESSAGES/django.po +9 -9
  8. aa_intel_tool/locale/django.pot +10 -10
  9. aa_intel_tool/locale/es/LC_MESSAGES/django.po +9 -9
  10. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +9 -9
  11. aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +9 -9
  12. aa_intel_tool/locale/ja/LC_MESSAGES/django.mo +0 -0
  13. aa_intel_tool/locale/ja/LC_MESSAGES/django.po +46 -46
  14. aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +9 -9
  15. aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +9 -9
  16. aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +9 -9
  17. aa_intel_tool/locale/ru/LC_MESSAGES/django.po +9 -9
  18. aa_intel_tool/locale/sk/LC_MESSAGES/django.po +9 -9
  19. aa_intel_tool/locale/uk/LC_MESSAGES/django.po +9 -9
  20. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  21. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +16 -15
  22. aa_intel_tool/management/commands/aa_intel_tool_load_eve_types.py +2 -2
  23. aa_intel_tool/parser/general.py +2 -4
  24. aa_intel_tool/parser/module/chatlist.py +2 -2
  25. aa_intel_tool/parser/module/dscan.py +2 -2
  26. aa_intel_tool/parser/module/fleetcomp.py +2 -2
  27. aa_intel_tool/providers.py +43 -0
  28. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +5 -1
  29. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
  30. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
  31. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +2 -2
  32. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
  33. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map +1 -1
  34. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +6 -3
  35. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js +1 -1
  36. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map +1 -1
  37. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +2 -2
  38. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
  39. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
  40. aa_intel_tool/tasks.py +2 -4
  41. aa_intel_tool/templates/aa_intel_tool/base.html +6 -1
  42. aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html +1 -1
  43. aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html +1 -1
  44. aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html +1 -1
  45. aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html +1 -1
  46. aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html +1 -1
  47. aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html +1 -1
  48. aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html +1 -1
  49. aa_intel_tool/tests/test-data/fleetcomp.txt +1 -0
  50. aa_intel_tool/tests/test_access.py +1 -4
  51. aa_intel_tool/tests/test_app_settings.py +198 -1
  52. aa_intel_tool/tests/test_auth_hooks.py +1 -4
  53. aa_intel_tool/tests/test_helper_urls.py +70 -0
  54. aa_intel_tool/tests/test_providers.py +98 -0
  55. aa_intel_tool/tests/utils.py +68 -0
  56. aa_intel_tool/views/general.py +2 -4
  57. {aa_intel_tool-2.11.1.dist-info → aa_intel_tool-2.12.0.dist-info}/METADATA +1 -2
  58. {aa_intel_tool-2.11.1.dist-info → aa_intel_tool-2.12.0.dist-info}/RECORD +60 -56
  59. {aa_intel_tool-2.11.1.dist-info → aa_intel_tool-2.12.0.dist-info}/WHEEL +1 -1
  60. {aa_intel_tool-2.11.1.dist-info → aa_intel_tool-2.12.0.dist-info}/licenses/LICENSE +0 -0
aa_intel_tool/__init__.py CHANGED
@@ -5,6 +5,6 @@ App init
5
5
  # Django
6
6
  from django.utils.translation import gettext_lazy as _
7
7
 
8
- __version__ = "2.11.1"
8
+ __version__ = "2.12.0"
9
9
  __title__ = "Intel Parser"
10
10
  __title_translated__ = _("Intel Parser")
aa_intel_tool/admin.py CHANGED
@@ -7,10 +7,8 @@ from django.contrib import admin
7
7
  from django.utils import html, safestring
8
8
  from django.utils.translation import gettext_lazy as _
9
9
 
10
- # Alliance Auth (External Libs)
11
- from app_utils.urls import reverse_absolute
12
-
13
10
  # AA Intel Tool
11
+ from aa_intel_tool.helper.urls import reverse_absolute
14
12
  from aa_intel_tool.models import Scan
15
13
 
16
14
 
@@ -5,6 +5,7 @@ App settings
5
5
  # Standard Library
6
6
  from enum import IntEnum
7
7
  from re import RegexFlag
8
+ from typing import Any
8
9
 
9
10
  # Django
10
11
  from django.conf import settings
@@ -12,14 +13,111 @@ from django.conf import settings
12
13
  # Alliance Auth
13
14
  from allianceauth.services.hooks import get_extension_logger
14
15
 
15
- # Alliance Auth (External Libs)
16
- from app_utils.app_settings import clean_setting
17
- from app_utils.logging import LoggerAddTag
18
-
19
16
  # AA Intel Tool
20
17
  from aa_intel_tool import __title__
18
+ from aa_intel_tool.providers import AppLogger
19
+
20
+ logger = AppLogger(my_logger=get_extension_logger(name=__name__), prefix=__title__)
21
+
22
+
23
+ def _clean_setting( # pylint: disable=too-many-arguments,too-many-positional-arguments
24
+ name: str,
25
+ default_value: Any,
26
+ min_value: int | None = None,
27
+ max_value: int | None = None,
28
+ required_type: type | None = None,
29
+ choices: list | None = None,
30
+ ) -> Any:
31
+ """
32
+ Clean a setting from Django settings.
33
+
34
+ Will use default_value if setting is not defined.
35
+ Will use minimum or maximum value if respective boundary is exceeded.
36
+
37
+ :param name:
38
+ :type name:
39
+ :param default_value:
40
+ :type default_value:
41
+ :param min_value:
42
+ :type min_value:
43
+ :param max_value:
44
+ :type max_value:
45
+ :param required_type:
46
+ :type required_type:
47
+ :param choices:
48
+ :type choices:
49
+ :return:
50
+ :rtype:
51
+ """
21
52
 
22
- logger = LoggerAddTag(my_logger=get_extension_logger(name=__name__), prefix=__title__)
53
+ if default_value is None and not required_type:
54
+ raise ValueError("You must specify a required_type for None defaults")
55
+
56
+ required_type_2 = type(default_value) if required_type is None else required_type
57
+
58
+ if not isinstance(required_type_2, type):
59
+ raise TypeError("required_type must be a type when defined")
60
+
61
+ if min_value is None and issubclass(required_type_2, int):
62
+ min_value = 0
63
+
64
+ if issubclass(required_type_2, int) and default_value is not None:
65
+ if min_value is not None and default_value < min_value:
66
+ raise ValueError("default_value can not be below min_value")
67
+
68
+ if max_value is not None and default_value > max_value:
69
+ raise ValueError("default_value can not be above max_value")
70
+
71
+ if not hasattr(settings, name):
72
+ cleaned_value = default_value
73
+ else:
74
+ dirty_value = getattr(settings, name)
75
+
76
+ if dirty_value is None or (
77
+ isinstance(dirty_value, required_type_2)
78
+ and all(
79
+ (
80
+ min_value is None or dirty_value >= min_value,
81
+ max_value is None or dirty_value <= max_value,
82
+ choices is None or dirty_value in choices,
83
+ )
84
+ )
85
+ ):
86
+ cleaned_value = dirty_value
87
+ elif (
88
+ isinstance(dirty_value, required_type_2)
89
+ and min_value is not None
90
+ and dirty_value < min_value
91
+ ):
92
+ logger.warning(
93
+ "You setting for %s it not valid. Please correct it. "
94
+ "Using minimum value for now: %s",
95
+ name,
96
+ min_value,
97
+ )
98
+ cleaned_value = min_value
99
+ elif (
100
+ isinstance(dirty_value, required_type_2)
101
+ and max_value is not None
102
+ and dirty_value > max_value
103
+ ):
104
+ logger.warning(
105
+ "You setting for %s it not valid. Please correct it. "
106
+ "Using maximum value for now: %s",
107
+ name,
108
+ max_value,
109
+ )
110
+ cleaned_value = max_value
111
+ else:
112
+ logger.warning(
113
+ "You setting for %s it not valid. Please correct it. "
114
+ "Using default for now: %s",
115
+ name,
116
+ default_value,
117
+ )
118
+ cleaned_value = default_value
119
+
120
+ return cleaned_value
23
121
 
24
122
 
25
123
  class AppSettings:
@@ -29,19 +127,19 @@ class AppSettings:
29
127
 
30
128
  # Enable or disable the chat scan module
31
129
  # Disabled by default
32
- INTELTOOL_ENABLE_MODULE_CHATSCAN = clean_setting(
130
+ INTELTOOL_ENABLE_MODULE_CHATSCAN = _clean_setting(
33
131
  name="INTELTOOL_ENABLE_MODULE_CHATSCAN", default_value=False, required_type=bool
34
132
  )
35
133
 
36
134
  # Enable or disable the d-scan module
37
135
  # Enabled by default
38
- INTELTOOL_ENABLE_MODULE_DSCAN = clean_setting(
136
+ INTELTOOL_ENABLE_MODULE_DSCAN = _clean_setting(
39
137
  name="INTELTOOL_ENABLE_MODULE_DSCAN", default_value=True, required_type=bool
40
138
  )
41
139
 
42
140
  # Enable or disable the fleet composition module
43
141
  # Enabled by default
44
- INTELTOOL_ENABLE_MODULE_FLEETCOMP = clean_setting(
142
+ INTELTOOL_ENABLE_MODULE_FLEETCOMP = _clean_setting(
45
143
  name="INTELTOOL_ENABLE_MODULE_FLEETCOMP",
46
144
  default_value=True,
47
145
  required_type=bool,
@@ -50,20 +148,20 @@ class AppSettings:
50
148
  # Scan retention time
51
149
  # Sets the time in days for how long the scans will be kept in the database.
52
150
  # Set to 0 to keep scans indefinitely.
53
- INTELTOOL_SCAN_RETENTION_TIME = clean_setting(
151
+ INTELTOOL_SCAN_RETENTION_TIME = _clean_setting(
54
152
  name="INTELTOOL_SCAN_RETENTION_TIME", default_value=30, required_type=int
55
153
  )
56
154
 
57
155
  # Set the maximum number of pilots allowed per chat scan
58
156
  # Set to 0 for no limit.
59
- INTELTOOL_CHATSCAN_MAX_PILOTS = clean_setting(
157
+ INTELTOOL_CHATSCAN_MAX_PILOTS = _clean_setting(
60
158
  name="INTELTOOL_CHATSCAN_MAX_PILOTS", default_value=500, required_type=int
61
159
  )
62
160
 
63
161
  # Set the grid size for D-Scans.
64
162
  # This defines the size of the grid in which ships and
65
163
  # structure are considered to be "on grid"
66
- INTELTOOL_DSCAN_GRID_SIZE = clean_setting(
164
+ INTELTOOL_DSCAN_GRID_SIZE = _clean_setting(
67
165
  name="INTELTOOL_DSCAN_GRID_SIZE", default_value=10000, required_type=int
68
166
  )
69
167
 
@@ -16,13 +16,11 @@ from allianceauth.eveonline.models import (
16
16
  )
17
17
  from allianceauth.services.hooks import get_extension_logger
18
18
 
19
- # Alliance Auth (External Libs)
20
- from app_utils.logging import LoggerAddTag
21
-
22
19
  # AA Intel Tool
23
20
  from aa_intel_tool import __title__
21
+ from aa_intel_tool.providers import AppLogger
24
22
 
25
- logger = LoggerAddTag(my_logger=get_extension_logger(name=__name__), prefix=__title__)
23
+ logger = AppLogger(my_logger=get_extension_logger(name=__name__), prefix=__title__)
26
24
 
27
25
 
28
26
  def _create_alliance(alliance_ids: Iterable[int]) -> None:
@@ -0,0 +1,20 @@
1
+ """
2
+ URL helper functions for AA Forum.
3
+ """
4
+
5
+ # Standard Library
6
+ from urllib.parse import urljoin
7
+
8
+ # Django
9
+ from django.conf import settings
10
+ from django.urls import reverse
11
+
12
+
13
+ def reverse_absolute(viewname: str, args: list | None = None) -> str:
14
+ """
15
+ Return absolute URL for a view name.
16
+
17
+ Similar to Django's ``reverse()``, but returns an absolute URL.
18
+ """
19
+
20
+ return urljoin(base=settings.SITE_URL, url=reverse(viewname=viewname, args=args))
@@ -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: 2025-11-10 01:52+0100\n"
9
+ "POT-Creation-Date: 2025-12-02 06: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"
@@ -26,15 +26,15 @@ msgstr ""
26
26
  msgid "Intel Parser"
27
27
  msgstr ""
28
28
 
29
- #: aa_intel_tool/admin.py:79 aa_intel_tool/models.py:46
29
+ #: aa_intel_tool/admin.py:77 aa_intel_tool/models.py:46
30
30
  msgid "Scan type"
31
31
  msgstr ""
32
32
 
33
- #: aa_intel_tool/admin.py:94
33
+ #: aa_intel_tool/admin.py:92
34
34
  msgid "Open in a new browser tab"
35
35
  msgstr ""
36
36
 
37
- #: aa_intel_tool/admin.py:100
37
+ #: aa_intel_tool/admin.py:98
38
38
  msgid "Raw data"
39
39
  msgstr ""
40
40
 
@@ -152,11 +152,11 @@ msgstr ""
152
152
  msgid "Scan data"
153
153
  msgstr ""
154
154
 
155
- #: aa_intel_tool/parser/general.py:47
155
+ #: aa_intel_tool/parser/general.py:45
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:65
159
+ #: aa_intel_tool/parser/general.py:63
160
160
  msgid "No data to parse …"
161
161
  msgstr ""
162
162
 
@@ -408,16 +408,16 @@ msgstr ""
408
408
  msgid "Participation details"
409
409
  msgstr ""
410
410
 
411
- #: aa_intel_tool/views/general.py:56
411
+ #: aa_intel_tool/views/general.py:54
412
412
  #, python-brace-format
413
413
  msgid "The provided data could not be parsed. ({exc})"
414
414
  msgstr ""
415
415
 
416
- #: aa_intel_tool/views/general.py:68
416
+ #: aa_intel_tool/views/general.py:66
417
417
  #, python-brace-format
418
418
  msgid "(System Error) Something unexpected happened. ({exc})"
419
419
  msgstr ""
420
420
 
421
- #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
421
+ #: aa_intel_tool/views/general.py:107 aa_intel_tool/views/general.py:137
422
422
  msgid "The scan you were looking for could not be found."
423
423
  msgstr ""
@@ -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: 2025-11-10 01:52+0100\n"
9
+ "POT-Creation-Date: 2025-12-02 06:23+0100\n"
10
10
  "PO-Revision-Date: 2025-10-21 08:59+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"
@@ -26,15 +26,15 @@ msgstr ""
26
26
  msgid "Intel Parser"
27
27
  msgstr "Intel Parser"
28
28
 
29
- #: aa_intel_tool/admin.py:79 aa_intel_tool/models.py:46
29
+ #: aa_intel_tool/admin.py:77 aa_intel_tool/models.py:46
30
30
  msgid "Scan type"
31
31
  msgstr "Scantyp"
32
32
 
33
- #: aa_intel_tool/admin.py:94
33
+ #: aa_intel_tool/admin.py:92
34
34
  msgid "Open in a new browser tab"
35
35
  msgstr "In einem neuen Browser-Tab öffnen"
36
36
 
37
- #: aa_intel_tool/admin.py:100
37
+ #: aa_intel_tool/admin.py:98
38
38
  msgid "Raw data"
39
39
  msgstr "Rohdaten"
40
40
 
@@ -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:47
155
+ #: aa_intel_tool/parser/general.py:45
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:65
159
+ #: aa_intel_tool/parser/general.py:63
160
160
  msgid "No data to parse …"
161
161
  msgstr "Keine Daten zum Parsen …"
162
162
 
@@ -402,17 +402,17 @@ msgstr "System"
402
402
  msgid "Participation details"
403
403
  msgstr "Teilnahmedetails"
404
404
 
405
- #: aa_intel_tool/views/general.py:56
405
+ #: aa_intel_tool/views/general.py:54
406
406
  #, python-brace-format
407
407
  msgid "The provided data could not be parsed. ({exc})"
408
408
  msgstr "Die bereitgestellten Daten konnten nicht analysiert werden. ({exc})"
409
409
 
410
- #: aa_intel_tool/views/general.py:68
410
+ #: aa_intel_tool/views/general.py:66
411
411
  #, python-brace-format
412
412
  msgid "(System Error) Something unexpected happened. ({exc})"
413
413
  msgstr "(Systemfehler) Es ist etwas Unerwartetes passiert. ({exc})"
414
414
 
415
- #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
415
+ #: aa_intel_tool/views/general.py:107 aa_intel_tool/views/general.py:137
416
416
  msgid "The scan you were looking for could not be found."
417
417
  msgstr "Der gesuchte Scan konnte nicht gefunden werden."
418
418
 
@@ -6,9 +6,9 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: AA Intel Tool 2.11.1\n"
9
+ "Project-Id-Version: AA Intel Tool 2.12.0\n"
10
10
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
11
- "POT-Creation-Date: 2025-11-10 01:52+0100\n"
11
+ "POT-Creation-Date: 2025-12-02 06: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"
@@ -27,15 +27,15 @@ msgstr ""
27
27
  msgid "Intel Parser"
28
28
  msgstr ""
29
29
 
30
- #: aa_intel_tool/admin.py:79 aa_intel_tool/models.py:46
30
+ #: aa_intel_tool/admin.py:77 aa_intel_tool/models.py:46
31
31
  msgid "Scan type"
32
32
  msgstr ""
33
33
 
34
- #: aa_intel_tool/admin.py:94
34
+ #: aa_intel_tool/admin.py:92
35
35
  msgid "Open in a new browser tab"
36
36
  msgstr ""
37
37
 
38
- #: aa_intel_tool/admin.py:100
38
+ #: aa_intel_tool/admin.py:98
39
39
  msgid "Raw data"
40
40
  msgstr ""
41
41
 
@@ -153,12 +153,12 @@ msgstr ""
153
153
  msgid "Scan data"
154
154
  msgstr ""
155
155
 
156
- #: aa_intel_tool/parser/general.py:47
156
+ #: aa_intel_tool/parser/general.py:45
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:65
161
+ #: aa_intel_tool/parser/general.py:63
162
162
  msgid "No data to parse …"
163
163
  msgstr ""
164
164
 
@@ -415,16 +415,16 @@ msgstr ""
415
415
  msgid "Participation details"
416
416
  msgstr ""
417
417
 
418
- #: aa_intel_tool/views/general.py:56
418
+ #: aa_intel_tool/views/general.py:54
419
419
  #, python-brace-format
420
420
  msgid "The provided data could not be parsed. ({exc})"
421
421
  msgstr ""
422
422
 
423
- #: aa_intel_tool/views/general.py:68
423
+ #: aa_intel_tool/views/general.py:66
424
424
  #, python-brace-format
425
425
  msgid "(System Error) Something unexpected happened. ({exc})"
426
426
  msgstr ""
427
427
 
428
- #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
428
+ #: aa_intel_tool/views/general.py:107 aa_intel_tool/views/general.py:137
429
429
  msgid "The scan you were looking for could not be found."
430
430
  msgstr ""
@@ -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: 2025-11-10 01:52+0100\n"
11
+ "POT-Creation-Date: 2025-12-02 06: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"
@@ -28,15 +28,15 @@ msgstr ""
28
28
  msgid "Intel Parser"
29
29
  msgstr "Analizador inteligencia"
30
30
 
31
- #: aa_intel_tool/admin.py:79 aa_intel_tool/models.py:46
31
+ #: aa_intel_tool/admin.py:77 aa_intel_tool/models.py:46
32
32
  msgid "Scan type"
33
33
  msgstr "Tipo de escaneo"
34
34
 
35
- #: aa_intel_tool/admin.py:94
35
+ #: aa_intel_tool/admin.py:92
36
36
  msgid "Open in a new browser tab"
37
37
  msgstr "Abrir en una nueva pestaña del navegador"
38
38
 
39
- #: aa_intel_tool/admin.py:100
39
+ #: aa_intel_tool/admin.py:98
40
40
  msgid "Raw data"
41
41
  msgstr "datos RAW"
42
42
 
@@ -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:47
167
+ #: aa_intel_tool/parser/general.py:45
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:65
171
+ #: aa_intel_tool/parser/general.py:63
172
172
  msgid "No data to parse …"
173
173
  msgstr ""
174
174
 
@@ -416,17 +416,17 @@ msgstr "Sistema"
416
416
  msgid "Participation details"
417
417
  msgstr ""
418
418
 
419
- #: aa_intel_tool/views/general.py:56
419
+ #: aa_intel_tool/views/general.py:54
420
420
  #, python-brace-format
421
421
  msgid "The provided data could not be parsed. ({exc})"
422
422
  msgstr ""
423
423
 
424
- #: aa_intel_tool/views/general.py:68
424
+ #: aa_intel_tool/views/general.py:66
425
425
  #, python-brace-format
426
426
  msgid "(System Error) Something unexpected happened. ({exc})"
427
427
  msgstr ""
428
428
 
429
- #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
429
+ #: aa_intel_tool/views/general.py:107 aa_intel_tool/views/general.py:137
430
430
  msgid "The scan you were looking for could not be found."
431
431
  msgstr ""
432
432
 
@@ -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: 2025-11-10 01:52+0100\n"
13
+ "POT-Creation-Date: 2025-12-02 06: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"
@@ -30,15 +30,15 @@ msgstr ""
30
30
  msgid "Intel Parser"
31
31
  msgstr "Analyseur Intel"
32
32
 
33
- #: aa_intel_tool/admin.py:79 aa_intel_tool/models.py:46
33
+ #: aa_intel_tool/admin.py:77 aa_intel_tool/models.py:46
34
34
  msgid "Scan type"
35
35
  msgstr "Type de scan"
36
36
 
37
- #: aa_intel_tool/admin.py:94
37
+ #: aa_intel_tool/admin.py:92
38
38
  msgid "Open in a new browser tab"
39
39
  msgstr "Ouvrir dans un nouvel onglet"
40
40
 
41
- #: aa_intel_tool/admin.py:100
41
+ #: aa_intel_tool/admin.py:98
42
42
  msgid "Raw data"
43
43
  msgstr "Données brute"
44
44
 
@@ -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:47
163
+ #: aa_intel_tool/parser/general.py:45
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:65
167
+ #: aa_intel_tool/parser/general.py:63
168
168
  msgid "No data to parse …"
169
169
  msgstr ""
170
170
 
@@ -414,19 +414,19 @@ msgstr "Système"
414
414
  msgid "Participation details"
415
415
  msgstr "Détails de la participation"
416
416
 
417
- #: aa_intel_tool/views/general.py:56
417
+ #: aa_intel_tool/views/general.py:54
418
418
  #, fuzzy, python-brace-format
419
419
  #| msgid "The provided data could not be parsed."
420
420
  msgid "The provided data could not be parsed. ({exc})"
421
421
  msgstr "Les données fournies n'ont pas pu être analysées."
422
422
 
423
- #: aa_intel_tool/views/general.py:68
423
+ #: aa_intel_tool/views/general.py:66
424
424
  #, fuzzy, python-brace-format
425
425
  #| msgid "(System Error) Something unexpected happened."
426
426
  msgid "(System Error) Something unexpected happened. ({exc})"
427
427
  msgstr "(System Error) un imprévu est arrivé."
428
428
 
429
- #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
429
+ #: aa_intel_tool/views/general.py:107 aa_intel_tool/views/general.py:137
430
430
  #, fuzzy
431
431
  msgid "The scan you were looking for could not be found."
432
432
  msgstr "Les scans que vous cherchez n'ont pas été trouvés."
@@ -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: 2025-11-10 01:52+0100\n"
10
+ "POT-Creation-Date: 2025-12-02 06: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"
@@ -27,15 +27,15 @@ msgstr ""
27
27
  msgid "Intel Parser"
28
28
  msgstr ""
29
29
 
30
- #: aa_intel_tool/admin.py:79 aa_intel_tool/models.py:46
30
+ #: aa_intel_tool/admin.py:77 aa_intel_tool/models.py:46
31
31
  msgid "Scan type"
32
32
  msgstr ""
33
33
 
34
- #: aa_intel_tool/admin.py:94
34
+ #: aa_intel_tool/admin.py:92
35
35
  msgid "Open in a new browser tab"
36
36
  msgstr ""
37
37
 
38
- #: aa_intel_tool/admin.py:100
38
+ #: aa_intel_tool/admin.py:98
39
39
  msgid "Raw data"
40
40
  msgstr ""
41
41
 
@@ -153,11 +153,11 @@ msgstr ""
153
153
  msgid "Scan data"
154
154
  msgstr ""
155
155
 
156
- #: aa_intel_tool/parser/general.py:47
156
+ #: aa_intel_tool/parser/general.py:45
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:65
160
+ #: aa_intel_tool/parser/general.py:63
161
161
  msgid "No data to parse …"
162
162
  msgstr ""
163
163
 
@@ -403,16 +403,16 @@ msgstr ""
403
403
  msgid "Participation details"
404
404
  msgstr ""
405
405
 
406
- #: aa_intel_tool/views/general.py:56
406
+ #: aa_intel_tool/views/general.py:54
407
407
  #, python-brace-format
408
408
  msgid "The provided data could not be parsed. ({exc})"
409
409
  msgstr ""
410
410
 
411
- #: aa_intel_tool/views/general.py:68
411
+ #: aa_intel_tool/views/general.py:66
412
412
  #, python-brace-format
413
413
  msgid "(System Error) Something unexpected happened. ({exc})"
414
414
  msgstr ""
415
415
 
416
- #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
416
+ #: aa_intel_tool/views/general.py:107 aa_intel_tool/views/general.py:137
417
417
  msgid "The scan you were looking for could not be found."
418
418
  msgstr ""