aa-intel-tool 2.6.0__py3-none-any.whl → 2.6.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. aa_intel_tool/__init__.py +1 -1
  2. aa_intel_tool/app_settings.py +15 -0
  3. aa_intel_tool/constants.py +6 -5
  4. aa_intel_tool/helper/eve_character.py +24 -36
  5. aa_intel_tool/helper/static_files.py +5 -4
  6. aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +15 -83
  7. aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
  8. aa_intel_tool/locale/de/LC_MESSAGES/django.po +71 -87
  9. aa_intel_tool/locale/django.pot +16 -84
  10. aa_intel_tool/locale/es/LC_MESSAGES/django.po +19 -83
  11. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  12. aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +72 -88
  13. aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +15 -83
  14. aa_intel_tool/locale/ja/LC_MESSAGES/django.po +15 -83
  15. aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +67 -83
  16. aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +15 -83
  17. aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +15 -83
  18. aa_intel_tool/locale/ru/LC_MESSAGES/django.mo +0 -0
  19. aa_intel_tool/locale/ru/LC_MESSAGES/django.po +71 -87
  20. aa_intel_tool/locale/sk/LC_MESSAGES/django.po +15 -83
  21. aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
  22. aa_intel_tool/locale/uk/LC_MESSAGES/django.po +71 -94
  23. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  24. aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +20 -87
  25. aa_intel_tool/parser/general.py +11 -16
  26. aa_intel_tool/parser/helper/db.py +8 -11
  27. aa_intel_tool/parser/module/chatlist.py +97 -126
  28. aa_intel_tool/parser/module/dscan.py +115 -147
  29. aa_intel_tool/parser/module/fleetcomp.py +85 -102
  30. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +6 -24
  31. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
  32. aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
  33. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js +104 -64
  34. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map +1 -1
  35. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +5 -5
  36. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
  37. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map +1 -1
  38. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js +43 -43
  39. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map +1 -1
  40. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +41 -17
  41. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js +1 -1
  42. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map +1 -1
  43. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js +51 -51
  44. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map +1 -1
  45. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +13 -7
  46. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
  47. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
  48. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js +53 -31
  49. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js +1 -1
  50. aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map +1 -1
  51. aa_intel_tool/templates/aa_intel_tool/base.html +7 -42
  52. aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html +1 -1
  53. aa_intel_tool/templatetags/aa_intel_tool.py +12 -7
  54. aa_intel_tool/tests/test-data/dscan.txt +250 -0
  55. aa_intel_tool/tests/test_admin.py +50 -38
  56. aa_intel_tool/tests/test_app_settings.py +23 -1
  57. aa_intel_tool/tests/test_helper_eve_character.py +405 -0
  58. aa_intel_tool/tests/test_models.py +188 -4
  59. aa_intel_tool/tests/test_parser_general.py +771 -0
  60. aa_intel_tool/tests/test_parser_module_chatlist.py +154 -0
  61. aa_intel_tool/tests/test_templatetags.py +24 -3
  62. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.dist-info}/METADATA +4 -4
  63. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.dist-info}/RECORD +65 -63
  64. aa_intel_tool/tests/test_parser.py +0 -135
  65. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.dist-info}/WHEEL +0 -0
  66. {aa_intel_tool-2.6.0.dist-info → aa_intel_tool-2.6.2.dist-info}/licenses/LICENSE +0 -0
@@ -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-01-31 11:24+0100\n"
10
+ "POT-Creation-Date: 2025-04-09 11:22+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: Dutch <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/nl/>\n"
@@ -19,8 +19,8 @@ msgstr ""
19
19
  "X-Generator: Weblate 5.5.3\n"
20
20
 
21
21
  #: aa_intel_tool/__init__.py:9
22
- #: aa_intel_tool/templates/aa_intel_tool/base.html:6
23
- #: aa_intel_tool/templates/aa_intel_tool/base.html:10
22
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:7
23
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:11
24
24
  #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
25
25
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
26
26
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
@@ -160,122 +160,54 @@ msgstr ""
160
160
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
161
161
  msgstr ""
162
162
 
163
- #: aa_intel_tool/parser/general.py:80
163
+ #: aa_intel_tool/parser/general.py:63
164
164
  msgid "No data to parse …"
165
165
  msgstr ""
166
166
 
167
- #: aa_intel_tool/parser/module/chatlist.py:65
167
+ #: aa_intel_tool/parser/module/chatlist.py:60
168
168
  msgid "Something went wrong while fetching the character information from ESI."
