aa-intel-tool 2.10.0__py3-none-any.whl → 2.10.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
aa_intel_tool/__init__.py CHANGED
@@ -5,5 +5,6 @@ App init
5
5
  # Django
6
6
  from django.utils.translation import gettext_lazy as _
7
7
 
8
- __version__ = "2.10.0"
9
- __title__ = _("Intel Parser")
8
+ __version__ = "2.10.1"
9
+ __title__ = "Intel Parser"
10
+ __title_translated__ = _("Intel Parser")
aa_intel_tool/apps.py CHANGED
@@ -4,10 +4,10 @@ App config
4
4
 
5
5
  # Django
6
6
  from django.apps import AppConfig
7
- from django.utils.translation import gettext_lazy as _
7
+ from django.utils.text import format_lazy
8
8
 
9
9
  # AA Intel Tool
10
- from aa_intel_tool import __version__
10
+ from aa_intel_tool import __title_translated__, __version__
11
11
 
12
12
 
13
13
  class AaIntelToolConfig(AppConfig):
@@ -17,5 +17,6 @@ class AaIntelToolConfig(AppConfig):
17
17
 
18
18
  name = "aa_intel_tool"
19
19
  label = "aa_intel_tool"
20
- # Translators: This is the app name and version, which will appear in the Django Backend
21
- verbose_name = _(f"Intel Parser v{__version__}")
20
+ verbose_name = format_lazy(
21
+ "{app_title} v{version}", app_title=__title_translated__, version=__version__
22
+ )
@@ -18,18 +18,24 @@ INTERNAL_URL_PREFIX = "-"
18
18
 
19
19
 
20
20
  # Localised units
21
- distance_units_on_grid: str = """
21
+ distance_units_on_grid: str = ( # pylint: disable=invalid-name
22
+ """
22
23
  km|m # Client in: English, German, Chinese, French, Japanese, Korean, Spanish
23
24
  |км|м # Russian
24
25
  """
25
- distance_units_off_grid: str = """
26
+ )
27
+ distance_units_off_grid: str = ( # pylint: disable=invalid-name
28
+ """
26
29
  AU # Client in: English, Chinese, Japanese, Korean, Spanish
27
30
  |UA # Client in: French
28
31
  |AE # German
29
32
  |а.е. # Russian
30
33
  """
34
+ )
31
35
 
32
- distance_units: str = f"{distance_units_on_grid}|{distance_units_off_grid}"
36
+ distance_units: str = ( # pylint: disable=invalid-name
37
+ f"{distance_units_on_grid}|{distance_units_off_grid}"
38
+ )
33
39
 
34
40
 
35
41
  # Pre-compiled regex patterns used throughout the app
@@ -43,4 +43,4 @@ class ParserError(AaIntelToolException):
43
43
 
44
44
  message = self.message if self.message else _("Unknown parser error")
45
45
 
46
- return str(_(f"A parser error occurred » {message}"))
46
+ return str(_("A parser error occurred » {message}").format(message=message))
@@ -6,7 +6,7 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: AA Intel Tool 2.5.1\n"
8
8
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
9
- "POT-Creation-Date: 2025-10-09 16:02+0200\n"
9
+ "POT-Creation-Date: 2025-11-04 12:19+0100\n"
10
10
  "PO-Revision-Date: 2024-07-10 14:26+0000\n"
11
11
  "Last-Translator: Dadas Aideron <dadas.aideron@gmail.com>\n"
12
12
  "Language-Team: Czech <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/cs/>\n"
@@ -17,7 +17,7 @@ msgstr ""
17
17
  "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
18
18
  "X-Generator: Weblate 5.6.2\n"
19
19
 
20
- #: aa_intel_tool/__init__.py:9
20
+ #: aa_intel_tool/__init__.py:10
21
21
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
23
23
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -38,22 +38,16 @@ msgstr ""
38
38
  msgid "Raw data"
39
39
  msgstr ""
40
40
 
41
- #. Translators: This is the app name and version, which will appear in the Django Backend
42
- #: aa_intel_tool/apps.py:21
43
- #, python-brace-format
44
- msgid "Intel Parser v{__version__}"
45
- msgstr ""
46
-
47
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
41
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
48
42
  msgid "Chat list"
