aa-intel-tool 2.6.0__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 (66) hide show
  1. aa_intel_tool/__init__.py +1 -1
  2. aa_intel_tool/app_settings.py +15 -0
  3. aa_intel_tool/constants.py +6 -5
  4. aa_intel_tool/helper/eve_character.py +24 -36
  5. aa_intel_tool/helper/static_files.py +5 -4
  6. aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +15 -83
  7. aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
  8. aa_intel_tool/locale/de/LC_MESSAGES/django.po +71 -87
  9. aa_intel_tool/locale/django.pot +16 -84
  10. aa_intel_tool/locale/es/LC_MESSAGES/django.po +19 -83
  11. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  12. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +72 -88
  13. aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +15 -83
  14. aa_intel_tool/locale/ja/LC_MESSAGES/django.po +15 -83
  15. aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +67 -83
  16. aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +15 -83
  17. aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +15 -83
  18. aa_intel_tool/locale/ru/LC_MESSAGES/django.mo +0 -0
  19. aa_intel_tool/locale/ru/LC_MESSAGES/django.po +71 -87
  20. aa_intel_tool/locale/sk/LC_MESSAGES/django.po +15 -83
  21. aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
  22. aa_intel_tool/locale/uk/LC_MESSAGES/django.po +71 -94
  23. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  24. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +20 -87
  25. aa_intel_tool/parser/general.py +11 -16
  26. aa_intel_tool/parser/helper/db.py +8 -11
  27. aa_intel_tool/parser/module/chatlist.py +97 -126
  28. aa_intel_tool/parser/module/dscan.py +115 -147
  29. aa_intel_tool/parser/module/fleetcomp.py +85 -102
  30. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +6 -24
  31. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
  32. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
  33. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js +104 -64
  34. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map +1 -1
  35. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +5 -5
  36. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
  37. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map +1 -1
  38. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js +43 -43
  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 +41 -17
  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.map +1 -1
  45. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +13 -7
  46. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
  47. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
  48. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js +53 -31
  49. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js +1 -1
  50. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map +1 -1
  51. aa_intel_tool/templates/aa_intel_tool/base.html +7 -42
  52. aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html +1 -1
  53. aa_intel_tool/templatetags/aa_intel_tool.py +12 -7
  54. aa_intel_tool/tests/test-data/dscan.txt +250 -0
  55. aa_intel_tool/tests/test_admin.py +50 -38
  56. aa_intel_tool/tests/test_app_settings.py +23 -1
  57. aa_intel_tool/tests/test_helper_eve_character.py +405 -0
  58. aa_intel_tool/tests/test_models.py +188 -4
  59. aa_intel_tool/tests/test_parser_general.py +771 -0
  60. aa_intel_tool/tests/test_parser_module_chatlist.py +154 -0
  61. aa_intel_tool/tests/test_templatetags.py +24 -3
  62. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.dist-info}/METADATA +4 -4
  63. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.dist-info}/RECORD +65 -63
  64. aa_intel_tool/tests/test_parser.py +0 -135
  65. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.dist-info}/WHEEL +0 -0
  66. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.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.5.3\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-01-31 11:24+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"
@@ -19,8 +19,8 @@ msgstr ""
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
21
  #: aa_intel_tool/__init__.py:9
22
- #: aa_intel_tool/templates/aa_intel_tool/base.html:6
23
- #: aa_intel_tool/templates/aa_intel_tool/base.html:10
22
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:7
23
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:11
24
24
  #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
25
25
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
26
26
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
@@ -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,101 +188,33 @@ 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
 
199
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
199
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
200
200
  msgid "Permalink successfully copied"
201
201
  msgstr ""
202
202
 
203
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
203
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
204
204
  msgid ""
205
205
  "Something went wrong. Nothing copied. Maybe your browser does not support "
206
206
  "this function."
207
207
  msgstr ""
208
208
 
209
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
209
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
210
210
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
211
211
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
212
212
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
213
213
  msgid "Unaffiliated / No Alliance"
214
214
  msgstr ""
215
215
 
216
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
217
- msgid "NPC Corp"
218
- msgstr ""
219
-
220
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
221
- msgctxt "Decimal separator"
222
- msgid "."
223
- msgstr ""
224
-
225
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
226
- msgctxt "Thousands separator"
227
- msgid ","
228
- msgstr ""
229
-
230
216
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
231
- msgid "No data available in this table"
232
- msgstr ""
233
-
234
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
235
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
236
- msgid "Showing _END_ entries"
237
- msgstr ""
238
-
239
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
240
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
241
- msgid "(filtered from _MAX_ total entries)"
242
- msgstr ""
243
-
244
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
245
- msgid "No records available"
246
- msgstr ""
247
-
248
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
249
- msgid "Loading …"
250
- msgstr ""
251
-
252
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
253
- msgid "Processing …"
254
- msgstr ""
255
-
256
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
257
- msgid "Nothing found, sorry …"
258
- msgstr ""
259
-
260
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
261
- msgid "Search …"
262
- msgstr ""
263
-
264
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
265
- msgid "First"
266
- msgstr ""
267
-
268
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
269
- msgid "Last"
270
- msgstr ""
271
-
272
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
273
- msgid "Next"
274
- msgstr ""
275
-
276
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
277
- msgid "Previous"
278
- msgstr ""
279
-
280
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
281
- msgid ": activate to sort column ascending"
282
- msgstr ""
283
-
284
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
285
- msgid ": activate to sort column descending"
217
+ msgid "NPC Corp"
286
218
  msgstr ""