169
169
  msgstr ""
170
170
 
171
- #: aa_intel_tool/parser/module/chatlist.py:76
171
+ #: aa_intel_tool/parser/module/chatlist.py:67
172
172
  msgid "Character unknown to ESI."
173
173
  msgstr ""
174
174
 
175
- #: aa_intel_tool/parser/module/chatlist.py:278
175
+ #: aa_intel_tool/parser/module/chatlist.py:256
176
176
  msgid "The chat list module is currently disabled."
177
177
  msgstr ""
178
178
 
179
- #: aa_intel_tool/parser/module/chatlist.py:299
179
+ #: aa_intel_tool/parser/module/chatlist.py:275
180
180
  #, python-brace-format
181
181
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
182
182
  msgid_plural "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilots per scan. Your list of pilots exceeds this limit."
183
183
  msgstr[0] ""
184
184
  msgstr[1] ""
185
185
 
186
- #: aa_intel_tool/parser/module/dscan.py:350
186
+ #: aa_intel_tool/parser/module/dscan.py:362
187
187
  msgid "The D-Scan module is currently disabled."
188
188
  msgstr ""
189
189
 
190
- #: aa_intel_tool/parser/module/fleetcomp.py:187
190
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
191
191
  msgid "The fleet composition module is currently disabled."
192
192
  msgstr ""
193
193
 
194
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
194
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
195
195
  msgid "Permalink successfully copied"
196
196
  msgstr ""
197
197
 
198
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
198
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
199
199
  msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
200
200
  msgstr ""
201
201
 
202
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
202
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
203
203
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
204
204
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
205
205
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
206
206
  msgid "Unaffiliated / No Alliance"
207
207
  msgstr ""
208
208
 
209
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
210
- msgid "NPC Corp"
211
- msgstr ""
212
-
213
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
214
- msgctxt "Decimal separator"
215
- msgid "."
216
- msgstr ""
217
-
218
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
219
- msgctxt "Thousands separator"
220
- msgid ","
221
- msgstr ""
222
-
223
209
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
224
- msgid "No data available in this table"
225
- msgstr ""
226
-
227
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
228
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
229
- msgid "Showing _END_ entries"
230
- msgstr ""
231
-
232
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
233
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
234
- msgid "(filtered from _MAX_ total entries)"
235
- msgstr ""
236
-
237
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
238
- msgid "No records available"
239
- msgstr ""
240
-
241
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
242
- msgid "Loading …"
243
- msgstr ""
244
-
245
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
246
- msgid "Processing …"
247
- msgstr ""
248
-
249
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
250
- msgid "Nothing found, sorry …"
251
- msgstr ""
252
-
253
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
254
- msgid "Search …"
255
- msgstr ""
256
-
257
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
258
- msgid "First"
259
- msgstr ""
260
-
261
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
262
- msgid "Last"
263
- msgstr ""
264
-
265
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
266
- msgid "Next"
267
- msgstr ""
268
-
269
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
270
- msgid "Previous"
271
- msgstr ""
272
-
273
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
274
- msgid ": activate to sort column ascending"
275
- msgstr ""
276
-
277
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
278
- msgid ": activate to sort column descending"
210
+ msgid "NPC Corp"
279
211
  msgstr ""
280
212
 
281
213
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
@@ -452,7 +384,7 @@ msgid "No data."
452
384
  msgstr ""
453
385
 
454
386
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
455
- msgid "Scan taken at (Eve time)"
387
+ msgid "Scan taken at (EVE time)"
456
388
  msgstr ""
457
389
 
458
390
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -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-01-31 11:24+0100\n"
9
+ "POT-Creation-Date: 2025-04-09 11:22+0200\n"
10
10
  "PO-Revision-Date: 2024-05-10 14:07+0000\n"
11
11
  "Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
12
12
  "Language-Team: Polish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/pl/>\n"
@@ -18,8 +18,8 @@ msgstr ""
18
18
  "X-Generator: Weblate 5.5.3\n"
19
19
 
20
20
  #: aa_intel_tool/__init__.py:9
21
- #: aa_intel_tool/templates/aa_intel_tool/base.html:6
22
- #: aa_intel_tool/templates/aa_intel_tool/base.html:10
21
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:7
22
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:11
23
23
  #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
24
24
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
25
25
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
@@ -159,23 +159,23 @@ msgstr ""
159
159
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
160
160
  msgstr ""
161
161
 
162
- #: aa_intel_tool/parser/general.py:80
162
+ #: aa_intel_tool/parser/general.py:63
163
163
  msgid "No data to parse …"