49
43
  msgstr ""
50
44
 
51
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
45
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
52
46
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
53
47
  msgid "D-Scan"
54
48
  msgstr ""
55
49
 
56
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
50
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
57
51
  #: aa_intel_tool/models.py:123
58
52
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
59
53
  msgid "Fleet composition"
@@ -414,14 +408,16 @@ msgstr ""
414
408
  msgid "Participation details"
415
409
  msgstr ""
416
410
 
417
- #: aa_intel_tool/views/general.py:53
418
- msgid "The provided data could not be parsed."
411
+ #: aa_intel_tool/views/general.py:56
412
+ #, python-brace-format
413
+ msgid "The provided data could not be parsed. ({exc})"
419
414
  msgstr ""
420
415
 
421
- #: aa_intel_tool/views/general.py:60
422
- msgid "(System Error) Something unexpected happened."
416
+ #: aa_intel_tool/views/general.py:68
417
+ #, python-brace-format
418
+ msgid "(System Error) Something unexpected happened. ({exc})"
423
419
  msgstr ""
424
420
 
425
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
421
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
426
422
  msgid "The scan you were looking for could not be found."
427
423
  msgstr ""
@@ -6,8 +6,8 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: AA Intel Tool 2.5.1\n"
8
8
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
9
- "POT-Creation-Date: 2025-10-09 16:02+0200\n"
10
- "PO-Revision-Date: 2025-06-27 08:09+0000\n"
9
+ "POT-Creation-Date: 2025-11-04 12:19+0100\n"
10
+ "PO-Revision-Date: 2025-10-21 08:59+0000\n"
11
11
  "Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
12
12
  "Language-Team: German <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/de/>\n"
13
13
  "Language: de\n"
@@ -15,9 +15,9 @@ msgstr ""
15
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "X-Generator: Weblate 5.12.2\n"
18
+ "X-Generator: Weblate 5.13.3\n"
19
19
 
20
- #: aa_intel_tool/__init__.py:9
20
+ #: aa_intel_tool/__init__.py:10
21
21
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
23
23
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -38,22 +38,16 @@ msgstr "In einem neuen Browser-Tab öffnen"
38
38
  msgid "Raw data"
39
39
  msgstr "Rohdaten"
40
40
 
41
- #. Translators: This is the app name and version, which will appear in the Django Backend
42
- #: aa_intel_tool/apps.py:21
43
- #, python-brace-format
44
- msgid "Intel Parser v{__version__}"
45
- msgstr "Intel Parser v{__version__}"
46
-
47
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
41
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
48
42
  msgid "Chat list"
49
43
  msgstr "Chatliste"
50
44
 
51
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
45
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
52
46
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
53
47
  msgid "D-Scan"
54
48
  msgstr "D-Scan"
55
49
 
56
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
50
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
57
51
  #: aa_intel_tool/models.py:123
58
52
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
59
53
  msgid "Fleet composition"
@@ -408,18 +402,24 @@ msgstr "System"
408
402
  msgid "Participation details"
409
403
  msgstr "Teilnahmedetails"
410
404
 
411
- #: aa_intel_tool/views/general.py:53
412
- msgid "The provided data could not be parsed."
413
- msgstr "Die bereitgestellten Daten konnten nicht analysiert werden."
405
+ #: aa_intel_tool/views/general.py:56
406
+ #, python-brace-format
407
+ msgid "The provided data could not be parsed. ({exc})"
408
+ msgstr "Die bereitgestellten Daten konnten nicht analysiert werden. ({exc})"
414
409
 
415
- #: aa_intel_tool/views/general.py:60
416
- msgid "(System Error) Something unexpected happened."
417
- msgstr "(Systemfehler) Es ist etwas Unerwartetes passiert."
410
+ #: aa_intel_tool/views/general.py:68
411
+ #, python-brace-format
412
+ msgid "(System Error) Something unexpected happened. ({exc})"
413
+ msgstr "(Systemfehler) Es ist etwas Unerwartetes passiert. ({exc})"
418
414
 
419
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
415
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
420
416
  msgid "The scan you were looking for could not be found."
421
417
  msgstr "Der gesuchte Scan konnte nicht gefunden werden."
