aa-intel-tool 2.9.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 +3 -2
- aa_intel_tool/apps.py +5 -4
- aa_intel_tool/constants.py +9 -3
- aa_intel_tool/exceptions.py +1 -1
- aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +27 -37
- aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +35 -41
- aa_intel_tool/locale/django.pot +28 -38
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +31 -37
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +33 -37
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +27 -37
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +31 -37
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +33 -37
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +27 -37
- aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +27 -37
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +33 -37
- aa_intel_tool/locale/sk/LC_MESSAGES/django.po +27 -37
- aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +37 -43
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +27 -37
- aa_intel_tool/parser/module/chatlist.py +3 -3
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +14 -0
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/common/loading-data.html +9 -0
- aa_intel_tool/templates/aa_intel_tool/partials/common/loading-spinner.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/partials/index/form.html +6 -1
- aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html +2 -4
- aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html +2 -4
- aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html +2 -4
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html +2 -4
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html +2 -4
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html +2 -4
- aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html +2 -4
- aa_intel_tool/urls.py +1 -1
- aa_intel_tool/views/general.py +13 -5
- {aa_intel_tool-2.9.0.dist-info → aa_intel_tool-2.10.1.dist-info}/METADATA +9 -7
- {aa_intel_tool-2.9.0.dist-info → aa_intel_tool-2.10.1.dist-info}/RECORD +40 -38
- {aa_intel_tool-2.9.0.dist-info → aa_intel_tool-2.10.1.dist-info}/WHEEL +0 -0
- {aa_intel_tool-2.9.0.dist-info → aa_intel_tool-2.10.1.dist-info}/licenses/LICENSE +0 -0
aa_intel_tool/__init__.py
CHANGED
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.
|
|
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
|
-
|
|
21
|
-
|
|
20
|
+
verbose_name = format_lazy(
|
|
21
|
+
"{app_title} v{version}", app_title=__title_translated__, version=__version__
|
|
22
|
+
)
|
aa_intel_tool/constants.py
CHANGED
|
@@ -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
|
-
|
|
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 =
|
|
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
|
aa_intel_tool/exceptions.py
CHANGED
|
@@ -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-
|
|
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:
|
|
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
|
-
|
|
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:
|
|
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:
|
|
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"
|
|
@@ -224,6 +218,10 @@ msgstr[1] ""
|
|
|
224
218
|
msgstr[2] ""
|
|
225
219
|
msgstr[3] ""
|
|
226
220
|
|
|
221
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/common/loading-data.html:8
|
|
222
|
+
msgid "Loading data …"
|
|
223
|
+
msgstr ""
|
|
224
|
+
|
|
227
225
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:5
|
|
228
226
|
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
|
229
227
|
msgstr "Chceš pomoc s překladem této aplikace do tvého jazyka, nebo vylepšit současný překlad?"
|
|
@@ -257,19 +255,19 @@ msgstr ""
|
|
|
257
255
|
msgid "Submit"
|
|
258
256
|
msgstr ""
|
|
259
257
|
|
|
260
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
258
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:60
|
|
261
259
|
msgid "Working on it, please be patient …"
|
|
262
260
|
msgstr ""
|
|
263
261
|
|
|
264
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
262
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:63
|
|
265
263
|
msgid "Detecting the intel type"
|
|
266
264
|
msgstr ""
|
|
267
265
|
|
|
268
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
266
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:64
|
|
269
267
|
msgid "Fetching potentially missing information from ESI (this might take a moment)"
|
|
270
268
|
msgstr ""
|
|
271
269
|
|
|
272
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
270
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:65
|
|
273
271
|
msgid "Parsing data"
|
|
274
272
|
msgstr ""
|
|
275
273
|
|
|
@@ -298,22 +296,12 @@ msgstr ""
|
|
|
298
296
|
msgid "Count"
|
|
299
297
|
msgstr ""
|
|
300
298
|
|
|
301
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:
|
|
302
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:
|
|
303
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:
|
|
304
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:
|
|
305
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:
|
|
306
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/
|
|
307
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:30
|
|
308
|
-
msgid "Loading data …"
|
|
309
|
-
msgstr ""
|
|
310
|
-
|
|
311
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
|
|
312
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
|
|
313
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
|
|
314
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
|
|
315
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
|
|
316
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:36
|
|
299
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:31
|
|
300
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:31
|
|
301
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:31
|
|
302
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:29
|
|
303
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:41
|
|
304
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:34
|
|
317
305
|
msgid "No data …"
|
|
318
306
|
msgstr ""
|
|
319
307
|
|
|
@@ -388,7 +376,7 @@ msgstr ""
|
|
|
388
376
|
msgid "Ship type"
|
|
389
377
|
msgstr ""
|
|
390
378
|
|
|
391
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:
|
|
379
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:34
|
|
392
380
|
msgid "No data."
|
|
393
381
|
msgstr ""
|
|
394
382
|
|
|
@@ -420,14 +408,16 @@ msgstr ""
|
|
|
420
408
|
msgid "Participation details"
|
|
421
409
|
msgstr ""
|
|
422
410
|
|
|
423
|
-
#: aa_intel_tool/views/general.py:
|
|
424
|
-
|
|
411
|
+
#: aa_intel_tool/views/general.py:56
|
|
412
|
+
#, python-brace-format
|
|
413
|
+
msgid "The provided data could not be parsed. ({exc})"
|
|
425
414
|
msgstr ""
|
|
426
415
|
|
|
427
|
-
#: aa_intel_tool/views/general.py:
|
|
428
|
-
|
|
416
|
+
#: aa_intel_tool/views/general.py:68
|
|
417
|
+
#, python-brace-format
|
|
418
|
+
msgid "(System Error) Something unexpected happened. ({exc})"
|
|
429
419
|
msgstr ""
|
|
430
420
|
|
|
431
|
-
#: aa_intel_tool/views/general.py:
|
|
421
|
+
#: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
|
|
432
422
|
msgid "The scan you were looking for could not be found."
|
|
433
423
|
msgstr ""
|
|
Binary file
|
|
@@ -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
|
-
"PO-Revision-Date: 2025-
|
|
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.
|
|
18
|
+
"X-Generator: Weblate 5.13.3\n"
|
|
19
19
|
|
|
20
|
-
#: aa_intel_tool/__init__.py:
|
|
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
|
-
|
|
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:
|
|
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:
|
|
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"
|
|
@@ -220,6 +214,10 @@ msgid_plural "Scans will be deleted after %(scan_retention_time)s days."
|
|
|
220
214
|
msgstr[0] "Scans werden nach %(scan_retention_time)s Tag gelöscht."
|
|
221
215
|
msgstr[1] "Scans werden nach %(scan_retention_time)s Tagen gelöscht."
|
|
222
216
|
|
|
217
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/common/loading-data.html:8
|
|
218
|
+
msgid "Loading data …"
|
|
219
|
+
msgstr "Lade Daten …"
|
|
220
|
+
|
|
223
221
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:5
|
|
224
222
|
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
|
225
223
|
msgstr "Du möchtest helfen diese App in Deine Sprache zu übersetzen oder die bestehende Übersetzung verbessern?"
|
|
@@ -251,19 +249,19 @@ msgstr "Bitte beachte, dass das Verarbeiten großer Datenmengen einige Zeit in A
|
|
|
251
249
|
msgid "Submit"
|
|
252
250
|
msgstr "Absenden"
|
|
253
251
|
|
|
254
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
252
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:60
|
|
255
253
|
msgid "Working on it, please be patient …"
|
|
256
254
|
msgstr "Bei der Arbeit, bitte hab etwas Geduld …"
|
|
257
255
|
|
|
258
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
256
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:63
|
|
259
257
|
msgid "Detecting the intel type"
|
|
260
258
|
msgstr "Erkennung des Inteltyps"
|
|
261
259
|
|
|
262
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
260
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:64
|
|
263
261
|
msgid "Fetching potentially missing information from ESI (this might take a moment)"
|
|
264
262
|
msgstr "Abrufen potenziell fehlender Informationen von ESI (dies kann einen Moment dauern)"
|
|
265
263
|
|
|
266
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
264
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:65
|
|
267
265
|
msgid "Parsing data"
|
|
268
266
|
msgstr "Daten analysieren"
|
|
269
267
|
|
|
@@ -292,22 +290,12 @@ msgstr "Allianz"
|
|
|
292
290
|
msgid "Count"
|
|
293
291
|
msgstr "Anzahl"
|
|
294
292
|
|
|
295
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:
|
|
296
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:
|
|
297
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:
|
|
298
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:
|
|
299
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:
|
|
300
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/
|
|
301
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:30
|
|
302
|
-
msgid "Loading data …"
|
|
303
|
-
msgstr "Lade Daten …"
|
|
304
|
-
|
|
305
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
|
|
306
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
|
|
307
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
|
|
308
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
|
|
309
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
|
|
310
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:36
|
|
293
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:31
|
|
294
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:31
|
|
295
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:31
|
|
296
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:29
|
|
297
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:41
|
|
298
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:34
|
|
311
299
|
msgid "No data …"
|
|
312
300
|
msgstr "Keine Daten …"
|
|
313
301
|
|
|
@@ -382,7 +370,7 @@ msgstr "Gesamtmasse (in kg):"
|
|
|
382
370
|
msgid "Ship type"
|
|
383
371
|
msgstr "Schiffstyp"
|
|
384
372
|
|
|
385
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:
|
|
373
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:34
|
|
386
374
|
msgid "No data."
|
|
387
375
|
msgstr "Keine Daten."
|
|
388
376
|
|
|
@@ -414,18 +402,24 @@ msgstr "System"
|
|
|
414
402
|
msgid "Participation details"
|
|
415
403
|
msgstr "Teilnahmedetails"
|
|
416
404
|
|
|
417
|
-
#: aa_intel_tool/views/general.py:
|
|
418
|
-
|
|
419
|
-
|
|
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})"
|
|
420
409
|
|
|
421
|
-
#: aa_intel_tool/views/general.py:
|
|
422
|
-
|
|
423
|
-
|
|
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})"
|
|
424
414
|
|
|
425
|
-
#: aa_intel_tool/views/general.py:
|
|
415
|
+
#: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
|
|
426
416
|
msgid "The scan you were looking for could not be found."
|
|
427
417
|
msgstr "Der gesuchte Scan konnte nicht gefunden werden."
|
|
428
418
|
|
|
419
|
+
#, python-brace-format
|
|
420
|
+
#~ msgid "Intel Parser v{__version__}"
|
|
421
|
+
#~ msgstr "Intel Parser v{__version__}"
|
|
422
|
+
|
|
429
423
|
#~ msgctxt "Decimal separator"
|
|
430
424
|
#~ msgid "."
|
|
431
425
|
#~ msgstr ","
|
aa_intel_tool/locale/django.pot
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
#, fuzzy
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: AA Intel Tool 2.
|
|
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-
|
|
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:
|
|
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
|
-
|
|
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:
|
|
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:
|
|
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"
|
|
@@ -228,6 +222,10 @@ msgid_plural "Scans will be deleted after %(scan_retention_time)s days."
|
|
|
228
222
|
msgstr[0] ""
|
|
229
223
|
msgstr[1] ""
|
|
230
224
|
|
|
225
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/common/loading-data.html:8
|
|
226
|
+
msgid "Loading data …"
|
|
227
|
+
msgstr ""
|
|
228
|
+
|
|
231
229
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:5
|
|
232
230
|
msgid ""
|
|
233
231
|
"Do you want to help translate this app into your language or improve the "
|
|
@@ -263,20 +261,20 @@ msgstr ""
|
|
|
263
261
|
msgid "Submit"
|
|
264
262
|
msgstr ""
|
|
265
263
|
|
|
266
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
264
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:60
|
|
267
265
|
msgid "Working on it, please be patient …"
|
|
268
266
|
msgstr ""
|
|
269
267
|
|
|
270
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
268
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:63
|
|
271
269
|
msgid "Detecting the intel type"
|
|
272
270
|
msgstr ""
|
|
273
271
|
|
|
274
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
272
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:64
|
|
275
273
|
msgid ""
|
|
276
274
|
"Fetching potentially missing information from ESI (this might take a moment)"
|
|
277
275
|
msgstr ""
|
|
278
276
|
|
|
279
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
277
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:65
|
|
280
278
|
msgid "Parsing data"
|
|
281
279
|
msgstr ""
|
|
282
280
|
|
|
@@ -305,22 +303,12 @@ msgstr ""
|
|
|
305
303
|
msgid "Count"
|
|
306
304
|
msgstr ""
|
|
307
305
|
|
|
308
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:
|
|
309
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:
|
|
310
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:
|
|
311
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:
|
|
312
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:
|
|
313
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/
|
|
314
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:30
|
|
315
|
-
msgid "Loading data …"
|
|
316
|
-
msgstr ""
|
|
317
|
-
|
|
318
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
|
|
319
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
|
|
320
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
|
|
321
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
|
|
322
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
|
|
323
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:36
|
|
306
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:31
|
|
307
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:31
|
|
308
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:31
|
|
309
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:29
|
|
310
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:41
|
|
311
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:34
|
|
324
312
|
msgid "No data …"
|
|
325
313
|
msgstr ""
|
|
326
314
|
|
|
@@ -395,7 +383,7 @@ msgstr ""
|
|
|
395
383
|
msgid "Ship type"
|
|
396
384
|
msgstr ""
|
|
397
385
|
|
|
398
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:
|
|
386
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:34
|
|
399
387
|
msgid "No data."
|
|
400
388
|
msgstr ""
|
|
401
389
|
|
|
@@ -427,14 +415,16 @@ msgstr ""
|
|
|
427
415
|
msgid "Participation details"
|
|
428
416
|
msgstr ""
|
|
429
417
|
|
|
430
|
-
#: aa_intel_tool/views/general.py:
|
|
431
|
-
|
|
418
|
+
#: aa_intel_tool/views/general.py:56
|
|
419
|
+
#, python-brace-format
|
|
420
|
+
msgid "The provided data could not be parsed. ({exc})"
|
|
432
421
|
msgstr ""
|
|
433
422
|
|
|
434
|
-
#: aa_intel_tool/views/general.py:
|
|
435
|
-
|
|
423
|
+
#: aa_intel_tool/views/general.py:68
|
|
424
|
+
#, python-brace-format
|
|
425
|
+
msgid "(System Error) Something unexpected happened. ({exc})"
|
|
436
426
|
msgstr ""
|
|
437
427
|
|
|
438
|
-
#: aa_intel_tool/views/general.py:
|
|
428
|
+
#: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
|
|
439
429
|
msgid "The scan you were looking for could not be found."
|
|
440
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-
|
|
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:
|
|
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
|
-
|
|
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:
|
|
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:
|
|
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"
|
|
@@ -234,6 +228,10 @@ msgid_plural "Scans will be deleted after %(scan_retention_time)s days."
|
|
|
234
228
|
msgstr[0] ""
|
|
235
229
|
msgstr[1] ""
|
|
236
230
|
|
|
231
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/common/loading-data.html:8
|
|
232
|
+
msgid "Loading data …"
|
|
233
|
+
msgstr ""
|
|
234
|
+
|
|
237
235
|
#: aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html:5
|
|
238
236
|
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
|
239
237
|
msgstr "¿Quieres ayudar a traducir esta aplicación a tu idioma o mejorar la traducción existente?"
|
|
@@ -265,19 +263,19 @@ msgstr ""
|
|
|
265
263
|
msgid "Submit"
|
|
266
264
|
msgstr "Enviar"
|
|
267
265
|
|
|
268
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
266
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:60
|
|
269
267
|
msgid "Working on it, please be patient …"
|
|
270
268
|
msgstr ""
|
|
271
269
|
|
|
272
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
270
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:63
|
|
273
271
|
msgid "Detecting the intel type"
|
|
274
272
|
msgstr ""
|
|
275
273
|
|
|
276
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
274
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:64
|
|
277
275
|
msgid "Fetching potentially missing information from ESI (this might take a moment)"
|
|
278
276
|
msgstr ""
|
|
279
277
|
|
|
280
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:
|
|
278
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/index/form.html:65
|
|
281
279
|
msgid "Parsing data"
|
|
282
280
|
msgstr ""
|
|
283
281
|
|
|
@@ -306,22 +304,12 @@ msgstr ""
|
|
|
306
304
|
msgid "Count"
|
|
307
305
|
msgstr ""
|
|
308
306
|
|
|
309
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:
|
|
310
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:
|
|
311
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:
|
|
312
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:
|
|
313
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:
|
|
314
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/
|
|
315
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:30
|
|
316
|
-
msgid "Loading data …"
|
|
317
|
-
msgstr ""
|
|
318
|
-
|
|
319
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:33
|
|
320
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:33
|
|
321
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:33
|
|
322
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:31
|
|
323
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:43
|
|
324
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:36
|
|
307
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html:31
|
|
308
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html:31
|
|
309
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html:31
|
|
310
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html:29
|
|
311
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html:41
|
|
312
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html:34
|
|
325
313
|
msgid "No data …"
|
|
326
314
|
msgstr ""
|
|
327
315
|
|
|
@@ -396,7 +384,7 @@ msgstr ""
|
|
|
396
384
|
msgid "Ship type"
|
|
397
385
|
msgstr "Tipo de Nave"
|
|
398
386
|
|
|
399
|
-
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:
|
|
387
|
+
#: aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html:34
|
|
400
388
|
msgid "No data."
|
|
401
389
|
msgstr ""
|
|
402
390
|
|
|
@@ -428,18 +416,24 @@ msgstr "Sistema"
|
|
|
428
416
|
msgid "Participation details"
|
|
429
417
|
msgstr ""
|
|
430
418
|
|
|
431
|
-
#: aa_intel_tool/views/general.py:
|
|
432
|
-
|
|
419
|
+
#: aa_intel_tool/views/general.py:56
|
|
420
|
+
#, python-brace-format
|
|
421
|
+
msgid "The provided data could not be parsed. ({exc})"
|
|
433
422
|
msgstr ""
|
|
434
423
|
|
|
435
|
-
#: aa_intel_tool/views/general.py:
|
|
436
|
-
|
|
424
|
+
#: aa_intel_tool/views/general.py:68
|
|
425
|
+
#, python-brace-format
|
|
426
|
+
msgid "(System Error) Something unexpected happened. ({exc})"
|
|
437
427
|
msgstr ""
|
|
438
428
|
|
|
439
|
-
#: aa_intel_tool/views/general.py:
|
|
429
|
+
#: aa_intel_tool/views/general.py:109 aa_intel_tool/views/general.py:139
|
|
440
430
|
msgid "The scan you were looking for could not be found."
|
|
441
431
|
msgstr ""
|
|
442
432
|
|
|
433
|
+
#, python-brace-format
|
|
434
|
+
#~ msgid "Intel Parser v{__version__}"
|
|
435
|
+
#~ msgstr "Herramienta de Intel v{__version__}"
|
|
436
|
+
|
|
443
437
|
#~ msgctxt "Decimal separator"
|
|
444
438
|
#~ msgid "."
|
|
445
439
|
#~ msgstr ","
|