aa-ledger 0.9.8__py3-none-any.whl → 0.9.9.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. {aa_ledger-0.9.8.dist-info → aa_ledger-0.9.9.1.dist-info}/METADATA +3 -1
  2. {aa_ledger-0.9.8.dist-info → aa_ledger-0.9.9.1.dist-info}/RECORD +78 -76
  3. ledger/__init__.py +9 -9
  4. ledger/api/api_helper/billboard_helper.py +55 -26
  5. ledger/api/ledger/admin.py +1 -1
  6. ledger/app_settings.py +18 -11
  7. ledger/constants.py +5 -0
  8. ledger/decorators.py +92 -11
  9. ledger/helpers/alliance.py +119 -91
  10. ledger/helpers/character.py +260 -252
  11. ledger/helpers/core.py +565 -565
  12. ledger/helpers/corporation.py +237 -187
  13. ledger/helpers/etag.py +2 -1
  14. ledger/helpers/ref_type.py +475 -475
  15. ledger/locale/cs_CZ/LC_MESSAGES/django.po +942 -932
  16. ledger/locale/de/LC_MESSAGES/django.mo +0 -0
  17. ledger/locale/de/LC_MESSAGES/django.po +961 -945
  18. ledger/locale/django.pot +942 -932
  19. ledger/locale/es/LC_MESSAGES/django.po +943 -933
  20. ledger/locale/fr_FR/LC_MESSAGES/django.po +942 -932
  21. ledger/locale/it_IT/LC_MESSAGES/django.po +942 -932
  22. ledger/locale/ja/LC_MESSAGES/django.po +943 -933
  23. ledger/locale/ko_KR/LC_MESSAGES/django.po +942 -932
  24. ledger/locale/nl_NL/LC_MESSAGES/django.po +942 -932
  25. ledger/locale/pl_PL/LC_MESSAGES/django.po +942 -932
  26. ledger/locale/ru/LC_MESSAGES/django.po +945 -935
  27. ledger/locale/sk/LC_MESSAGES/django.po +944 -934
  28. ledger/locale/uk/LC_MESSAGES/django.po +946 -936
  29. ledger/locale/zh_Hans/LC_MESSAGES/django.po +943 -933
  30. ledger/managers/character_mining_manager.py +66 -19
  31. ledger/managers/character_planetary_manager.py +1 -1
  32. ledger/migrations/0016_characterminingledger_price_per_unit.py +21 -0
  33. ledger/models/characteraudit.py +32 -1
  34. ledger/static/ledger/css/cards.css +1 -1
  35. ledger/static/ledger/css/table.css +1 -1
  36. ledger/static/ledger/js/charts.js +7 -227
  37. ledger/static/ledger/js/planetary.js +1 -0
  38. ledger/tasks.py +1 -8
  39. ledger/templates/ledger/allyledger/admin/alliance_administration.html +17 -8
  40. ledger/templates/ledger/allyledger/admin/alliance_overview.html +75 -89
  41. ledger/templates/ledger/allyledger/alliance_ledger.html +8 -10
  42. ledger/templates/ledger/bundles/ally-administration-bundles.html +2 -0
  43. ledger/templates/ledger/bundles/char-administration-bundles.html +2 -0
  44. ledger/templates/ledger/bundles/character-ledger-bundles.html +66 -64
  45. ledger/templates/ledger/bundles/corp-administration-bundles.html +2 -0
  46. ledger/templates/ledger/bundles/corporation-ledger-bundles.html +75 -73
  47. ledger/templates/ledger/charledger/admin/character_administration.html +10 -8
  48. ledger/templates/ledger/charledger/admin/character_overview.html +69 -86
  49. ledger/templates/ledger/charledger/character_ledger.html +11 -15
  50. ledger/templates/ledger/charledger/planetary/planetary_ledger.html +2 -6
  51. ledger/templates/ledger/corpledger/admin/corporation_administration.html +10 -8
  52. ledger/templates/ledger/corpledger/admin/corporation_overview.html +71 -83
  53. ledger/templates/ledger/corpledger/corporation_ledger.html +55 -14
  54. ledger/templates/ledger/partials/administration/alliance.html +28 -49
  55. ledger/templates/ledger/partials/administration/alliance_corporations.html +58 -0
  56. ledger/templates/ledger/partials/administration/corporation_characters.html +26 -28
  57. ledger/templates/ledger/partials/information/daily.html +1 -1
  58. ledger/templates/ledger/partials/information/day.html +1 -7
  59. ledger/templates/ledger/partials/information/hourly.html +1 -7
  60. ledger/templates/ledger/partials/information/summary.html +88 -84
  61. ledger/templates/ledger/partials/information/view_character_content.html +35 -35
  62. ledger/templates/ledger/partials/table/char-ledger.html +14 -5
  63. ledger/templates/ledger/partials/table/corp-ledger.html +3 -3
  64. ledger/templates/ledger/partials/view/card.html +2 -2
  65. ledger/tests/test_decarators.py +102 -17
  66. ledger/tests/test_helpers/test_etag.py +7 -6
  67. ledger/tests/test_managers/test_character_mining_manager.py +2 -1
  68. ledger/tests/test_models/test_characterminingledger.py +38 -2
  69. ledger/tests/test_tasks.py +4 -4
  70. ledger/tests/test_templatetags.py +5 -2
  71. ledger/tests/test_views/test_access.py +852 -852
  72. ledger/tests/testdata/esi.json +1 -2
  73. ledger/tests/testdata/eveuniverse.json +90 -48
  74. ledger/urls.py +66 -21
  75. ledger/views/alliance/alliance_ledger.py +4 -3
  76. ledger/views/corporation/corporation_ledger.py +25 -9
  77. {aa_ledger-0.9.8.dist-info → aa_ledger-0.9.9.1.dist-info}/WHEEL +0 -0
  78. {aa_ledger-0.9.8.dist-info → aa_ledger-0.9.9.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,932 +1,942 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- #, fuzzy
7
- msgid ""
8
- msgstr ""
9
- "Project-Id-Version: PACKAGE VERSION\n"
10
- "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2025-08-25 12:48+0200\n"
12
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "Language: \n"
16
- "MIME-Version: 1.0\n"
17
- "Content-Type: text/plain; charset=UTF-8\n"
18
- "Content-Transfer-Encoding: 8bit\n"
19
-
20
- #: admin.py:134 admin.py:278
21
- msgid "last update run"
22
- msgstr ""
23
-
24
- #: admin.py:146
25
- msgid "Force update selected corporations"
26
- msgstr ""
27
-
28
- #: admin.py:159
29
- #, python-brace-format
30
- msgid ""
31
- "Started force update for {count} corporation(s). Updates will run in the "
32
- "background."
33
- msgstr ""
34
-
35
- #: admin.py:290
36
- msgid "Force update selected characters"
37
- msgstr ""
38
-
39
- #: admin.py:301
40
- #, python-brace-format
41
- msgid ""
42
- "Started force update for {count} character(s). Updates will run in the "
43
- "background."
44
- msgstr ""
45
-
46
- #: api/api_helper/planetary_helper.py:44
47
- msgid "No facility"
48
- msgstr ""
49
-
50
- #: api/ledger/admin.py:202
51
- msgid "Please re-register characters with issues"
52
- msgstr ""
53
-
54
- #: api/ledger/planetary.py:47 api/ledger/planetary.py:89
55
- #: api/ledger/planetary.py:153 api/ledger/planetary.py:199
56
- #: views/alliance/alliance_ledger.py:57 views/alliance/alliance_ledger.py:100
57
- #: views/alliance/alliance_ledger.py:173 views/character/character_ledger.py:45
58
- #: views/character/character_ledger.py:78
59
- #: views/character/character_ledger.py:147
60
- #: views/character/character_ledger.py:187 views/character/planetary.py:101
61
- #: views/corporation/corporation_ledger.py:64
62
- #: views/corporation/corporation_ledger.py:112
63
- #: views/corporation/corporation_ledger.py:182
64
- #: views/corporation/corporation_ledger.py:218
65
- msgid "Permission Denied"
66
- msgstr ""
67
-
68
- #: api/ledger/planetary.py:165
69
- msgid "Factory Information"
70
- msgstr ""
71
-
72
- #: api/ledger/planetary.py:176 api/ledger/planetary.py:218
73
- msgid "Planet not Found"
74
- msgstr ""
75
-
76
- #: api/ledger/planetary.py:208
77
- msgid "Extractor Information"
78
- msgstr ""
79
-
80
- #: helpers/alliance.py:163 helpers/corporation.py:196
81
- msgid "Ratting (Wallet)"
82
- msgstr ""
83
-
84
- #: helpers/alliance.py:168 helpers/corporation.py:201
85
- msgid "ESS (Wallet)"
86
- msgstr ""
87
-
88
- #: helpers/alliance.py:173 helpers/corporation.py:206
89
- msgid "Costs (Wallet)"
90
- msgstr ""
91
-
92
- #: helpers/alliance.py:178 helpers/corporation.py:211
93
- msgid "Miscellaneous (Wallet)"
94
- msgstr ""
95
-
96
- #: helpers/character.py:209 helpers/core.py:505 helpers/core.py:529
97
- #: templates/ledger/partials/information/day.html:8
98
- #: templates/ledger/partials/information/hourly.html:8
99
- #: templates/ledger/partials/information/summary.html:9
100
- #: templates/ledger/partials/view/card.html:90
101
- msgid "Ratting"
102
- msgstr ""
103
-
104
- #: helpers/character.py:214
105
- msgid "ESS"
106
- msgstr ""
107
-
108
- #: helpers/character.py:219 helpers/core.py:531
109
- #: templates/ledger/partials/view/card.html:109
110
- msgid "Mining"
111
- msgstr ""
112
-
113
- #: helpers/character.py:224
114
- msgid "Miscellaneous"
115
- msgstr ""
116
-
117
- #: helpers/character.py:229 templates/ledger/partials/table/char-ledger.html:16
118
- #: templates/ledger/partials/table/corp-ledger.html:12
119
- #: templates/ledger/partials/view/card.html:127
120
- msgid "Costs"
121
- msgstr ""
122
-
123
- #: helpers/core.py:179 templates/ledger/partials/table/char-ledger.html:45
124
- #: templates/ledger/partials/table/char-ledger.html:69
125
- #: templates/ledger/partials/table/corp-ledger.html:58
126
- msgid "View Details"
127
- msgstr ""
128
-
129
- #: helpers/core.py:506 helpers/core.py:530
130
- msgid "Encounter Surveillance System"
131
- msgstr ""
132
-
133
- #: helpers/ref_type.py:196
134
- msgid "Corporation Contract"
135
- msgstr ""
136
-
137
- #: helpers/ref_type.py:197
138
- msgid "Corporation Withdrawal"
139
- msgstr ""
140
-
141
- #: helpers/ref_type.py:198
142
- msgid "Mission Reward"
143
- msgstr ""
144
-
145
- #: helpers/ref_type.py:199
146
- msgid "Market"
147
- msgstr ""
148
-
149
- #: helpers/ref_type.py:200
150
- msgid "Daily Goal Reward"
151
- msgstr ""
152
-
153
- #: helpers/ref_type.py:201
154
- msgid "Structure Rental"
155
- msgstr ""
156
-
157
- #: managers/corporation_journal_manager.py:382
158
- msgid "Master Wallet"
159
- msgstr ""
160
-
161
- #: managers/corporation_journal_manager.py:384
162
- #: managers/corporation_journal_manager.py:408
163
- msgid "Unknown"
164
- msgstr ""
165
-
166
- #: models/characteraudit.py:47 models/corporationaudit.py:45
167
- #: templates/ledger/partials/view/card.html:44
168
- msgid "Wallet Journal"
169
- msgstr ""
170
-
171
- #: models/characteraudit.py:48 templates/ledger/partials/view/card.html:51
172
- msgid "Mining Ledger"
173
- msgstr ""
174
-
175
- #: models/characteraudit.py:49 templates/ledger/partials/view/card.html:59
176
- msgid "Planets"
177
- msgstr ""
178
-
179
- #: models/characteraudit.py:50
180
- msgid "Planets Details"
181
- msgstr ""
182
-
183
- #: models/characteraudit.py:63
184
- msgid "disabled"
185
- msgstr ""
186
-
187
- #: models/characteraudit.py:64
188
- msgid "token error"
189
- msgstr ""
190
-
191
- #: models/characteraudit.py:65
192
- msgid "error"
193
- msgstr ""
194
-
195
- #: models/characteraudit.py:66
196
- msgid "ok"
197
- msgstr ""
198
-
199
- #: models/characteraudit.py:67
200
- msgid "incomplete"
201
- msgstr ""
202
-
203
- #: models/characteraudit.py:68
204
- msgid "in progress"
205
- msgstr ""
206
-
207
- #: models/characteraudit.py:102
208
- msgid "Update is disabled"
209
- msgstr ""
210
-
211
- #: models/characteraudit.py:103
212
- msgid "One section has a token error during update"
213
- msgstr ""
214
-
215
- #: models/characteraudit.py:104
216
- msgid "One or more sections have not been updated"
217
- msgstr ""
218
-
219
- #: models/characteraudit.py:105
220
- msgid "Update is in progress"
221
- msgstr ""
222
-
223
- #: models/characteraudit.py:106
224
- msgid "An error occurred during update"
225
- msgstr ""
226
-
227
- #: models/characteraudit.py:107
228
- msgid "Updates completed successfully"
229
- msgstr ""
230
-
231
- #: models/corporationaudit.py:43
232
- msgid "Divisions Names"
233
- msgstr ""
234
-
235
- #: models/corporationaudit.py:44
236
- msgid "Divisions"
237
- msgstr ""
238
-
239
- #: models/general.py:64
240
- msgid "id"
241
- msgstr ""
242
-
243
- #: models/general.py:67
244
- msgid "category"
245
- msgstr ""
246
-
247
- #: models/general.py:69
248
- msgid "name"
249
- msgstr ""
250
-
251
- #: models/planetary.py:46
252
- msgid "Upgrade level of the planet"
253
- msgstr ""
254
-
255
- #: models/planetary.py:50
256
- msgid "Number of pins on the planet"
257
- msgstr ""
258
-
259
- #: tasks.py:83
260
- #, python-format
261
- msgid "%(charname)s on %(planetname)s"
262
- msgstr ""
263
-
264
- #: tasks.py:98
265
- msgid "Planetary Extractor Heads Expired"
266
- msgstr ""
267
-
268
- #: templates/ledger/admin.html:17
269
- #: templates/ledger/allyledger/admin/alliance_administration.html:17
270
- #: templates/ledger/allyledger/alliance_ledger.html:61
271
- #: templates/ledger/charledger/admin/character_administration.html:17
272
- #: templates/ledger/charledger/character_ledger.html:63
273
- #: templates/ledger/corpledger/admin/corporation_administration.html:17
274
- #: templates/ledger/corpledger/corporation_ledger.html:61
275
- msgid "Administration"
276
- msgstr ""
277
-
278
- #: templates/ledger/admin.html:23
279
- msgid "Mark all tasks as Force Refresh"
280
- msgstr ""
281
-
282
- #: templates/ledger/admin.html:28
283
- msgid "Clear all cached ETags"
284
- msgstr ""
285
-
286
- #: templates/ledger/admin.html:32
287
- msgid "Update Character Updates"
288
- msgstr ""
289
-
290
- #: templates/ledger/admin.html:36
291
- msgid "Update Corp Updates"
292
- msgstr ""
293
-
294
- #: templates/ledger/admin.html:38
295
- msgid "Submit"
296
- msgstr ""
297
-
298
- #: templates/ledger/allyledger/admin/alliance_administration.html:25
299
- msgid "Corporations"
300
- msgstr ""
301
-
302
- #: templates/ledger/allyledger/admin/alliance_overview.html:17
303
- #: templates/ledger/allyledger/alliance_ledger.html:62
304
- msgid "Alliance Overview"
305
- msgstr ""
306
-
307
- #: templates/ledger/allyledger/admin/alliance_overview.html:26
308
- #: templates/ledger/charledger/admin/character_overview.html:26
309
- #: templates/ledger/charledger/planetary/admin/planetary_overview.html:26
310
- #: templates/ledger/corpledger/admin/corporation_overview.html:25
311
- #: templates/ledger/partials/table/planetary.html:13
312
- msgid "Actions"
313
- msgstr ""
314
-
315
- #: templates/ledger/allyledger/admin/alliance_overview.html:79
316
- #: templates/ledger/charledger/admin/character_overview.html:80
317
- #: templates/ledger/charledger/planetary/admin/planetary_overview.html:80
318
- #: templates/ledger/corpledger/admin/corporation_overview.html:77
319
- msgid "Show"
320
- msgstr ""
321
-
322
- #: templates/ledger/allyledger/admin/alliance_overview.html:104
323
- #: templates/ledger/charledger/admin/character_overview.html:105
324
- #: templates/ledger/charledger/planetary/admin/planetary_overview.html:105
325
- #: templates/ledger/corpledger/admin/corporation_overview.html:102
326
- msgid "No Permission"
327
- msgstr ""
328
-
329
- #: templates/ledger/allyledger/alliance_ledger.html:16
330
- #: templates/ledger/partials/menu/navigation.html:25
331
- msgid "Alliance Ledger"
332
- msgstr ""
333
-
334
- #: templates/ledger/allyledger/alliance_ledger.html:20
335
- #: templates/ledger/charledger/character_ledger.html:22
336
- #: templates/ledger/corpledger/corporation_ledger.html:20
337
- msgid "Year"
338
- msgstr ""
339
-
340
- #: templates/ledger/allyledger/alliance_ledger.html:32
341
- #: templates/ledger/bundles/ledger-bundles.html:21
342
- #: templates/ledger/charledger/character_ledger.html:34
343
- #: templates/ledger/corpledger/corporation_ledger.html:32
344
- msgid "Month"
345
- msgstr ""
346
-
347
- #: templates/ledger/allyledger/alliance_ledger.html:46
348
- #: templates/ledger/bundles/ledger-bundles.html:20
349
- #: templates/ledger/charledger/character_ledger.html:48
350
- #: templates/ledger/corpledger/corporation_ledger.html:46
351
- msgid "Day"
352
- msgstr ""
353
-
354
- #: templates/ledger/base.html:10
355
- msgid "Ledger"
356
- msgstr ""
357
-
358
- #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:30
359
- msgid "January"
360
- msgstr ""
361
-
362
- #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:31
363
- msgid "February"
364
- msgstr ""
365
-
366
- #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:32
367
- msgid "March"
368
- msgstr ""
369
-
370
- #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:33
371
- msgid "April"
372
- msgstr ""
373
-
374
- #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:34
375
- msgid "May"
376
- msgstr ""
377
-
378
- #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:35
379
- msgid "June"
380
- msgstr ""
381
-
382
- #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:36
383
- msgid "July"
384
- msgstr ""
385
-
386
- #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:37
387
- msgid "August"
388
- msgstr ""
389
-
390
- #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:38
391
- msgid "September"
392
- msgstr ""
393
-
394
- #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:39
395
- msgid "October"
396
- msgstr ""
397
-
398
- #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:40
399
- msgid "November"
400
- msgstr ""
401
-
402
- #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:41
403
- msgid "December"
404
- msgstr ""
405
-
406
- #: templates/ledger/bundles/planetary-bundles.html:31
407
- msgid "Are you sure to Switch Notification"
408
- msgstr ""
409
-
410
- #: templates/ledger/bundles/planetary-bundles.html:32
411
- msgid "Switch Notification"
412
- msgstr ""
413
-
414
- #: templates/ledger/bundles/planetary-bundles.html:33
415
- msgid "Notification Activated"
416
- msgstr ""
417
-
418
- #: templates/ledger/bundles/planetary-bundles.html:34
419
- msgid "Notification Deactivated"
420
- msgstr ""
421
-
422
- #: templates/ledger/charledger/admin/character_administration.html:25
423
- #: templates/ledger/partials/administration/corporation_characters.html:9
424
- msgid "Characters"
425
- msgstr ""
426
-
427
- #: templates/ledger/charledger/admin/character_overview.html:16
428
- #: templates/ledger/charledger/character_ledger.html:64
429
- msgid "Account Overview"
430
- msgstr ""
431
-
432
- #: templates/ledger/charledger/character_ledger.html:18
433
- #: templates/ledger/partials/menu/navigation.html:6
434
- msgid "Character Ledger"
435
- msgstr ""
436
-
437
- #: templates/ledger/charledger/planetary/admin/planetary_overview.html:16
438
- #: templates/ledger/charledger/planetary/planetary_ledger.html:20
439
- msgid "Planetary Overview"
440
- msgstr ""
441
-
442
- #: templates/ledger/charledger/planetary/planetary_ledger.html:17
443
- msgid "Planetary Details"
444
- msgstr ""
445
-
446
- #: templates/ledger/charledger/planetary/planetary_ledger.html:27
447
- msgid "Notification"
448
- msgstr ""
449
-
450
- #: templates/ledger/charledger/planetary/planetary_ledger.html:27
451
- msgid "ON"
452
- msgstr ""
453
-
454
- #: templates/ledger/charledger/planetary/planetary_ledger.html:27
455
- msgid "OFF"
456
- msgstr ""
457
-
458
- #: templates/ledger/charledger/planetary/planetary_ledger.html:39
459
- msgid "Toggle Alarm"
460
- msgstr ""
461
-
462
- #: templates/ledger/charledger/planetary/planetary_ledger.html:40
463
- msgid "Are you sure to Turn On/Off all Notifications?"
464
- msgstr ""
465
-
466
- #: templates/ledger/charledger/planetary/planetary_ledger.html:44
467
- msgid "Turn All On/Off"
468
- msgstr ""
469
-
470
- #: templates/ledger/corpledger/admin/corporation_overview.html:16
471
- #: templates/ledger/corpledger/corporation_ledger.html:62
472
- msgid "Corporation Overview"
473
- msgstr ""
474
-
475
- #: templates/ledger/corpledger/corporation_ledger.html:16
476
- #: templates/ledger/partials/menu/navigation.html:21
477
- msgid "Corporation Ledger"
478
- msgstr ""
479
-
480
- #: templates/ledger/error.html:9
481
- msgid "Ledger - Error"
482
- msgstr ""
483
-
484
- #: templates/ledger/error.html:15
485
- msgid "Index"
486
- msgstr ""
487
-
488
- #: templates/ledger/partials/administration/alliance.html:5
489
- msgid "No Corporations found."
490
- msgstr ""
491
-
492
- #: templates/ledger/partials/administration/alliance.html:29
493
- #: templates/ledger/partials/administration/corporation.html:30
494
- msgid "View Corporation Ledger"
495
- msgstr ""
496
-
497
- #: templates/ledger/partials/administration/alliance.html:52
498
- msgid "Corporation is not registered in Ledger."
499
- msgstr ""
500
-
501
- #: templates/ledger/partials/administration/character.html:4
502
- #: templates/ledger/partials/administration/corporation_characters.html:4
503
- #: templates/ledger/partials/administration/corporation_characters.html:13
504
- msgid "No Characters found."
505
- msgstr ""
506
-
507
- #: templates/ledger/partials/administration/character.html:28
508
- msgid "View Character Ledger"
509
- msgstr ""
510
-
511
- #: templates/ledger/partials/administration/character.html:35
512
- msgid "Delete Character"
513
- msgstr ""
514
-
515
- #: templates/ledger/partials/administration/character.html:36
516
- msgid "Are you sure to Delete this Character?"
517
- msgstr ""
518
-
519
- #: templates/ledger/partials/administration/character.html:61
520
- msgid "Character is not registered in Ledger."
521
- msgstr ""
522
-
523
- #: templates/ledger/partials/administration/corporation.html:5
524
- msgid "No Corporation found."
525
- msgstr ""
526
-
527
- #: templates/ledger/partials/administration/corporation.html:9
528
- msgid "Corporation"
529
- msgstr ""
530
-
531
- #: templates/ledger/partials/administration/corporation.html:37
532
- msgid "Delete Corporation"
533
- msgstr ""
534
-
535
- #: templates/ledger/partials/administration/corporation.html:38
536
- msgid "Are you sure to Delete this Corporation?"
537
- msgstr ""
538
-
539
- #: templates/ledger/partials/administration/dashboard.html:4
540
- msgid "Dashboard"
541
- msgstr ""
542
-
543
- #: templates/ledger/partials/administration/dashboard.html:23
544
- msgid "Status:"
545
- msgstr ""
546
-
547
- #: templates/ledger/partials/administration/dashboard.html:30
548
- msgid "Characters with Issues:"
549
- msgstr ""
550
-
551
- #: templates/ledger/partials/administration/dashboard.html:40
552
- msgid "Information:"
553
- msgstr ""
554
-
555
- #: templates/ledger/partials/administration/dashboard.html:64
556
- msgid "Auth Characters:"
557
- msgstr ""
558
-
559
- #: templates/ledger/partials/administration/dashboard.html:68
560
- #: templates/ledger/partials/administration/dashboard.html:90
561
- msgid "Active Characters:"
562
- msgstr ""
563
-
564
- #: templates/ledger/partials/administration/dashboard.html:72
565
- msgid "Inactive Characters:"
566
- msgstr ""
567
-
568
- #: templates/ledger/partials/administration/dashboard.html:76
569
- #: templates/ledger/partials/administration/dashboard.html:94
570
- msgid "Missing Characters:"
571
- msgstr ""
572
-
573
- #: templates/ledger/partials/administration/dashboard.html:86
574
- msgid "Corporation Characters:"
575
- msgstr ""
576
-
577
- #: templates/ledger/partials/administration/dashboard.html:104
578
- msgid "Auth Corporations:"
579
- msgstr ""
580
-
581
- #: templates/ledger/partials/administration/dashboard.html:108
582
- msgid "Active Corporations:"
583
- msgstr ""
584
-
585
- #: templates/ledger/partials/administration/dashboard.html:112
586
- msgid "Missing Corporations:"
587
- msgstr ""
588
-
589
- #: templates/ledger/partials/information/daily.html:14
590
- #: templates/ledger/partials/information/daily.html:31
591
- #: templates/ledger/partials/information/daily.html:44
592
- #: templates/ledger/partials/information/hourly.html:20
593
- #: templates/ledger/partials/information/hourly.html:37
594
- #: templates/ledger/partials/information/hourly.html:50
595
- msgid "Avg."
596
- msgstr ""
597
-
598
- #: templates/ledger/partials/information/daily.html:14
599
- msgid "per Day"
600
- msgstr ""
601
-
602
- #: templates/ledger/partials/information/daily.html:31
603
- msgid "Cost per Day"
604
- msgstr ""
605
-
606
- #: templates/ledger/partials/information/daily.html:44
607
- msgid "Summary Day"
608
- msgstr ""
609
-
610
- #: templates/ledger/partials/information/day.html:6
611
- #: templates/ledger/partials/information/hourly.html:6
612
- #: templates/ledger/partials/information/summary.html:7
613
- msgid "TAX"
614
- msgstr ""
615
-
616
- #: templates/ledger/partials/information/day.html:17
617
- msgid "Current Day -"
618
- msgstr ""
619
-
620
- #: templates/ledger/partials/information/day.html:34
621
- msgid "Current Day Cost -"
622
- msgstr ""
623
-
624
- #: templates/ledger/partials/information/day.html:47
625
- msgid "Current Day"
626
- msgstr ""
627
-
628
- #: templates/ledger/partials/information/day.html:47
629
- #: templates/ledger/partials/information/summary.html:69
630
- #: templates/ledger/partials/information/view_character_content.html:13
631
- #: templates/ledger/partials/table/char-ledger.html:56
632
- #: templates/ledger/partials/table/corp-ledger.html:45
633
- #: templates/ledger/partials/view/card.html:136
634
- msgid "Summary"
635
- msgstr ""
636
-
637
- #: templates/ledger/partials/information/hourly.html:20
638
- msgid "per Hour"
639
- msgstr ""
640
-
641
- #: templates/ledger/partials/information/hourly.html:37
642
- msgid "Cost per Hour"
643
- msgstr ""
644
-
645
- #: templates/ledger/partials/information/hourly.html:50
646
- msgid "Summary Hour"
647
- msgstr ""
648
-
649
- #: templates/ledger/partials/information/summary.html:26
650
- #: templates/ledger/partials/information/summary.html:53
651
- msgid "Included Categories"
652
- msgstr ""
653
-
654
- #: templates/ledger/partials/information/summary.html:47
655
- msgid "Cost"
656
- msgstr ""
657
-
658
- #: templates/ledger/partials/information/view_character_content.html:16
659
- msgid "Daily"
660
- msgstr ""
661
-
662
- #: templates/ledger/partials/information/view_character_content.html:19
663
- msgid "Hourly"
664
- msgstr ""
665
-
666
- #: templates/ledger/partials/information/view_character_content.html:30
667
- msgid "Error"
668
- msgstr ""
669
-
670
- #: templates/ledger/partials/information/view_character_content.html:34
671
- msgid "No ratting data found..."
672
- msgstr ""
673
-
674
- #: templates/ledger/partials/menu/administration.html:6
675
- msgid "Add Character"
676
- msgstr ""
677
-
678
- #: templates/ledger/partials/menu/administration.html:13
679
- msgid "Add Corporation"
680
- msgstr ""
681
-
682
- #: templates/ledger/partials/menu/administration.html:19
683
- msgid "Add Alliance"
684
- msgstr ""
685
-
686
- #: templates/ledger/partials/menu/navigation.html:12
687
- msgid "Planetary Ledger"
688
- msgstr ""
689
-
690
- #: templates/ledger/partials/modal/confirm.html:26
691
- #: templates/ledger/partials/modal/switchalarm_confirm.html:30
692
- msgid "Cancel"
693
- msgstr ""
694
-
695
- #: templates/ledger/partials/modal/confirm.html:30
696
- #: templates/ledger/partials/modal/switchalarm_confirm.html:34
697
- msgid "Confirm"
698
- msgstr ""
699
-
700
- #: templates/ledger/partials/modal/modal.html:24
701
- msgid "Close"
702
- msgstr ""
703
-
704
- #: templates/ledger/partials/modal/view_extractor.html:15
705
- msgid "Extractors"
706
- msgstr ""
707
-
708
- #: templates/ledger/partials/modal/view_extractor.html:20
709
- #: templates/ledger/partials/modal/view_factory.html:21
710
- msgid "Product"
711
- msgstr ""
712
-
713
- #: templates/ledger/partials/modal/view_extractor.html:21
714
- msgid "Install Time"
715
- msgstr ""
716
-
717
- #: templates/ledger/partials/modal/view_extractor.html:22
718
- msgid "Expiry Time"
719
- msgstr ""
720
-
721
- #: templates/ledger/partials/modal/view_extractor.html:23
722
- #: templates/ledger/partials/table/planetary.html:9
723
- msgid "Progress"
724
- msgstr ""
725
-
726
- #: templates/ledger/partials/modal/view_extractor.html:44
727
- #: templates/ledger/partials/modal/view_factory.html:86
728
- msgid "No data found..."
729
- msgstr ""
730
-
731
- #: templates/ledger/partials/modal/view_extractor.html:47
732
- #: templates/ledger/partials/modal/view_factory.html:90
733
- msgid ""
734
- "Note: Planetary information is only recalculated when the colony is viewed "
735
- "through the client. Information will not update until this criteria is met."
736
- msgstr ""
737
-
738
- #: templates/ledger/partials/modal/view_factory.html:16
739
- msgid "Storage"
740
- msgstr ""
741
-
742
- #: templates/ledger/partials/modal/view_factory.html:23
743
- msgid "Product Name"
744
- msgstr ""
745
-
746
- #: templates/ledger/partials/modal/view_factory.html:24
747
- msgid "Amount"
748
- msgstr ""
749
-
750
- #: templates/ledger/partials/modal/view_factory.html:45
751
- #: templates/ledger/partials/modal/view_factory.html:51
752
- msgid "Facility"
753
- msgstr ""
754
-
755
- #: templates/ledger/partials/modal/view_factory.html:52
756
- msgid "Input"
757
- msgstr ""
758
-
759
- #: templates/ledger/partials/modal/view_factory.html:53
760
- msgid "Output"
761
- msgstr ""
762
-
763
- #: templates/ledger/partials/modal/view_factory.html:54
764
- msgid "Active"
765
- msgstr ""
766
-
767
- #: templates/ledger/partials/modal/view_factory.html:73
768
- msgid "No output"
769
- msgstr ""
770
-
771
- #: templates/ledger/partials/table/char-ledger.html:7
772
- #: templates/ledger/partials/table/corp-ledger.html:7
773
- #: templates/ledger/partials/table/planetary.html:5
774
- #: templates/ledger/partials/view/card.html:37
775
- msgid "Character"
776
- msgstr ""
777
-
778
- #: templates/ledger/partials/table/char-ledger.html:8
779
- #: templates/ledger/partials/table/corp-ledger.html:8
780
- msgid "Ratting Amount"
781
- msgstr ""
782
-
783
- #: templates/ledger/partials/table/char-ledger.html:9
784
- #: templates/ledger/partials/table/corp-ledger.html:9
785
- #: templates/ledger/partials/view/card.html:99
786
- msgid "ESS Payout"
787
- msgstr ""
788
-
789
- #: templates/ledger/partials/table/char-ledger.html:11
790
- msgid "Estimated Only"
791
- msgstr ""
792
-
793
- #: templates/ledger/partials/table/char-ledger.html:14
794
- msgid "Mining Amount"
795
- msgstr ""
796
-
797
- #: templates/ledger/partials/table/char-ledger.html:15
798
- #: templates/ledger/partials/table/corp-ledger.html:11
799
- msgid "Misc. Amount"
800
- msgstr ""
801
-
802
- #: templates/ledger/partials/table/char-ledger.html:17
803
- #: templates/ledger/partials/table/corp-ledger.html:13
804
- msgid "Total"
805
- msgstr ""
806
-
807
- #: templates/ledger/partials/table/char-ledger.html:37
808
- msgid "View Character"
809
- msgstr ""
810
-
811
- #: templates/ledger/partials/table/planetary.html:6
812
- msgid "Planet"
813
- msgstr ""
814
-
815
- #: templates/ledger/partials/table/planetary.html:7
816
- msgid "Upgrade Level"
817
- msgstr ""
818
-
819
- #: templates/ledger/partials/table/planetary.html:8
820
- msgid "Products"
821
- msgstr ""
822
-
823
- #: templates/ledger/partials/table/planetary.html:10
824
- msgid "Extractor"
825
- msgstr ""
826
-
827
- #: templates/ledger/partials/table/planetary.html:11
828
- msgid "Status"
829
- msgstr ""
830
-
831
- #: templates/ledger/partials/table/planetary.html:12
832
- msgid "Last Updated"
833
- msgstr ""
834
-
835
- #: templates/ledger/partials/thirdparty/billboard.html:7
836
- msgid "Diagram"
837
- msgstr ""
838
-
839
- #: templates/ledger/partials/thirdparty/billboard.html:15
840
- msgid "Chord"
841
- msgstr ""
842
-
843
- #: templates/ledger/partials/view/card.html:26
844
- msgid "Overview"
845
- msgstr ""
846
-
847
- #: templates/ledger/partials/view/card.html:66
848
- msgid "Detailed Sheet"
849
- msgstr ""
850
-
851
- #: templates/ledger/partials/view/card.html:104
852
- msgid "Estimated"
853
- msgstr ""
854
-
855
- #: templates/ledger/partials/view/card.html:118
856
- msgid "Misc"
857
- msgstr ""
858
-
859
- #: templates/ledger/partials/view/card.html:150
860
- #: templates/ledger/partials/view/card.html:151
861
- msgid "Planetary Interaction"
862
- msgstr ""
863
-
864
- #: templates/ledger/permission.html:2
865
- msgid "You don't have Permission to view this Page"
866
- msgstr ""
867
-
868
- #: views/alliance/add_ally.py:36
869
- #, python-brace-format
870
- msgid "{alliance_name} is already in the Ledger System"
871
- msgstr ""
872
-
873
- #: views/alliance/add_ally.py:62
874
- #, python-brace-format
875
- msgid "{alliance_name} successfully added to Ledger"
876
- msgstr ""
877
-
878
- #: views/alliance/add_ally.py:67
879
- #, python-brace-format
880
- msgid "Failed to fetch Alliance data for {alliance_name}"
881
- msgstr ""
882
-
883
- #: views/alliance/alliance_ledger.py:64 views/alliance/alliance_ledger.py:111
884
- #: views/alliance/alliance_ledger.py:177
885
- msgid "Alliance not found"
886
- msgstr ""
887
-
888
- #: views/character/character_ledger.py:89
889
- #: views/corporation/corporation_ledger.py:71
890
- #: views/corporation/corporation_ledger.py:123
891
- #: views/corporation/corporation_ledger.py:186
892
- #: views/corporation/corporation_ledger.py:223
893
- msgid "Corporation not found"
894
- msgstr ""
895
-
896
- #: views/character/character_ledger.py:195
897
- msgid "Character not found"
898
- msgstr ""
899
-
900
- #: views/character/character_ledger.py:202
901
- #, python-brace-format
902
- msgid "{audit.eve_character.character_name} successfully deleted"
903
- msgstr ""
904
-
905
- #: views/character/planetary.py:130
906
- msgid "All alarms successfully switched"
907
- msgstr ""
908
-
909
- #: views/character/planetary.py:135
910
- msgid "Planet/s not found"
911
- msgstr ""
912
-
913
- #: views/corporation/corporation_ledger.py:231
914
- #, python-brace-format
915
- msgid "{audit.corporation.corporation_name} successfully deleted"
916
- msgstr ""
917
-
918
- #: views/index.py:43
919
- msgid "You do not have permission to access this page."
920
- msgstr ""
921
-
922
- #: views/index.py:51
923
- msgid "Queued Clear All ETags"
924
- msgstr ""
925
-
926
- #: views/index.py:54
927
- msgid "Queued Update All Characters"
928
- msgstr ""
929
-
930
- #: views/index.py:59
931
- msgid "Queued Update All Corporations"
932
- msgstr ""
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: PACKAGE VERSION\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2025-08-28 11:24+0200\n"
12
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: admin.py:134 admin.py:278
21
+ msgid "last update run"
22
+ msgstr ""
23
+
24
+ #: admin.py:146
25
+ msgid "Force update selected corporations"
26
+ msgstr ""
27
+
28
+ #: admin.py:159
29
+ #, python-brace-format
30
+ msgid ""
31
+ "Started force update for {count} corporation(s). Updates will run in the "
32
+ "background."
33
+ msgstr ""
34
+
35
+ #: admin.py:290
36
+ msgid "Force update selected characters"
37
+ msgstr ""
38
+
39
+ #: admin.py:301
40
+ #, python-brace-format
41
+ msgid ""
42
+ "Started force update for {count} character(s). Updates will run in the "
43
+ "background."
44
+ msgstr ""
45
+
46
+ #: api/api_helper/billboard_helper.py:51 helpers/character.py:208
47
+ #: helpers/core.py:495 helpers/core.py:519
48
+ #: templates/ledger/partials/view/card.html:90
49
+ msgid "Bounty"
50
+ msgstr ""
51
+
52
+ #: api/api_helper/billboard_helper.py:52 helpers/character.py:213
53
+ msgid "ESS"
54
+ msgstr ""
55
+
56
+ #: api/api_helper/billboard_helper.py:53 helpers/character.py:218
57
+ #: helpers/core.py:521 templates/ledger/partials/view/card.html:109
58
+ msgid "Mining"
59
+ msgstr ""
60
+
61
+ #: api/api_helper/billboard_helper.py:54 helpers/character.py:223
62
+ msgid "Miscellaneous"
63
+ msgstr ""
64
+
65
+ #: api/api_helper/billboard_helper.py:55 helpers/character.py:228
66
+ #: templates/ledger/partials/table/char-ledger.html:16
67
+ #: templates/ledger/partials/table/corp-ledger.html:12
68
+ #: templates/ledger/partials/view/card.html:127
69
+ msgid "Costs"
70
+ msgstr ""
71
+
72
+ #: api/api_helper/billboard_helper.py:56
73
+ #: managers/corporation_journal_manager.py:384
74
+ #: managers/corporation_journal_manager.py:408
75
+ msgid "Unknown"
76
+ msgstr ""
77
+
78
+ #: api/api_helper/planetary_helper.py:44
79
+ msgid "No facility"
80
+ msgstr ""
81
+
82
+ #: api/ledger/admin.py:202
83
+ msgid "Please re-register characters with issues"
84
+ msgstr ""
85
+
86
+ #: api/ledger/planetary.py:47 api/ledger/planetary.py:89
87
+ #: api/ledger/planetary.py:153 api/ledger/planetary.py:199
88
+ #: views/alliance/alliance_ledger.py:57 views/alliance/alliance_ledger.py:100
89
+ #: views/alliance/alliance_ledger.py:173 views/character/character_ledger.py:45
90
+ #: views/character/character_ledger.py:78
91
+ #: views/character/character_ledger.py:147
92
+ #: views/character/character_ledger.py:187 views/character/planetary.py:101
93
+ #: views/corporation/corporation_ledger.py:64
94
+ #: views/corporation/corporation_ledger.py:112
95
+ #: views/corporation/corporation_ledger.py:182
96
+ #: views/corporation/corporation_ledger.py:218
97
+ msgid "Permission Denied"
98
+ msgstr ""
99
+
100
+ #: api/ledger/planetary.py:165
101
+ msgid "Factory Information"
102
+ msgstr ""
103
+
104
+ #: api/ledger/planetary.py:176 api/ledger/planetary.py:218
105
+ msgid "Planet not Found"
106
+ msgstr ""
107
+
108
+ #: api/ledger/planetary.py:208
109
+ msgid "Extractor Information"
110
+ msgstr ""
111
+
112
+ #: helpers/alliance.py:304 helpers/character.py:260 helpers/corporation.py:391
113
+ msgid "Ratting Bar"
114
+ msgstr ""
115
+
116
+ #: helpers/alliance.py:316 helpers/corporation.py:403
117
+ msgid "Bounty (Wallet)"
118
+ msgstr ""
119
+
120
+ #: helpers/alliance.py:321 helpers/corporation.py:408
121
+ msgid "ESS (Wallet)"
122
+ msgstr ""
123
+
124
+ #: helpers/alliance.py:326 helpers/corporation.py:413
125
+ msgid "Costs (Wallet)"
126
+ msgstr ""
127
+
128
+ #: helpers/alliance.py:331 helpers/corporation.py:418
129
+ msgid "Miscellaneous (Wallet)"
130
+ msgstr ""
131
+
132
+ #: helpers/core.py:178 templates/ledger/partials/table/char-ledger.html:45
133
+ #: templates/ledger/partials/table/char-ledger.html:78
134
+ #: templates/ledger/partials/table/corp-ledger.html:58
135
+ msgid "View Details"
136
+ msgstr ""
137
+
138
+ #: helpers/core.py:496 helpers/core.py:520
139
+ msgid "Encounter Surveillance System"
140
+ msgstr ""
141
+
142
+ #: helpers/ref_type.py:196
143
+ msgid "Corporation Contract"
144
+ msgstr ""
145
+
146
+ #: helpers/ref_type.py:197
147
+ msgid "Corporation Withdrawal"
148
+ msgstr ""
149
+
150
+ #: helpers/ref_type.py:198
151
+ msgid "Mission Reward"
152
+ msgstr ""
153
+
154
+ #: helpers/ref_type.py:199
155
+ msgid "Market"
156
+ msgstr ""
157
+
158
+ #: helpers/ref_type.py:200
159
+ msgid "Daily Goal Reward"
160
+ msgstr ""
161
+
162
+ #: helpers/ref_type.py:201
163
+ msgid "Structure Rental"
164
+ msgstr ""
165
+
166
+ #: managers/corporation_journal_manager.py:382
167
+ msgid "Master Wallet"
168
+ msgstr ""
169
+
170
+ #: models/characteraudit.py:49 models/corporationaudit.py:45
171
+ #: templates/ledger/partials/view/card.html:44
172
+ msgid "Wallet Journal"
173
+ msgstr ""
174
+
175
+ #: models/characteraudit.py:50 templates/ledger/partials/view/card.html:51
176
+ msgid "Mining Ledger"
177
+ msgstr ""
178
+
179
+ #: models/characteraudit.py:51 templates/ledger/partials/view/card.html:59
180
+ msgid "Planets"
181
+ msgstr ""
182
+
183
+ #: models/characteraudit.py:52
184
+ msgid "Planets Details"
185
+ msgstr ""
186
+
187
+ #: models/characteraudit.py:65
188
+ msgid "disabled"
189
+ msgstr ""
190
+
191
+ #: models/characteraudit.py:66
192
+ msgid "token error"
193
+ msgstr ""
194
+
195
+ #: models/characteraudit.py:67
196
+ msgid "error"
197
+ msgstr ""
198
+
199
+ #: models/characteraudit.py:68
200
+ msgid "ok"
201
+ msgstr ""
202
+
203
+ #: models/characteraudit.py:69
204
+ msgid "incomplete"
205
+ msgstr ""
206
+
207
+ #: models/characteraudit.py:70
208
+ msgid "in progress"
209
+ msgstr ""
210
+
211
+ #: models/characteraudit.py:104
212
+ msgid "Update is disabled"
213
+ msgstr ""
214
+
215
+ #: models/characteraudit.py:105
216
+ msgid "One section has a token error during update"
217
+ msgstr ""
218
+
219
+ #: models/characteraudit.py:106
220
+ msgid "One or more sections have not been updated"
221
+ msgstr ""
222
+
223
+ #: models/characteraudit.py:107
224
+ msgid "Update is in progress"
225
+ msgstr ""
226
+
227
+ #: models/characteraudit.py:108
228
+ msgid "An error occurred during update"
229
+ msgstr ""
230
+
231
+ #: models/characteraudit.py:109
232
+ msgid "Updates completed successfully"
233
+ msgstr ""
234
+
235
+ #: models/corporationaudit.py:43
236
+ msgid "Divisions Names"
237
+ msgstr ""
238
+
239
+ #: models/corporationaudit.py:44
240
+ msgid "Divisions"
241
+ msgstr ""
242
+
243
+ #: models/general.py:64
244
+ msgid "id"
245
+ msgstr ""
246
+
247
+ #: models/general.py:67
248
+ msgid "category"
249
+ msgstr ""
250
+
251
+ #: models/general.py:69
252
+ msgid "name"
253
+ msgstr ""
254
+
255
+ #: models/planetary.py:46
256
+ msgid "Upgrade level of the planet"
257
+ msgstr ""
258
+
259
+ #: models/planetary.py:50
260
+ msgid "Number of pins on the planet"
261
+ msgstr ""
262
+
263
+ #: tasks.py:83
264
+ #, python-format
265
+ msgid "%(charname)s on %(planetname)s"
266
+ msgstr ""
267
+
268
+ #: tasks.py:98
269
+ msgid "Planetary Extractor Heads Expired"
270
+ msgstr ""
271
+
272
+ #: templates/ledger/admin.html:17
273
+ #: templates/ledger/allyledger/admin/alliance_administration.html:17
274
+ #: templates/ledger/allyledger/alliance_ledger.html:61
275
+ #: templates/ledger/charledger/admin/character_administration.html:17
276
+ #: templates/ledger/charledger/character_ledger.html:63
277
+ #: templates/ledger/corpledger/admin/corporation_administration.html:17
278
+ #: templates/ledger/corpledger/corporation_ledger.html:61
279
+ msgid "Administration"
280
+ msgstr ""
281
+
282
+ #: templates/ledger/admin.html:23
283
+ msgid "Mark all tasks as Force Refresh"
284
+ msgstr ""
285
+
286
+ #: templates/ledger/admin.html:28
287
+ msgid "Clear all cached ETags"
288
+ msgstr ""
289
+
290
+ #: templates/ledger/admin.html:32
291
+ msgid "Update Character Updates"
292
+ msgstr ""
293
+
294
+ #: templates/ledger/admin.html:36
295
+ msgid "Update Corp Updates"
296
+ msgstr ""
297
+
298
+ #: templates/ledger/admin.html:38
299
+ msgid "Submit"
300
+ msgstr ""
301
+
302
+ #: templates/ledger/allyledger/admin/alliance_administration.html:33
303
+ msgid "Corporations"
304
+ msgstr ""
305
+
306
+ #: templates/ledger/allyledger/admin/alliance_overview.html:16
307
+ #: templates/ledger/allyledger/alliance_ledger.html:62
308
+ msgid "Alliance Overview"
309
+ msgstr ""
310
+
311
+ #: templates/ledger/allyledger/admin/alliance_overview.html:25
312
+ #: templates/ledger/partials/administration/alliance.html:9
313
+ msgid "Alliance"
314
+ msgstr ""
315
+
316
+ #: templates/ledger/allyledger/admin/alliance_overview.html:26
317
+ #: templates/ledger/charledger/admin/character_overview.html:27
318
+ #: templates/ledger/charledger/planetary/admin/planetary_overview.html:26
319
+ #: templates/ledger/corpledger/admin/corporation_overview.html:26
320
+ #: templates/ledger/partials/table/planetary.html:13
321
+ msgid "Actions"
322
+ msgstr ""
323
+
324
+ #: templates/ledger/allyledger/admin/alliance_overview.html:76
325
+ #: templates/ledger/charledger/admin/character_overview.html:74
326
+ #: templates/ledger/charledger/planetary/admin/planetary_overview.html:80
327
+ #: templates/ledger/corpledger/admin/corporation_overview.html:76
328
+ msgid "Show"
329
+ msgstr ""
330
+
331
+ #: templates/ledger/allyledger/alliance_ledger.html:16
332
+ #: templates/ledger/partials/menu/navigation.html:25
333
+ msgid "Alliance Ledger"
334
+ msgstr ""
335
+
336
+ #: templates/ledger/allyledger/alliance_ledger.html:20
337
+ #: templates/ledger/charledger/character_ledger.html:22
338
+ #: templates/ledger/corpledger/corporation_ledger.html:20
339
+ msgid "Year"
340
+ msgstr ""
341
+
342
+ #: templates/ledger/allyledger/alliance_ledger.html:32
343
+ #: templates/ledger/bundles/ledger-bundles.html:21
344
+ #: templates/ledger/charledger/character_ledger.html:34
345
+ #: templates/ledger/corpledger/corporation_ledger.html:32
346
+ msgid "Month"
347
+ msgstr ""
348
+
349
+ #: templates/ledger/allyledger/alliance_ledger.html:46
350
+ #: templates/ledger/bundles/ledger-bundles.html:20
351
+ #: templates/ledger/charledger/character_ledger.html:48
352
+ #: templates/ledger/corpledger/corporation_ledger.html:46
353
+ msgid "Day"
354
+ msgstr ""
355
+
356
+ #: templates/ledger/base.html:10
357
+ msgid "Ledger"
358
+ msgstr ""
359
+
360
+ #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:30
361
+ msgid "January"
362
+ msgstr ""
363
+
364
+ #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:31
365
+ msgid "February"
366
+ msgstr ""
367
+
368
+ #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:32
369
+ msgid "March"
370
+ msgstr ""
371
+
372
+ #: templates/ledger/bundles/ledger-bundles.html:16 templatetags/ledger.py:33
373
+ msgid "April"
374
+ msgstr ""
375
+
376
+ #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:34
377
+ msgid "May"
378
+ msgstr ""
379
+
380
+ #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:35
381
+ msgid "June"
382
+ msgstr ""
383
+
384
+ #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:36
385
+ msgid "July"
386
+ msgstr ""
387
+
388
+ #: templates/ledger/bundles/ledger-bundles.html:17 templatetags/ledger.py:37
389
+ msgid "August"
390
+ msgstr ""
391
+
392
+ #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:38
393
+ msgid "September"
394
+ msgstr ""
395
+
396
+ #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:39
397
+ msgid "October"
398
+ msgstr ""
399
+
400
+ #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:40
401
+ msgid "November"
402
+ msgstr ""
403
+
404
+ #: templates/ledger/bundles/ledger-bundles.html:18 templatetags/ledger.py:41
405
+ msgid "December"
406
+ msgstr ""
407
+
408
+ #: templates/ledger/bundles/planetary-bundles.html:31
409
+ msgid "Are you sure to Switch Notification"
410
+ msgstr ""
411
+
412
+ #: templates/ledger/bundles/planetary-bundles.html:32
413
+ msgid "Switch Notification"
414
+ msgstr ""
415
+
416
+ #: templates/ledger/bundles/planetary-bundles.html:33
417
+ msgid "Notification Activated"
418
+ msgstr ""
419
+
420
+ #: templates/ledger/bundles/planetary-bundles.html:34
421
+ msgid "Notification Deactivated"
422
+ msgstr ""
423
+
424
+ #: templates/ledger/charledger/admin/character_administration.html:26
425
+ #: templates/ledger/partials/administration/corporation_characters.html:8
426
+ msgid "Characters"
427
+ msgstr ""
428
+
429
+ #: templates/ledger/charledger/admin/character_overview.html:16
430
+ #: templates/ledger/charledger/character_ledger.html:64
431
+ msgid "Account Overview"
432
+ msgstr ""
433
+
434
+ #: templates/ledger/charledger/character_ledger.html:18
435
+ #: templates/ledger/partials/menu/navigation.html:6
436
+ msgid "Character Ledger"
437
+ msgstr ""
438
+
439
+ #: templates/ledger/charledger/planetary/admin/planetary_overview.html:16
440
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:20
441
+ msgid "Planetary Overview"
442
+ msgstr ""
443
+
444
+ #: templates/ledger/charledger/planetary/admin/planetary_overview.html:105
445
+ msgid "No Permission"
446
+ msgstr ""
447
+
448
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:17
449
+ msgid "Planetary Details"
450
+ msgstr ""
451
+
452
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:27
453
+ msgid "Notification"
454
+ msgstr ""
455
+
456
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:27
457
+ msgid "ON"
458
+ msgstr ""
459
+
460
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:27
461
+ msgid "OFF"
462
+ msgstr ""
463
+
464
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:35
465
+ msgid "Toggle Alarm"
466
+ msgstr ""
467
+
468
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:36
469
+ msgid "Are you sure to Turn On/Off all Notifications?"
470
+ msgstr ""
471
+
472
+ #: templates/ledger/charledger/planetary/planetary_ledger.html:40
473
+ msgid "Turn All On/Off"
474
+ msgstr ""
475
+
476
+ #: templates/ledger/corpledger/admin/corporation_overview.html:16
477
+ #: templates/ledger/corpledger/corporation_ledger.html:62
478
+ msgid "Corporation Overview"
479
+ msgstr ""
480
+
481
+ #: templates/ledger/corpledger/admin/corporation_overview.html:25
482
+ #: templates/ledger/partials/administration/corporation.html:9
483
+ msgid "Corporation"
484
+ msgstr ""
485
+
486
+ #: templates/ledger/corpledger/corporation_ledger.html:16
487
+ #: templates/ledger/partials/menu/navigation.html:21
488
+ msgid "Corporation Ledger"
489
+ msgstr ""
490
+
491
+ #: templates/ledger/error.html:9
492
+ msgid "Ledger - Error"
493
+ msgstr ""
494
+
495
+ #: templates/ledger/error.html:15
496
+ msgid "Index"
497
+ msgstr ""
498
+
499
+ #: templates/ledger/partials/administration/alliance.html:5
500
+ #: views/alliance/alliance_ledger.py:64 views/alliance/alliance_ledger.py:111
501
+ #: views/alliance/alliance_ledger.py:177
502
+ msgid "Alliance not found."
503
+ msgstr ""
504
+
505
+ #: templates/ledger/partials/administration/alliance.html:30
506
+ msgid "View Alliance Ledger"
507
+ msgstr ""
508
+
509
+ #: templates/ledger/partials/administration/alliance_corporations.html:5
510
+ msgid "No Corporations found."
511
+ msgstr ""
512
+
513
+ #: templates/ledger/partials/administration/alliance_corporations.html:29
514
+ #: templates/ledger/partials/administration/corporation.html:30
515
+ msgid "View Corporation Ledger"
516
+ msgstr ""
517
+
518
+ #: templates/ledger/partials/administration/alliance_corporations.html:52
519
+ msgid "Corporation is not registered in Ledger."
520
+ msgstr ""
521
+
522
+ #: templates/ledger/partials/administration/character.html:4
523
+ #: templates/ledger/partials/administration/corporation_characters.html:4
524
+ #: templates/ledger/partials/administration/corporation_characters.html:12
525
+ msgid "No Characters found."
526
+ msgstr ""
527
+
528
+ #: templates/ledger/partials/administration/character.html:28
529
+ msgid "View Character Ledger"
530
+ msgstr ""
531
+
532
+ #: templates/ledger/partials/administration/character.html:35
533
+ msgid "Delete Character"
534
+ msgstr ""
535
+
536
+ #: templates/ledger/partials/administration/character.html:36
537
+ msgid "Are you sure to Delete this Character?"
538
+ msgstr ""
539
+
540
+ #: templates/ledger/partials/administration/character.html:61
541
+ msgid "Character is not registered in Ledger."
542
+ msgstr ""
543
+
544
+ #: templates/ledger/partials/administration/corporation.html:5
545
+ msgid "No Corporation found."
546
+ msgstr ""
547
+
548
+ #: templates/ledger/partials/administration/corporation.html:37
549
+ msgid "Delete Corporation"
550
+ msgstr ""
551
+
552
+ #: templates/ledger/partials/administration/corporation.html:38
553
+ msgid "Are you sure to Delete this Corporation?"
554
+ msgstr ""
555
+
556
+ #: templates/ledger/partials/administration/dashboard.html:4
557
+ msgid "Dashboard"
558
+ msgstr ""
559
+
560
+ #: templates/ledger/partials/administration/dashboard.html:23
561
+ msgid "Status:"
562
+ msgstr ""
563
+
564
+ #: templates/ledger/partials/administration/dashboard.html:30
565
+ msgid "Characters with Issues:"
566
+ msgstr ""
567
+
568
+ #: templates/ledger/partials/administration/dashboard.html:40
569
+ msgid "Information:"
570
+ msgstr ""
571
+
572
+ #: templates/ledger/partials/administration/dashboard.html:64
573
+ msgid "Auth Characters:"
574
+ msgstr ""
575
+
576
+ #: templates/ledger/partials/administration/dashboard.html:68
577
+ #: templates/ledger/partials/administration/dashboard.html:90
578
+ msgid "Active Characters:"
579
+ msgstr ""
580
+
581
+ #: templates/ledger/partials/administration/dashboard.html:72
582
+ msgid "Inactive Characters:"
583
+ msgstr ""
584
+
585
+ #: templates/ledger/partials/administration/dashboard.html:76
586
+ #: templates/ledger/partials/administration/dashboard.html:94
587
+ msgid "Missing Characters:"
588
+ msgstr ""
589
+
590
+ #: templates/ledger/partials/administration/dashboard.html:86
591
+ msgid "Corporation Characters:"
592
+ msgstr ""
593
+
594
+ #: templates/ledger/partials/administration/dashboard.html:104
595
+ msgid "Auth Corporations:"
596
+ msgstr ""
597
+
598
+ #: templates/ledger/partials/administration/dashboard.html:108
599
+ msgid "Active Corporations:"
600
+ msgstr ""
601
+
602
+ #: templates/ledger/partials/administration/dashboard.html:112
603
+ msgid "Missing Corporations:"
604
+ msgstr ""
605
+
606
+ #: templates/ledger/partials/information/daily.html:14
607
+ #: templates/ledger/partials/information/daily.html:31
608
+ #: templates/ledger/partials/information/daily.html:44
609
+ #: templates/ledger/partials/information/hourly.html:14
610
+ #: templates/ledger/partials/information/hourly.html:31
611
+ #: templates/ledger/partials/information/hourly.html:44
612
+ msgid "Avg."
613
+ msgstr ""
614
+
615
+ #: templates/ledger/partials/information/daily.html:14
616
+ msgid "per Day"
617
+ msgstr ""
618
+
619
+ #: templates/ledger/partials/information/daily.html:31
620
+ msgid "Cost per Day"
621
+ msgstr ""
622
+
623
+ #: templates/ledger/partials/information/daily.html:44
624
+ msgid "Summary Day"
625
+ msgstr ""
626
+
627
+ #: templates/ledger/partials/information/day.html:11
628
+ msgid "Current Day -"
629
+ msgstr ""
630
+
631
+ #: templates/ledger/partials/information/day.html:28
632
+ msgid "Current Day Cost -"
633
+ msgstr ""
634
+
635
+ #: templates/ledger/partials/information/day.html:41
636
+ msgid "Current Day"
637
+ msgstr ""
638
+
639
+ #: templates/ledger/partials/information/day.html:41
640
+ #: templates/ledger/partials/information/summary.html:63
641
+ #: templates/ledger/partials/information/view_character_content.html:13
642
+ #: templates/ledger/partials/table/char-ledger.html:56
643
+ #: templates/ledger/partials/table/corp-ledger.html:45
644
+ #: templates/ledger/partials/view/card.html:136
645
+ msgid "Summary"
646
+ msgstr ""
647
+
648
+ #: templates/ledger/partials/information/hourly.html:14
649
+ msgid "per Hour"
650
+ msgstr ""
651
+
652
+ #: templates/ledger/partials/information/hourly.html:31
653
+ msgid "Cost per Hour"
654
+ msgstr ""
655
+
656
+ #: templates/ledger/partials/information/hourly.html:44
657
+ msgid "Summary Hour"
658
+ msgstr ""
659
+
660
+ #: templates/ledger/partials/information/summary.html:20
661
+ #: templates/ledger/partials/information/summary.html:47
662
+ msgid "Included Categories"
663
+ msgstr ""
664
+
665
+ #: templates/ledger/partials/information/summary.html:41
666
+ msgid "Cost"
667
+ msgstr ""
668
+
669
+ #: templates/ledger/partials/information/view_character_content.html:16
670
+ msgid "Daily"
671
+ msgstr ""
672
+
673
+ #: templates/ledger/partials/information/view_character_content.html:19
674
+ msgid "Hourly"
675
+ msgstr ""
676
+
677
+ #: templates/ledger/partials/information/view_character_content.html:30
678
+ msgid "Error"
679
+ msgstr ""
680
+
681
+ #: templates/ledger/partials/information/view_character_content.html:34
682
+ msgid "No ratting data found..."
683
+ msgstr ""
684
+
685
+ #: templates/ledger/partials/menu/administration.html:6
686
+ msgid "Add Character"
687
+ msgstr ""
688
+
689
+ #: templates/ledger/partials/menu/administration.html:13
690
+ msgid "Add Corporation"
691
+ msgstr ""
692
+
693
+ #: templates/ledger/partials/menu/administration.html:19
694
+ msgid "Add Alliance"
695
+ msgstr ""
696
+
697
+ #: templates/ledger/partials/menu/navigation.html:12
698
+ msgid "Planetary Ledger"
699
+ msgstr ""
700
+
701
+ #: templates/ledger/partials/modal/confirm.html:26
702
+ #: templates/ledger/partials/modal/switchalarm_confirm.html:30
703
+ msgid "Cancel"
704
+ msgstr ""
705
+
706
+ #: templates/ledger/partials/modal/confirm.html:30
707
+ #: templates/ledger/partials/modal/switchalarm_confirm.html:34
708
+ msgid "Confirm"
709
+ msgstr ""
710
+
711
+ #: templates/ledger/partials/modal/modal.html:24
712
+ msgid "Close"
713
+ msgstr ""
714
+
715
+ #: templates/ledger/partials/modal/view_extractor.html:15
716
+ msgid "Extractors"
717
+ msgstr ""
718
+
719
+ #: templates/ledger/partials/modal/view_extractor.html:20
720
+ #: templates/ledger/partials/modal/view_factory.html:21
721
+ msgid "Product"
722
+ msgstr ""
723
+
724
+ #: templates/ledger/partials/modal/view_extractor.html:21
725
+ msgid "Install Time"
726
+ msgstr ""
727
+
728
+ #: templates/ledger/partials/modal/view_extractor.html:22
729
+ msgid "Expiry Time"
730
+ msgstr ""
731
+
732
+ #: templates/ledger/partials/modal/view_extractor.html:23
733
+ #: templates/ledger/partials/table/planetary.html:9
734
+ msgid "Progress"
735
+ msgstr ""
736
+
737
+ #: templates/ledger/partials/modal/view_extractor.html:44
738
+ #: templates/ledger/partials/modal/view_factory.html:86
739
+ msgid "No data found..."
740
+ msgstr ""
741
+
742
+ #: templates/ledger/partials/modal/view_extractor.html:47
743
+ #: templates/ledger/partials/modal/view_factory.html:90
744
+ msgid ""
745
+ "Note: Planetary information is only recalculated when the colony is viewed "
746
+ "through the client. Information will not update until this criteria is met."
747
+ msgstr ""
748
+
749
+ #: templates/ledger/partials/modal/view_factory.html:16
750
+ msgid "Storage"
751
+ msgstr ""
752
+
753
+ #: templates/ledger/partials/modal/view_factory.html:23
754
+ msgid "Product Name"
755
+ msgstr ""
756
+
757
+ #: templates/ledger/partials/modal/view_factory.html:24
758
+ msgid "Amount"
759
+ msgstr ""
760
+
761
+ #: templates/ledger/partials/modal/view_factory.html:45
762
+ #: templates/ledger/partials/modal/view_factory.html:51
763
+ msgid "Facility"
764
+ msgstr ""
765
+
766
+ #: templates/ledger/partials/modal/view_factory.html:52
767
+ msgid "Input"
768
+ msgstr ""
769
+
770
+ #: templates/ledger/partials/modal/view_factory.html:53
771
+ msgid "Output"
772
+ msgstr ""
773
+
774
+ #: templates/ledger/partials/modal/view_factory.html:54
775
+ msgid "Active"
776
+ msgstr ""
777
+
778
+ #: templates/ledger/partials/modal/view_factory.html:73
779
+ msgid "No output"
780
+ msgstr ""
781
+
782
+ #: templates/ledger/partials/table/char-ledger.html:7
783
+ #: templates/ledger/partials/table/corp-ledger.html:7
784
+ #: templates/ledger/partials/table/planetary.html:5
785
+ #: templates/ledger/partials/view/card.html:37
786
+ msgid "Character"
787
+ msgstr ""
788
+
789
+ #: templates/ledger/partials/table/char-ledger.html:8
790
+ #: templates/ledger/partials/table/corp-ledger.html:8
791
+ msgid "Bounty Amount"
792
+ msgstr ""
793
+
794
+ #: templates/ledger/partials/table/char-ledger.html:9
795
+ #: templates/ledger/partials/table/corp-ledger.html:9
796
+ #: templates/ledger/partials/view/card.html:99
797
+ msgid "ESS Amount"
798
+ msgstr ""
799
+
800
+ #: templates/ledger/partials/table/char-ledger.html:11
801
+ msgid "Estimated Only"
802
+ msgstr ""
803
+
804
+ #: templates/ledger/partials/table/char-ledger.html:14
805
+ msgid "Mining Amount"
806
+ msgstr ""
807
+
808
+ #: templates/ledger/partials/table/char-ledger.html:15
809
+ #: templates/ledger/partials/table/corp-ledger.html:11
810
+ msgid "Misc. Amount"
811
+ msgstr ""
812
+
813
+ #: templates/ledger/partials/table/char-ledger.html:17
814
+ #: templates/ledger/partials/table/corp-ledger.html:13
815
+ msgid "Total"
816
+ msgstr ""
817
+
818
+ #: templates/ledger/partials/table/char-ledger.html:37
819
+ msgid "View Character"
820
+ msgstr ""
821
+
822
+ #: templates/ledger/partials/table/char-ledger.html:64
823
+ msgid "This amount is displayed for information only"
824
+ msgstr ""
825
+
826
+ #: templates/ledger/partials/table/planetary.html:6
827
+ msgid "Planet"
828
+ msgstr ""
829
+
830
+ #: templates/ledger/partials/table/planetary.html:7
831
+ msgid "Upgrade Level"
832
+ msgstr ""
833
+
834
+ #: templates/ledger/partials/table/planetary.html:8
835
+ msgid "Products"
836
+ msgstr ""
837
+
838
+ #: templates/ledger/partials/table/planetary.html:10
839
+ msgid "Extractor"
840
+ msgstr ""
841
+
842
+ #: templates/ledger/partials/table/planetary.html:11
843
+ msgid "Status"
844
+ msgstr ""
845
+
846
+ #: templates/ledger/partials/table/planetary.html:12
847
+ msgid "Last Updated"
848
+ msgstr ""
849
+
850
+ #: templates/ledger/partials/thirdparty/billboard.html:7
851
+ msgid "Diagram"
852
+ msgstr ""
853
+
854
+ #: templates/ledger/partials/thirdparty/billboard.html:15
855
+ msgid "Chord"
856
+ msgstr ""
857
+
858
+ #: templates/ledger/partials/view/card.html:26
859
+ msgid "Overview"
860
+ msgstr ""
861
+
862
+ #: templates/ledger/partials/view/card.html:66
863
+ msgid "Detailed Sheet"
864
+ msgstr ""
865
+
866
+ #: templates/ledger/partials/view/card.html:104
867
+ msgid "Estimated"
868
+ msgstr ""
869
+
870
+ #: templates/ledger/partials/view/card.html:118
871
+ msgid "Misc"
872
+ msgstr ""
873
+
874
+ #: templates/ledger/partials/view/card.html:150
875
+ #: templates/ledger/partials/view/card.html:151
876
+ msgid "Planetary Interaction"
877
+ msgstr ""
878
+
879
+ #: templates/ledger/permission.html:2
880
+ msgid "You don't have Permission to view this Page"
881
+ msgstr ""
882
+
883
+ #: views/alliance/add_ally.py:36
884
+ #, python-brace-format
885
+ msgid "{alliance_name} is already in the Ledger System"
886
+ msgstr ""
887
+
888
+ #: views/alliance/add_ally.py:62
889
+ #, python-brace-format
890
+ msgid "{alliance_name} successfully added to Ledger"
891
+ msgstr ""
892
+
893
+ #: views/alliance/add_ally.py:67
894
+ #, python-brace-format
895
+ msgid "Failed to fetch Alliance data for {alliance_name}"
896
+ msgstr ""
897
+
898
+ #: views/character/character_ledger.py:89
899
+ #: views/corporation/corporation_ledger.py:71
900
+ #: views/corporation/corporation_ledger.py:123
901
+ #: views/corporation/corporation_ledger.py:186
902
+ #: views/corporation/corporation_ledger.py:223
903
+ msgid "Corporation not found"
904
+ msgstr ""
905
+
906
+ #: views/character/character_ledger.py:195
907
+ msgid "Character not found"
908
+ msgstr ""
909
+
910
+ #: views/character/character_ledger.py:202
911
+ #, python-brace-format
912
+ msgid "{audit.eve_character.character_name} successfully deleted"
913
+ msgstr ""
914
+
915
+ #: views/character/planetary.py:130
916
+ msgid "All alarms successfully switched"
917
+ msgstr ""
918
+
919
+ #: views/character/planetary.py:135
920
+ msgid "Planet/s not found"
921
+ msgstr ""
922
+
923
+ #: views/corporation/corporation_ledger.py:231
924
+ #, python-brace-format
925
+ msgid "{audit.corporation.corporation_name} successfully deleted"
926
+ msgstr ""
927
+
928
+ #: views/index.py:43
929
+ msgid "You do not have permission to access this page."
930
+ msgstr ""
931
+
932
+ #: views/index.py:51
933
+ msgid "Queued Clear All ETags"
934
+ msgstr ""
935
+
936
+ #: views/index.py:54
937
+ msgid "Queued Update All Characters"
938
+ msgstr ""
939
+
940
+ #: views/index.py:59
941
+ msgid "Queued Update All Corporations"
942
+ msgstr ""