aa-intel-tool 2.6.1__py3-none-any.whl → 2.6.3__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 (67) 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 +30 -29
  5. aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
  6. aa_intel_tool/locale/de/LC_MESSAGES/django.po +36 -35
  7. aa_intel_tool/locale/django.pot +31 -30
  8. aa_intel_tool/locale/es/LC_MESSAGES/django.po +32 -29
  9. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  10. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +38 -33
  11. aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +30 -29
  12. aa_intel_tool/locale/ja/LC_MESSAGES/django.po +30 -29
  13. aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
  14. aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +39 -33
  15. aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +30 -29
  16. aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +30 -29
  17. aa_intel_tool/locale/ru/LC_MESSAGES/django.mo +0 -0
  18. aa_intel_tool/locale/ru/LC_MESSAGES/django.po +38 -33
  19. aa_intel_tool/locale/sk/LC_MESSAGES/django.po +30 -29
  20. aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
  21. aa_intel_tool/locale/uk/LC_MESSAGES/django.po +129 -123
  22. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +32 -29
  23. aa_intel_tool/parser/general.py +11 -16
  24. aa_intel_tool/parser/helper/db.py +8 -11
  25. aa_intel_tool/parser/module/chatlist.py +97 -126
  26. aa_intel_tool/parser/module/dscan.py +115 -147
  27. aa_intel_tool/parser/module/fleetcomp.py +85 -102
  28. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +6 -19
  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-highlight.js +104 -64
  32. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js +1 -1
  33. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map +1 -1
  34. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +59 -59
  35. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
  36. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map +1 -1
  37. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js +43 -43
  38. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js +1 -1
  39. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map +1 -1
  40. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +146 -105
  41. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js +1 -1
  42. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map +1 -1
  43. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js +51 -51
  44. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js +1 -1
  45. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map +1 -1
  46. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +69 -59
  47. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
  48. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
  49. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js +54 -32
  50. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js +1 -1
  51. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map +1 -1
  52. aa_intel_tool/templates/aa_intel_tool/base.html +4 -2
  53. aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html +0 -2
  54. aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html +0 -2
  55. aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html +0 -2
  56. aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html +1 -1
  57. aa_intel_tool/tests/test-data/dscan.txt +250 -0
  58. aa_intel_tool/tests/test_admin.py +50 -38
  59. aa_intel_tool/tests/test_helper_eve_character.py +405 -0
  60. aa_intel_tool/tests/test_models.py +188 -4
  61. aa_intel_tool/tests/test_parser_general.py +771 -0
  62. aa_intel_tool/tests/test_parser_module_chatlist.py +154 -0
  63. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.3.dist-info}/METADATA +4 -4
  64. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.3.dist-info}/RECORD +66 -64
  65. aa_intel_tool/tests/test_parser.py +0 -135
  66. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.3.dist-info}/WHEEL +0 -0
  67. {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.3.dist-info}/licenses/LICENSE +0 -0
@@ -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.3\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-05-05 22:48+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
 
@@ -207,13 +207,14 @@ msgid ""
207
207
  msgstr ""
208
208
 
209
209
  #: aa_intel_tool/templates/aa_intel_tool/base.html:25
210
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
211
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
212
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
213
- msgid "Unaffiliated / No Alliance"
210
+ msgid "Unaffiliated"
214
211
  msgstr ""
215
212
 
216
213
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
214
+ msgid "No Alliance"
215
+ msgstr ""
216
+
217
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:27
217
218
  msgid "NPC Corp"
218
219
  msgstr ""
219
220
 
@@ -284,26 +285,26 @@ msgstr ""
284
285
  msgid "Copy permalink"
285
286
  msgstr ""
286
287
 
287
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:9
288
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:7
288
289
  msgid "Alliances breakdown"
289
290
  msgstr ""
290
291
 
291
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:20
292
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:20
292
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:18
293
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:18
293
294
  msgid "Alliance"
294
295
  msgstr ""
295
296
 
296
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:21
297
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:21
297
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:19
298
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:19
298
299
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:18
299
300
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:24
300
301
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:21
301
302
  msgid "Count"
302
303
  msgstr ""
303
304
 
304
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:29
305
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:29
306
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:29
305
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:27
306
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:27
307
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:27
307
308
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:25
308
309
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:37
309
310
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:30
@@ -311,29 +312,29 @@ msgstr ""
311
312
  msgid "Loading data …"
312
313
  msgstr ""
313
314
 
314
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:35
315
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:35
316
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:35
315
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
316
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
317
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
317
318
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
318
319
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
319
320
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:35
320
321
  msgid "No data …"