422
418
 
419
+ #, python-brace-format
420
+ #~ msgid "Intel Parser v{__version__}"
421
+ #~ msgstr "Intel Parser v{__version__}"
422
+
423
423
  #~ msgctxt "Decimal separator"
424
424
  #~ msgid "."
425
425
  #~ msgstr ","
@@ -6,9 +6,9 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: AA Intel Tool 2.10.0\n"
9
+ "Project-Id-Version: AA Intel Tool 2.10.1\n"
10
10
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
11
- "POT-Creation-Date: 2025-10-09 16:02+0200\n"
11
+ "POT-Creation-Date: 2025-11-04 12:19+0100\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: aa_intel_tool/__init__.py:9
21
+ #: aa_intel_tool/__init__.py:10
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
23
23
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
24
24
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -39,22 +39,16 @@ msgstr ""
39
39
  msgid "Raw data"
40
40
  msgstr ""
41
41
 
42
- #. Translators: This is the app name and version, which will appear in the Django Backend
43
- #: aa_intel_tool/apps.py:21
44
- #, python-brace-format
45
- msgid "Intel Parser v{__version__}"
46
- msgstr ""
47
-
48
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
42
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
49
43
  msgid "Chat list"
50
44
  msgstr ""
51
45
 
52
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
46
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
53
47
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
54
48
  msgid "D-Scan"
55
49
  msgstr ""
56
50
 
57
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
51
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
58
52
  #: aa_intel_tool/models.py:123
59
53
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
60
54
  msgid "Fleet composition"
@@ -421,14 +415,16 @@ msgstr ""
421
415
  msgid "Participation details"
422
416
  msgstr ""
423
417
 
424
- #: aa_intel_tool/views/general.py:53
425
- msgid "The provided data could not be parsed."
418
+ #: aa_intel_tool/views/general.py:56
419
+ #, python-brace-format
420
+ msgid "The provided data could not be parsed. ({exc})"
426
421
  msgstr ""
427
422
 
428
- #: aa_intel_tool/views/general.py:60
429
- msgid "(System Error) Something unexpected happened."
423
+ #: aa_intel_tool/views/general.py:68
424
+ #, python-brace-format
425
+ msgid "(System Error) Something unexpected happened. ({exc})"
430
426
  msgstr ""
431
427
 
432
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
428
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
433
429
  msgid "The scan you were looking for could not be found."
434
430
  msgstr ""
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: AA Intel Tool 2.5.1\n"
10
10
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
11
- "POT-Creation-Date: 2025-10-09 16:02+0200\n"
11
+ "POT-Creation-Date: 2025-11-04 12:19+0100\n"
12
12
  "PO-Revision-Date: 2025-07-29 20:18+0000\n"
13
13
  "Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
14
14
  "Language-Team: Spanish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/es/>\n"
@@ -19,7 +19,7 @@ msgstr ""
19
19
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
20
  "X-Generator: Weblate 5.12.2\n"
21
21
 
22
- #: aa_intel_tool/__init__.py:9
22
+ #: aa_intel_tool/__init__.py:10
23
23
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
24
24
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
25
25
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -40,22 +40,16 @@ msgstr "Abrir en una nueva pestaña del navegador"
40
40
  msgid "Raw data"
41
41
  msgstr "datos RAW"
42
42
 
43
- #. Translators: This is the app name and version, which will appear in the Django Backend
44
- #: aa_intel_tool/apps.py:21
45
- #, python-brace-format
46
- msgid "Intel Parser v{__version__}"
47
- msgstr "Herramienta de Intel v{__version__}"
48
-
49
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
43
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
50
44
  msgid "Chat list"
51
45
  msgstr "Lista de Chat"
52
46
 
53
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
47
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
54
48
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
55
49
  msgid "D-Scan"
56
50
  msgstr "D-Scan"
57
51
 
58
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
52
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
59
53
  #: aa_intel_tool/models.py:123
60
54
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
61
55
  msgid "Fleet composition"
@@ -422,18 +416,24 @@ msgstr "Sistema"
422
416
  msgid "Participation details"
423
417
  msgstr ""
424
418
 
