aa-intel-tool 2.6.1__py3-none-any.whl → 2.6.2__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 (58) hide show
  1. aa_intel_tool/__init__.py +1 -1
  2. aa_intel_tool/helper/eve_character.py +24 -36
  3. aa_intel_tool/helper/static_files.py +2 -2
  4. aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +9 -9
  5. aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
  6. aa_intel_tool/locale/de/LC_MESSAGES/django.po +13 -13
  7. aa_intel_tool/locale/django.pot +10 -10
  8. aa_intel_tool/locale/es/LC_MESSAGES/django.po +9 -9
  9. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  10. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +13 -13
  11. aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +9 -9
  12. aa_intel_tool/locale/ja/LC_MESSAGES/django.po +9 -9
  13. aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +9 -9
  14. aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +9 -9
  15. aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +9 -9
  16. aa_intel_tool/locale/ru/LC_MESSAGES/django.mo +0 -0
  17. aa_intel_tool/locale/ru/LC_MESSAGES/django.po +13 -13
  18. aa_intel_tool/locale/sk/LC_MESSAGES/django.po +9 -9
  19. aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
  20. aa_intel_tool/locale/uk/LC_MESSAGES/django.po +15 -15
  21. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +9 -9
  22. aa_intel_tool/parser/general.py +11 -16
  23. aa_intel_tool/parser/helper/db.py +8 -11
  24. aa_intel_tool/parser/module/chatlist.py +97 -126
  25. aa_intel_tool/parser/module/dscan.py +115 -147
  26. aa_intel_tool/parser/module/fleetcomp.py +85 -102
  27. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +6 -19
  28. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
  29. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
  30. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js +104 -64
  31. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map +1 -1
  32. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +2 -2
  33. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
  34. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js +43 -43
  35. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map +1 -1
  36. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +31 -7
  37. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js +1 -1
  38. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map +1 -1
  39. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js +51 -51
  40. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map +1 -1
  41. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +9 -3
  42. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
  43. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
  44. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js +53 -31
  45. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js +1 -1
  46. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map +1 -1
  47. aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html +1 -1
  48. aa_intel_tool/tests/test-data/dscan.txt +250 -0
  49. aa_intel_tool/tests/test_admin.py +50 -38
  50. aa_intel_tool/tests/test_helper_eve_character.py +405 -0
  51. aa_intel_tool/tests/test_models.py +188 -4
  52. aa_intel_tool/tests/test_parser_general.py +771 -0
  53. aa_intel_tool/tests/test_parser_module_chatlist.py +154 -0
  54. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.dist-info}/METADATA +1 -1
  55. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.dist-info}/RECORD +57 -55
  56. aa_intel_tool/tests/test_parser.py +0 -135
  57. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.dist-info}/WHEEL +0 -0
  58. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.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.1"
8
+ __version__ = "2.6.2"
9
9
  __title__ = _("Intel Parser")
@@ -25,7 +25,7 @@ from aa_intel_tool import __title__
25
25
  logger = LoggerAddTag(my_logger=get_extension_logger(name=__name__), prefix=__title__)
26
26
 
27
27
 
28
- def _create_alliance(alliance_ids: Iterable[int] = None) -> None:
28
+ def _create_alliance(alliance_ids: Iterable[int]) -> None:
29
29
  """
30
30
  Bulk creation of EveAllianceInfo objects
31
31
 
@@ -36,7 +36,6 @@ def _create_alliance(alliance_ids: Iterable[int] = None) -> None:
36
36
  """
37
37
 
38
38
  alliance_ids = set(alliance_ids)