321
322
  msgstr ""
322
323
 
323
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:9
324
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:7
324
325
  msgid "Corporations breakdown"
325
326
  msgstr ""
326
327
 
327
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:20
328
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:21
328
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:18
329
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
329
330
  msgid "Corporation"
330
331
  msgstr ""
331
332
 
332
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:8
333
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:6
333
334
  msgid "Pilots breakdown"
334
335
  msgstr ""
335
336
 
336
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
337
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:17
337
338
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:17
338
339
  msgid "Pilot"
339
340
  msgstr ""
@@ -396,7 +397,7 @@ msgid "No data."
396
397
  msgstr ""
397
398
 
398
399
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
399
- msgid "Scan taken at (Eve time)"
400
+ msgid "Scan taken at (EVE time)"
400
401
  msgstr ""
401
402
 
402
403
  #: 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-05-05 22:48+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
 
@@ -211,13 +211,16 @@ msgid "Something went wrong. Nothing copied. Maybe your browser does not support
211
211
  msgstr ""
212
212
 
213
213
  #: aa_intel_tool/templates/aa_intel_tool/base.html:25
214
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
215
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
216
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
217
- msgid "Unaffiliated / No Alliance"
214
+ msgid "Unaffiliated"
218
215
  msgstr ""
219
216
 
220
217
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
218
+ #, fuzzy
219
+ #| msgid "Alliance list"
220
+ msgid "No Alliance"
221
+ msgstr "Lista de Alianzas"
222
+
223
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:27
221
224
  msgid "NPC Corp"
222
225
  msgstr ""
223
226
 
@@ -285,26 +288,26 @@ msgstr ""
285
288
  msgid "Copy permalink"
286
289
  msgstr ""
287
290
 
288
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:9
291
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:7
289
292
  msgid "Alliances breakdown"
290
293
  msgstr ""
291
294
 
292
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:20
293
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:20
295
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:18
296
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:18
294
297
  msgid "Alliance"
295
298
  msgstr ""
296
299
 
297
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:21
298
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:21
300
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:19
301
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:19
299
302
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:18
300
303
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:24
301
304
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:21
302
305
  msgid "Count"
303
306
  msgstr ""
304
307
 
305
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:29
306
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:29
307
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:29
308
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:27
309
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:27
310
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:27
308
311
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:25
309
312
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:37
310
313
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:30
@@ -312,29 +315,29 @@ msgstr ""
312
315
  msgid "Loading data …"
313
316
  msgstr ""
314
317
 
315
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:35
316
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:35
317
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:35
318
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
319
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
320
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
318
321
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
319
322
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
320
323
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:35
321
324
  msgid "No data …"
322
325
  msgstr ""
323
326
 
324
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:9
327
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:7
325
328
  msgid "Corporations breakdown"
326
329
  msgstr ""
327
330
 
328
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:20
329
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:21
331
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:18
332
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
330
333
  msgid "Corporation"
331
334
  msgstr ""
332
335
 
333
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:8
336
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:6
334
337
  msgid "Pilots breakdown"
335
338
  msgstr ""
336
339
 
337
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
340
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:17
338
341
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:17
339
342
  msgid "Pilot"
340
343
  msgstr ""
@@ -397,7 +400,7 @@ msgid "No data."
397
400
  msgstr ""
398
401
 
399
402
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
400
- msgid "Scan taken at (Eve time)"
403
+ msgid "Scan taken at (EVE time)"
401
404
  msgstr ""
402
405
 
403
406
  #: 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-05-05 22:48+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
 
@@ -206,13 +206,18 @@ msgid "Something went wrong. Nothing copied. Maybe your browser does not support
206
206
  msgstr "Quelque chose s'est mal passé. Rien n'a été copié. Peut être que votre navigateur ne supporte pas cette fonction."
207
207
 
208
208
  #: aa_intel_tool/templates/aa_intel_tool/base.html:25
209
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
210
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
211
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
212
- msgid "Unaffiliated / No Alliance"
209
+ #, fuzzy
210
+ #| msgid "Unaffiliated / No Alliance"
211
+ msgid "Unaffiliated"
213
212
  msgstr "Non-Affilié / Sans alliance"
214
213
 
215
214
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
215
+ #, fuzzy
216
+ #| msgid "Alliance"
217
+ msgid "No Alliance"
218
+ msgstr "Alliance"
219
+
220
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:27
216
221
  msgid "NPC Corp"
217
222
  msgstr "Corporation non joueur"
218
223
 