287
219
 
288
220
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
@@ -464,7 +396,7 @@ msgid "No data."
464
396
  msgstr ""
465
397
 
466
398
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
467
- msgid "Scan taken at (Eve time)"
399
+ msgid "Scan taken at (EVE time)"
468
400
  msgstr ""
469
401
 
470
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-01-31 11:24+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"
@@ -20,8 +20,8 @@ msgstr ""
20
20
  "X-Generator: Weblate 5.8.4\n"
21
21
 
22
22
  #: aa_intel_tool/__init__.py:9
23
- #: aa_intel_tool/templates/aa_intel_tool/base.html:6
24
- #: aa_intel_tool/templates/aa_intel_tool/base.html:10
23
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:7
24
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:11
25
25
  #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
26
26
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
27
27
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
@@ -171,122 +171,54 @@ 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
 
205
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
205
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
206
206
  msgid "Permalink successfully copied"
207
207
  msgstr ""
208
208
 
209
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
209
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
210
210
  msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
211
211
  msgstr ""
212
212
 
213
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
213
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
214
214
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
215
215
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
216
216
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
217
217
  msgid "Unaffiliated / No Alliance"
218
218
  msgstr ""
219
219
 
220
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
221
- msgid "NPC Corp"
222
- msgstr ""
223
-
224
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
225
- msgctxt "Decimal separator"
226
- msgid "."
227
- msgstr ","
228
-
229
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
230
- msgctxt "Thousands separator"
231
- msgid ","
232
- msgstr ""
233
-
234
220
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
235
- msgid "No data available in this table"
236
- msgstr ""
237
-
238
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
239
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
240
- msgid "Showing _END_ entries"
241
- msgstr ""
242
-
243
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
244
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
245
- msgid "(filtered from _MAX_ total entries)"
246
- msgstr ""
247
-
248
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
249
- msgid "No records available"
250
- msgstr ""
251
-
252
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
253
- msgid "Loading …"
254
- msgstr ""
255
-
256
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
257
- msgid "Processing …"
258
- msgstr ""
259
-
260
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
261
- msgid "Nothing found, sorry …"
262
- msgstr ""
263
-
264
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
265
- msgid "Search …"
266
- msgstr ""
267
-
268
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
269
- msgid "First"
270
- msgstr ""
271
-
272
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
273
- msgid "Last"
274
- msgstr ""
275
-
276
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
277
- msgid "Next"
278
- msgstr ""
279
-
280
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
281
- msgid "Previous"
282
- msgstr ""
283
-
284
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
285
- msgid ": activate to sort column ascending"
286
- msgstr ""
287
-
288
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
289
- msgid ": activate to sort column descending"
221
+ msgid "NPC Corp"
290
222
  msgstr ""
291
223
 
292
224
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
@@ -465,7 +397,7 @@ msgid "No data."
465
397
  msgstr ""
466
398
 
467
399
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
468
- msgid "Scan taken at (Eve time)"
400
+ msgid "Scan taken at (EVE time)"
469
401
  msgstr ""
470
402
 
471
403
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -503,3 +435,7 @@ msgstr ""
503
435
  #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
504
436
  msgid "The scan you were looking for could not be found."
505
437
  msgstr ""
438
+
439
+ #~ msgctxt "Decimal separator"
440
+ #~ msgid "."
441
+ #~ msgstr ","
@@ -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-01-31 11:24+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,11 +18,11 @@ 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
- #: aa_intel_tool/templates/aa_intel_tool/base.html:6
25
- #: aa_intel_tool/templates/aa_intel_tool/base.html:10
24
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:7
25
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:11
26
26
  #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
27
27
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
28
28
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
@@ -166,125 +166,56 @@ 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
 
200
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
200
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
201
201
  msgid "Permalink successfully copied"
202
202
  msgstr "Lien permanent copié avec succès"
203
203
 
204
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
204
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
205
205
  msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
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
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
208
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
209
209
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
210
210
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
211
211
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
212
212
  msgid "Unaffiliated / No Alliance"
213
213
  msgstr "Non-Affilié / Sans alliance"
214
214
 
215
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
215
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:26
216
216
  msgid "NPC Corp"
217
217
  msgstr "Corporation non joueur"
218
218
 
