aa-intel-tool 2.7.0__py3-none-any.whl → 2.7.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aa_intel_tool/__init__.py +1 -1
- aa_intel_tool/constants.py +0 -17
- aa_intel_tool/exceptions.py +14 -4
- aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +17 -13
- aa_intel_tool/locale/django.pot +16 -12
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/locale/sk/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +19 -15
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/parser/general.py +5 -3
- aa_intel_tool/parser/module/chatlist.py +6 -4
- aa_intel_tool/parser/module/dscan.py +1 -1
- aa_intel_tool/parser/module/fleetcomp.py +1 -1
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.1.dist-info}/METADATA +1 -1
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.1.dist-info}/RECORD +27 -27
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.1.dist-info}/WHEEL +0 -0
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.1.dist-info}/licenses/LICENSE +0 -0
aa_intel_tool/__init__.py
CHANGED
aa_intel_tool/constants.py
CHANGED
|
@@ -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)
|
aa_intel_tool/exceptions.py
CHANGED
|
@@ -25,12 +25,22 @@ class ParserError(AaIntelToolException):
|
|
|
25
25
|
@property
|
|
26
26
|
def message(self) -> str:
|
|
27
27
|
"""
|
|
28
|
-
|
|
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
|
-
|
|
35
|
-
|
|
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-
|
|
9
|
+
"POT-Creation-Date: 2025-07-08 12:13+0200\n"
|
|
10
10
|
"PO-Revision-Date: 2024-07-10 14:26+0000\n"
|
|
11
11
|
"Last-Translator: Dadas Aideron <dadas.aideron@gmail.com>\n"
|
|
12
12
|
"Language-Team: Czech <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/cs/>\n"
|
|
@@ -44,22 +44,26 @@ msgstr ""
|
|
|
44
44
|
msgid "Intel Parser v{__version__}"
|
|
45
45
|
msgstr ""
|
|
46
46
|
|
|
47
|
-
#: aa_intel_tool/constants.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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."
|
|
Binary file
|
|
@@ -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-
|
|
10
|
-
"PO-Revision-Date: 2025-
|
|
9
|
+
"POT-Creation-Date: 2025-07-08 12:13+0200\n"
|
|
10
|
+
"PO-Revision-Date: 2025-06-27 08:09+0000\n"
|
|
11
11
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
12
12
|
"Language-Team: German <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/de/>\n"
|
|
13
13
|
"Language: de\n"
|
|
@@ -15,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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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."
|
aa_intel_tool/locale/django.pot
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
#, fuzzy
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: AA Intel Tool 2.7.
|
|
9
|
+
"Project-Id-Version: AA Intel Tool 2.7.1\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2025-
|
|
11
|
+
"POT-Creation-Date: 2025-07-08 12:13+0200\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -45,22 +45,26 @@ msgstr ""
|
|
|
45
45
|
msgid "Intel Parser v{__version__}"
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
48
|
-
#: aa_intel_tool/constants.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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 "
|
|
@@ -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-
|
|
11
|
+
"POT-Creation-Date: 2025-07-08 12:13+0200\n"
|
|
12
12
|
"PO-Revision-Date: 2024-12-02 17:40+0000\n"
|
|
13
13
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
14
14
|
"Language-Team: Spanish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/es/>\n"
|
|
@@ -46,24 +46,30 @@ 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:
|
|
49
|
+
#: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
|
|
50
50
|
#, fuzzy
|
|
51
51
|
#| msgid "Chat List"
|
|
52
52
|
msgid "Chat list"
|
|
53
53
|
msgstr "Lista de Chat"
|
|
54
54
|
|
|
55
|
-
#: aa_intel_tool/constants.py:
|
|
55
|
+
#: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
|
|
56
56
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
57
57
|
msgid "D-Scan"
|
|
58
58
|
msgstr "D-Scan"
|
|
59
59
|
|
|
60
|
-
#: aa_intel_tool/constants.py:
|
|
60
|
+
#: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
|
|
61
61
|
#: aa_intel_tool/models.py:123
|
|
62
62
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
63
63
|
msgid "Fleet composition"
|
|
64
64
|
msgstr "Composición de Flota"
|
|
65
65
|
|
|
66
|
-
#: aa_intel_tool/exceptions.py:
|
|
66
|
+
#: aa_intel_tool/exceptions.py:44
|
|
67
|
+
#, fuzzy
|
|
68
|
+
#| msgid "A parser error occurred » {message}"
|
|
69
|
+
msgid "Unknown parser error"
|
|
70
|
+
msgstr "Se produjo un error del analizador » {message}"
|
|
71
|
+
|
|
72
|
+
#: aa_intel_tool/exceptions.py:46
|
|
67
73
|
#, python-brace-format
|
|
68
74
|
msgid "A parser error occurred » {message}"
|
|
69
75
|
msgstr "Se produjo un error del analizador » {message}"
|
|
@@ -166,27 +172,27 @@ msgstr "Datos de escaneo no válidos"
|
|
|
166
172
|
msgid "Scan data"
|
|
167
173
|
msgstr "Datos de escaneo no válidos"
|
|
168
174
|
|
|
169
|
-
#: aa_intel_tool/parser/general.py:
|
|
175
|
+
#: aa_intel_tool/parser/general.py:47
|
|
170
176
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
171
177
|
msgstr ""
|
|
172
178
|
|
|
173
|
-
#: aa_intel_tool/parser/general.py:
|
|
179
|
+
#: aa_intel_tool/parser/general.py:65
|
|
174
180
|
msgid "No data to parse …"
|
|
175
181
|
msgstr ""
|
|
176
182
|
|
|
177
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
183
|
+
#: aa_intel_tool/parser/module/chatlist.py:61
|
|
178
184
|
msgid "Something went wrong while fetching the character information from ESI."
|
|
179
185
|
msgstr ""
|
|
180
186
|
|
|
181
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
187
|
+
#: aa_intel_tool/parser/module/chatlist.py:69
|
|
182
188
|
msgid "Character unknown to ESI."
|
|
183
189
|
msgstr ""
|
|
184
190
|
|
|
185
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
191
|
+
#: aa_intel_tool/parser/module/chatlist.py:258
|
|
186
192
|
msgid "The chat list module is currently disabled."
|
|
187
193
|
msgstr ""
|
|
188
194
|
|
|
189
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
195
|
+
#: aa_intel_tool/parser/module/chatlist.py:277
|
|
190
196
|
#, python-brace-format
|
|
191
197
|
msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
|
|
192
198
|
msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
|
|
@@ -9,7 +9,7 @@ msgid ""
|
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
12
|
-
"POT-Creation-Date: 2025-
|
|
12
|
+
"POT-Creation-Date: 2025-07-08 12:13+0200\n"
|
|
13
13
|
"PO-Revision-Date: 2025-03-25 13:24+0000\n"
|
|
14
14
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
15
15
|
"Language-Team: French <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/fr/>\n"
|
|
@@ -47,22 +47,26 @@ msgstr "Données brute"
|
|
|
47
47
|
msgid "Intel Parser v{__version__}"
|
|
48
48
|
msgstr ""
|
|
49
49
|
|
|
50
|
-
#: aa_intel_tool/constants.py:
|
|
50
|
+
#: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
|
|
51
51
|
msgid "Chat list"
|
|
52
52
|
msgstr "Liste de conversation"
|
|
53
53
|
|
|
54
|
-
#: aa_intel_tool/constants.py:
|
|
54
|
+
#: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
|
|
55
55
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
56
56
|
msgid "D-Scan"
|
|
57
57
|
msgstr "Scanner directionnel"
|
|
58
58
|
|
|
59
|
-
#: aa_intel_tool/constants.py:
|
|
59
|
+
#: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
|
|
60
60
|
#: aa_intel_tool/models.py:123
|
|
61
61
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
62
62
|
msgid "Fleet composition"
|
|
63
63
|
msgstr "Composition de flotte"
|
|
64
64
|
|
|
65
|
-
#: aa_intel_tool/exceptions.py:
|
|
65
|
+
#: aa_intel_tool/exceptions.py:44
|
|
66
|
+
msgid "Unknown parser error"
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
#: aa_intel_tool/exceptions.py:46
|
|
66
70
|
#, python-brace-format
|
|
67
71
|
msgid "A parser error occurred » {message}"
|
|
68
72
|
msgstr ""
|
|
@@ -161,27 +165,27 @@ msgstr "Données du scanner transformées"
|
|
|
161
165
|
msgid "Scan data"
|
|
162
166
|
msgstr "Données du scanner"
|
|
163
167
|
|
|
164
|
-
#: aa_intel_tool/parser/general.py:
|
|
168
|
+
#: aa_intel_tool/parser/general.py:47
|
|
165
169
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
166
170
|
msgstr ""
|
|
167
171
|
|
|
168
|
-
#: aa_intel_tool/parser/general.py:
|
|
172
|
+
#: aa_intel_tool/parser/general.py:65
|
|
169
173
|
msgid "No data to parse …"
|
|
170
174
|
msgstr ""
|
|
171
175
|
|
|
172
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
176
|
+
#: aa_intel_tool/parser/module/chatlist.py:61
|
|
173
177
|
msgid "Something went wrong while fetching the character information from ESI."
|
|
174
178
|
msgstr "Quelque chose s'est mal passé lors de la recherche d'information sur le personnage depuis l'ESI."
|
|
175
179
|
|
|
176
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
180
|
+
#: aa_intel_tool/parser/module/chatlist.py:69
|
|
177
181
|
msgid "Character unknown to ESI."
|
|
178
182
|
msgstr "Personnage inconnu de l'ESI."
|
|
179
183
|
|
|
180
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
184
|
+
#: aa_intel_tool/parser/module/chatlist.py:258
|
|
181
185
|
msgid "The chat list module is currently disabled."
|
|
182
186
|
msgstr "Le module de liste de discussion est désactivé pour le moment."
|
|
183
187
|
|
|
184
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
188
|
+
#: aa_intel_tool/parser/module/chatlist.py:277
|
|
185
189
|
#, python-brace-format
|
|
186
190
|
msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
|
|
187
191
|
msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
|
|
@@ -7,7 +7,7 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
10
|
-
"POT-Creation-Date: 2025-
|
|
10
|
+
"POT-Creation-Date: 2025-07-08 12:13+0200\n"
|
|
11
11
|
"PO-Revision-Date: 2024-05-10 14:07+0000\n"
|
|
12
12
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
|
13
13
|
"Language-Team: Italian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/it/>\n"
|
|
@@ -45,22 +45,26 @@ msgstr ""
|
|
|
45
45
|
msgid "Intel Parser v{__version__}"
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
48
|
-
#: aa_intel_tool/constants.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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."
|
|
@@ -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-
|
|
9
|
+
"POT-Creation-Date: 2025-07-08 12:13+0200\n"
|
|
10
10
|
"PO-Revision-Date: 2024-08-05 10:10+0000\n"
|
|
11
11
|
"Last-Translator: Anata_no_Usiro <yt23542354m@gmail.com>\n"
|
|
12
12
|
"Language-Team: Japanese <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ja/>\n"
|
|
@@ -44,22 +44,28 @@ msgstr "検証されていないデータ"
|
|
|
44
44
|
msgid "Intel Parser v{__version__}"
|
|
45
45
|
msgstr "インテル用の解析ツール v{__version__}"
|
|
46
46
|
|
|
47
|
-
#: aa_intel_tool/constants.py:
|
|
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:
|
|
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:
|
|
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:
|
|
62
|
+
#: aa_intel_tool/exceptions.py:44
|
|
63
|
+
#, fuzzy
|
|
64
|
+
#| msgid "A parser error occurred » {message}"
|
|
65
|
+
msgid "Unknown parser error"
|
|
66
|
+
msgstr "解析エラーが発生しました » {message}"
|
|
67
|
+
|
|
68
|
+
#: aa_intel_tool/exceptions.py:46
|
|
63
69
|
#, python-brace-format
|
|
64
70
|
msgid "A parser error occurred » {message}"
|
|
65
71
|
msgstr "解析エラーが発生しました » {message}"
|
|
@@ -154,27 +160,27 @@ msgstr ""
|
|
|
154
160
|
msgid "Scan data"
|
|
155
161
|
msgstr ""
|
|
156
162
|
|
|
157
|
-
#: aa_intel_tool/parser/general.py:
|
|
163
|
+
#: aa_intel_tool/parser/general.py:47
|
|
158
164
|
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
159
165
|
msgstr ""
|
|
160
166
|
|
|
161
|
-
#: aa_intel_tool/parser/general.py:
|
|
167
|
+
#: aa_intel_tool/parser/general.py:65
|
|
162
168
|
msgid "No data to parse …"
|
|
163
169
|
msgstr ""
|
|
164
170
|
|
|
165
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
171
|
+
#: aa_intel_tool/parser/module/chatlist.py:61
|
|
166
172
|
msgid "Something went wrong while fetching the character information from ESI."
|
|
167
173
|
msgstr ""
|
|
168
174
|
|
|
169
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
175
|
+
#: aa_intel_tool/parser/module/chatlist.py:69
|
|
170
176
|
msgid "Character unknown to ESI."
|
|
171
177
|
msgstr ""
|
|
172
178
|
|
|
173
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
179
|
+
#: aa_intel_tool/parser/module/chatlist.py:258
|
|
174
180
|
msgid "The chat list module is currently disabled."
|
|
175
181
|
msgstr ""
|
|
176
182
|
|
|
177
|
-
#: aa_intel_tool/parser/module/chatlist.py:
|
|
183
|
+
#: aa_intel_tool/parser/module/chatlist.py:277
|
|
178
184
|
#, python-brace-format
|
|
179
185
|
msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
|
|
180
186
|
msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
|