164
164
  msgstr ""
165
165
 
166
- #: aa_intel_tool/parser/module/chatlist.py:65
166
+ #: aa_intel_tool/parser/module/chatlist.py:60
167
167
  msgid "Something went wrong while fetching the character information from ESI."
168
168
  msgstr ""
169
169
 
170
- #: aa_intel_tool/parser/module/chatlist.py:76
170
+ #: aa_intel_tool/parser/module/chatlist.py:67
171
171
  msgid "Character unknown to ESI."
172
172
  msgstr ""
173
173
 
174
- #: aa_intel_tool/parser/module/chatlist.py:278
174
+ #: aa_intel_tool/parser/module/chatlist.py:256
175
175
  msgid "The chat list module is currently disabled."
176
176
  msgstr ""
177
177
 
178
- #: aa_intel_tool/parser/module/chatlist.py:299
178
+ #: aa_intel_tool/parser/module/chatlist.py:275
179
179
  #, python-brace-format
180
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
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."
@@ -183,99 +183,31 @@ msgstr[0] ""
183
183
  msgstr[1] ""
184
184
  msgstr[2] ""
185
185
 
186
- #: aa_intel_tool/parser/module/dscan.py:350
186
+ #: aa_intel_tool/parser/module/dscan.py:362
187
187
  msgid "The D-Scan module is currently disabled."
188
188
  msgstr ""
189
189
 
190
- #: aa_intel_tool/parser/module/fleetcomp.py:187
190
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
191
191
  msgid "The fleet composition module is currently disabled."
192
192
  msgstr ""
193
193
 
194
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
194
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
195
195
  msgid "Permalink successfully copied"
196
196
  msgstr ""
197
197
 
198
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
198
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
199
199
  msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
200
200
  msgstr ""
201
201
 
202
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
202
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
203
203
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
204
204
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
205
205
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
206
206
  msgid "Unaffiliated / No Alliance"
207
207
  msgstr ""
208
208
 
209
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
210
- msgid "NPC Corp"
211
- msgstr ""
212
-
213
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
214
- msgctxt "Decimal separator"
215
- msgid "."
216
- msgstr ""
217
-
218
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
219
- msgctxt "Thousands separator"
220
- msgid ","
221
- msgstr ""
222
-
223
209
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
224
- msgid "No data available in this table"
225
- msgstr ""
226
-
227
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
228
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
229
- msgid "Showing _END_ entries"
230
- msgstr ""
231
-
232
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
233
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
234
- msgid "(filtered from _MAX_ total entries)"
235
- msgstr ""
236
-
237
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
238
- msgid "No records available"
239
- msgstr ""
240
-
241
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
242
- msgid "Loading …"
243
- msgstr ""
244
-
245
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
246
- msgid "Processing …"
247
- msgstr ""
248
-
249
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
250
- msgid "Nothing found, sorry …"
251
- msgstr ""
252
-
253
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
254
- msgid "Search …"
255
- msgstr ""
256
-
257
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
258
- msgid "First"
259
- msgstr ""
260
-
261
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
262
- msgid "Last"
263
- msgstr ""
264
-
265
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
266
- msgid "Next"
267
- msgstr ""
268
-
269
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
270
- msgid "Previous"
271
- msgstr ""
272
-
273
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
274
- msgid ": activate to sort column ascending"
275
- msgstr ""
276
-
277
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
278
- msgid ": activate to sort column descending"
210
+ msgid "NPC Corp"
279
211
  msgstr ""
280
212
 
281
213
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
@@ -454,7 +386,7 @@ msgid "No data."
454
386
  msgstr ""
455
387
 
456
388
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
457
- msgid "Scan taken at (Eve time)"
389
+ msgid "Scan taken at (EVE time)"
458
390
  msgstr ""
459
391
 
460
392
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -2,27 +2,27 @@
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
  # Nikolay <nick.postnikov@gmail.com>, 2023, 2024.
5
- # Peter Pfeufer <info@ppfeufer.de>, 2023, 2024.
5
+ # Peter Pfeufer <info@ppfeufer.de>, 2023, 2024, 2025.
6
6
  # Max <mark25@inbox.ru>, 2023, 2024.
7
7
  # Roycce_ <malyasov.roma@mail.ru>, 2024.
8
8
  msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: AA Intel Tool 2.5.1\n"
