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: Italian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/it/>\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-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"
@@ -18,8 +18,8 @@ msgstr ""
18
18
  "X-Generator: Weblate 5.6.2\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,121 +159,53 @@ 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."
182
182
  msgstr[0] ""
183
183
 
184
- #: aa_intel_tool/parser/module/dscan.py:350
184
+ #: aa_intel_tool/parser/module/dscan.py:362
185
185
  msgid "The D-Scan module is currently disabled."
186
186
  msgstr ""
187
187
 
188
- #: aa_intel_tool/parser/module/fleetcomp.py:187
188
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
189
189
  msgid "The fleet composition module is currently disabled."
190
190
  msgstr ""
191
191
 
192
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
192
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
193
193
  msgid "Permalink successfully copied"
194
194
  msgstr ""
195
195
 
196
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
196
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
197
197
  msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
198
198
  msgstr ""
199
199
 
200
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
200
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
201
201
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
202
202
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
203
203
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
204
204
  msgid "Unaffiliated / No Alliance"
205
205
  msgstr ""
206
206
 
207
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
208
- msgid "NPC Corp"
209
- msgstr ""
210
-
211
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
212
- msgctxt "Decimal separator"
213
- msgid "."
214
- msgstr ""
215
-
216
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
217
- msgctxt "Thousands separator"
218
- msgid ","
219
- msgstr ""
220
-
221
207
  #: aa_intel_tool/templates/aa_intel_tool/base.html:26
222
- msgid "No data available in this table"
223
- msgstr ""
224
-
225
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
226
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
227
- msgid "Showing _END_ entries"
228
- msgstr ""
229
-
230
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
231
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
232
- msgid "(filtered from _MAX_ total entries)"
233
- msgstr ""
234
-
235
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
236
- msgid "No records available"
237
- msgstr ""
238
-
239
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
240
- msgid "Loading …"
241
- msgstr ""
242
-
243
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
244
- msgid "Processing …"
245
- msgstr ""
246
-
247
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
248
- msgid "Nothing found, sorry …"
249
- msgstr ""
250
-
251
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
252
- msgid "Search …"
253
- msgstr ""
254
-
255
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
256
- msgid "First"
257
- msgstr ""
258
-
259
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
260
- msgid "Last"
261
- msgstr ""
262
-
263
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
264
- msgid "Next"
265
- msgstr ""
266
-
267
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
268
- msgid "Previous"
269
- msgstr ""
270
-
271
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
272
- msgid ": activate to sort column ascending"
273
- msgstr ""
274
-
275
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
276
- msgid ": activate to sort column descending"
208
+ msgid "NPC Corp"
277
209
  msgstr ""
278
210
 
279
211
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
@@ -448,7 +380,7 @@ msgid "No data."
448
380
  msgstr ""
449
381
 
450
382
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
451
- msgid "Scan taken at (Eve time)"
383
+ msgid "Scan taken at (EVE time)"
452
384
  msgstr ""
453
385
 
454
386
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -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-01-31 11:24+0100\n"
12
+ "POT-Creation-Date: 2025-04-09 11:22+0200\n"
13
13
  "PO-Revision-Date: 2024-12-02 17:40+0000\n"
14
14
  "Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
15
15
  "Language-Team: Korean <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ko/>\n"
@@ -21,8 +21,8 @@ msgstr ""
21
21
  "X-Generator: Weblate 5.8.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,123 +162,55 @@ 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."
185
185
  msgstr[0] "챗 스캔 파일럿 수는 최대 {max_allowed_pilots}명으로 제한되어 있습니다. 입력한 파일럿 수가 제한을 초과합니다."
186
186
 
187
- #: aa_intel_tool/parser/module/dscan.py:350
187
+ #: aa_intel_tool/parser/module/dscan.py:362
188
188
  msgid "The D-Scan module is currently disabled."