425
- #: aa_intel_tool/views/general.py:53
426
- msgid "The provided data could not be parsed."
419
+ #: aa_intel_tool/views/general.py:56
420
+ #, python-brace-format
421
+ msgid "The provided data could not be parsed. ({exc})"
427
422
  msgstr ""
428
423
 
429
- #: aa_intel_tool/views/general.py:60
430
- msgid "(System Error) Something unexpected happened."
424
+ #: aa_intel_tool/views/general.py:68
425
+ #, python-brace-format
426
+ msgid "(System Error) Something unexpected happened. ({exc})"
431
427
  msgstr ""
432
428
 
433
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
429
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
434
430
  msgid "The scan you were looking for could not be found."
435
431
  msgstr ""
436
432
 
433
+ #, python-brace-format
434
+ #~ msgid "Intel Parser v{__version__}"
435
+ #~ msgstr "Herramienta de Intel v{__version__}"
436
+
437
437
  #~ msgctxt "Decimal separator"
438
438
  #~ msgid "."
439
439
  #~ msgstr ","
@@ -10,7 +10,7 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: AA Intel Tool 2.5.1\n"
12
12
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
13
- "POT-Creation-Date: 2025-10-09 16:02+0200\n"
13
+ "POT-Creation-Date: 2025-11-04 12:19+0100\n"
14
14
  "PO-Revision-Date: 2025-08-03 04:24+0000\n"
15
15
  "Last-Translator: The “Devcutter” Guy <mick162534@gmail.com>\n"
16
16
  "Language-Team: French <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/fr/>\n"
@@ -21,7 +21,7 @@ msgstr ""
21
21
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
22
22
  "X-Generator: Weblate 5.12.2\n"
23
23
 
24
- #: aa_intel_tool/__init__.py:9
24
+ #: aa_intel_tool/__init__.py:10
25
25
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
26
26
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
27
27
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -42,22 +42,16 @@ msgstr "Ouvrir dans un nouvel onglet"
42
42
  msgid "Raw data"
43
43
  msgstr "Données brute"
44
44
 
45
- #. Translators: This is the app name and version, which will appear in the Django Backend
46
- #: aa_intel_tool/apps.py:21
47
- #, python-brace-format
48
- msgid "Intel Parser v{__version__}"
49
- msgstr "Analyseur de Renseignements v{__version__}"
50
-
51
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
45
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
52
46
  msgid "Chat list"
53
47
  msgstr "Liste de conversation"
54
48
 
55
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
49
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
56
50
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
57
51
  msgid "D-Scan"
58
52
  msgstr "Scanner directionnel"
59
53
 
60
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
54
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
61
55
  #: aa_intel_tool/models.py:123
62
56
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
63
57
  msgid "Fleet composition"
@@ -420,19 +414,27 @@ msgstr "Système"
420
414
  msgid "Participation details"
421
415
  msgstr "Détails de la participation"
422
416
 
423
- #: aa_intel_tool/views/general.py:53
424
- msgid "The provided data could not be parsed."
417
+ #: aa_intel_tool/views/general.py:56
418
+ #, fuzzy, python-brace-format
419
+ #| msgid "The provided data could not be parsed."
420
+ msgid "The provided data could not be parsed. ({exc})"
425
421
  msgstr "Les données fournies n'ont pas pu être analysées."
426
422
 
427
- #: aa_intel_tool/views/general.py:60
428
- msgid "(System Error) Something unexpected happened."
423
+ #: aa_intel_tool/views/general.py:68
424
+ #, fuzzy, python-brace-format
425
+ #| msgid "(System Error) Something unexpected happened."
426
+ msgid "(System Error) Something unexpected happened. ({exc})"
429
427
  msgstr "(System Error) un imprévu est arrivé."
430
428
 
431
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
429
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
432
430
  #, fuzzy
433
431
  msgid "The scan you were looking for could not be found."
434
432
  msgstr "Les scans que vous cherchez n'ont pas été trouvés."
435
433
 
434
+ #, python-brace-format
435
+ #~ msgid "Intel Parser v{__version__}"
436
+ #~ msgstr "Analyseur de Renseignements v{__version__}"
437
+
436
438
  #~ msgctxt "Decimal separator"
437
439
  #~ msgid "."
438
440
  #~ msgstr "."
