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