219
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
220
- msgctxt "Decimal separator"
221
- msgid "."
222
- msgstr "."
223
-
224
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
225
- msgctxt "Thousands separator"
226
- msgid ","
227
- msgstr ","
228
-
229
- #: aa_intel_tool/templates/aa_intel_tool/base.html:26
230
- msgid "No data available in this table"
231
- msgstr "Aucune donnée disponible dans cette table"
232
-
233
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
234
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
235
- msgid "Showing _END_ entries"
236
- msgstr "Montre les _END_ entrées"
237
-
238
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
239
- #, fuzzy
240
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
241
- msgid "(filtered from _MAX_ total entries)"
242
- msgstr "(Filtré depuis _MAX_ entrées)"
243
-
244
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
245
- msgid "No records available"
246
- msgstr "Aucun enregistrement disponible"
247
-
248
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
249
- msgid "Loading …"
250
- msgstr "Chargement …"
251
-
252
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
253
- msgid "Processing …"
254
- msgstr "Traitement …"
255
-
256
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
257
- msgid "Nothing found, sorry …"
258
- msgstr "Rien n'a été trouvé, désolé …"
259
-
260
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
261
- msgid "Search …"
262
- msgstr "Recherche …"
263
-
264
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
265
- msgid "First"
266
- msgstr "Premier"
267
-
268
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
269
- msgid "Last"
270
- msgstr "Dernier"
271
-
272
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
273
- msgid "Next"
274
- msgstr "Suivant"
275
-
276
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
277
- msgid "Previous"
278
- msgstr "Précèdent"
279
-
280
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
281
- msgid ": activate to sort column ascending"
282
- msgstr ": activer pour trier les colonnes par ordre croissant"
283
-
284
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
285
- msgid ": activate to sort column descending"
286
- msgstr ": activer pour trier les colonnes dans l'ordre décroissant"
287
-
288
219
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
289
220
  #, python-format
290
221
  msgid "Scans will be deleted after %(scan_retention_time)s day."
@@ -459,8 +390,8 @@ msgid "No data."
459
390
  msgstr "Aucune donnée."
460
391
 
461
392
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
462
- msgid "Scan taken at (Eve time)"
463
- msgstr "Scan pris a (Eve time)"
393
+ msgid "Scan taken at (EVE time)"
394
+ msgstr "Scan pris a (EVE time)"
464
395
 
465
396
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
466
397
  msgid "Fleet details"
@@ -499,6 +430,59 @@ msgstr "(System Error) un imprévu est arrivé."
499
430
  msgid "The scan you were looking for could not be found."
500
431
  msgstr "Les scans que vous cherchez n'ont pas été trouvés."
501
432
 
433
+ #~ msgctxt "Decimal separator"
434
+ #~ msgid "."
435
+ #~ msgstr "."
436
+
437
+ #~ msgctxt "Thousands separator"
438
+ #~ msgid ","
439
+ #~ msgstr ","
440
+
441
+ #~ msgid "No data available in this table"
442
+ #~ msgstr "Aucune donnée disponible dans cette table"
443
+
444
+ #~ msgctxt "Keep _END_ as it is. It will be replaced by a number."
445
+ #~ msgid "Showing _END_ entries"
446
+ #~ msgstr "Montre les _END_ entrées"
447
+
448
+ #, fuzzy
449
+ #~ msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
450
+ #~ msgid "(filtered from _MAX_ total entries)"
451
+ #~ msgstr "(Filtré depuis _MAX_ entrées)"
452
+
453
+ #~ msgid "No records available"
454
+ #~ msgstr "Aucun enregistrement disponible"
455
+
456
+ #~ msgid "Loading …"
457
+ #~ msgstr "Chargement …"
458
+
459
+ #~ msgid "Processing …"
460
+ #~ msgstr "Traitement …"
461
+
462
+ #~ msgid "Nothing found, sorry …"
463
+ #~ msgstr "Rien n'a été trouvé, désolé …"
464
+
465
+ #~ msgid "Search …"
466
+ #~ msgstr "Recherche …"
467
+
468
+ #~ msgid "First"
469
+ #~ msgstr "Premier"
470
+
471
+ #~ msgid "Last"
472
+ #~ msgstr "Dernier"
473
+
474
+ #~ msgid "Next"
475
+ #~ msgstr "Suivant"
476
+
477
+ #~ msgid "Previous"
478
+ #~ msgstr "Précèdent"
479
+
480
+ #~ msgid ": activate to sort column ascending"
481
+ #~ msgstr ": activer pour trier les colonnes par ordre croissant"
482
+
483
+ #~ msgid ": activate to sort column descending"
484
+ #~ msgstr ": activer pour trier les colonnes dans l'ordre décroissant"
485
+
502
486
  #~ msgctxt "Keep _MENU_ as it is. It will be replaced by an HTML construct."
503
487
  #~ msgid "Show _MENU_"
504
488
  #~ msgstr "Montre _MENU_"