189
189
  msgstr "전방위 스캐너 모듈이 비활성화된 상태입니다."
190
190
 
191
- #: aa_intel_tool/parser/module/fleetcomp.py:187
191
+ #: aa_intel_tool/parser/module/fleetcomp.py:181
192
192
  msgid "The fleet composition module is currently disabled."
193
193
  msgstr "함대 구성 모듈이 비활성화된 상태입니다."
194
194
 
195
- #: aa_intel_tool/templates/aa_intel_tool/base.html:20
195
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:23
196
196
  msgid "Permalink successfully copied"
197
197
  msgstr "고유링크가 성공적으로 복사되었습니다"
198
198
 
199
- #: aa_intel_tool/templates/aa_intel_tool/base.html:21
199
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:24
200
200
  msgid "Something went wrong. Nothing copied. Maybe your browser does not support this function."
201
201
  msgstr "뭔가 잘못됐습니다. 복사되지 않았습니다. 브라우저가 이 기능을 지원하지 않을 수도 있습니다."
202
202
 
203
- #: aa_intel_tool/templates/aa_intel_tool/base.html:22
203
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:25
204
204
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:4
205
205
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:4
206
206
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:3
207
207
  msgid "Unaffiliated / No Alliance"
208
208
  msgstr "얼라이언스 없음"
209
209
 
210
- #: aa_intel_tool/templates/aa_intel_tool/base.html:23
210
+ #: aa_intel_tool/templates/aa_intel_tool/base.html:26
211
211
  msgid "NPC Corp"
212
212
  msgstr "NPC 코퍼레이션"
213
213
 
214
- #: aa_intel_tool/templates/aa_intel_tool/base.html:24
215
- msgctxt "Decimal separator"
216
- msgid "."
217
- msgstr "."
218
-
219
- #: aa_intel_tool/templates/aa_intel_tool/base.html:25
220
- msgctxt "Thousands separator"
221
- msgid ","
222
- msgstr ","
223
-
224
- #: aa_intel_tool/templates/aa_intel_tool/base.html:26
225
- msgid "No data available in this table"
226
- msgstr "테이블에 유효한 데이터가 없습니다"
227
-
228
- #: aa_intel_tool/templates/aa_intel_tool/base.html:27
229
- msgctxt "Keep _END_ as it is. It will be replaced by a number."
230
- msgid "Showing _END_ entries"
231
- msgstr "_END_ 개의 결과 표시중"
232
-
233
- #: aa_intel_tool/templates/aa_intel_tool/base.html:28
234
- msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
235
- msgid "(filtered from _MAX_ total entries)"
236
- msgstr "(총 _MAX_ 개의 결과 에서 필터링됨)"
237
-
238
- #: aa_intel_tool/templates/aa_intel_tool/base.html:29
239
- msgid "No records available"
240
- msgstr "사용 가능한 레코드가 없습니다"
241
-
242
- #: aa_intel_tool/templates/aa_intel_tool/base.html:30
243
- msgid "Loading …"
244
- msgstr "로딩 …"
245
-
246
- #: aa_intel_tool/templates/aa_intel_tool/base.html:31
247
- msgid "Processing …"
248
- msgstr "처리 중 …"
249
-
250
- #: aa_intel_tool/templates/aa_intel_tool/base.html:32
251
- msgid "Nothing found, sorry …"
252
- msgstr "아무것도 찾지 못했습니다, 죄송합니다 …"
253
-
254
- #: aa_intel_tool/templates/aa_intel_tool/base.html:33
255
- msgid "Search …"
256
- msgstr "검색 …"
257
-
258
- #: aa_intel_tool/templates/aa_intel_tool/base.html:34
259
- msgid "First"
260
- msgstr "첫 번째"
261
-
262
- #: aa_intel_tool/templates/aa_intel_tool/base.html:35
263
- msgid "Last"
264
- msgstr "마지막"
265
-
266
- #: aa_intel_tool/templates/aa_intel_tool/base.html:36
267
- msgid "Next"
268
- msgstr "다음"
269
-
270
- #: aa_intel_tool/templates/aa_intel_tool/base.html:37
271
- msgid "Previous"
272
- msgstr "이전"
273
-
274
- #: aa_intel_tool/templates/aa_intel_tool/base.html:38
275
- msgid ": activate to sort column ascending"
276
- msgstr ": 열 오름차순으로 정렬 활성화"
277
-
278
- #: aa_intel_tool/templates/aa_intel_tool/base.html:39
279
- msgid ": activate to sort column descending"
280
- msgstr ": 열 내림차순으로 정렬 활성화"
281
-
282
214
  #: aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html:5
