aa-intel-tool 2.6.3__py3-none-any.whl → 2.7.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.
Files changed (43) hide show
  1. aa_intel_tool/__init__.py +1 -1
  2. aa_intel_tool/constants.py +0 -17
  3. aa_intel_tool/exceptions.py +14 -4
  4. aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +15 -12
  5. aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
  6. aa_intel_tool/locale/de/LC_MESSAGES/django.po +17 -14
  7. aa_intel_tool/locale/django.pot +16 -13
  8. aa_intel_tool/locale/es/LC_MESSAGES/django.po +17 -12
  9. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +15 -12
  10. aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +15 -12
  11. aa_intel_tool/locale/ja/LC_MESSAGES/django.po +17 -12
  12. aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +17 -12
  13. aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +15 -12
  14. aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +15 -12
  15. aa_intel_tool/locale/ru/LC_MESSAGES/django.po +17 -12
  16. aa_intel_tool/locale/sk/LC_MESSAGES/django.po +15 -12
  17. aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
  18. aa_intel_tool/locale/uk/LC_MESSAGES/django.po +20 -21
  19. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +17 -12
  20. aa_intel_tool/parser/general.py +5 -3
  21. aa_intel_tool/parser/module/chatlist.py +6 -4
  22. aa_intel_tool/parser/module/dscan.py +1 -1
  23. aa_intel_tool/parser/module/fleetcomp.py +1 -1
  24. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-highlight-js.html +2 -2
  25. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html +2 -2
  26. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-css.html +2 -2
  27. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-highlight-js.html +2 -2
  28. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-js.html +2 -2
  29. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomp-js.html +2 -2
  30. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomposition-highlight-js.html +2 -2
  31. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html +2 -2
  32. aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-scan-result-common-js.html +2 -2
  33. aa_intel_tool/templates/aa_intel_tool/views/index.html +0 -7
  34. aa_intel_tool/tests/test_access.py +1 -7
  35. aa_intel_tool/tests/test_auth_hooks.py +1 -7
  36. {aa_intel_tool-2.6.3.dist-info → aa_intel_tool-2.7.1.dist-info}/METADATA +1 -1
  37. {aa_intel_tool-2.6.3.dist-info → aa_intel_tool-2.7.1.dist-info}/RECORD +39 -43
  38. aa_intel_tool/helper/static_files.py +0 -42
  39. aa_intel_tool/templatetags/__init__.py +0 -3
  40. aa_intel_tool/templatetags/aa_intel_tool.py +0 -88
  41. aa_intel_tool/tests/test_templatetags.py +0 -103
  42. {aa_intel_tool-2.6.3.dist-info → aa_intel_tool-2.7.1.dist-info}/WHEEL +0 -0
  43. {aa_intel_tool-2.6.3.dist-info → aa_intel_tool-2.7.1.dist-info}/licenses/LICENSE +0 -0
aa_intel_tool/__init__.py CHANGED
@@ -5,5 +5,5 @@ App init
5
5
  # Django
6
6
  from django.utils.translation import gettext_lazy as _
7
7
 
8
- __version__ = "2.6.3"
8
+ __version__ = "2.7.1"
9
9
  __title__ = _("Intel Parser")
