aa-intel-tool 2.5.2__py3-none-any.whl → 2.6.0__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/app_settings.py +1 -1
- aa_intel_tool/constants.py +12 -5
- aa_intel_tool/helper/static_files.py +41 -0
- aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +34 -55
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +44 -74
- aa_intel_tool/locale/django.pot +25 -30
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +33 -53
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +44 -72
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +32 -50
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +32 -50
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +40 -62
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +32 -50
- aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +34 -55
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +45 -76
- aa_intel_tool/locale/sk/LC_MESSAGES/django.po +33 -52
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +34 -55
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +38 -55
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +5 -0
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js +1 -0
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +7 -7
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js +1 -0
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +18 -18
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js +28 -2
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +41 -8
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js +5 -5
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.js +66 -2
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js.map +1 -1
- aa_intel_tool/templates/aa_intel_tool/base.html +67 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-highlight-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html +6 -3
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-css.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-highlight-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-js.html +4 -3
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomp-js.html +6 -5
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomposition-highlight-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-scan-result-common-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html +3 -3
- aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html +3 -3
- aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html +3 -3
- aa_intel_tool/templatetags/aa_intel_tool.py +66 -9
- aa_intel_tool/tests/test_app_settings.py +7 -1
- aa_intel_tool/tests/test_templatetags.py +57 -12
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/METADATA +4 -3
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/RECORD +66 -62
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/WHEEL +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js-l10n.html +0 -46
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,17 +6,15 @@ 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:
|
|
9
|
+
"POT-Creation-Date: 2025-01-31 11:24+0100\n"
|
|
10
10
|
"PO-Revision-Date: 2024-10-04 18:10+0000\n"
|
|
11
11
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
12
|
-
"Language-Team: Ukrainian <https://weblate.ppfeufer.de/projects/alliance-auth-"
|
|
13
|
-
"apps/aa-intel-tool/uk/>\n"
|
|
12
|
+
"Language-Team: Ukrainian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/uk/>\n"
|
|
14
13
|
"Language: uk\n"
|
|
15
14
|
"MIME-Version: 1.0\n"
|
|
16
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
-
"Plural-Forms: nplurals=4; plural=n==1 ? 3 : (n%10==1 && n%100!=11 ? 0 : "
|
|
19
|
-
"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=n==1 ? 3 : (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
20
18
|
"X-Generator: Weblate 5.7.2\n"
|
|
21
19
|
|
|
22
20
|
#: aa_intel_tool/__init__.py:9
|
|
@@ -47,16 +45,16 @@ msgstr ""
|
|
|
47
45
|
msgid "Intel Parser v{__version__}"
|
|
48
46
|
msgstr ""
|
|
49
47
|
|
|
50
|
-
#: aa_intel_tool/constants.py:
|
|
48
|
+
#: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
|
|
51
49
|
msgid "Chat list"
|
|
52
50
|
msgstr ""
|
|
53
51
|
|
|
54
|
-
#: aa_intel_tool/constants.py:
|
|
52
|
+
#: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
|
|
55
53
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
56
54
|
msgid "D-Scan"
|
|
57
55
|
msgstr ""
|
|
58
56
|
|
|
59
|
-
#: aa_intel_tool/constants.py:
|
|
57
|
+
#: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
|
|
60
58
|
#: aa_intel_tool/models.py:123
|
|
61
59
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
62
60
|
msgid "Fleet composition"
|
|
@@ -158,8 +156,7 @@ msgid "Scan data"
|
|
|
158
156
|
msgstr ""
|
|
159
157
|
|
|
160
158
|
#: aa_intel_tool/parser/general.py:46
|
|
161
|
-
msgid ""
|
|
162
|
-
"No suitable parser found. Input is not a supported intel type or malformed …"
|
|
159
|
+
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
163
160
|
msgstr ""
|
|
164
161
|
|
|
165
162
|
#: aa_intel_tool/parser/general.py:80
|
|
@@ -180,12 +177,8 @@ msgstr ""
|
|
|
180
177
|
|
|
181
178
|
#: aa_intel_tool/parser/module/chatlist.py:299
|
|
182
179
|
#, python-brace-format
|
|
183
|
-
msgid ""
|
|
184
|
-
"Chat scans are currently limited to a maximum of {max_allowed_pilots}
|
|
185
|
-
"per scan. Your list of pilots exceeds this limit."
|
|
186
|
-
msgid_plural ""
|
|
187
|
-
"Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots "
|
|
188
|
-
"per scan. Your list of pilots exceeds this limit."
|
|
180
|
+
msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
|
|
181
|
+
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
182
|
msgstr[0] ""
|
|
190
183
|
msgstr[1] ""
|
|
191
184
|
msgstr[2] ""
|
|
@@ -199,97 +192,90 @@ msgstr ""
|
|
|
199
192
|
msgid "The fleet composition module is currently disabled."
|
|
200
193
|
msgstr ""
|
|
201
194
|
|
|
202
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
195
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:20
|
|
203
196
|
msgid "Permalink successfully copied"
|
|
204
197
|
msgstr ""
|
|
205
198
|
|
|
206
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
207
|
-
msgid ""
|
|
208
|
-
"Something went wrong. Nothing copied. Maybe your browser does not support "
|
|
209
|
-
"this function."
|
|
199
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:21
|
|
200
|
+
msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
|
|
210
201
|
msgstr ""
|
|
211
202
|
|
|
212
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
203
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:22
|
|
213
204
|
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
|
|
214
205
|
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
|
|
215
206
|
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
|
|
216
207
|
msgid "Unaffiliated / No Alliance"
|
|
217
208
|
msgstr ""
|
|
218
209
|
|
|
219
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
210
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:23
|
|
220
211
|
msgid "NPC Corp"
|
|
221
212
|
msgstr ""
|
|
222
213
|
|
|
223
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
214
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:24
|
|
224
215
|
msgctxt "Decimal separator"
|
|
225
216
|
msgid "."
|
|
226
217
|
msgstr ""
|
|
227
218
|
|
|
228
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
219
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:25
|
|
229
220
|
msgctxt "Thousands separator"
|
|
230
221
|
msgid ","
|
|
231
222
|
msgstr ""
|
|
232
223
|
|
|
233
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
224
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:26
|
|
234
225
|
msgid "No data available in this table"
|
|
235
226
|
msgstr ""
|
|
236
227
|
|
|
237
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
228
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:27
|
|
238
229
|
msgctxt "Keep _END_ as it is. It will be replaced by a number."
|
|
239
230
|
msgid "Showing _END_ entries"
|
|
240
231
|
msgstr ""
|
|
241
232
|
|
|
242
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
233
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:28
|
|
243
234
|
msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
|
|
244
235
|
msgid "(filtered from _MAX_ total entries)"
|
|
245
236
|
msgstr ""
|
|
246
237
|
|
|
247
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
238
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:29
|
|
248
239
|
msgid "No records available"
|
|
249
240
|
msgstr ""
|
|
250
241
|
|
|
251
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
252
|
-
msgctxt "Keep _MENU_ as it is. It will be replaced by an HTML construct."
|
|
253
|
-
msgid "Show _MENU_"
|
|
254
|
-
msgstr ""
|
|
255
|
-
|
|
256
|
-
#: aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js-l10n.html:28
|
|
242
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:30
|
|
257
243
|
msgid "Loading …"
|
|
258
244
|
msgstr ""
|
|
259
245
|
|
|
260
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
246
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:31
|
|
261
247
|
msgid "Processing …"
|
|
262
248
|
msgstr ""
|
|
263
249
|
|
|
264
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
250
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:32
|
|
265
251
|
msgid "Nothing found, sorry …"
|
|
266
252
|
msgstr ""
|
|
267
253
|
|
|
268
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
254
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:33
|
|
269
255
|
msgid "Search …"
|
|
270
256
|
msgstr ""
|
|
271
257
|
|
|
272
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
258
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:34
|
|
273
259
|
msgid "First"
|
|
274
260
|
msgstr ""
|
|
275
261
|
|
|
276
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
262
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:35
|
|
277
263
|
msgid "Last"
|
|
278
264
|
msgstr ""
|
|
279
265
|
|
|
280
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
266
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:36
|
|
281
267
|
msgid "Next"
|
|
282
268
|
msgstr ""
|
|
283
269
|
|
|
284
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
270
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:37
|
|
285
271
|
msgid "Previous"
|
|
286
272
|
msgstr ""
|
|
287
273
|
|
|
288
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
274
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:38
|
|
289
275
|
msgid ": activate to sort column ascending"
|
|
290
276
|
msgstr ""
|
|
291
277
|
|
|
292
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
278
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:39
|
|
293
279
|
msgid ": activate to sort column descending"
|
|
294
280
|
msgstr ""
|
|
295
281
|
|
|
@@ -303,12 +289,8 @@ msgstr[2] ""
|
|
|
303
289
|
msgstr[3] ""
|
|
304
290
|
|
|
305
291
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:5
|
|
306
|
-
msgid ""
|
|
307
|
-
"
|
|
308
|
-
"existing translation?"
|
|
309
|
-
msgstr ""
|
|
310
|
-
"Хочете допомогти перекласти цю програму вашою мовою чи покращити наявний "
|
|
311
|
-
"переклад?"
|
|
292
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
|
293
|
+
msgstr "Хочете допомогти перекласти цю програму вашою мовою чи покращити наявний переклад?"
|
|
312
294
|
|
|
313
295
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:8
|
|
314
296
|
msgid "Join our team of translators!"
|
|
@@ -332,9 +314,7 @@ msgstr[2] ""
|
|
|
332
314
|
msgstr[3] ""
|
|
333
315
|
|
|
334
316
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:40
|
|
335
|
-
msgid ""
|
|
336
|
-
"Please keep in mind, parsing large amounts of data can take some time. Be "
|
|
337
|
-
"patient, CCP's API is not the fastest to answer …"
|
|
317
|
+
msgid "Please keep in mind, parsing large amounts of data can take some time. Be patient, CCP's API is not the fastest to answer …"
|
|
338
318
|
msgstr ""
|
|
339
319
|
|
|
340
320
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:51
|
|
@@ -350,8 +330,7 @@ msgid "Detecting the intel type"
|
|
|
350
330
|
msgstr ""
|
|
351
331
|
|
|
352
332
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:59
|
|
353
|
-
msgid ""
|
|
354
|
-
"Fetching potentially missing information from ESI (this might take a moment)"
|
|
333
|
+
msgid "Fetching potentially missing information from ESI (this might take a moment)"
|
|
355
334
|
msgstr ""
|
|
356
335
|
|
|
357
336
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:60
|
|
Binary file
|
|
@@ -6,21 +6,21 @@
|
|
|
6
6
|
# SAM_FPS <sam_fps@163.com>, 2024.
|
|
7
7
|
# Peter Pfeufer <info@ppfeufer.de>, 2024.
|
|
8
8
|
# 陈康立 <amadis0814@gmail.com>, 2024.
|
|
9
|
+
# Chilmore <chenmo1203@gmail.com>, 2025.
|
|
9
10
|
msgid ""
|
|
10
11
|
msgstr ""
|
|
11
12
|
"Project-Id-Version: AA Intel Tool 2.5.1\n"
|
|
12
13
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
|
|
13
|
-
"POT-Creation-Date:
|
|
14
|
-
"PO-Revision-Date:
|
|
15
|
-
"Last-Translator:
|
|
16
|
-
"Language-Team: Chinese (Simplified) <https://weblate.ppfeufer.de/projects/"
|
|
17
|
-
"alliance-auth-apps/aa-intel-tool/zh_Hans/>\n"
|
|
14
|
+
"POT-Creation-Date: 2025-01-31 11:24+0100\n"
|
|
15
|
+
"PO-Revision-Date: 2025-01-20 06:17+0000\n"
|
|
16
|
+
"Last-Translator: Chilmore <chenmo1203@gmail.com>\n"
|
|
17
|
+
"Language-Team: Chinese (Simplified Han script) <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/zh_Hans/>\n"
|
|
18
18
|
"Language: zh_Hans\n"
|
|
19
19
|
"MIME-Version: 1.0\n"
|
|
20
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
21
21
|
"Content-Transfer-Encoding: 8bit\n"
|
|
22
22
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
23
|
-
"X-Generator: Weblate 5.
|
|
23
|
+
"X-Generator: Weblate 5.9.2\n"
|
|
24
24
|
|
|
25
25
|
#: aa_intel_tool/__init__.py:9
|
|
26
26
|
#: aa_intel_tool/templates/aa_intel_tool/base.html:6
|
|
@@ -42,7 +42,7 @@ msgstr ""
|
|
|
42
42
|
|
|
43
43
|
#: aa_intel_tool/admin.py:100
|
|
44
44
|
msgid "Raw data"
|
|
45
|
-
msgstr ""
|
|
45
|
+
msgstr "原始数据"
|
|
46
46
|
|
|
47
47
|
#. Translators: This is the app name and version, which will appear in the Django Backend
|
|
48
48
|
#: aa_intel_tool/apps.py:21
|
|
@@ -50,16 +50,16 @@ msgstr ""
|
|
|
50
50
|
msgid "Intel Parser v{__version__}"
|
|
51
51
|
msgstr ""
|
|
52
52
|
|
|
53
|
-
#: aa_intel_tool/constants.py:
|
|
53
|
+
#: aa_intel_tool/constants.py:61 aa_intel_tool/models.py:24
|
|
54
54
|
msgid "Chat list"
|
|
55
|
-
msgstr ""
|
|
55
|
+
msgstr "聊天列表"
|
|
56
56
|
|
|
57
|
-
#: aa_intel_tool/constants.py:
|
|
57
|
+
#: aa_intel_tool/constants.py:67 aa_intel_tool/models.py:22
|
|
58
58
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
|
|
59
59
|
msgid "D-Scan"
|
|
60
60
|
msgstr "定向扫描"
|
|
61
61
|
|
|
62
|
-
#: aa_intel_tool/constants.py:
|
|
62
|
+
#: aa_intel_tool/constants.py:73 aa_intel_tool/models.py:23
|
|
63
63
|
#: aa_intel_tool/models.py:123
|
|
64
64
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
|
|
65
65
|
msgid "Fleet composition"
|
|
@@ -161,8 +161,7 @@ msgid "Scan data"
|
|
|
161
161
|
msgstr ""
|
|
162
162
|
|
|
163
163
|
#: aa_intel_tool/parser/general.py:46
|
|
164
|
-
msgid ""
|
|
165
|
-
"No suitable parser found. Input is not a supported intel type or malformed …"
|
|
164
|
+
msgid "No suitable parser found. Input is not a supported intel type or malformed …"
|
|
166
165
|
msgstr ""
|
|
167
166
|
|
|
168
167
|
#: aa_intel_tool/parser/general.py:80
|
|
@@ -183,12 +182,8 @@ msgstr ""
|
|
|
183
182
|
|
|
184
183
|
#: aa_intel_tool/parser/module/chatlist.py:299
|
|
185
184
|
#, python-brace-format
|
|
186
|
-
msgid ""
|
|
187
|
-
"Chat scans are currently limited to a maximum of {max_allowed_pilots}
|
|
188
|
-
"per scan. Your list of pilots exceeds this limit."
|
|
189
|
-
msgid_plural ""
|
|
190
|
-
"Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots "
|
|
191
|
-
"per scan. Your list of pilots exceeds this limit."
|
|
185
|
+
msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
|
|
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."
|
|
192
187
|
msgstr[0] ""
|
|
193
188
|
|
|
194
189
|
#: aa_intel_tool/parser/module/dscan.py:350
|
|
@@ -199,97 +194,90 @@ msgstr ""
|
|
|
199
194
|
msgid "The fleet composition module is currently disabled."
|
|
200
195
|
msgstr ""
|
|
201
196
|
|
|
202
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
197
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:20
|
|
203
198
|
msgid "Permalink successfully copied"
|
|
204
199
|
msgstr ""
|
|
205
200
|
|
|
206
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
207
|
-
msgid ""
|
|
208
|
-
"Something went wrong. Nothing copied. Maybe your browser does not support "
|
|
209
|
-
"this function."
|
|
201
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:21
|
|
202
|
+
msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
|
|
210
203
|
msgstr ""
|
|
211
204
|
|
|
212
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
205
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:22
|
|
213
206
|
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
|
|
214
207
|
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
|
|
215
208
|
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
|
|
216
209
|
msgid "Unaffiliated / No Alliance"
|
|
217
210
|
msgstr ""
|
|
218
211
|
|
|
219
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
212
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:23
|
|
220
213
|
msgid "NPC Corp"
|
|
221
214
|
msgstr ""
|
|
222
215
|
|
|
223
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
216
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:24
|
|
224
217
|
msgctxt "Decimal separator"
|
|
225
218
|
msgid "."
|
|
226
219
|
msgstr ""
|
|
227
220
|
|
|
228
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
221
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:25
|
|
229
222
|
msgctxt "Thousands separator"
|
|
230
223
|
msgid ","
|
|
231
224
|
msgstr ""
|
|
232
225
|
|
|
233
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
226
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:26
|
|
234
227
|
msgid "No data available in this table"
|
|
235
228
|
msgstr ""
|
|
236
229
|
|
|
237
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
230
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:27
|
|
238
231
|
msgctxt "Keep _END_ as it is. It will be replaced by a number."
|
|
239
232
|
msgid "Showing _END_ entries"
|
|
240
233
|
msgstr ""
|
|
241
234
|
|
|
242
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
235
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:28
|
|
243
236
|
msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
|
|
244
237
|
msgid "(filtered from _MAX_ total entries)"
|
|
245
238
|
msgstr ""
|
|
246
239
|
|
|
247
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
240
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:29
|
|
248
241
|
msgid "No records available"
|
|
249
242
|
msgstr ""
|
|
250
243
|
|
|
251
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
252
|
-
msgctxt "Keep _MENU_ as it is. It will be replaced by an HTML construct."
|
|
253
|
-
msgid "Show _MENU_"
|
|
254
|
-
msgstr ""
|
|
255
|
-
|
|
256
|
-
#: aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js-l10n.html:28
|
|
244
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:30
|
|
257
245
|
msgid "Loading …"
|
|
258
246
|
msgstr ""
|
|
259
247
|
|
|
260
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
248
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:31
|
|
261
249
|
msgid "Processing …"
|
|
262
250
|
msgstr ""
|
|
263
251
|
|
|
264
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
252
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:32
|
|
265
253
|
msgid "Nothing found, sorry …"
|
|
266
254
|
msgstr ""
|
|
267
255
|
|
|
268
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
256
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:33
|
|
269
257
|
msgid "Search …"
|
|
270
258
|
msgstr ""
|
|
271
259
|
|
|
272
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
260
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:34
|
|
273
261
|
msgid "First"
|
|
274
262
|
msgstr ""
|
|
275
263
|
|
|
276
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
264
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:35
|
|
277
265
|
msgid "Last"
|
|
278
266
|
msgstr ""
|
|
279
267
|
|
|
280
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
268
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:36
|
|
281
269
|
msgid "Next"
|
|
282
270
|
msgstr ""
|
|
283
271
|
|
|
284
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
272
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:37
|
|
285
273
|
msgid "Previous"
|
|
286
274
|
msgstr ""
|
|
287
275
|
|
|
288
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
276
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:38
|
|
289
277
|
msgid ": activate to sort column ascending"
|
|
290
278
|
msgstr ""
|
|
291
279
|
|
|
292
|
-
#: aa_intel_tool/templates/aa_intel_tool/
|
|
280
|
+
#: aa_intel_tool/templates/aa_intel_tool/base.html:39
|
|
293
281
|
msgid ": activate to sort column descending"
|
|
294
282
|
msgstr ""
|
|
295
283
|
|
|
@@ -300,9 +288,7 @@ msgid_plural "Scans will be deleted after %(scan_retention_time)s days."
|
|
|
300
288
|
msgstr[0] ""
|
|
301
289
|
|
|
302
290
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:5
|
|
303
|
-
msgid ""
|
|
304
|
-
"Do you want to help translate this app into your language or improve the "
|
|
305
|
-
"existing translation?"
|
|
291
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
|
306
292
|
msgstr "您想帮助将此应用程序翻译成您的母语或改进现有的翻译吗?"
|
|
307
293
|
|
|
308
294
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:8
|
|
@@ -324,9 +310,7 @@ msgid_plural "Limited to a maximum of %(max_pilots)s pilots per scan."
|
|
|
324
310
|
msgstr[0] ""
|
|
325
311
|
|
|
326
312
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:40
|
|
327
|
-
msgid ""
|
|
328
|
-
"Please keep in mind, parsing large amounts of data can take some time. Be "
|
|
329
|
-
"patient, CCP's API is not the fastest to answer …"
|
|
313
|
+
msgid "Please keep in mind, parsing large amounts of data can take some time. Be patient, CCP's API is not the fastest to answer …"
|
|
330
314
|
msgstr ""
|
|
331
315
|
|
|
332
316
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:51
|
|
@@ -342,8 +326,7 @@ msgid "Detecting the intel type"
|
|
|
342
326
|
msgstr ""
|
|
343
327
|
|
|
344
328
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:59
|
|
345
|
-
msgid ""
|
|
346
|
-
"Fetching potentially missing information from ESI (this might take a moment)"
|
|
329
|
+
msgid "Fetching potentially missing information from ESI (this might take a moment)"
|
|
347
330
|
msgstr ""
|
|
348
331
|
|
|
349
332
|
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:60
|
|
@@ -84,6 +84,11 @@
|
|
|
84
84
|
/* Data Tables
|
|
85
85
|
------------------------------------------------------------------------------------- */
|
|
86
86
|
@media all {
|
|
87
|
+
.aa-intel-tool div.dataTables_filter input[type="search"] {
|
|
88
|
+
margin-left: 0 !important;
|
|
89
|
+
width: 100% !important;
|
|
90
|
+
}
|
|
91
|
+
|
|
87
92
|
.aa-intel-tool div.dataTables_wrapper div.dataTables_info {
|
|
88
93
|
padding-top: 8px;
|
|
89
94
|
white-space: initial;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@media all{.aa-intel-tool .aa-intel-scan-page-buttons ul li{display:block;float:left;width:150px}.aa-intel-tool .aa-intel-scan-page-buttons button{position:relative;width:100%}.aa-intel-tool .aa-intel-copy-result{max-width:310px}.aa-intel-tool .paste-explanation ul{list-style-type:none}.aa-intel-tool .paste-explanation li>small{color:var(--bs-gray)}.aa-intel-tool td.data-align-right{text-align:right}.aa-intel-tool .aa-intel-section-header{border-bottom:1px solid var(--bs-gray-200)}.aa-intel-tool .aa-intel-section-header .aa-intel-section-title{font-size:1.25em}.aa-intel-tool .aa-intel-alliance-logo-wrapper,.aa-intel-tool .aa-intel-corporation-logo-wrapper,.aa-intel-tool .aa-intel-pilot-avatar-wrapper,.aa-intel-tool .aa-intel-ship-image-wrapper{display:inline-block;margin-right:.5rem}.aa-intel-tool .aa-intel-alliance-information-wrapper,.aa-intel-tool .aa-intel-corporation-information-wrapper,.aa-intel-tool .aa-intel-pilot-information-wrapper{display:inline-block;vertical-align:inherit}.aa-intel-tool .aa-intel-alliance-links-wrapper,.aa-intel-tool .aa-intel-alliance-name-wrapper,.aa-intel-tool .aa-intel-corporation-links-wrapper,.aa-intel-tool .aa-intel-corporation-name-wrapper,.aa-intel-tool .aa-intel-pilot-links-wrapper,.aa-intel-tool .aa-intel-pilot-name-wrapper,.aa-intel-tool form.is-submitting .aa-intel-form-submitted-info{display:block}.aa-intel-tool .aa-intel-highlight td:first-child,.aa-intel-tool .aa-intel-highlight-sticky td:first-child{border-left:1px solid var(--bs-red);padding-left:3px}.aa-intel-tool .aa-intel-form-submitted-info{display:none}.aa-intel-tool div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:initial}.aa-intel-tool .dataTables_wrapper table.dataTable{width:100%}.aa-intel-tool .dataTable tbody tr.aa-intel-highlight,.aa-intel-tool .dataTable tbody tr.aa-intel-highlight-sticky,.aa-intel-tool .dataTable tbody tr:hover{--bs-table-bg-type:var(--bs-table-hover-bg);--bs-table-color-type:var(--bs-table-striped-color)}.aa-intel-tool .table-aa-intel tbody>tr>td{vertical-align:middle}.aa-intel-tool .table-no-images>tbody>tr>td{padding-bottom:12px;padding-top:11px}.aa-intel-tool .table-sortable>tbody>tr>.table-data-count{padding-right:1rem;text-align:right}.aa-intel-tool td.text-ellipsis{max-width:50px;white-space:nowrap}.aa-intel-alliance-information-wrapper,.aa-intel-corporation-information-wrapper,.aa-intel-pilot-information-wrapper{max-width:calc(100% - 35px)}.aa-intel-alliance-name-wrapper,.aa-intel-corporation-name-wrapper,.aa-intel-pilot-name-wrapper{overflow:hidden;text-overflow:ellipsis}.aa-intel-tool td.fix-eve-image-position>span.alliance-id-1{transform:none}}
|
|
1
|
+
@media all{.aa-intel-tool .aa-intel-scan-page-buttons ul li{display:block;float:left;width:150px}.aa-intel-tool .aa-intel-scan-page-buttons button{position:relative;width:100%}.aa-intel-tool .aa-intel-copy-result{max-width:310px}.aa-intel-tool .paste-explanation ul{list-style-type:none}.aa-intel-tool .paste-explanation li>small{color:var(--bs-gray)}.aa-intel-tool td.data-align-right{text-align:right}.aa-intel-tool .aa-intel-section-header{border-bottom:1px solid var(--bs-gray-200)}.aa-intel-tool .aa-intel-section-header .aa-intel-section-title{font-size:1.25em}.aa-intel-tool .aa-intel-alliance-logo-wrapper,.aa-intel-tool .aa-intel-corporation-logo-wrapper,.aa-intel-tool .aa-intel-pilot-avatar-wrapper,.aa-intel-tool .aa-intel-ship-image-wrapper{display:inline-block;margin-right:.5rem}.aa-intel-tool .aa-intel-alliance-information-wrapper,.aa-intel-tool .aa-intel-corporation-information-wrapper,.aa-intel-tool .aa-intel-pilot-information-wrapper{display:inline-block;vertical-align:inherit}.aa-intel-tool .aa-intel-alliance-links-wrapper,.aa-intel-tool .aa-intel-alliance-name-wrapper,.aa-intel-tool .aa-intel-corporation-links-wrapper,.aa-intel-tool .aa-intel-corporation-name-wrapper,.aa-intel-tool .aa-intel-pilot-links-wrapper,.aa-intel-tool .aa-intel-pilot-name-wrapper,.aa-intel-tool form.is-submitting .aa-intel-form-submitted-info{display:block}.aa-intel-tool .aa-intel-highlight td:first-child,.aa-intel-tool .aa-intel-highlight-sticky td:first-child{border-left:1px solid var(--bs-red);padding-left:3px}.aa-intel-tool .aa-intel-form-submitted-info{display:none}.aa-intel-tool div.dataTables_filter input[type=search]{margin-left:0!important;width:100%!important}.aa-intel-tool div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:initial}.aa-intel-tool .dataTables_wrapper table.dataTable{width:100%}.aa-intel-tool .dataTable tbody tr.aa-intel-highlight,.aa-intel-tool .dataTable tbody tr.aa-intel-highlight-sticky,.aa-intel-tool .dataTable tbody tr:hover{--bs-table-bg-type:var(--bs-table-hover-bg);--bs-table-color-type:var(--bs-table-striped-color)}.aa-intel-tool .table-aa-intel tbody>tr>td{vertical-align:middle}.aa-intel-tool .table-no-images>tbody>tr>td{padding-bottom:12px;padding-top:11px}.aa-intel-tool .table-sortable>tbody>tr>.table-data-count{padding-right:1rem;text-align:right}.aa-intel-tool td.text-ellipsis{max-width:50px;white-space:nowrap}.aa-intel-alliance-information-wrapper,.aa-intel-corporation-information-wrapper,.aa-intel-pilot-information-wrapper{max-width:calc(100% - 35px)}.aa-intel-alliance-name-wrapper,.aa-intel-corporation-name-wrapper,.aa-intel-pilot-name-wrapper{overflow:hidden;text-overflow:ellipsis}.aa-intel-tool td.fix-eve-image-position>span.alliance-id-1{transform:none}}
|
|
2
2
|
/*# sourceMappingURL=aa-intel-tool.min.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["aa-intel-tool.css"],"names":[],"mappings":"AAAA,A,WACI,gD,CACI,a,CACA,U,CACA,W,CAGJ,iD,CACI,iB,CACA,U,CAGJ,oC,CACI,e,CAGJ,oC,CACI,oB,CAGJ,0C,CACI,oB,CAGJ,kC,CACI,gB,CAGJ,uC,CACI,0C,CAGJ,+D,CACI,gB,CAGJ,8C,CACA,iD,CACA,6C,CACA,2C,CACI,oB,CACA,kB,CAGJ,qD,CACA,wD,CACA,kD,CACI,oB,CACA,sB,CAIJ,+C,CADA,8C,CAGA,kD,CADA,iD,CAGA,4C,CADA,2C,CAuBA,+D,CArBI,a,CAOJ,iD,CACA,wD,CACI,mC,CACA,gB,CAOJ,4C,CACI,Y,CAWJ,yD,CACI,e,CACA,mB,CAGJ,kD,CACI,U,CAIJ,qD,CACA,4D,CAFA,wC,CAGI,2C,CACA,mD,CAGJ,0C,CACI,qB,CAGJ,2C,CACI,mB,CACA,gB,CAGJ,yD,CACI,kB,CACA,gB,CAGJ,+B,CACI,c,CACA,kB,CAGJ,sC,CACA,yC,CACA,mC,CACI,2B,CAGJ,+B,CACA,kC,CACA,4B,CACI,e,CACA,sB,CAGJ,2D,CACI,gB","file":"aa-intel-tool.css","sourcesContent":["@media all {\n .aa-intel-tool .aa-intel-scan-page-buttons ul li {\n display: block;\n float: left;\n width: 150px;\n }\n\n .aa-intel-tool .aa-intel-scan-page-buttons button {\n position: relative;\n width: 100%;\n }\n\n .aa-intel-tool .aa-intel-copy-result {\n max-width: 310px;\n }\n\n .aa-intel-tool .paste-explanation ul {\n list-style-type: none;\n }\n\n .aa-intel-tool .paste-explanation li > small {\n color: var(--bs-gray);\n }\n\n .aa-intel-tool td.data-align-right {\n text-align: right;\n }\n\n .aa-intel-tool .aa-intel-section-header {\n border-bottom: 1px solid var(--bs-gray-200);\n }\n\n .aa-intel-tool .aa-intel-section-header .aa-intel-section-title {\n font-size: 1.25em;\n }\n\n .aa-intel-tool .aa-intel-alliance-logo-wrapper,\n .aa-intel-tool .aa-intel-corporation-logo-wrapper,\n .aa-intel-tool .aa-intel-pilot-avatar-wrapper,\n .aa-intel-tool .aa-intel-ship-image-wrapper {\n display: inline-block;\n margin-right: 0.5rem;\n }\n\n .aa-intel-tool .aa-intel-alliance-information-wrapper,\n .aa-intel-tool .aa-intel-corporation-information-wrapper,\n .aa-intel-tool .aa-intel-pilot-information-wrapper {\n display: inline-block;\n vertical-align: inherit;\n }\n\n .aa-intel-tool .aa-intel-alliance-name-wrapper,\n .aa-intel-tool .aa-intel-alliance-links-wrapper,\n .aa-intel-tool .aa-intel-corporation-name-wrapper,\n .aa-intel-tool .aa-intel-corporation-links-wrapper,\n .aa-intel-tool .aa-intel-pilot-name-wrapper,\n .aa-intel-tool .aa-intel-pilot-links-wrapper {\n display: block;\n }\n}\n\n/* Highlighting\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool .aa-intel-highlight td:first-child,\n .aa-intel-tool .aa-intel-highlight-sticky td:first-child {\n border-left: 1px solid var(--bs-red);\n padding-left: 3px;\n }\n}\n\n/* Form\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool .aa-intel-form-submitted-info {\n display: none;\n }\n\n .aa-intel-tool form.is-submitting .aa-intel-form-submitted-info {\n display: block;\n }\n}\n\n/* Data Tables\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool div.dataTables_wrapper div.dataTables_info {\n padding-top: 8px;\n white-space: initial;\n }\n\n .aa-intel-tool .dataTables_wrapper table.dataTable {\n width: 100%;\n }\n\n .aa-intel-tool .dataTable tbody tr:hover,\n .aa-intel-tool .dataTable tbody tr.aa-intel-highlight,\n .aa-intel-tool .dataTable tbody tr.aa-intel-highlight-sticky {\n --bs-table-bg-type: var(--bs-table-hover-bg);\n --bs-table-color-type: var(--bs-table-striped-color);\n }\n\n .aa-intel-tool .table-aa-intel tbody > tr > td {\n vertical-align: middle;\n }\n\n .aa-intel-tool .table-no-images > tbody > tr > td {\n padding-bottom: 12px;\n padding-top: 11px;\n }\n\n .aa-intel-tool .table-sortable > tbody > tr > .table-data-count {\n padding-right: 1rem;\n text-align: right;\n }\n\n .aa-intel-tool td.text-ellipsis {\n max-width: 50px;\n white-space: nowrap;\n }\n\n .aa-intel-alliance-information-wrapper,\n .aa-intel-corporation-information-wrapper,\n .aa-intel-pilot-information-wrapper {\n max-width: calc(100% - 35px);\n }\n\n .aa-intel-alliance-name-wrapper,\n .aa-intel-corporation-name-wrapper,\n .aa-intel-pilot-name-wrapper {\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n .aa-intel-tool td.fix-eve-image-position > span.alliance-id-1 {\n transform: none;\n }\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["aa-intel-tool.css"],"names":[],"mappings":"AAAA,A,WACI,gD,CACI,a,CACA,U,CACA,W,CAGJ,iD,CACI,iB,CACA,U,CAGJ,oC,CACI,e,CAGJ,oC,CACI,oB,CAGJ,0C,CACI,oB,CAGJ,kC,CACI,gB,CAGJ,uC,CACI,0C,CAGJ,+D,CACI,gB,CAGJ,8C,CACA,iD,CACA,6C,CACA,2C,CACI,oB,CACA,kB,CAGJ,qD,CACA,wD,CACA,kD,CACI,oB,CACA,sB,CAIJ,+C,CADA,8C,CAGA,kD,CADA,iD,CAGA,4C,CADA,2C,CAuBA,+D,CArBI,a,CAOJ,iD,CACA,wD,CACI,mC,CACA,gB,CAOJ,4C,CACI,Y,CAWJ,uD,CACI,uB,CACA,oB,CAGJ,yD,CACI,e,CACA,mB,CAGJ,kD,CACI,U,CAIJ,qD,CACA,4D,CAFA,wC,CAGI,2C,CACA,mD,CAGJ,0C,CACI,qB,CAGJ,2C,CACI,mB,CACA,gB,CAGJ,yD,CACI,kB,CACA,gB,CAGJ,+B,CACI,c,CACA,kB,CAGJ,sC,CACA,yC,CACA,mC,CACI,2B,CAGJ,+B,CACA,kC,CACA,4B,CACI,e,CACA,sB,CAGJ,2D,CACI,gB","file":"aa-intel-tool.css","sourcesContent":["@media all {\n .aa-intel-tool .aa-intel-scan-page-buttons ul li {\n display: block;\n float: left;\n width: 150px;\n }\n\n .aa-intel-tool .aa-intel-scan-page-buttons button {\n position: relative;\n width: 100%;\n }\n\n .aa-intel-tool .aa-intel-copy-result {\n max-width: 310px;\n }\n\n .aa-intel-tool .paste-explanation ul {\n list-style-type: none;\n }\n\n .aa-intel-tool .paste-explanation li > small {\n color: var(--bs-gray);\n }\n\n .aa-intel-tool td.data-align-right {\n text-align: right;\n }\n\n .aa-intel-tool .aa-intel-section-header {\n border-bottom: 1px solid var(--bs-gray-200);\n }\n\n .aa-intel-tool .aa-intel-section-header .aa-intel-section-title {\n font-size: 1.25em;\n }\n\n .aa-intel-tool .aa-intel-alliance-logo-wrapper,\n .aa-intel-tool .aa-intel-corporation-logo-wrapper,\n .aa-intel-tool .aa-intel-pilot-avatar-wrapper,\n .aa-intel-tool .aa-intel-ship-image-wrapper {\n display: inline-block;\n margin-right: 0.5rem;\n }\n\n .aa-intel-tool .aa-intel-alliance-information-wrapper,\n .aa-intel-tool .aa-intel-corporation-information-wrapper,\n .aa-intel-tool .aa-intel-pilot-information-wrapper {\n display: inline-block;\n vertical-align: inherit;\n }\n\n .aa-intel-tool .aa-intel-alliance-name-wrapper,\n .aa-intel-tool .aa-intel-alliance-links-wrapper,\n .aa-intel-tool .aa-intel-corporation-name-wrapper,\n .aa-intel-tool .aa-intel-corporation-links-wrapper,\n .aa-intel-tool .aa-intel-pilot-name-wrapper,\n .aa-intel-tool .aa-intel-pilot-links-wrapper {\n display: block;\n }\n}\n\n/* Highlighting\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool .aa-intel-highlight td:first-child,\n .aa-intel-tool .aa-intel-highlight-sticky td:first-child {\n border-left: 1px solid var(--bs-red);\n padding-left: 3px;\n }\n}\n\n/* Form\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool .aa-intel-form-submitted-info {\n display: none;\n }\n\n .aa-intel-tool form.is-submitting .aa-intel-form-submitted-info {\n display: block;\n }\n}\n\n/* Data Tables\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool div.dataTables_filter input[type=\"search\"] {\n margin-left: 0 !important;\n width: 100% !important;\n }\n\n .aa-intel-tool div.dataTables_wrapper div.dataTables_info {\n padding-top: 8px;\n white-space: initial;\n }\n\n .aa-intel-tool .dataTables_wrapper table.dataTable {\n width: 100%;\n }\n\n .aa-intel-tool .dataTable tbody tr:hover,\n .aa-intel-tool .dataTable tbody tr.aa-intel-highlight,\n .aa-intel-tool .dataTable tbody tr.aa-intel-highlight-sticky {\n --bs-table-bg-type: var(--bs-table-hover-bg);\n --bs-table-color-type: var(--bs-table-striped-color);\n }\n\n .aa-intel-tool .table-aa-intel tbody > tr > td {\n vertical-align: middle;\n }\n\n .aa-intel-tool .table-no-images > tbody > tr > td {\n padding-bottom: 12px;\n padding-top: 11px;\n }\n\n .aa-intel-tool .table-sortable > tbody > tr > .table-data-count {\n padding-right: 1rem;\n text-align: right;\n }\n\n .aa-intel-tool td.text-ellipsis {\n max-width: 50px;\n white-space: nowrap;\n }\n\n .aa-intel-alliance-information-wrapper,\n .aa-intel-corporation-information-wrapper,\n .aa-intel-pilot-information-wrapper {\n max-width: calc(100% - 35px);\n }\n\n .aa-intel-alliance-name-wrapper,\n .aa-intel-corporation-name-wrapper,\n .aa-intel-pilot-name-wrapper {\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n .aa-intel-tool td.fix-eve-image-position > span.alliance-id-1 {\n transform: none;\n }\n}\n"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
const removeCorporationStickyComplete=a=>{let t=!0;return $(`table.aa-intel-pilot-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).each((a,i)=>{$(i).hasClass("aa-intel-highlight-sticky")&&(t=!1)}),t},removeAllianceStickyComplete=a=>{let t=!0;return $(`table.aa-intel-pilot-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).each((a,i)=>{$(i).hasClass("aa-intel-highlight-sticky")&&(t=!1)}),t},allianceTableAddStickyByAllianceId=a=>{$(`table.aa-intel-alliance-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).addClass("aa-intel-highlight-sticky")},allianceTableAddHighlightByAllianceId=a=>{$(`table.aa-intel-alliance-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).addClass("aa-intel-highlight")},allianceTableRemoveStickyByAllianceId=a=>{$(`table.aa-intel-alliance-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).removeClass("aa-intel-highlight-sticky")},allianceTableRemoveHighlightByAllianceId=a=>{$(`table.aa-intel-alliance-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).removeClass("aa-intel-highlight")},corporationTableAddStickyByCorporationId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).addClass("aa-intel-highlight-sticky")},corporationTableAddHighlightByCorporationId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).addClass("aa-intel-highlight")},corporationTableAddStickyByAllianceId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).addClass("aa-intel-highlight-sticky")},corporationTableAddHighlightByAllianceId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).addClass("aa-intel-highlight")},corporationTableRemoveStickyByCorporationId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).removeClass("aa-intel-highlight-sticky")},corporationTableRemoveHighlightByCorporationId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).removeClass("aa-intel-highlight")},corporationTableRemoveStickyByAllianceId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).removeClass("aa-intel-highlight-sticky")},corporationTableRemoveHighlightByAllianceId=a=>{$(`table.aa-intel-corporation-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).removeClass("aa-intel-highlight")},pilotTableAddStickyByCorporationId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).addClass("aa-intel-highlight-sticky")},pilotTableAddHighlightByCorporationId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).addClass("aa-intel-highlight")},pilotTableAddStickyByAllianceId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).addClass("aa-intel-highlight-sticky")},pilotTableAddHighlightByAllianceId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).addClass("aa-intel-highlight")},pilotTableRemoveStickyByCorporationId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).removeClass("aa-intel-highlight-sticky")},pilotTableRemoveHighlightByCorporationId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-corporation-id="${a.data("corporationId")}"]`).removeClass("aa-intel-highlight")},pilotTableRemoveStickyByAllianceId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).removeClass("aa-intel-highlight-sticky")},pilotTableRemoveHighlightByAllianceId=a=>{$(`table.aa-intel-pilot-participation-list tr[data-alliance-id="${a.data("allianceId")}"]`).removeClass("aa-intel-highlight")},addChatscanHightlight=(a,i)=>{i.addClass("aa-intel-highlight"),"alliance"===a&&(corporationTableAddHighlightByAllianceId(i),pilotTableAddHighlightByAllianceId(i)),"corporation"===a&&(allianceTableAddHighlightByAllianceId(i),pilotTableAddHighlightByCorporationId(i)),"pilot"===a&&(allianceTableAddHighlightByAllianceId(i),corporationTableAddHighlightByCorporationId(i))},addChatscanSticky=(a,i)=>{i.addClass("aa-intel-highlight-sticky"),"alliance"===a&&(corporationTableAddStickyByAllianceId(i),pilotTableAddStickyByAllianceId(i)),"corporation"===a&&(allianceTableAddStickyByAllianceId(i),pilotTableAddStickyByCorporationId(i)),"pilot"===a&&(allianceTableAddStickyByAllianceId(i),corporationTableAddStickyByCorporationId(i))},removeChatscanHightlight=(a,i)=>{i.removeClass("aa-intel-highlight"),"alliance"===a&&(corporationTableRemoveHighlightByAllianceId(i),pilotTableRemoveHighlightByAllianceId(i)),"corporation"===a&&(allianceTableRemoveHighlightByAllianceId(i),pilotTableRemoveHighlightByCorporationId(i)),"pilot"===a&&(allianceTableRemoveHighlightByAllianceId(i),corporationTableRemoveHighlightByCorporationId(i))},removeChatscanSticky=(a,i)=>{i.removeClass("aa-intel-highlight-sticky"),"alliance"===a&&(corporationTableRemoveStickyByAllianceId(i),pilotTableRemoveStickyByAllianceId(i)),"corporation"===a&&(pilotTableRemoveStickyByCorporationId(i),!0===removeAllianceStickyComplete(i))&&allianceTableRemoveStickyByAllianceId(i),"pilot"===a&&(!0===removeCorporationStickyComplete(i)&&corporationTableRemoveStickyByCorporationId(i),!0===removeAllianceStickyComplete(i))&&allianceTableRemoveStickyByAllianceId(i)},changeChatscanStickyHighlight=(a,i)=>{(i.hasClass("aa-intel-highlight-sticky")?removeChatscanSticky:addChatscanSticky)(a,i)};
|
|
2
2
|
//# sourceMappingURL=aa-intel-tool-chatscan-highlight.min.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["aa-intel-tool-chatscan-highlight.js"],"names":["removeCorporationStickyComplete","let","removeCorporationSticky","$","element","data","each","i","el","hasClass","removeAllianceStickyComplete","removeAllianceSticky","allianceTableAddStickyByAllianceId","addClass","allianceTableAddHighlightByAllianceId","allianceTableRemoveStickyByAllianceId","removeClass","allianceTableRemoveHighlightByAllianceId","corporationTableAddStickyByCorporationId","corporationTableAddHighlightByCorporationId","corporationTableAddStickyByAllianceId","corporationTableAddHighlightByAllianceId","corporationTableRemoveStickyByCorporationId","corporationTableRemoveHighlightByCorporationId","corporationTableRemoveStickyByAllianceId","corporationTableRemoveHighlightByAllianceId","pilotTableAddStickyByCorporationId","pilotTableAddHighlightByCorporationId","pilotTableAddStickyByAllianceId","pilotTableAddHighlightByAllianceId","pilotTableRemoveStickyByCorporationId","pilotTableRemoveHighlightByCorporationId","pilotTableRemoveStickyByAllianceId","pilotTableRemoveHighlightByAllianceId","addChatscanHightlight","by_data","table_row","addChatscanSticky","removeChatscanHightlight","removeChatscanSticky","changeChatscanStickyHighlight"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["aa-intel-tool-chatscan-highlight.js"],"names":["removeCorporationStickyComplete","let","removeCorporationSticky","$","element","data","each","i","el","hasClass","removeAllianceStickyComplete","removeAllianceSticky","allianceTableAddStickyByAllianceId","addClass","allianceTableAddHighlightByAllianceId","allianceTableRemoveStickyByAllianceId","removeClass","allianceTableRemoveHighlightByAllianceId","corporationTableAddStickyByCorporationId","corporationTableAddHighlightByCorporationId","corporationTableAddStickyByAllianceId","corporationTableAddHighlightByAllianceId","corporationTableRemoveStickyByCorporationId","corporationTableRemoveHighlightByCorporationId","corporationTableRemoveStickyByAllianceId","corporationTableRemoveHighlightByAllianceId","pilotTableAddStickyByCorporationId","pilotTableAddHighlightByCorporationId","pilotTableAddStickyByAllianceId","pilotTableAddHighlightByAllianceId","pilotTableRemoveStickyByCorporationId","pilotTableRemoveHighlightByCorporationId","pilotTableRemoveStickyByAllianceId","pilotTableRemoveHighlightByAllianceId","addChatscanHightlight","by_data","table_row","addChatscanSticky","removeChatscanHightlight","removeChatscanSticky","changeChatscanStickyHighlight"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* global
|
|
1
|
+
/* global aaIntelToolJsSettings, addChatscanHightlight, bootstrapTooltip, removeChatscanHightlight, changeChatscanStickyHighlight, fetchAjaxData, pilotInfoPanel, corporationInfoPanel, allianceInfoPanel */
|
|
2
2
|
|
|
3
3
|
$(() => {
|
|
4
4
|
'use strict';
|
|
@@ -17,7 +17,7 @@ $(() => {
|
|
|
17
17
|
/**
|
|
18
18
|
* Datatable Alliances Breakdown
|
|
19
19
|
*/
|
|
20
|
-
fetchAjaxData(
|
|
20
|
+
fetchAjaxData(aaIntelToolJsSettings.url.getAllianceList).then(tableData => {
|
|
21
21
|
if (tableData) {
|
|
22
22
|
$('div.aa-intel-loading-table-info-alliance-participation-list').addClass('d-none');
|
|
23
23
|
|
|
@@ -29,7 +29,7 @@ $(() => {
|
|
|
29
29
|
elementAlliancesTable.DataTable({
|
|
30
30
|
data: tableData,
|
|
31
31
|
paging: false,
|
|
32
|
-
language:
|
|
32
|
+
language: aaIntelToolJsSettings.translation.dataTables,
|
|
33
33
|
lengthChange: false,
|
|
34
34
|
dom:
|
|
35
35
|
'<\'row\'<\'col-sm-12\'f>>' +
|
|
@@ -115,7 +115,7 @@ $(() => {
|
|
|
115
115
|
/**
|
|
116
116
|
* Datatable Corporations Breakdown
|
|
117
117
|
*/
|
|
118
|
-
fetchAjaxData(
|
|
118
|
+
fetchAjaxData(aaIntelToolJsSettings.url.getCorporationList).then(tableData => {
|
|
119
119
|
if (tableData) {
|
|
120
120
|
$('div.aa-intel-loading-table-info-corporation-participation-list').addClass('d-none');
|
|
121
121
|
|
|
@@ -127,7 +127,7 @@ $(() => {
|
|
|
127
127
|
elementCorporationsTable.DataTable({
|
|
128
128
|
data: tableData,
|
|
129
129
|
paging: false,
|
|
130
|
-
language:
|
|
130
|
+
language: aaIntelToolJsSettings.translation.dataTables,
|
|
131
131
|
lengthChange: false,
|
|
132
132
|
dom:
|
|
133
133
|
'<\'row\'<\'col-sm-12\'f>>' +
|
|
@@ -216,7 +216,7 @@ $(() => {
|
|
|
216
216
|
/**
|
|
217
217
|
* Datatable Pilots Breakdown
|
|
218
218
|
*/
|
|
219
|
-
fetchAjaxData(
|
|
219
|
+
fetchAjaxData(aaIntelToolJsSettings.url.getPilotList).then(tableData => {
|
|
220
220
|
if (tableData) {
|
|
221
221
|
$('div.aa-intel-loading-table-info-pilot-participation-list').addClass('d-none');
|
|
222
222
|
|
|
@@ -228,7 +228,7 @@ $(() => {
|
|
|
228
228
|
elementPilotsTable.DataTable({
|
|
229
229
|
data: tableData,
|
|
230
230
|
paging: false,
|
|
231
|
-
language:
|
|
231
|
+
language: aaIntelToolJsSettings.translation.dataTables,
|
|
232
232
|
lengthChange: false,
|
|
233
233
|
dom:
|
|
234
234
|
'<\'row\'<\'col-sm-12\'f>>' +
|