@@ -7,7 +7,7 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: AA Intel Tool 2.5.1\n"
9
9
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
10
- "POT-Creation-Date: 2025-10-09 16:02+0200\n"
10
+ "POT-Creation-Date: 2025-11-04 12:19+0100\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"
@@ -18,7 +18,7 @@ msgstr ""
18
18
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
19
  "X-Generator: Weblate 5.5.3\n"
20
20
 
21
- #: aa_intel_tool/__init__.py:9
21
+ #: aa_intel_tool/__init__.py:10
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
23
23
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
24
24
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -39,22 +39,16 @@ msgstr ""
39
39
  msgid "Raw data"
40
40
  msgstr ""
41
41
 
42
- #. Translators: This is the app name and version, which will appear in the Django Backend
43
- #: aa_intel_tool/apps.py:21
44
- #, python-brace-format
45
- msgid "Intel Parser v{__version__}"
46
- msgstr ""
47
-
48
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
42
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
49
43
  msgid "Chat list"
50
44
  msgstr ""
51
45
 
52
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
46
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
53
47
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
54
48
  msgid "D-Scan"
55
49
  msgstr ""
56
50
 
57
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
51
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
58
52
  #: aa_intel_tool/models.py:123
59
53
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
60
54
  msgid "Fleet composition"
@@ -409,14 +403,16 @@ msgstr ""
409
403
  msgid "Participation details"
410
404
  msgstr ""
411
405
 
412
- #: aa_intel_tool/views/general.py:53
413
- msgid "The provided data could not be parsed."
406
+ #: aa_intel_tool/views/general.py:56
407
+ #, python-brace-format
408
+ msgid "The provided data could not be parsed. ({exc})"
414
409
  msgstr ""
415
410
 
416
- #: aa_intel_tool/views/general.py:60
417
- msgid "(System Error) Something unexpected happened."
411
+ #: aa_intel_tool/views/general.py:68
412
+ #, python-brace-format
413
+ msgid "(System Error) Something unexpected happened. ({exc})"
418
414
  msgstr ""
419
415
 
420
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
416
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
421
417
  msgid "The scan you were looking for could not be found."
422
418
  msgstr ""
@@ -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-10-09 16:02+0200\n"
9
+ "POT-Creation-Date: 2025-11-04 12:19+0100\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"
@@ -17,7 +17,7 @@ msgstr ""
17
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
18
  "X-Generator: Weblate 5.6.2\n"
19
19
 
20
- #: aa_intel_tool/__init__.py:9
20
+ #: aa_intel_tool/__init__.py:10
21
21
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
22
22
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
23
23
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -38,22 +38,16 @@ msgstr "ブラウザの新しいタブで開く"
38
38
  msgid "Raw data"
39
39
  msgstr "検証されていないデータ"
40
40
 
41
- #. Translators: This is the app name and version, which will appear in the Django Backend
42
- #: aa_intel_tool/apps.py:21
43
- #, python-brace-format
44
- msgid "Intel Parser v{__version__}"
45
- msgstr "インテル用の解析ツール v{__version__}"
46
-
47
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
41
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
48
42
  msgid "Chat list"
49
43
  msgstr "チャット一覧"
50
44
 
51
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
45
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
52
46
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
53
47
  msgid "D-Scan"
54
48
  msgstr "指向性スキャン"
55
49
 
56
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
50
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
57
51
  #: aa_intel_tool/models.py:123
58
52
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
59
53
  msgid "Fleet composition"
@@ -407,14 +401,20 @@ msgstr ""
407
401
  msgid "Participation details"
408
402
  msgstr ""
409
403
 
410
- #: aa_intel_tool/views/general.py:53
411
- msgid "The provided data could not be parsed."
404
+ #: aa_intel_tool/views/general.py:56
405
+ #, python-brace-format
406
+ msgid "The provided data could not be parsed. ({exc})"
412
407
  msgstr ""
413
408
 
414
- #: aa_intel_tool/views/general.py:60
415
- msgid "(System Error) Something unexpected happened."
409
+ #: aa_intel_tool/views/general.py:68
410
+ #, python-brace-format
411
+ msgid "(System Error) Something unexpected happened. ({exc})"
416
412
  msgstr ""
417
413
 