39
-
40
39
  existing_alliance_ids = set(
41
40
  EveAllianceInfo.objects.filter(alliance_id__in=alliance_ids).values_list(
42
41
  "alliance_id", flat=True
@@ -44,23 +43,21 @@ def _create_alliance(alliance_ids: Iterable[int] = None) -> None:
44
43
  )
45
44
 
46
45
  alliances_to_fetch = alliance_ids - existing_alliance_ids
47
- count_alliances_to_fetch = len(alliances_to_fetch)
48
46
 
49
47
  if alliances_to_fetch:
50
48
  logger.debug(
51
- f"{count_alliances_to_fetch} EveAllianceInfo object(s) need to be created …"
49
+ f"{len(alliances_to_fetch)} EveAllianceInfo object(s) need to be created …"
52
50
  )
53
51
 
54
- for loop_count, alliance_id in enumerate(alliances_to_fetch):
52
+ for loop_count, alliance_id in enumerate(alliances_to_fetch, start=1):
55
53
  alliance = EveAllianceInfo.objects.create_alliance(alliance_id=alliance_id)
56
-
57
54
  logger.debug(
58
- f"({loop_count + 1}/{count_alliances_to_fetch}) "
55
+ f"({loop_count}/{len(alliances_to_fetch)}) "
59
56
  f"EveAllianceInfo object created for: {alliance.alliance_name}"
60
57
  )
61
58
 
62
59
 
63
- def _create_corporation(corporation_ids: Iterable[int] = None) -> None:
60
+ def _create_corporation(corporation_ids: Iterable[int]) -> None:
64
61
  """
65
62
  Bulk creation of EveCorporationInfo objects
66
63
 
@@ -71,7 +68,6 @@ def _create_corporation(corporation_ids: Iterable[int] = None) -> None:
71
68
  """
72
69
 
73
70
  corporation_ids = set(corporation_ids)
74
-
75
71
  existing_corporation_ids = set(
76
72
  EveCorporationInfo.objects.filter(
77
73
  corporation_id__in=corporation_ids
@@ -79,26 +75,25 @@ def _create_corporation(corporation_ids: Iterable[int] = None) -> None:
79
75
  )
80
76
 
81
77
  corporations_to_fetch = corporation_ids - existing_corporation_ids
82
- count_corporations_to_fetch = len(corporations_to_fetch)
83
78
 
84
79
  if corporations_to_fetch:
85
80
  logger.debug(
86
- f"{count_corporations_to_fetch} EveCorporationInfo object(s) need to be created …" # pylint: disable=line-too-long
81
+ f"{len(corporations_to_fetch)} EveCorporationInfo object(s) need to be created …"
87
82
  )
88
83
 
89
- for loop_count, corporation_id in enumerate(corporations_to_fetch):
84
+ for loop_count, corporation_id in enumerate(corporations_to_fetch, start=1):
90
85
  corporation = EveCorporationInfo.objects.create_corporation(
91
86
  corp_id=corporation_id
92
87
  )
93
88
 
94
89
  logger.debug(
95
- f"({loop_count + 1}/{count_corporations_to_fetch}) "
90
+ f"({loop_count}/{len(corporations_to_fetch)}) "
96
91
  f"EveCorporationInfo object created for: {corporation.corporation_name}"
97
92
  )
98
93
 
99
94
 
100
95
  def _create_character(
101
- character_ids: Iterable[int] = None, with_affiliation: bool = True
96
+ character_ids: Iterable[int], with_affiliation: bool = True
102
97
  ) -> None:
103
98
  """
104
99
  Bulk creation of EveCharacter objects
@@ -112,35 +107,30 @@ def _create_character(
112
107
  """
113
108
 
114
109
  character_ids = set(character_ids)
110
+ tmp_affiliation_ids = {"alliance": set(), "corporation": set()}
115
111
 
116
- count_characters_to_fetch = len(character_ids)
117
-
118
- logger.debug(
119
- f"{count_characters_to_fetch} EveCharacter object(s) need to be created …"
120
- )
121
-
122
- tmp_character_ids = {"corporation": [], "alliance": []}
112
+ logger.info(f"{len(character_ids)} EveCharacter object(s) need to be created …")
123
113
 
124
- for loop_count, character_id in enumerate(character_ids):
114
+ for loop_count, character_id in enumerate(character_ids, start=1):
125
115
  # Create character
126
116
  character = EveCharacter.objects.create_character(character_id=character_id)
127
117
 
128
118
  logger.debug(
129
- f"({loop_count + 1}/{count_characters_to_fetch}) "
119
+ f"({loop_count}/{len(character_ids)}) "
130
120
  f"EveCharacter object created for: {character.character_name}"
131
121
  )
132
122
 
133
- if character.alliance_id is not None:
134
- tmp_character_ids["alliance"].append(character.alliance_id)
135
- else:
136
- tmp_character_ids["corporation"].append(character.corporation_id)
123
+ affiliation_key = "alliance" if character.alliance_id else "corporation"
124
+ tmp_affiliation_ids[affiliation_key].add(
125
+ character.alliance_id or character.corporation_id
126
+ )
137
127
 
138
- if with_affiliation is True:
139
- if len(tmp_character_ids["alliance"]) > 0:
140
- _create_alliance(tmp_character_ids["alliance"])
128
+ if with_affiliation:
129
+ if tmp_affiliation_ids["alliance"]:
130
+ _create_alliance(tmp_affiliation_ids["alliance"])
141
131
 
142
- if len(tmp_character_ids["corporation"]) > 0:
143
- _create_corporation(tmp_character_ids["corporation"])
132
+ if tmp_affiliation_ids["corporation"]:
133
+ _create_corporation(tmp_affiliation_ids["corporation"])
144
134
 
145
135
 
146
136
  def get_or_create_character(
@@ -157,7 +147,7 @@ def get_or_create_character(
157
147
  :rtype:
158
148
  """
159
149
 
160
- character_ids = set(character_ids)
150
+ character_ids = set(character_ids or [])
161
151
 
162
152
  logger.debug(
163
153
  msg=f"Getting information for {len(character_ids)} character(s) from AA …"
@@ -174,6 +164,4 @@ def get_or_create_character(
174
164
  if character_ids_to_fetch:
175
165
  _create_character(character_ids=character_ids_to_fetch, with_affiliation=True)
176
166
 
177
- characters = EveCharacter.objects.filter(character_id__in=character_ids)
178
-
179
- return characters
167
+ return EveCharacter.objects.filter(character_id__in=character_ids)
@@ -34,9 +34,9 @@ def calculate_integrity_hash(relative_file_path: str) -> str:
34
34
  :rtype: str
35
35
  """
36
36
 
37
- file_path = os.path.join(APP_STATIC_DIR, relative_file_path)
38
37
  integrity_hash = calculate_integrity(
39
- path=Path(file_path), algorithm=Algorithm.SHA512
38
+ path=Path(os.path.join(APP_STATIC_DIR, relative_file_path)),
39
+ algorithm=Algorithm.SHA512,
40
40
  )
41
41
 
42
42
  return integrity_hash
@@ -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-03-07 15:55+0100\n"
9
+ "POT-Creation-Date: 2025-04-09 11:22+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"
@@ -159,23 +159,23 @@ msgstr ""
159
159
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
160
160
  msgstr ""
161
161
 
162
- #: aa_intel_tool/parser/general.py:80
162
+ #: aa_intel_tool/parser/general.py:63
163
163
  msgid "No data to parse …"
164
164
  msgstr ""
165
165
 
166
- #: aa_intel_tool/parser/module/chatlist.py:65
166
+ #: aa_intel_tool/parser/module/chatlist.py:60
167
167
  msgid "Something went wrong while fetching the character information from ESI."
168
168
  msgstr ""
169
169
 
170
- #: aa_intel_tool/parser/module/chatlist.py:76
170
+ #: aa_intel_tool/parser/module/chatlist.py:67
171
171
  msgid "Character unknown to ESI."
172
172
  msgstr ""
173
173
 
174
- #: aa_intel_tool/parser/module/chatlist.py:278
174
+ #: aa_intel_tool/parser/module/chatlist.py:256
175
175
  msgid "The chat list module is currently disabled."
176
176
  msgstr ""
177
177
 
178
- #: aa_intel_tool/parser/module/chatlist.py:299
178
+ #: aa_intel_tool/parser/module/chatlist.py:275
179
179
  #, python-brace-format
180
180
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
181
181
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
@@ -184,11 +184,11 @@ msgstr[1] ""
184
184
  msgstr[2] ""
185
185
  msgstr[3] ""
186
186
 
187
- #: aa_intel_tool/parser/module/dscan.py:350
187
+ #: aa_intel_tool/parser/module/dscan.py:362
188
188
  msgid "The D-Scan module is currently disabled."
189
189
  msgstr ""
190
190
 
191
- #: aa_intel_tool/parser/module/fleetcomp.py:187
191
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
192
192
  msgid "The fleet composition module is currently disabled."
193
193
  msgstr ""
194
194
 
@@ -389,7 +389,7 @@ msgid "No data."
389
389
  msgstr ""
390
390
 
391
391
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
392
- msgid "Scan taken at (Eve time)"
392
+ msgid "Scan taken at (EVE time)"
393
393
  msgstr ""
394
394
 
395
395
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -1,13 +1,13 @@
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
- # Peter Pfeufer <info@ppfeufer.de>, 2023, 2024.
4
+ # Peter Pfeufer <info@ppfeufer.de>, 2023, 2024, 2025.
5
5
  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-03-07 15:55+0100\n"
10
- "PO-Revision-Date: 2024-08-12 02:38+0000\n"
9
+ "POT-Creation-Date: 2025-04-09 11:22+0200\n"
10
+ "PO-Revision-Date: 2025-03-25 13:24+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.6.2\n"
18
+ "X-Generator: Weblate 5.10.4\n"
19
19
 
20
20
  #: aa_intel_tool/__init__.py:9
21
21
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
@@ -159,34 +159,34 @@ msgstr "Scandaten"
159
159
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
160
160
  msgstr "Kein passender Parser gefunden. Die Eingabe ist kein unterstützter Inteltyp oder fehlerhaft …"
161
161
 
162
- #: aa_intel_tool/parser/general.py:80
162
+ #: aa_intel_tool/parser/general.py:63
163
163
  msgid "No data to parse …"
164
164
  msgstr "Keine Daten zum Parsen …"
165
165
 
166
- #: aa_intel_tool/parser/module/chatlist.py:65
166
+ #: aa_intel_tool/parser/module/chatlist.py:60
167
167
  msgid "Something went wrong while fetching the character information from ESI."
168
168
  msgstr "Beim Abrufen der Charakterinformationen von ESI ist ein Fehler aufgetreten."
169
169
 
170
- #: aa_intel_tool/parser/module/chatlist.py:76
170
+ #: aa_intel_tool/parser/module/chatlist.py:67
171
171
  msgid "Character unknown to ESI."
172
172
  msgstr "Charakter ist in ESI nicht bekannt."
173
173
 
174
- #: aa_intel_tool/parser/module/chatlist.py:278
174
+ #: aa_intel_tool/parser/module/chatlist.py:256
175
175
  msgid "The chat list module is currently disabled."
176
176
  msgstr "Das Chatlistenmodul ist derzeit deaktiviert."
177
177
 
178
- #: aa_intel_tool/parser/module/chatlist.py:299
178
+ #: aa_intel_tool/parser/module/chatlist.py:275
179
179
  #, python-brace-format
180
180
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
181
181
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
182
182
  msgstr[0] "Chatscans sind derzeit auf maximal {max_allowed_pilots} Pilot pro Scan beschränkt. Deine Pilotenliste überschreitet diese Grenze."
183
183
  msgstr[1] "Chatscans sind derzeit auf maximal {max_allowed_pilots} Piloten pro Scan beschränkt. Deine Pilotenliste überschreitet diese Grenze."
184
184
 
185
- #: aa_intel_tool/parser/module/dscan.py:350
185
+ #: aa_intel_tool/parser/module/dscan.py:362
186
186
  msgid "The D-Scan module is currently disabled."
187
187
  msgstr "Das D-Scan-Modul ist derzeit deaktiviert."
188
188
 
189
- #: aa_intel_tool/parser/module/fleetcomp.py:187
189
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
190
190
  msgid "The fleet composition module is currently disabled."
191
191
  msgstr "Das Flottenzusammensetzungsmodul ist derzeit deaktiviert."
192
192
 
@@ -383,8 +383,8 @@ msgid "No data."
383
383
  msgstr "Keine Daten."
384
384
 
385
385
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
386
- msgid "Scan taken at (Eve time)"
387
- msgstr "Scan aufgenommen um (Eve Zeit)"
386
+ msgid "Scan taken at (EVE time)"
387
+ msgstr "Scan aufgenommen um (EVE Zeit)"
388
388
 
389
389
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
390
390
  msgid "Fleet details"
@@ -6,9 +6,9 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: AA Intel Tool 2.6.1\n"
9
+ "Project-Id-Version: AA Intel Tool 2.6.2\n"
10
10
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
11
- "POT-Creation-Date: 2025-03-07 15:55+0100\n"
11
+ "POT-Creation-Date: 2025-04-09 11:22+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"
@@ -161,23 +161,23 @@ msgid ""
161
161
  "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:80
164
+ #: aa_intel_tool/parser/general.py:63
165
165
  msgid "No data to parse …"
166
166
  msgstr ""
167
167
 
168
- #: aa_intel_tool/parser/module/chatlist.py:65
168
+ #: aa_intel_tool/parser/module/chatlist.py:60
169
169
  msgid "Something went wrong while fetching the character information from ESI."
170
170
  msgstr ""
171
171
 
172
- #: aa_intel_tool/parser/module/chatlist.py:76
172
+ #: aa_intel_tool/parser/module/chatlist.py:67
173
173
  msgid "Character unknown to ESI."
174
174
  msgstr ""
175
175
 
176
- #: aa_intel_tool/parser/module/chatlist.py:278
176
+ #: aa_intel_tool/parser/module/chatlist.py:256
177
177
  msgid "The chat list module is currently disabled."
178
178
  msgstr ""
179
179
 
180
- #: aa_intel_tool/parser/module/chatlist.py:299
180
+ #: aa_intel_tool/parser/module/chatlist.py:275
181
181
  #, python-brace-format
182
182
  msgid ""
183
183
  "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot "
@@ -188,11 +188,11 @@ msgid_plural ""
188
188
  msgstr[0] ""
189
189
  msgstr[1] ""
190
190
 
191
- #: aa_intel_tool/parser/module/dscan.py:350
191
+ #: aa_intel_tool/parser/module/dscan.py:362
192
192
  msgid "The D-Scan module is currently disabled."
193
193
  msgstr ""
194
194
 
195
- #: aa_intel_tool/parser/module/fleetcomp.py:187
195
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
196
196
  msgid "The fleet composition module is currently disabled."
197
197
  msgstr ""
198
198
 
@@ -396,7 +396,7 @@ msgid "No data."
396
396
  msgstr ""
397
397
 
398
398
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
399
- msgid "Scan taken at (Eve time)"
399
+ msgid "Scan taken at (EVE time)"
400
400
  msgstr ""
401
401
 
402
402
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -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-03-07 15:55+0100\n"
11
+ "POT-Creation-Date: 2025-04-09 11:22+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"
@@ -171,34 +171,34 @@ msgstr "Datos de escaneo no válidos"
171
171
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
172
172
  msgstr ""
173
173
 
174
- #: aa_intel_tool/parser/general.py:80
174
+ #: aa_intel_tool/parser/general.py:63
175
175
  msgid "No data to parse …"
176
176
  msgstr ""
177
177
 
178
- #: aa_intel_tool/parser/module/chatlist.py:65
178
+ #: aa_intel_tool/parser/module/chatlist.py:60
179
179
  msgid "Something went wrong while fetching the character information from ESI."
180
180
  msgstr ""
181
181
 
182
- #: aa_intel_tool/parser/module/chatlist.py:76
182
+ #: aa_intel_tool/parser/module/chatlist.py:67
183
183
  msgid "Character unknown to ESI."
184
184
  msgstr ""
185
185
 
186
- #: aa_intel_tool/parser/module/chatlist.py:278
186
+ #: aa_intel_tool/parser/module/chatlist.py:256
187
187
  msgid "The chat list module is currently disabled."
188
188
  msgstr ""
189
189
 
190
- #: aa_intel_tool/parser/module/chatlist.py:299
190
+ #: aa_intel_tool/parser/module/chatlist.py:275
191
191
  #, python-brace-format
192
192
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
193
193
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
194
194
  msgstr[0] ""
195
195
  msgstr[1] ""
196
196
 
197
- #: aa_intel_tool/parser/module/dscan.py:350
197
+ #: aa_intel_tool/parser/module/dscan.py:362
198
198
  msgid "The D-Scan module is currently disabled."
199
199
  msgstr ""
200
200
 
201
- #: aa_intel_tool/parser/module/fleetcomp.py:187
201
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
202
202
  msgid "The fleet composition module is currently disabled."
203
203
  msgstr ""
204
204
 
@@ -397,7 +397,7 @@ msgid "No data."
397
397
  msgstr ""
398
398
 
399
399
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
400
- msgid "Scan taken at (Eve time)"
400
+ msgid "Scan taken at (EVE time)"
401
401
  msgstr ""
402
402
 
403
403
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -2,15 +2,15 @@
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
4
  # erka Ekanon <M6musicT@hotmail.fr>, 2024.
5
- # Peter Pfeufer <info@ppfeufer.de>, 2024.
5
+ # Peter Pfeufer <info@ppfeufer.de>, 2024, 2025.
6
6
  # Matthias P <randomusernetcom@gmail.com>, 2024.
7
7
  # Houbi_Houba <paul.lacape@live.fr>, 2024.
8
8
  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-03-07 15:55+0100\n"
13
- "PO-Revision-Date: 2024-12-16 11:15+0000\n"
12
+ "POT-Creation-Date: 2025-04-09 11:22+0200\n"
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"
16
16
  "Language: fr_FR\n"
@@ -18,7 +18,7 @@ msgstr ""
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
20
20
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
21
- "X-Generator: Weblate 5.8.4\n"
21
+ "X-Generator: Weblate 5.10.4\n"
22
22
 
23
23
  #: aa_intel_tool/__init__.py:9
24
24
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
@@ -166,34 +166,34 @@ msgstr "Données du scanner"
166
166
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
167
167
  msgstr ""
168
168
 
169
- #: aa_intel_tool/parser/general.py:80
169
+ #: aa_intel_tool/parser/general.py:63
170
170
  msgid "No data to parse …"
171
171
  msgstr ""
172
172
 
173
- #: aa_intel_tool/parser/module/chatlist.py:65
173
+ #: aa_intel_tool/parser/module/chatlist.py:60
174
174
  msgid "Something went wrong while fetching the character information from ESI."
175
175
  msgstr "Quelque chose s'est mal passé lors de la recherche d'information sur le personnage depuis l'ESI."
176
176
 
177
- #: aa_intel_tool/parser/module/chatlist.py:76
177
+ #: aa_intel_tool/parser/module/chatlist.py:67
178
178
  msgid "Character unknown to ESI."
179
179
  msgstr "Personnage inconnu de l'ESI."
180
180
 
181
- #: aa_intel_tool/parser/module/chatlist.py:278
181
+ #: aa_intel_tool/parser/module/chatlist.py:256
182
182
  msgid "The chat list module is currently disabled."
183
183
  msgstr "Le module de liste de discussion est désactivé pour le moment."
184
184
 
185
- #: aa_intel_tool/parser/module/chatlist.py:299
185
+ #: aa_intel_tool/parser/module/chatlist.py:275
186
186
  #, python-brace-format
187
187
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
188
188
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
189
189
  msgstr[0] "Le scan de la conversation est limitée pour le moment a {max_allowed_pilots} pilote par scan. Votre liste de pilote dépasse cette limite."
190
190
  msgstr[1] "Le scan de la conversation est limitée pour le moment a {max_allowed_pilots} pilotes par scan. Votre liste de pilote dépasse cette limite."
191
191
 
192
- #: aa_intel_tool/parser/module/dscan.py:350
192
+ #: aa_intel_tool/parser/module/dscan.py:362
193
193
  msgid "The D-Scan module is currently disabled."
194
194
  msgstr "Le module de scanner directionnel est désactivé pour le moment."
195
195
 
196
- #: aa_intel_tool/parser/module/fleetcomp.py:187
196
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
197
197
  msgid "The fleet composition module is currently disabled."
198
198
  msgstr "Le module de composition de flotte est désactivé pour le moment."
199
199
 
@@ -390,8 +390,8 @@ msgid "No data."
390
390
  msgstr "Aucune donnée."
391
391
 
392
392
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
393
- msgid "Scan taken at (Eve time)"
394
- msgstr "Scan pris a (Eve time)"
393
+ msgid "Scan taken at (EVE time)"
394
+ msgstr "Scan pris a (EVE time)"
395
395
 
396
396
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
397
397
  msgid "Fleet details"
@@ -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-03-07 15:55+0100\n"
10
+ "POT-Creation-Date: 2025-04-09 11:22+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"
@@ -160,34 +160,34 @@ msgstr ""
160
160
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
161
161
  msgstr ""
162
162
 
163
- #: aa_intel_tool/parser/general.py:80
163
+ #: aa_intel_tool/parser/general.py:63
164
164
  msgid "No data to parse …"
165
165
  msgstr ""
166
166
 
167
- #: aa_intel_tool/parser/module/chatlist.py:65
167
+ #: aa_intel_tool/parser/module/chatlist.py:60
168
168
  msgid "Something went wrong while fetching the character information from ESI."
169
169
  msgstr ""
170
170
 
171
- #: aa_intel_tool/parser/module/chatlist.py:76
171
+ #: aa_intel_tool/parser/module/chatlist.py:67
172
172
  msgid "Character unknown to ESI."
173
173
  msgstr ""
174
174
 
175
- #: aa_intel_tool/parser/module/chatlist.py:278
175
+ #: aa_intel_tool/parser/module/chatlist.py:256
176
176
  msgid "The chat list module is currently disabled."
177
177
  msgstr ""
178
178
 
179
- #: aa_intel_tool/parser/module/chatlist.py:299
179
+ #: aa_intel_tool/parser/module/chatlist.py:275
180
180
  #, python-brace-format
181
181
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
182
182
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
183
183
  msgstr[0] ""
184
184
  msgstr[1] ""
185
185
 
186
- #: aa_intel_tool/parser/module/dscan.py:350
186
+ #: aa_intel_tool/parser/module/dscan.py:362
187
187
  msgid "The D-Scan module is currently disabled."
188
188
  msgstr ""
189
189
 
190
- #: aa_intel_tool/parser/module/fleetcomp.py:187
190
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
191
191
  msgid "The fleet composition module is currently disabled."
192
192
  msgstr ""
193
193
 
@@ -384,7 +384,7 @@ msgid "No data."
384
384
  msgstr ""
385
385
 
386
386
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
387
- msgid "Scan taken at (Eve time)"
387
+ msgid "Scan taken at (EVE time)"
388
388
  msgstr ""
389
389
 
390
390
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -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-03-07 15:55+0100\n"
9
+ "POT-Creation-Date: 2025-04-09 11:22+0200\n"
10
10
  "PO-Revision-Date: 2024-08-05 10:10+0000\n"
11
11
  "Last-Translator: Anata_no_Usiro <yt23542354m@gmail.com>\n"
12
12
  "Language-Team: Japanese <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ja/>\n"
@@ -159,33 +159,33 @@ msgstr ""
159
159
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
160
160
  msgstr ""
161
161
 
162
- #: aa_intel_tool/parser/general.py:80
162
+ #: aa_intel_tool/parser/general.py:63
163
163
  msgid "No data to parse …"
164
164
  msgstr ""
165
165
 
166
- #: aa_intel_tool/parser/module/chatlist.py:65
166
+ #: aa_intel_tool/parser/module/chatlist.py:60
167
167
  msgid "Something went wrong while fetching the character information from ESI."
168
168
  msgstr ""
169
169
 
170
- #: aa_intel_tool/parser/module/chatlist.py:76
170
+ #: aa_intel_tool/parser/module/chatlist.py:67
171
171
  msgid "Character unknown to ESI."
172
172
  msgstr ""
173
173
 
174
- #: aa_intel_tool/parser/module/chatlist.py:278
174
+ #: aa_intel_tool/parser/module/chatlist.py:256
175
175
  msgid "The chat list module is currently disabled."
176
176
  msgstr ""
177
177
 
178
- #: aa_intel_tool/parser/module/chatlist.py:299
178
+ #: aa_intel_tool/parser/module/chatlist.py:275
179
179
  #, python-brace-format
180
180
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
181
181
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
182
182
  msgstr[0] ""
183
183
 
184
- #: aa_intel_tool/parser/module/dscan.py:350
184
+ #: aa_intel_tool/parser/module/dscan.py:362
185
185
  msgid "The D-Scan module is currently disabled."
186
186
  msgstr ""
187
187
 
188
- #: aa_intel_tool/parser/module/fleetcomp.py:187
188
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
189
189
  msgid "The fleet composition module is currently disabled."
190
190
  msgstr ""
191
191
 
@@ -380,7 +380,7 @@ msgid "No data."
380
380
  msgstr ""
381
381
 
382
382
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
383
- msgid "Scan taken at (Eve time)"
383
+ msgid "Scan taken at (EVE time)"
384
384
  msgstr ""
385
385
 
386
386
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8