@@ -3,20 +3,15 @@ App constants
3
3
  """
4
4
 
5
5
  # Standard Library
6
- import os
7
6
  import re
8
7
 
9
8
  # Django
10
9
  from django.utils.translation import gettext_lazy as _
11
10
 
12
- # Alliance Auth
13
- from esi import __version__ as esi_version
14
-
15
11
  # AA Intel Tool
16
12
  import aa_intel_tool.parser.module.chatlist
17
13
  import aa_intel_tool.parser.module.dscan
18
14
  import aa_intel_tool.parser.module.fleetcomp
19
- from aa_intel_tool import __version__
20
15
 
21
16
  # All internal URLs need to start with this prefix
22
17
  INTERNAL_URL_PREFIX = "-"
@@ -76,15 +71,3 @@ SUPPORTED_INTEL_TYPES = {
76
71
  "template": "aa_intel_tool/views/scan/fleetcomp.html",
77
72
  },
78
73
  }
79
-
80
-
81
- # Building our user agent for ESI calls
82
- APP_NAME = "aa-intel-tool"
83
- PACKAGE_NAME = "aa_intel_tool"
84
- APP_VERBOSE_NAME = "AA Intel Tool"
85
- APP_VERBOSE_NAME_USERAGENT = "AA-Intel-Tool"
86
- GITHUB_URL = f"https://github.com/ppfeufer/{APP_NAME}"
87
- USER_AGENT = f"{APP_VERBOSE_NAME_USERAGENT}/{__version__} (+{GITHUB_URL}) Django-ESI/{esi_version}"
88
-
89
- APP_BASE_DIR = os.path.join(os.path.dirname(__file__))
90
- APP_STATIC_DIR = os.path.join(APP_BASE_DIR, "static", PACKAGE_NAME)
@@ -25,12 +25,22 @@ class ParserError(AaIntelToolException):
25
25
  @property
26
26
  def message(self) -> str:
27
27
  """