418
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
414
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
419
415
  msgid "The scan you were looking for could not be found."
420
416
  msgstr ""
417
+
418
+ #, python-brace-format
419
+ #~ msgid "Intel Parser v{__version__}"
420
+ #~ msgstr "インテル用の解析ツール v{__version__}"
@@ -10,7 +10,7 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: AA Intel Tool 2.5.1\n"
12
12
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-intel-tool/issues\n"
13
- "POT-Creation-Date: 2025-10-09 16:02+0200\n"
13
+ "POT-Creation-Date: 2025-11-04 12:19+0100\n"
14
14
  "PO-Revision-Date: 2025-04-28 07:24+0000\n"
15
15
  "Last-Translator: SiO4 <hohoit0078@gmail.com>\n"
16
16
  "Language-Team: Korean <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-intel-tool/ko/>\n"
@@ -21,7 +21,7 @@ msgstr ""
21
21
  "Plural-Forms: nplurals=1; plural=0;\n"
22
22
  "X-Generator: Weblate 5.11.1\n"
23
23
 
24
- #: aa_intel_tool/__init__.py:9
24
+ #: aa_intel_tool/__init__.py:10
25
25
  #: aa_intel_tool/templates/aa_intel_tool/base.html:7
26
26
  #: aa_intel_tool/templates/aa_intel_tool/base.html:11
27
27
  #: aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html:5
@@ -42,22 +42,16 @@ msgstr "새 탭에서 열기"
42
42
  msgid "Raw data"
43
43
  msgstr "원본 데이터"
44
44
 
45
- #. Translators: This is the app name and version, which will appear in the Django Backend
46
- #: aa_intel_tool/apps.py:21
47
- #, python-brace-format
48
- msgid "Intel Parser v{__version__}"
49
- msgstr "인텔 파싱 v{__version__}"
50
-
51
- #: aa_intel_tool/constants.py:56 aa_intel_tool/models.py:24
45
+ #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:24
52
46
  msgid "Chat list"
53
47
  msgstr "챗 리스트"
54
48
 
55
- #: aa_intel_tool/constants.py:62 aa_intel_tool/models.py:22
49
+ #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:22
56
50
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:28
57
51
  msgid "D-Scan"
58
52
  msgstr "전방위 스캐너"
59
53
 
60
- #: aa_intel_tool/constants.py:68 aa_intel_tool/models.py:23
54
+ #: aa_intel_tool/constants.py:74 aa_intel_tool/models.py:23
61
55
  #: aa_intel_tool/models.py:123
62
56
  #: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:33
63
57
  msgid "Fleet composition"
@@ -421,18 +415,26 @@ msgstr "시스템"
421
415
  msgid "Participation details"
422
416
  msgstr "참가 세부 사항"
423
417
 
424
- #: aa_intel_tool/views/general.py:53
425
- msgid "The provided data could not be parsed."
418
+ #: aa_intel_tool/views/general.py:56
419
+ #, fuzzy, python-brace-format
420
+ #| msgid "The provided data could not be parsed."
421
+ msgid "The provided data could not be parsed. ({exc})"
426
422
  msgstr "제공된 데이터를 가져올 수 없습니다."
427
423
 
428
- #: aa_intel_tool/views/general.py:60
429
- msgid "(System Error) Something unexpected happened."
424
+ #: aa_intel_tool/views/general.py:68
425
+ #, fuzzy, python-brace-format
426
+ #| msgid "(System Error) Something unexpected happened."
427
+ msgid "(System Error) Something unexpected happened. ({exc})"
430
428
  msgstr "(성계 오류) 예측하지 못한 오류 발생."
431
429
 
432
- #: aa_intel_tool/views/general.py:101 aa_intel_tool/views/general.py:131
430
+ #: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
433
431
  msgid "The scan you were looking for could not be found."
434
432
  msgstr "요구하는 스캔을 찾을 수 없습니다."
435
433
 
434
+ #, python-brace-format
435
+ #~ msgid "Intel Parser v{__version__}"
436
+ #~ msgstr "인텔 파싱 v{__version__}"
437
+
436
438
  #~ msgctxt "Decimal separator"
437
439
  #~ msgid "."
438
440
  #~ msgstr "."