11
11
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
12
- "POT-Creation-Date: 2025-01-31 11:24+0100\n"
13
- "PO-Revision-Date: 2024-06-06 14:27+0000\n"
14
- "Last-Translator: Roycce_ <malyasov.roma@mail.ru>\n"
12
+ "POT-Creation-Date: 2025-04-09 11:22+0200\n"
13
+ "PO-Revision-Date: 2025-03-25 13:24+0000\n"
14
+ "Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
15
15
  "Language-Team: Russian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ru/>\n"
16
16
  "Language: ru\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
20
20
  "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"
21
- "X-Generator: Weblate 5.5.5\n"
21
+ "X-Generator: Weblate 5.10.4\n"
22
22
 
23
23
  #: aa_intel_tool/__init__.py:9
24
- #: aa_intel_tool/templates/aa_intel_tool/base.html:6
25
- #: aa_intel_tool/templates/aa_intel_tool/base.html:10
24
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:7
25
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:11
26
26
  #: aa_intel_tool/templates/aa_intel_tool/views/index.html:8
27
27
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
28
28
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html:5
@@ -162,23 +162,23 @@ msgstr "Данные скана"
162
162
  msgid "No suitable parser found. Input is not a supported intel type or malformed …"
163
163
  msgstr "Не найден подходящий анализатор. Формат входных данных не поддерживается или данные неполны …"
164
164
 
165
- #: aa_intel_tool/parser/general.py:80
165
+ #: aa_intel_tool/parser/general.py:63
166
166
  msgid "No data to parse …"
167
167
  msgstr "Нет данных для анализа …"
168
168
 
169
- #: aa_intel_tool/parser/module/chatlist.py:65
169
+ #: aa_intel_tool/parser/module/chatlist.py:60
170
170
  msgid "Something went wrong while fetching the character information from ESI."
171
171
  msgstr "Что-то пошло не так при загрузке информации о персонаже через ESI."
172
172
 
173
- #: aa_intel_tool/parser/module/chatlist.py:76
173
+ #: aa_intel_tool/parser/module/chatlist.py:67
174
174
  msgid "Character unknown to ESI."
175
175
  msgstr "Персонаж не известен для ESI."
176
176
 
177
- #: aa_intel_tool/parser/module/chatlist.py:278
177
+ #: aa_intel_tool/parser/module/chatlist.py:256
178
178
  msgid "The chat list module is currently disabled."
179
179
  msgstr "Анализатор списка чата отключен."
180
180
 
181
- #: aa_intel_tool/parser/module/chatlist.py:299
181
+ #: aa_intel_tool/parser/module/chatlist.py:275
182
182
  #, python-brace-format
183
183
  msgid "Chat scans are currently limited to a maximum of {max_allowed_pilots} pilot per scan. Your list of pilots exceeds this limit."
184
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."
@@ -187,101 +187,33 @@ msgstr[1] "Анализатор чата в настоящее время огр
187
187
  msgstr[2] "Анализатор чата в настоящее время ограничен максимум {max_allowed_pilots} пилотами в скане. Размер вашего списка превышает это ограничение."
188
188
  msgstr[3] "Анализатор чата в настоящее время ограничен максимум одним пилотом в скане. Размер вашего списка превышает это ограничение."
189
189
 
190
- #: aa_intel_tool/parser/module/dscan.py:350
190
+ #: aa_intel_tool/parser/module/dscan.py:362
191
191
  msgid "The D-Scan module is currently disabled."
192
192
  msgstr "Анализатор подскана отключен."
193
193
 
194
- #: aa_intel_tool/parser/module/fleetcomp.py:187
194
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
195
195
  msgid "The fleet composition module is currently disabled."
196
196
  msgstr "Анализатор состава флота отключен."
197
197
 
198
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
198
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
199
199
  msgid "Permalink successfully copied"
200
200
  msgstr "Постоянная ссылка успешно скопирована"
201
201
 
202
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
202
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
203
203
  msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
204
204
  msgstr "Что-то пошло не так. Ничего не скопировано. Возможно, ваш браузер не поддерживает данную функцию."
205
205
 
206
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
206
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
207
207
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
208
208
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
209
209
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
210
210
  msgid "Unaffiliated / No Alliance"
211
211
  msgstr "Неаффилированный / Нет альянса"
212
212
 
213
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
213
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:26
214
214
  msgid "NPC Corp"
215
215
  msgstr "NPC корпорация"
216
216
 