@@ -278,26 +283,26 @@ msgstr "Nouveau scan"
278
283
  msgid "Copy permalink"
279
284
  msgstr "Copier le lien permanent"
280
285
 
281
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:9
286
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:7
282
287
  msgid "Alliances breakdown"
283
288
  msgstr ""
284
289
 
285
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:20
286
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:20
290
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:18
291
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:18
287
292
  msgid "Alliance"
288
293
  msgstr "Alliance"
289
294
 
290
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:21
291
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:21
295
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:19
296
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:19
292
297
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:18
293
298
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:24
294
299
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:21
295
300
  msgid "Count"
296
301
  msgstr "Compte"
297
302
 
298
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:29
299
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:29
300
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:29
303
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:27
304
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:27
305
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:27
301
306
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:25
302
307
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:37
303
308
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:30
@@ -305,29 +310,29 @@ msgstr "Compte"
305
310
  msgid "Loading data …"
306
311
  msgstr "Chargement des données …"
307
312
 
308
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:35
309
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:35
310
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:35
313
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
314
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
315
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
311
316
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
312
317
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
313
318
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:35
314
319
  msgid "No data …"
315
320
  msgstr "Aucune donnée …"
316
321
 
317
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:9
322
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:7
318
323
  msgid "Corporations breakdown"
319
324
  msgstr ""
320
325
 
321
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:20
322
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:21
326
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:18
327
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
323
328
  msgid "Corporation"
324
329
  msgstr "Corporation"
325
330
 
326
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:8
331
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:6
327
332
  msgid "Pilots breakdown"
328
333
  msgstr ""
329
334
 
330
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
335
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:17
331
336
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:17
332
337
  msgid "Pilot"
333
338
  msgstr "Pilote"
@@ -390,8 +395,8 @@ msgid "No data."
390
395
  msgstr "Aucune donnée."
391
396
 
392
397
  #: 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)"
398
+ msgid "Scan taken at (EVE time)"
399
+ msgstr "Scan pris a (EVE time)"
395
400
 
396
401
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
397
402
  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-05-05 22:48+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
 
@@ -200,13 +200,14 @@ msgid "Something went wrong. Nothing copied. Maybe your browser does not support
200
200
  msgstr ""
201
201
 
202
202
  #: aa_intel_tool/templates/aa_intel_tool/base.html:25
203
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
204
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
205
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
206
- msgid "Unaffiliated / No Alliance"
203
+ msgid "Unaffiliated"
207
204
  msgstr ""
208
205
 
209
206
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
207
+ msgid "No Alliance"
208
+ msgstr ""
209
+
210
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:27
210
211
  msgid "NPC Corp"
211
212
  msgstr ""
212
213
 
@@ -272,26 +273,26 @@ msgstr ""
272
273
  msgid "Copy permalink"
273
274
  msgstr ""
274
275
 
275
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:9
276
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:7
276
277
  msgid "Alliances breakdown"
277
278
  msgstr ""
278
279
 
279
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:20
280
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:20
280
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:18
281
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:18
281
282
  msgid "Alliance"
282
283
  msgstr ""
283
284
 
284
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:21
285
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:21
285
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:19
286
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:19
286
287
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:18
287
288
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:24
288
289
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:21
289
290
  msgid "Count"
290
291
  msgstr ""
291
292
 
292
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:29
293
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:29
294
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:29
293
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:27
294
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:27
295
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:27
295
296
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:25
296
297
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:37
297
298
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:30
@@ -299,29 +300,29 @@ msgstr ""
299
300
  msgid "Loading data …"
300
301
  msgstr ""
301
302
 
302
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:35
303
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:35
304
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:35
303
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
304
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
305
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
305
306
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
306
307
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
307
308
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:35
308
309
  msgid "No data …"
309
310
  msgstr ""
310
311
 
311
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:9
312
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:7
312
313
  msgid "Corporations breakdown"
313
314
  msgstr ""
314
315
 
315
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:20
316
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:21
316
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:18
317
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
317
318
  msgid "Corporation"
318
319
  msgstr ""
319
320
 
320
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:8
321
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:6
321
322
  msgid "Pilots breakdown"
322
323
  msgstr ""
323
324
 
324
- #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:19
325
+ #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:17
325
326
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:17
326
327
  msgid "Pilot"
327
328
  msgstr ""
@@ -384,7 +385,7 @@ msgid "No data."
384
385
  msgstr ""
385
386
 
386
387
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
387
- msgid "Scan taken at (Eve time)"
388
+ msgid "Scan taken at (EVE time)"
388
389
  msgstr ""
389
390
 
390
391
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8