283
215
  #, python-format
284
216
  msgid "Scans will be deleted after %(scan_retention_time)s day."
@@ -457,7 +389,7 @@ msgstr "데이터 없음."
457
389
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html:5
458
390
  #, fuzzy
459
391
  #| msgid "Scan taken at (Eve Time)"
460
- msgid "Scan taken at (Eve time)"
392
+ msgid "Scan taken at (EVE time)"
461
393
  msgstr "스캔 시각 (이브 시간)"
462
394
 
463
395
  #: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html:8
@@ -496,6 +428,58 @@ msgstr "(성계 오류) 예측하지 못한 오류 발생."
496
428
  msgid "The scan you were looking for could not be found."
497
429
  msgstr "요구하는 스캔을 찾을 수 없습니다."
498
430
 
431
+ #~ msgctxt "Decimal separator"
432
+ #~ msgid "."
433
+ #~ msgstr "."
434
+
435
+ #~ msgctxt "Thousands separator"
436
+ #~ msgid ","
437
+ #~ msgstr ","
438
+
439
+ #~ msgid "No data available in this table"
440
+ #~ msgstr "테이블에 유효한 데이터가 없습니다"
441
+
442
+ #~ msgctxt "Keep _END_ as it is. It will be replaced by a number."
443
+ #~ msgid "Showing _END_ entries"
444
+ #~ msgstr "_END_ 개의 결과 표시중"
445
+
446
+ #~ msgctxt "Keep _MAX_ as it is. It will be replaced by a number."
447
+ #~ msgid "(filtered from _MAX_ total entries)"
448
+ #~ msgstr "(총 _MAX_ 개의 결과 에서 필터링됨)"
449
+
450
+ #~ msgid "No records available"
451
+ #~ msgstr "사용 가능한 레코드가 없습니다"
452
+
453
+ #~ msgid "Loading …"
454
+ #~ msgstr "로딩 …"
455
+
456
+ #~ msgid "Processing …"
457
+ #~ msgstr "처리 중 …"
458
+
459
+ #~ msgid "Nothing found, sorry …"
460
+ #~ msgstr "아무것도 찾지 못했습니다, 죄송합니다 …"
461
+
462
+ #~ msgid "Search …"
463
+ #~ msgstr "검색 …"
464
+
465
+ #~ msgid "First"
466
+ #~ msgstr "첫 번째"
467
+
468
+ #~ msgid "Last"
469
+ #~ msgstr "마지막"
470
+
471
+ #~ msgid "Next"
472
+ #~ msgstr "다음"
473
+
474
+ #~ msgid "Previous"
475
+ #~ msgstr "이전"
476
+
477
+ #~ msgid ": activate to sort column ascending"
478
+ #~ msgstr ": 열 오름차순으로 정렬 활성화"
479
+
480
+ #~ msgid ": activate to sort column descending"
481
+ #~ msgstr ": 열 내림차순으로 정렬 활성화"
482
+
499
483
  #~ msgctxt "Keep _MENU_ as it is. It will be replaced by an HTML construct."
500
484
  #~ msgid "Show _MENU_"
501
485
  #~ msgstr "_MENU_ 보기"