217
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
218
- msgctxt "Decimal separator"
219
- msgid "."
220
- msgstr ","
221
-
222
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
223
- msgctxt "Thousands separator"
224
- msgid ","
225
- msgstr " "
226
-
227
- #: aa_intel_tool/templates/aa_intel_tool/base.html:26
228
- msgid "No data available in this table"
229
- msgstr "Данные в таблице отсутствуют"
230
-
231
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
232
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
233
- msgid "Showing _END_ entries"
234
- msgstr "Отображаются _END_ записей"
235
-
236
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
237
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
238
- msgid "(filtered from _MAX_ total entries)"
239
- msgstr "(отфильтрованы из _MAX_ записей)"
240
-
241
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
242
- msgid "No records available"
243
- msgstr "Записи недоступны"
244
-
245
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
246
- msgid "Loading …"
247
- msgstr "Загрузка …"
248
-
249
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
250
- msgid "Processing …"
251
- msgstr "Обработка …"
252
-
253
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
254
- msgid "Nothing found, sorry …"
255
- msgstr "Ничего не найдено …"
256
-
257
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
258
- msgid "Search …"
259
- msgstr "Поиск…"
260
-
261
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
262
- msgid "First"
263
- msgstr "Первый"
264
-
265
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
266
- msgid "Last"
267
- msgstr "Последний"
268
-
269
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
270
- msgid "Next"
271
- msgstr "Следующий"
272
-
273
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
274
- msgid "Previous"
275
- msgstr "Предыдущий"
276
-
277
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
278
- msgid ": activate to sort column ascending"
279
- msgstr ": активируйте для сортировки по возрастанию"
280
-
281
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
282
- msgid ": activate to sort column descending"
283
- msgstr ": активируйте для сортировки по убыванию"
284
-
285
217
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
286
218
  #, python-format
287
219
  msgid "Scans will be deleted after %(scan_retention_time)s day."
@@ -460,7 +392,7 @@ msgid "No data."
460
392
  msgstr "Нет данных."
461
393
 
462
394
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
463
- msgid "Scan taken at (Eve time)"
395
+ msgid "Scan taken at (EVE time)"
464
396
  msgstr "Скан выполнен (время EVE)"
465
397
 
466
398
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -499,6 +431,58 @@ msgstr "(Системная ошибка) Случилось что-то неп
499
431
  msgid "The scan you were looking for could not be found."
500
432
  msgstr "Скан, который вы ищите, не может быть найден."
501
433
 
434
+ #~ msgctxt "Decimal separator"
435
+ #~ msgid "."
436
+ #~ msgstr ","
437
+
438
+ #~ msgctxt "Thousands separator"
439
+ #~ msgid ","
440
+ #~ msgstr " "
441
+
442
+ #~ msgid "No data available in this table"
443
+ #~ msgstr "Данные в таблице отсутствуют"
444
+
445
+ #~ msgctxt "Keep _END_ as it is. It will be replaced by a number."
446
+ #~ msgid "Showing _END_ entries"
447
+ #~ msgstr "Отображаются _END_ записей"
448
+
449
+ #~ msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
450
+ #~ msgid "(filtered from _MAX_ total entries)"
451
+ #~ msgstr "(отфильтрованы из _MAX_ записей)"
452
+
453
+ #~ msgid "No records available"
454
+ #~ msgstr "Записи недоступны"
455
+
456
+ #~ msgid "Loading …"
457
+ #~ msgstr "Загрузка …"
458
+
459
+ #~ msgid "Processing …"
460
+ #~ msgstr "Обработка …"
461
+
462
+ #~ msgid "Nothing found, sorry …"
463
+ #~ msgstr "Ничего не найдено …"
464
+
465
+ #~ msgid "Search …"
466
+ #~ msgstr "Поиск…"
467
+
468
+ #~ msgid "First"
469
+ #~ msgstr "Первый"
470
+
471
+ #~ msgid "Last"
472
+ #~ msgstr "Последний"
473
+
474
+ #~ msgid "Next"
475
+ #~ msgstr "Следующий"
476
+
477
+ #~ msgid "Previous"
478
+ #~ msgstr "Предыдущий"
479
+
480
+ #~ msgid ": activate to sort column ascending"
481
+ #~ msgstr ": активируйте для сортировки по возрастанию"
482
+
483
+ #~ msgid ": activate to sort column descending"
484
+ #~ msgstr ": активируйте для сортировки по убыванию"
485
+
502
486
  #~ msgctxt "Keep _MENU_ as it is. It will be replaced by an HTML construct."
503
487
  #~ msgid "Show _MENU_"
504
488
  #~ msgstr "Показывать _MENU_"