28
- Error message.
28
+ Message of the error.
29
+
30
+ :return:
31
+ :rtype:
29
32
  """
30
33
 
31
34
  return self._message
32
35
 
33
36
  def __str__(self) -> str:
34
- return str(_("A parser error occurred » {message}")).format(
35
- message=self.message
36
- )
37
+ """
38
+ String representation of the error.
39
+
40
+ :return:
41
+ :rtype:
42
+ """
43
+
44
+ message = self.message if self.message else _("Unknown parser error")
45
+
46
+ return str(_(f"A parser error occurred » {message}"))
@@ -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-05-05 22:48+0200\n"
9
+ "POT-Creation-Date: 2025-07-08 12:13+0200\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"
@@ -20,7 +20,6 @@ msgstr ""
20
20
  #: aa_intel_tool/__init__.py:9
21
21
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
23
- #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
24
23
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
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
@@ -45,22 +44,26 @@ msgstr ""
45
44
  msgid "Intel Parser v{__version__}"
46
45
  msgstr ""
47
46
 
48
- #: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
47
+ #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
49
48
  msgid "Chat list"
50
49
  msgstr ""
51
50
 
52
- #: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
51
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
53
52
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
54
53
  msgid "D-Scan"
55
54
  msgstr ""
56
55
 
57
- #: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
56
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
58
57
  #: aa_intel_tool/models.py:123
59
58
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
60
59
  msgid "Fleet composition"
61
60
  msgstr ""
62
61
 
63
- #: aa_intel_tool/exceptions.py:34
62
+ #: aa_intel_tool/exceptions.py:44
63
+ msgid "Unknown parser error"
64
+ msgstr ""
65
+
66
+ #: aa_intel_tool/exceptions.py:46
64
67
  #, python-brace-format
65
68
  msgid "A parser error occurred » {message}"
66
69
  msgstr ""
@@ -155,27 +158,27 @@ msgstr ""
155
158
  msgid "Scan data"
156
159
  msgstr ""
157
160
 
158
- #: aa_intel_tool/parser/general.py:46
161
+ #: aa_intel_tool/parser/general.py:47
159
162
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
160
163
  msgstr ""
161
164
 
162
- #: aa_intel_tool/parser/general.py:63
165
+ #: aa_intel_tool/parser/general.py:65
163
166
  msgid "No data to parse …"
164
167
  msgstr ""
165
168
 
166
- #: aa_intel_tool/parser/module/chatlist.py:60
169
+ #: aa_intel_tool/parser/module/chatlist.py:61
167
170
  msgid "Something went wrong while fetching the character information from ESI."
168
171
  msgstr ""
169
172
 
170
- #: aa_intel_tool/parser/module/chatlist.py:67
173
+ #: aa_intel_tool/parser/module/chatlist.py:69
171
174
  msgid "Character unknown to ESI."
172
175
  msgstr ""
173
176
 
174
- #: aa_intel_tool/parser/module/chatlist.py:256
177
+ #: aa_intel_tool/parser/module/chatlist.py:258
175
178
  msgid "The chat list module is currently disabled."
176
179
  msgstr ""
177
180
 
178
- #: aa_intel_tool/parser/module/chatlist.py:275
181
+ #: aa_intel_tool/parser/module/chatlist.py:277
179
182
  #, python-brace-format
180
183
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
181
184
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
@@ -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: 2025-05-05 22:48+0200\n"
10
- "PO-Revision-Date: 2025-05-02 17:24+0000\n"
9
+ "POT-Creation-Date: 2025-07-08 12:13+0200\n"
10
+ "PO-Revision-Date: 2025-06-27 08:09+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,12 +15,11 @@ 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.11.1\n"
18
+ "X-Generator: Weblate 5.12.2\n"
19
19
 
20
20
  #: aa_intel_tool/__init__.py:9
21
21
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
23
- #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
24
23
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
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
@@ -45,22 +44,26 @@ msgstr "Rohdaten"
45
44
  msgid "Intel Parser v{__version__}"
46
45
  msgstr "Intel Parser v{__version__}"
47
46
 
48
- #: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
47
+ #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
49
48
  msgid "Chat list"
50
49
  msgstr "Chatliste"
51
50
 
52
- #: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
51
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
53
52
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
54
53
  msgid "D-Scan"
55
54
  msgstr "D-Scan"
56
55
 
57
- #: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
56
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
58
57
  #: aa_intel_tool/models.py:123
59
58
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
60
59
  msgid "Fleet composition"
61
60
  msgstr "Flottenzusammensetzung"
62
61
 
63
- #: aa_intel_tool/exceptions.py:34
62
+ #: aa_intel_tool/exceptions.py:44
63
+ msgid "Unknown parser error"
64
+ msgstr "Unbekannter Parserfehler"
65
+
66
+ #: aa_intel_tool/exceptions.py:46
64
67
  #, python-brace-format
65
68
  msgid "A parser error occurred » {message}"
66
69
  msgstr "Ein Parserfehler ist aufgetreten » {message}"
@@ -155,27 +158,27 @@ msgstr "Verarbeitete Scandaten"
155
158
  msgid "Scan data"
156
159
  msgstr "Scandaten"
157
160
 
158
- #: aa_intel_tool/parser/general.py:46
161
+ #: aa_intel_tool/parser/general.py:47
159
162
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
160
163
  msgstr "Kein passender Parser gefunden. Die Eingabe ist kein unterstützter Inteltyp oder fehlerhaft …"
161
164
 
162
- #: aa_intel_tool/parser/general.py:63
165
+ #: aa_intel_tool/parser/general.py:65
163
166
  msgid "No data to parse …"
164
167
  msgstr "Keine Daten zum Parsen …"
165
168
 
166
- #: aa_intel_tool/parser/module/chatlist.py:60
169
+ #: aa_intel_tool/parser/module/chatlist.py:61
167
170
  msgid "Something went wrong while fetching the character information from ESI."
168
171
  msgstr "Beim Abrufen der Charakterinformationen von ESI ist ein Fehler aufgetreten."
169
172
 
170
- #: aa_intel_tool/parser/module/chatlist.py:67
173
+ #: aa_intel_tool/parser/module/chatlist.py:69
171
174
  msgid "Character unknown to ESI."
172
175
  msgstr "Charakter ist in ESI nicht bekannt."
173
176
 
174
- #: aa_intel_tool/parser/module/chatlist.py:256
177
+ #: aa_intel_tool/parser/module/chatlist.py:258
175
178
  msgid "The chat list module is currently disabled."
176
179
  msgstr "Das Chatlistenmodul ist derzeit deaktiviert."
177
180
 
178
- #: aa_intel_tool/parser/module/chatlist.py:275
181
+ #: aa_intel_tool/parser/module/chatlist.py:277
179
182
  #, python-brace-format
180
183
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
181
184
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
@@ -6,9 +6,9 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: AA Intel Tool 2.6.3\n"
9
+ "Project-Id-Version: AA Intel Tool 2.7.1\n"
10
10
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
11
- "POT-Creation-Date: 2025-05-05 22:48+0200\n"
11
+ "POT-Creation-Date: 2025-07-08 12:13+0200\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"
@@ -21,7 +21,6 @@ msgstr ""
21
21
  #: aa_intel_tool/__init__.py:9
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
23
23
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
24
- #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
25
24
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
26
25
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
27
26
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html:5
@@ -46,22 +45,26 @@ msgstr ""
46
45
  msgid "Intel Parser v{__version__}"
47
46
  msgstr ""
48
47
 
49
- #: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
48
+ #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
50
49
  msgid "Chat list"
51
50
  msgstr ""
52
51
 
53
- #: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
52
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
54
53
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
55
54
  msgid "D-Scan"
56
55
  msgstr ""
57
56
 
58
- #: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
57
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
59
58
  #: aa_intel_tool/models.py:123
60
59
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
61
60
  msgid "Fleet composition"
62
61
  msgstr ""
63
62
 
64
- #: aa_intel_tool/exceptions.py:34
63
+ #: aa_intel_tool/exceptions.py:44
64
+ msgid "Unknown parser error"
65
+ msgstr ""
66
+
67
+ #: aa_intel_tool/exceptions.py:46
65
68
  #, python-brace-format
66
69
  msgid "A parser error occurred » {message}"
67
70
  msgstr ""
@@ -156,28 +159,28 @@ msgstr ""
156
159
  msgid "Scan data"
157
160
  msgstr ""
158
161
 
159
- #: aa_intel_tool/parser/general.py:46
162
+ #: aa_intel_tool/parser/general.py:47
160
163
  msgid ""
161
164
  "No suitable parser found. Input is not a supported intel type or malformed …"
162
165
  msgstr ""
163
166
 
164
- #: aa_intel_tool/parser/general.py:63
167
+ #: aa_intel_tool/parser/general.py:65
165
168
  msgid "No data to parse …"
166
169
  msgstr ""
167
170
 
168
- #: aa_intel_tool/parser/module/chatlist.py:60
171
+ #: aa_intel_tool/parser/module/chatlist.py:61
169
172
  msgid "Something went wrong while fetching the character information from ESI."
170
173
  msgstr ""
171
174
 
172
- #: aa_intel_tool/parser/module/chatlist.py:67
175
+ #: aa_intel_tool/parser/module/chatlist.py:69
173
176
  msgid "Character unknown to ESI."
174
177
  msgstr ""
175
178
 
176
- #: aa_intel_tool/parser/module/chatlist.py:256
179
+ #: aa_intel_tool/parser/module/chatlist.py:258
177
180
  msgid "The chat list module is currently disabled."
178
181
  msgstr ""
179
182
 
180
- #: aa_intel_tool/parser/module/chatlist.py:275
183
+ #: aa_intel_tool/parser/module/chatlist.py:277
181
184
  #, python-brace-format
182
185
  msgid ""
183
186
  "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot "
@@ -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-05-05 22:48+0200\n"
11
+ "POT-Creation-Date: 2025-07-08 12:13+0200\n"
12
12
  "PO-Revision-Date: 2024-12-02 17:40+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"
@@ -22,7 +22,6 @@ msgstr ""
22
22
  #: aa_intel_tool/__init__.py:9
23
23
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
24
24
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
25
- #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
26
25
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
27
26
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
28
27
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html:5
@@ -47,24 +46,30 @@ msgstr "datos RAW"
47
46
  msgid "Intel Parser v{__version__}"
48
47
  msgstr "Herramienta de Intel v{__version__}"
49
48
 
50
- #: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
49
+ #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
51
50
  #, fuzzy
52
51
  #| msgid "Chat List"
53
52
  msgid "Chat list"
54
53
  msgstr "Lista de Chat"
55
54
 
56
- #: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
55
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
57
56
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
58
57
  msgid "D-Scan"
59
58
  msgstr "D-Scan"
60
59
 
61
- #: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
60
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
62
61
  #: aa_intel_tool/models.py:123
63
62
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
64
63
  msgid "Fleet composition"
65
64
  msgstr "Composición de Flota"
66
65
 
67
- #: aa_intel_tool/exceptions.py:34
66
+ #: aa_intel_tool/exceptions.py:44
67
+ #, fuzzy
68
+ #| msgid "A parser error occurred » {message}"
69
+ msgid "Unknown parser error"
70
+ msgstr "Se produjo un error del analizador » {message}"
71
+
72
+ #: aa_intel_tool/exceptions.py:46
68
73
  #, python-brace-format
69
74
  msgid "A parser error occurred » {message}"
70
75
  msgstr "Se produjo un error del analizador » {message}"
@@ -167,27 +172,27 @@ msgstr "Datos de escaneo no válidos"
167
172
  msgid "Scan data"
168
173
  msgstr "Datos de escaneo no válidos"
169
174
 
170
- #: aa_intel_tool/parser/general.py:46
175
+ #: aa_intel_tool/parser/general.py:47
171
176
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
172
177
  msgstr ""
173
178
 
174
- #: aa_intel_tool/parser/general.py:63
179
+ #: aa_intel_tool/parser/general.py:65
175
180
  msgid "No data to parse …"
176
181
  msgstr ""
177
182
 
178
- #: aa_intel_tool/parser/module/chatlist.py:60
183
+ #: aa_intel_tool/parser/module/chatlist.py:61
179
184
  msgid "Something went wrong while fetching the character information from ESI."
180
185
  msgstr ""
181
186
 
182
- #: aa_intel_tool/parser/module/chatlist.py:67
187
+ #: aa_intel_tool/parser/module/chatlist.py:69
183
188
  msgid "Character unknown to ESI."
184
189
  msgstr ""
185
190
 
186
- #: aa_intel_tool/parser/module/chatlist.py:256
191
+ #: aa_intel_tool/parser/module/chatlist.py:258
187
192
  msgid "The chat list module is currently disabled."
188
193
  msgstr ""
189
194
 
190
- #: aa_intel_tool/parser/module/chatlist.py:275
195
+ #: aa_intel_tool/parser/module/chatlist.py:277
191
196
  #, python-brace-format
192
197
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
193
198
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
@@ -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: 2025-05-05 22:48+0200\n"
12
+ "POT-Creation-Date: 2025-07-08 12:13+0200\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: French <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/fr/>\n"
@@ -23,7 +23,6 @@ msgstr ""
23
23
  #: aa_intel_tool/__init__.py:9
24
24
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
25
25
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
26
- #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
27
26
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
28
27
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
29
28
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html:5
@@ -48,22 +47,26 @@ msgstr "Données brute"
48
47
  msgid "Intel Parser v{__version__}"
49
48
  msgstr ""
50
49
 
51
- #: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
50
+ #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
52
51
  msgid "Chat list"
53
52
  msgstr "Liste de conversation"
54
53
 
55
- #: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
54
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
56
55
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
57
56
  msgid "D-Scan"
58
57
  msgstr "Scanner directionnel"
59
58
 
60
- #: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
59
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
61
60
  #: aa_intel_tool/models.py:123
62
61
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
63
62
  msgid "Fleet composition"
64
63
  msgstr "Composition de flotte"
65
64
 
66
- #: aa_intel_tool/exceptions.py:34
65
+ #: aa_intel_tool/exceptions.py:44
66
+ msgid "Unknown parser error"
67
+ msgstr ""
68
+
69
+ #: aa_intel_tool/exceptions.py:46
67
70
  #, python-brace-format
68
71
  msgid "A parser error occurred » {message}"
69
72
  msgstr ""
@@ -162,27 +165,27 @@ msgstr "Données du scanner transformées"
162
165
  msgid "Scan data"
163
166
  msgstr "Données du scanner"
164
167
 
165
- #: aa_intel_tool/parser/general.py:46
168
+ #: aa_intel_tool/parser/general.py:47
166
169
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
167
170
  msgstr ""
168
171
 
169
- #: aa_intel_tool/parser/general.py:63
172
+ #: aa_intel_tool/parser/general.py:65
170
173
  msgid "No data to parse …"
171
174
  msgstr ""
172
175
 
173
- #: aa_intel_tool/parser/module/chatlist.py:60
176
+ #: aa_intel_tool/parser/module/chatlist.py:61
174
177
  msgid "Something went wrong while fetching the character information from ESI."
175
178
  msgstr "Quelque chose s'est mal passé lors de la recherche d'information sur le personnage depuis l'ESI."
176
179
 
177
- #: aa_intel_tool/parser/module/chatlist.py:67
180
+ #: aa_intel_tool/parser/module/chatlist.py:69
178
181
  msgid "Character unknown to ESI."
179
182
  msgstr "Personnage inconnu de l'ESI."
180
183
 
181
- #: aa_intel_tool/parser/module/chatlist.py:256
184
+ #: aa_intel_tool/parser/module/chatlist.py:258
182
185
  msgid "The chat list module is currently disabled."
183
186
  msgstr "Le module de liste de discussion est désactivé pour le moment."
184
187
 
185
- #: aa_intel_tool/parser/module/chatlist.py:275
188
+ #: aa_intel_tool/parser/module/chatlist.py:277
186
189
  #, python-brace-format
187
190
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
188
191
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
@@ -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-05-05 22:48+0200\n"
10
+ "POT-Creation-Date: 2025-07-08 12:13+0200\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"
@@ -21,7 +21,6 @@ msgstr ""
21
21
  #: aa_intel_tool/__init__.py:9
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
23
23
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
24
- #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
25
24
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
26
25
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
27
26
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html:5
@@ -46,22 +45,26 @@ msgstr ""
46
45
  msgid "Intel Parser v{__version__}"
47
46
  msgstr ""
48
47
 
49
- #: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
48
+ #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
50
49
  msgid "Chat list"
51
50
  msgstr ""
52
51
 
53
- #: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
52
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
54
53
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
55
54
  msgid "D-Scan"
56
55
  msgstr ""
57
56
 
58
- #: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
57
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
59
58
  #: aa_intel_tool/models.py:123
60
59
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
61
60
  msgid "Fleet composition"
62
61
  msgstr ""
63
62
 
64
- #: aa_intel_tool/exceptions.py:34
63
+ #: aa_intel_tool/exceptions.py:44
64
+ msgid "Unknown parser error"
65
+ msgstr ""
66
+
67
+ #: aa_intel_tool/exceptions.py:46
65
68
  #, python-brace-format
66
69
  msgid "A parser error occurred » {message}"
67
70
  msgstr ""
@@ -156,27 +159,27 @@ msgstr ""
156
159
  msgid "Scan data"
157
160
  msgstr ""
158
161
 
159
- #: aa_intel_tool/parser/general.py:46
162
+ #: aa_intel_tool/parser/general.py:47
160
163
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
161
164
  msgstr ""
162
165
 
163
- #: aa_intel_tool/parser/general.py:63
166
+ #: aa_intel_tool/parser/general.py:65
164
167
  msgid "No data to parse …"
165
168
  msgstr ""
166
169
 
167
- #: aa_intel_tool/parser/module/chatlist.py:60
170
+ #: aa_intel_tool/parser/module/chatlist.py:61
168
171
  msgid "Something went wrong while fetching the character information from ESI."
169
172
  msgstr ""
170
173
 
171
- #: aa_intel_tool/parser/module/chatlist.py:67
174
+ #: aa_intel_tool/parser/module/chatlist.py:69
172
175
  msgid "Character unknown to ESI."
173
176
  msgstr ""
174
177
 
175
- #: aa_intel_tool/parser/module/chatlist.py:256
178
+ #: aa_intel_tool/parser/module/chatlist.py:258
176
179
  msgid "The chat list module is currently disabled."
177
180
  msgstr ""
178
181
 
179
- #: aa_intel_tool/parser/module/chatlist.py:275
182
+ #: aa_intel_tool/parser/module/chatlist.py:277
180
183
  #, python-brace-format
181
184
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
182
185
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."