aa-fleetfinder 2.7.2__py3-none-any.whl → 3.0.0b1__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.
Potentially problematic release.
This version of aa-fleetfinder might be problematic. Click here for more details.
- {aa_fleetfinder-2.7.2.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/METADATA +5 -14
- {aa_fleetfinder-2.7.2.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/RECORD +32 -32
- fleetfinder/__init__.py +5 -3
- fleetfinder/apps.py +5 -4
- fleetfinder/locale/cs_CZ/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/de/LC_MESSAGES/django.mo +0 -0
- fleetfinder/locale/de/LC_MESSAGES/django.po +27 -24
- fleetfinder/locale/django.pot +22 -23
- fleetfinder/locale/es/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/fr_FR/LC_MESSAGES/django.po +26 -22
- fleetfinder/locale/it_IT/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/ja/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/ko_KR/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/nl_NL/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/pl_PL/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/ru/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/sk/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/uk/LC_MESSAGES/django.po +26 -22
- fleetfinder/locale/zh_Hans/LC_MESSAGES/django.po +25 -22
- fleetfinder/providers.py +22 -4
- fleetfinder/tasks.py +279 -110
- fleetfinder/tests/__init__.py +39 -1
- fleetfinder/tests/test_access.py +2 -2
- fleetfinder/tests/test_auth_hooks.py +2 -2
- fleetfinder/tests/test_settings.py +3 -2
- fleetfinder/tests/test_tasks.py +1010 -34
- fleetfinder/tests/test_templatetags.py +2 -4
- fleetfinder/tests/test_user_agent.py +62 -14
- fleetfinder/tests/test_views.py +700 -52
- fleetfinder/views.py +102 -55
- {aa_fleetfinder-2.7.2.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/WHEEL +0 -0
- {aa_fleetfinder-2.7.2.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aa-fleetfinder
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.0b1
|
|
4
4
|
Summary: Fleet finder plugin for Alliance Auth
|
|
5
5
|
Project-URL: Changelog, https://github.com/ppfeufer/aa-fleetfinder/blob/master/CHANGELOG.md
|
|
6
6
|
Project-URL: Documentation, https://github.com/ppfeufer/aa-fleetfinder/blob/master/README.md
|
|
@@ -699,13 +699,14 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
699
699
|
Classifier: Programming Language :: Python :: 3.13
|
|
700
700
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
701
701
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
702
|
-
Requires-Python:
|
|
702
|
+
Requires-Python: <3.14,>=3.10
|
|
703
703
|
Requires-Dist: allianceauth-app-utils>=1.14.2
|
|
704
704
|
Requires-Dist: allianceauth<5,>=4.9
|
|
705
|
-
Requires-Dist: django-esi>=
|
|
705
|
+
Requires-Dist: django-esi>=8.0.0b1
|
|
706
706
|
Provides-Extra: tests-allianceauth-latest
|
|
707
707
|
Requires-Dist: coverage; extra == 'tests-allianceauth-latest'
|
|
708
708
|
Requires-Dist: django-webtest; extra == 'tests-allianceauth-latest'
|
|
709
|
+
Requires-Dist: requests-mock; extra == 'tests-allianceauth-latest'
|
|
709
710
|
Description-Content-Type: text/markdown
|
|
710
711
|
|
|
711
712
|
# AA Fleet Finder<a name="aa-fleet-finder"></a>
|
|
@@ -747,22 +748,12 @@ ______________________________________________________________________
|
|
|
747
748
|
|
|
748
749
|
## Installation<a name="installation"></a>
|
|
749
750
|
|
|
750
|
-
> [!NOTE]
|
|
751
|
-
>
|
|
752
|
-
> **AA Fleet Finder >= 2.0.0 needs at least Alliance Auth v4.0.0!**
|
|
753
|
-
>
|
|
754
|
-
> Please make sure to update your Alliance Auth instance _before_ you install this
|
|
755
|
-
> module or update to the latest version, otherwise an update to Alliance Auth will
|
|
756
|
-
> be pulled in unsupervised.
|
|
757
|
-
>
|
|
758
|
-
> The last version compatible with Alliance Auth v3 is `1.5.2`.
|
|
759
|
-
|
|
760
751
|
### Step 1: Install the Package<a name="step-1-install-the-package"></a>
|
|
761
752
|
|
|
762
753
|
Make sure you're in the virtual environment (venv) of your Alliance Auth installation Then install the latest release directly from PyPi.
|
|
763
754
|
|
|
764
755
|
```shell
|
|
765
|
-
pip install aa-fleetfinder
|
|
756
|
+
pip install aa-fleetfinder==2.7.1
|
|
766
757
|
```
|
|
767
758
|
|
|
768
759
|
### Step 2: Configure Alliance Auth<a name="step-2-configure-alliance-auth"></a>
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
fleetfinder/__init__.py,sha256=
|
|
1
|
+
fleetfinder/__init__.py,sha256=O9eMNwqjqPeWHdSpPQThVFf-9Pl448ociw0kPZgW-0I,460
|
|
2
2
|
fleetfinder/app_settings.py,sha256=XE5oZFg2Vhn5OYQFehoOwjgVgKAvXcyj5NGmrbr3bk8,261
|
|
3
|
-
fleetfinder/apps.py,sha256=
|
|
3
|
+
fleetfinder/apps.py,sha256=b6Qib0upf2ZSLJS6ER8_yB3Bwymy4MVTYbd3O0yLXAE,435
|
|
4
4
|
fleetfinder/auth_hooks.py,sha256=_oHqIEfTFDB1lsVAOrEGCc6aLiLpRtjcPw7CdLNSdKw,1234
|
|
5
5
|
fleetfinder/models.py,sha256=MEqsa-gRzFlCoU5awPwlLUzJ_2A2sNo9cPtfT-hVCNU,2805
|
|
6
|
-
fleetfinder/providers.py,sha256=
|
|
7
|
-
fleetfinder/tasks.py,sha256=
|
|
6
|
+
fleetfinder/providers.py,sha256=E9zL3aG4aDUNclmbad3sk-kqXc4PGmOa5jj-3FVl9n8,780
|
|
7
|
+
fleetfinder/tasks.py,sha256=mvdA2S2pM1qIyc36nXHMOocQp7Nk1WnFNuQf74E_SZY,18741
|
|
8
8
|
fleetfinder/urls.py,sha256=O1Cw6J4OskvXniL4s3d-p6JKje3osmUuQZDaTIvdW2s,1338
|
|
9
|
-
fleetfinder/views.py,sha256=
|
|
10
|
-
fleetfinder/locale/django.pot,sha256=
|
|
9
|
+
fleetfinder/views.py,sha256=EQLwST4P-zllD_LLH33L-hPj62Sz863grQ25dmAitMU,19060
|
|
10
|
+
fleetfinder/locale/django.pot,sha256=DWGyI22FmN3XvxZXWiJdvyZ2f-lSUgcoae5jtpinCzg,7883
|
|
11
11
|
fleetfinder/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=5R9bbNXwdd02SL7SFFIErS-ytrzIyCYPf0VZOtg9KT8,954
|
|
12
|
-
fleetfinder/locale/cs_CZ/LC_MESSAGES/django.po,sha256
|
|
13
|
-
fleetfinder/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
14
|
-
fleetfinder/locale/de/LC_MESSAGES/django.po,sha256=
|
|
12
|
+
fleetfinder/locale/cs_CZ/LC_MESSAGES/django.po,sha256=-iRwAwHMCMlMo3v4zR2t3TkQvG1foryWx7ifl5Y70VE,8281
|
|
13
|
+
fleetfinder/locale/de/LC_MESSAGES/django.mo,sha256=PUX17JlHzy4iqIwX92lrD27lHbbrTu4cjNQPKEawYvs,6096
|
|
14
|
+
fleetfinder/locale/de/LC_MESSAGES/django.po,sha256=rxoFmklUDjvZZGL2TRAHjPw9Ixh2ymcYkz47tgSFVK8,10540
|
|
15
15
|
fleetfinder/locale/es/LC_MESSAGES/django.mo,sha256=mcwRf6XMLVJDJ5wAkCOtwV7rqf_BkgZqBUY6p026kaI,3648
|
|
16
|
-
fleetfinder/locale/es/LC_MESSAGES/django.po,sha256=
|
|
16
|
+
fleetfinder/locale/es/LC_MESSAGES/django.po,sha256=837mDsW6XHrmZNuqD0BZ4MJuHsmo4hx3-yKnF2LK6Yk,10054
|
|
17
17
|
fleetfinder/locale/fr_FR/LC_MESSAGES/django.mo,sha256=6oSPtWldoNm-ugxKR7q96DRWojpmpiT2IK7e1x-70O4,4854
|
|
18
|
-
fleetfinder/locale/fr_FR/LC_MESSAGES/django.po,sha256=
|
|
18
|
+
fleetfinder/locale/fr_FR/LC_MESSAGES/django.po,sha256=7not-9P_C7Qm4wUUIB8ff6sl2ayH49th9ZVy8UtQQ-s,10476
|
|
19
19
|
fleetfinder/locale/it_IT/LC_MESSAGES/django.mo,sha256=T8RDYnDQ22o4_xxwcmq3znMN5QKlZbty-mWB7dxdEbI,588
|
|
20
|
-
fleetfinder/locale/it_IT/LC_MESSAGES/django.po,sha256=
|
|
20
|
+
fleetfinder/locale/it_IT/LC_MESSAGES/django.po,sha256=rIDmvUD9uw5ddsubt6FDtLrjU1GASNroI8j_zHTAQsQ,8075
|
|
21
21
|
fleetfinder/locale/ja/LC_MESSAGES/django.mo,sha256=5mlXpXBHCUM4QNz2hzagZSgJeR-QJIzEEBPxXzGN64I,1579
|
|
22
|
-
fleetfinder/locale/ja/LC_MESSAGES/django.po,sha256=
|
|
22
|
+
fleetfinder/locale/ja/LC_MESSAGES/django.po,sha256=CYSNQj9oFe4HKww_0Tu7J8F5JxCBnj7BWwCDmNZ4u_Y,8714
|
|
23
23
|
fleetfinder/locale/ko_KR/LC_MESSAGES/django.mo,sha256=9cfJWD33X_4WYSaFyGZIMzBtUgbmpU0-rkU5vdVRiTI,3272
|
|
24
|
-
fleetfinder/locale/ko_KR/LC_MESSAGES/django.po,sha256=
|
|
24
|
+
fleetfinder/locale/ko_KR/LC_MESSAGES/django.po,sha256=5AS93XAtz7vrVm_xkIBKdkfI13nhDlES0QPTf1mBj2c,10366
|
|
25
25
|
fleetfinder/locale/nl_NL/LC_MESSAGES/django.mo,sha256=hY0OE4OeTR2OJEImNcsL8tWjBqe0rJYToAlRXZ44ngA,480
|
|
26
|
-
fleetfinder/locale/nl_NL/LC_MESSAGES/django.po,sha256=
|
|
26
|
+
fleetfinder/locale/nl_NL/LC_MESSAGES/django.po,sha256=_ulfhqtGkaidu8gc-V7TOyEJ_mvmiKZ6mI1E0BDXwQY,7993
|
|
27
27
|
fleetfinder/locale/pl_PL/LC_MESSAGES/django.mo,sha256=Tn664mvAzrylWiO5ferY3XeQuZTRuND77MPmgAZSvZs,1008
|
|
28
|
-
fleetfinder/locale/pl_PL/LC_MESSAGES/django.po,sha256=
|
|
28
|
+
fleetfinder/locale/pl_PL/LC_MESSAGES/django.po,sha256=eDeOD2AVW7Z7QT2uBZuhLTxGk3fg9urmuR5YF8U9fsM,8333
|
|
29
29
|
fleetfinder/locale/ru/LC_MESSAGES/django.mo,sha256=PoP-sfjnunlcXt82cOxLkw8WuAzCk77-t0TROorgah8,4405
|
|
30
|
-
fleetfinder/locale/ru/LC_MESSAGES/django.po,sha256=
|
|
30
|
+
fleetfinder/locale/ru/LC_MESSAGES/django.po,sha256=e984rNxHe5_tDXzSXGttUL9pOhlmbQCB-Ff3iTWODqc,11111
|
|
31
31
|
fleetfinder/locale/sk/LC_MESSAGES/django.mo,sha256=ydYhRqhAuhtbbNwWz_TkLnphHfGgKDcKugeyLxmpZWk,559
|
|
32
|
-
fleetfinder/locale/sk/LC_MESSAGES/django.po,sha256=
|
|
32
|
+
fleetfinder/locale/sk/LC_MESSAGES/django.po,sha256=REmZ0nYSugdCgKv67j2yvnzbkDF-CQOaU-VKyfXgGT4,8068
|
|
33
33
|
fleetfinder/locale/uk/LC_MESSAGES/django.mo,sha256=tBAnRcp4xbqhhZbwjVNvGXu5OMxNSvBh6TiBDsfPd5M,7240
|
|
34
|
-
fleetfinder/locale/uk/LC_MESSAGES/django.po,sha256=
|
|
34
|
+
fleetfinder/locale/uk/LC_MESSAGES/django.po,sha256=U3rO9TwF0aI1hLDEgvnmok2624jSncuc0zO4fKmWwZk,11927
|
|
35
35
|
fleetfinder/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=wRJxG8W78xXWfbIx9f3Sik5uUlonb5-gK6CX1trz4P0,3431
|
|
36
|
-
fleetfinder/locale/zh_Hans/LC_MESSAGES/django.po,sha256=
|
|
36
|
+
fleetfinder/locale/zh_Hans/LC_MESSAGES/django.po,sha256=70ZcJK7eD9wO1SlIy8xpKCt0YKuOe6Q6x7e0mHiJpO0,9851
|
|
37
37
|
fleetfinder/migrations/0001_initial.py,sha256=4Jsjh77PXS87OHBHam8KOFSTaRvlS-qpPmD5vNnVagI,2445
|
|
38
38
|
fleetfinder/migrations/0002_esi_error_handling_and_verbose_names.py,sha256=CqOqsJDz-GFj3E6DwShKf0fUIgEKhd4NMJIfu21eEJ0,3229
|
|
39
39
|
fleetfinder/migrations/0003_alter_fleet_fleet_commander_alter_fleet_groups_and_more.py,sha256=RbjYRrPVTq-adUQPbXpXVRAT2VmOW0wEdacWhxlggX4,1606
|
|
@@ -71,16 +71,16 @@ fleetfinder/templates/fleetfinder/partials/header/header-nav-left.html,sha256=l9
|
|
|
71
71
|
fleetfinder/templates/fleetfinder/partials/header/header-nav-right.html,sha256=o8njJMpjCG0W9O_fP-NNOM1Mi1gUl7fARV1XTXrJXCI,575
|
|
72
72
|
fleetfinder/templatetags/__init__.py,sha256=sP2D1ovt2gGAPLcGQkByRgXYhvUJ6C52mZMlLIALQ8s,37
|
|
73
73
|
fleetfinder/templatetags/fleetfinder.py,sha256=I_pLRgCPS6MYdzvsLZL0quNTor_BNz_2125DnpvqbFE,717
|
|
74
|
-
fleetfinder/tests/__init__.py,sha256=
|
|
75
|
-
fleetfinder/tests/test_access.py,sha256=
|
|
76
|
-
fleetfinder/tests/test_auth_hooks.py,sha256=
|
|
77
|
-
fleetfinder/tests/test_settings.py,sha256=
|
|
78
|
-
fleetfinder/tests/test_tasks.py,sha256=
|
|
79
|
-
fleetfinder/tests/test_templatetags.py,sha256=
|
|
80
|
-
fleetfinder/tests/test_user_agent.py,sha256=
|
|
81
|
-
fleetfinder/tests/test_views.py,sha256=
|
|
74
|
+
fleetfinder/tests/__init__.py,sha256=cBhLKTMCggqDy6JLdV-QPEhrJYKbtHSNzgDkSkNaZnM,875
|
|
75
|
+
fleetfinder/tests/test_access.py,sha256=HhBWQI_GD0q5dZ_aH3UNoSY7Q9jM5Qroxkfq1SA8uIk,1705
|
|
76
|
+
fleetfinder/tests/test_auth_hooks.py,sha256=CNf6yDs0W5aReE4u831534W5QL1Nrat1oAHSjStCK0I,2188
|
|
77
|
+
fleetfinder/tests/test_settings.py,sha256=RIOnUEEPnFBF7nsnz8GCBMJlo-uu6_w2dZz5VtpO44c,747
|
|
78
|
+
fleetfinder/tests/test_tasks.py,sha256=XZORPDEx9f9LvVOSO0oFTeumcATo17t6LWhpfMvi614,35158
|
|
79
|
+
fleetfinder/tests/test_templatetags.py,sha256=wN7MvHFLTzxIHYTpdLJ87g0qTajiFbJbbF_UFF4sR7I,1418
|
|
80
|
+
fleetfinder/tests/test_user_agent.py,sha256=7O7oEqVg-wVGPK4ZLf6vouhLcQ44jQyowOxoT_YkMsI,3204
|
|
81
|
+
fleetfinder/tests/test_views.py,sha256=76Cwl9ZDMKnFcbFJn_Skw1V6M7lBst88qayxhgPxnUU,43197
|
|
82
82
|
fleetfinder/tests/utils.py,sha256=ynwH67jb14UFi6hpLAXe_FcYdQcjET_sxuUylWPNpnk,1451
|
|
83
|
-
aa_fleetfinder-
|
|
84
|
-
aa_fleetfinder-
|
|
85
|
-
aa_fleetfinder-
|
|
86
|
-
aa_fleetfinder-
|
|
83
|
+
aa_fleetfinder-3.0.0b1.dist-info/METADATA,sha256=DOfyZ3Qm5BaiE_zv4s2Lc209hxX9rzLifABT_BKSDT4,47835
|
|
84
|
+
aa_fleetfinder-3.0.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
85
|
+
aa_fleetfinder-3.0.0b1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
86
|
+
aa_fleetfinder-3.0.0b1.dist-info/RECORD,,
|
fleetfinder/__init__.py
CHANGED
|
@@ -5,13 +5,15 @@ Initialize the app
|
|
|
5
5
|
# Django
|
|
6
6
|
from django.utils.translation import gettext_lazy as _
|
|
7
7
|
|
|
8
|
-
__version__ = "
|
|
9
|
-
__title__ =
|
|
8
|
+
__version__ = "3.0.0-beta.1"
|
|
9
|
+
__title__ = "Fleet Finder"
|
|
10
|
+
__title_translated__ = _("Fleet Finder")
|
|
10
11
|
__verbose_name__ = "Fleet Finder for Alliance Auth"
|
|
11
12
|
|
|
13
|
+
__esi_compatibility_date__ = "2025-09-30"
|
|
14
|
+
|
|
12
15
|
__package_name__ = "aa-fleetfinder"
|
|
13
16
|
__app_name__ = "fleetfinder"
|
|
14
17
|
__app_name_verbose__ = "AA Fleet Finder"
|
|
15
|
-
__app_name_useragent__ = "AA-Fleet-Finder"
|
|
16
18
|
|
|
17
19
|
__github_url__ = f"https://github.com/ppfeufer/{__package_name__}"
|
fleetfinder/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 Fleet Finder
|
|
10
|
-
from fleetfinder import __version__
|
|
10
|
+
from fleetfinder import __title_translated__, __version__
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class FleetFinderConfig(AppConfig):
|
|
@@ -17,5 +17,6 @@ class FleetFinderConfig(AppConfig):
|
|
|
17
17
|
|
|
18
18
|
name = "fleetfinder"
|
|
19
19
|
label = "fleetfinder"
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
verbose_name = format_lazy(
|
|
21
|
+
"{app_title} v{version}", app_title=__title_translated__, version=__version__
|
|
22
|
+
)
|
|
@@ -6,7 +6,7 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: AA Fleet Finder 2.2.1\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-fleetfinder/issues\n"
|
|
9
|
-
"POT-Creation-Date: 2025-
|
|
9
|
+
"POT-Creation-Date: 2025-10-22 23:57+0200\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-fleetfinder/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
|
-
#: fleetfinder/__init__.py:
|
|
20
|
+
#: fleetfinder/__init__.py:10 fleetfinder/models.py:24
|
|
21
21
|
#: fleetfinder/templates/fleetfinder/base.html:7
|
|
22
22
|
#: fleetfinder/templates/fleetfinder/base.html:11
|
|
23
23
|
#: fleetfinder/templates/fleetfinder/create-fleet.html:7
|
|
@@ -27,12 +27,6 @@ msgstr ""
|
|
|
27
27
|
msgid "Fleet Finder"
|
|
28
28
|
msgstr ""
|
|
29
29
|
|
|
30
|
-
#. Translators: This is the app name and version, which will appear in the Django Backend
|
|
31
|
-
#: fleetfinder/apps.py:21
|
|
32
|
-
#, python-brace-format
|
|
33
|
-
msgid "Fleet Finder v{__version__}"
|
|
34
|
-
msgstr ""
|
|
35
|
-
|
|
36
30
|
#: fleetfinder/models.py:28
|
|
37
31
|
msgid "Can access the Fleet Finder app"
|
|
38
32
|
msgstr ""
|
|
@@ -164,7 +158,7 @@ msgstr ""
|
|
|
164
158
|
msgid "An unknown error occurred."
|
|
165
159
|
msgstr ""
|
|
166
160
|
|
|
167
|
-
#: fleetfinder/templates/fleetfinder/join-fleet.html:6 fleetfinder/views.py:
|
|
161
|
+
#: fleetfinder/templates/fleetfinder/join-fleet.html:6 fleetfinder/views.py:195
|
|
168
162
|
msgid "Join fleet"
|
|
169
163
|
msgstr ""
|
|
170
164
|
|
|
@@ -236,62 +230,67 @@ msgstr "Připoj se k našemu týmu překladatelů!"
|
|
|
236
230
|
msgid "Available fleets"
|
|
237
231
|
msgstr ""
|
|
238
232
|
|
|
239
|
-
#: fleetfinder/views.py:
|
|
233
|
+
#: fleetfinder/views.py:206
|
|
240
234
|
msgid "View fleet details"
|
|
241
235
|
msgstr ""
|
|
242
236
|
|
|
243
|
-
#: fleetfinder/views.py:
|
|
237
|
+
#: fleetfinder/views.py:212
|
|
244
238
|
msgid "Edit fleet advert"
|
|
245
239
|
msgstr ""
|
|
246
240
|
|
|
247
|
-
#: fleetfinder/views.py:
|
|
241
|
+
#: fleetfinder/views.py:257
|
|
248
242
|
#, python-brace-format
|
|
249
243
|
msgid "<h4>Error!</h4><p>There was an error creating the fleet: {error_detail}</p>"
|
|
250
244
|
msgstr ""
|
|
251
245
|
|
|
252
|
-
#: fleetfinder/views.py:
|
|
246
|
+
#: fleetfinder/views.py:297 fleetfinder/views.py:493
|
|
253
247
|
msgid "<h4>Error!</h4><p>Fleet does not exist or is no longer available.</p>"
|
|
254
248
|
msgstr ""
|
|
255
249
|
|
|
256
|
-
#: fleetfinder/views.py:
|
|
250
|
+
#: fleetfinder/views.py:454
|
|
257
251
|
#, python-brace-format
|
|
258
252
|
msgid "<h4>Error!</h4><p>ESI returned the following error: {esi_error}</p>"
|
|
259
253
|
msgstr ""
|
|
260
254
|
|
|
261
|
-
#: fleetfinder/views.py:
|
|
255
|
+
#: fleetfinder/views.py:465
|
|
262
256
|
#, python-brace-format
|
|
263
257
|
msgid "<h4>Error!</h4><p>There was an error creating the fleet: {ex}</p>"
|
|
264
258
|
msgstr ""
|
|
265
259
|
|
|
266
|
-
#: fleetfinder/views.py:
|
|
260
|
+
#: fleetfinder/views.py:530
|
|
267
261
|
#, python-brace-format
|
|
268
262
|
msgid "Fleet with ID {fleet_id} does not exist."
|
|
269
263
|
msgstr ""
|
|
270
264
|
|
|
271
|
-
#: fleetfinder/views.py:
|
|
265
|
+
#: fleetfinder/views.py:541
|
|
272
266
|
#, python-brace-format
|
|
273
267
|
msgid "Error retrieving fleet composition: {ex}"
|
|
274
268
|
msgstr ""
|
|
275
269
|
|
|
276
|
-
#: fleetfinder/views.py:
|
|
270
|
+
#: fleetfinder/views.py:577
|
|
277
271
|
msgid "Method not allowed"
|
|
278
272
|
msgstr ""
|
|
279
273
|
|
|
280
|
-
#: fleetfinder/views.py:
|
|
274
|
+
#: fleetfinder/views.py:588
|
|
281
275
|
msgid "Member ID required"
|
|
282
276
|
msgstr ""
|
|
283
277
|
|
|
284
|
-
#: fleetfinder/views.py:
|
|
278
|
+
#: fleetfinder/views.py:608
|
|
285
279
|
msgid "Fleet not found"
|
|
286
280
|
msgstr ""
|
|
287
281
|
|
|
288
|
-
#: fleetfinder/views.py:
|
|
282
|
+
#: fleetfinder/views.py:613
|
|
289
283
|
msgid "Invalid request data"
|
|
290
284
|
msgstr ""
|
|
291
285
|
|
|
292
|
-
#: fleetfinder/views.py:
|
|
286
|
+
#: fleetfinder/views.py:619
|
|
293
287
|
msgid "Member not found in fleet"
|
|
294
288
|
msgstr ""
|
|
295
289
|
|
|
290
|
+
#: fleetfinder/views.py:628
|
|
291
|
+
#, python-brace-format
|
|
292
|
+
msgid "An ESI error occurred: {ex}"
|
|
293
|
+
msgstr ""
|
|
294
|
+
|
|
296
295
|
#~ msgid "Edit"
|
|
297
296
|
#~ msgstr "Upravit"
|
|
Binary file
|
|
@@ -6,8 +6,8 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: AA Fleet Finder 2.2.1\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-fleetfinder/issues\n"
|
|
9
|
-
"POT-Creation-Date: 2025-
|
|
10
|
-
"PO-Revision-Date: 2025-
|
|
9
|
+
"POT-Creation-Date: 2025-10-22 23:57+0200\n"
|
|
10
|
+
"PO-Revision-Date: 2025-10-22 22:13+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-fleetfinder/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.13\n"
|
|
18
|
+
"X-Generator: Weblate 5.13.3\n"
|
|
19
19
|
|
|
20
|
-
#: fleetfinder/__init__.py:
|
|
20
|
+
#: fleetfinder/__init__.py:10 fleetfinder/models.py:24
|
|
21
21
|
#: fleetfinder/templates/fleetfinder/base.html:7
|
|
22
22
|
#: fleetfinder/templates/fleetfinder/base.html:11
|
|
23
23
|
#: fleetfinder/templates/fleetfinder/create-fleet.html:7
|
|
@@ -27,12 +27,6 @@ msgstr ""
|
|
|
27
27
|
msgid "Fleet Finder"
|
|
28
28
|
msgstr "Flottenfinder"
|
|
29
29
|
|
|
30
|
-
#. Translators: This is the app name and version, which will appear in the Django Backend
|
|
31
|
-
#: fleetfinder/apps.py:21
|
|
32
|
-
#, python-brace-format
|
|
33
|
-
msgid "Fleet Finder v{__version__}"
|
|
34
|
-
msgstr "Flottenfinder v{__version__}"
|
|
35
|
-
|
|
36
30
|
#: fleetfinder/models.py:28
|
|
37
31
|
msgid "Can access the Fleet Finder app"
|
|
38
32
|
msgstr "Kann auf die Flottenfinder App zugreifen"
|
|
@@ -164,7 +158,7 @@ msgstr "Mitglied aus der Flotte werfen"
|
|
|
164
158
|
msgid "An unknown error occurred."
|
|
165
159
|
msgstr "Ein unbekannter Fehler ist aufgetreten."
|
|
166
160
|
|
|
167
|
-
#: fleetfinder/templates/fleetfinder/join-fleet.html:6 fleetfinder/views.py:
|
|
161
|
+
#: fleetfinder/templates/fleetfinder/join-fleet.html:6 fleetfinder/views.py:195
|
|
168
162
|
msgid "Join fleet"
|
|
169
163
|
msgstr "Flotte beitreten"
|
|
170
164
|
|
|
@@ -236,63 +230,72 @@ msgstr "Tritt unserm Team von Übersetzern bei!"
|
|
|
236
230
|
msgid "Available fleets"
|
|
237
231
|
msgstr "Verfügbare Flotten"
|
|
238
232
|
|
|
239
|
-
#: fleetfinder/views.py:
|
|
233
|
+
#: fleetfinder/views.py:206
|
|
240
234
|
msgid "View fleet details"
|
|
241
235
|
msgstr "Flottendetails anzeigen"
|
|
242
236
|
|
|
243
|
-
#: fleetfinder/views.py:
|
|
237
|
+
#: fleetfinder/views.py:212
|
|
244
238
|
msgid "Edit fleet advert"
|
|
245
239
|
msgstr "Flottenanzeige bearbeiten"
|
|
246
240
|
|
|
247
|
-
#: fleetfinder/views.py:
|
|
241
|
+
#: fleetfinder/views.py:257
|
|
248
242
|
#, python-brace-format
|
|
249
243
|
msgid "<h4>Error!</h4><p>There was an error creating the fleet: {error_detail}</p>"
|
|
250
244
|
msgstr "<h4>Fehler!</h4><p>Beim Erstellen der Flotte ist ein Fehler aufgetreten: {error_detail}</p>"
|
|
251
245
|
|
|
252
|
-
#: fleetfinder/views.py:
|
|
246
|
+
#: fleetfinder/views.py:297 fleetfinder/views.py:493
|
|
253
247
|
msgid "<h4>Error!</h4><p>Fleet does not exist or is no longer available.</p>"
|
|
254
248
|
msgstr "<h4>Fehler!</h4><p>Flotte existiert nicht oder ist nicht mehr verfügbar.</p>"
|
|
255
249
|
|
|
256
|
-
#: fleetfinder/views.py:
|
|
250
|
+
#: fleetfinder/views.py:454
|
|
257
251
|
#, python-brace-format
|
|
258
252
|
msgid "<h4>Error!</h4><p>ESI returned the following error: {esi_error}</p>"
|
|
259
253
|
msgstr "<h4>Fehler!</h4><p>ESI hat den folgenden Fehler zurückgegeben: {esi_error}</p>"
|
|
260
254
|
|
|
261
|
-
#: fleetfinder/views.py:
|
|
255
|
+
#: fleetfinder/views.py:465
|
|
262
256
|
#, python-brace-format
|
|
263
257
|
msgid "<h4>Error!</h4><p>There was an error creating the fleet: {ex}</p>"
|
|
264
258
|
msgstr "<h4>Fehler!</h4><p>Beim Erstellen der Flotte ist ein Fehler aufgetreten: {ex}</p>"
|
|
265
259
|
|
|
266
|
-
#: fleetfinder/views.py:
|
|
260
|
+
#: fleetfinder/views.py:530
|
|
267
261
|
#, python-brace-format
|
|
268
262
|
msgid "Fleet with ID {fleet_id} does not exist."
|
|
269
263
|
msgstr "Flotte mit ID {fleet_id} existiert nicht."
|
|
270
264
|
|
|
271
|
-
#: fleetfinder/views.py:
|
|
265
|
+
#: fleetfinder/views.py:541
|
|
272
266
|
#, python-brace-format
|
|
273
267
|
msgid "Error retrieving fleet composition: {ex}"
|
|
274
268
|
msgstr "Fehler beim Abrufen der Flottenzusammensetzung: {ex}"
|
|
275
269
|
|
|
276
|
-
#: fleetfinder/views.py:
|
|
270
|
+
#: fleetfinder/views.py:577
|
|
277
271
|
msgid "Method not allowed"
|
|
278
272
|
msgstr "Methode nicht zulässig"
|
|
279
273
|
|
|
280
|
-
#: fleetfinder/views.py:
|
|
274
|
+
#: fleetfinder/views.py:588
|
|
281
275
|
msgid "Member ID required"
|
|
282
276
|
msgstr "Mitglieds-ID erforderlich"
|
|
283
277
|
|
|
284
|
-
#: fleetfinder/views.py:
|
|
278
|
+
#: fleetfinder/views.py:608
|
|
285
279
|
msgid "Fleet not found"
|
|
286
280
|
msgstr "Flotte nicht gefunden"
|
|
287
281
|
|
|
288
|
-
#: fleetfinder/views.py:
|
|
282
|
+
#: fleetfinder/views.py:613
|
|
289
283
|
msgid "Invalid request data"
|
|
290
284
|
msgstr "Ungültige Anfragedaten"
|
|
291
285
|
|
|
292
|
-
#: fleetfinder/views.py:
|
|
286
|
+
#: fleetfinder/views.py:619
|
|
293
287
|
msgid "Member not found in fleet"
|
|
294
288
|
msgstr "Mitglied nicht in der Flotte gefunden"
|
|
295
289
|
|
|
290
|
+
#: fleetfinder/views.py:628
|
|
291
|
+
#, python-brace-format
|
|
292
|
+
msgid "An ESI error occurred: {ex}"
|
|
293
|
+
msgstr "Ein ESI Fehler ist aufgetreten: {ex}"
|
|
294
|
+
|
|
295
|
+
#, python-brace-format
|
|
296
|
+
#~ msgid "Fleet Finder v{__version__}"
|
|
297
|
+
#~ msgstr "Flottenfinder v{__version__}"
|
|
298
|
+
|
|
296
299
|
#~ msgid "Details"
|
|
297
300
|
#~ msgstr "Details"
|
|
298
301
|
|
fleetfinder/locale/django.pot
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
#, fuzzy
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: AA Fleet Finder 2.7.
|
|
9
|
+
"Project-Id-Version: AA Fleet Finder 2.7.2\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-fleetfinder/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2025-
|
|
11
|
+
"POT-Creation-Date: 2025-10-22 23:57+0200\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"
|
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
|
|
20
|
-
#: fleetfinder/__init__.py:
|
|
20
|
+
#: fleetfinder/__init__.py:10 fleetfinder/models.py:24
|
|
21
21
|
#: fleetfinder/templates/fleetfinder/base.html:7
|
|
22
22
|
#: fleetfinder/templates/fleetfinder/base.html:11
|
|
23
23
|
#: fleetfinder/templates/fleetfinder/create-fleet.html:7
|
|
@@ -27,12 +27,6 @@ msgstr ""
|
|
|
27
27
|
msgid "Fleet Finder"
|
|
28
28
|
msgstr ""
|
|
29
29
|
|
|
30
|
-
#. Translators: This is the app name and version, which will appear in the Django Backend
|
|
31
|
-
#: fleetfinder/apps.py:21
|
|
32
|
-
#, python-brace-format
|
|
33
|
-
msgid "Fleet Finder v{__version__}"
|
|
34
|
-
msgstr ""
|
|
35
|
-
|
|
36
30
|
#: fleetfinder/models.py:28
|
|
37
31
|
msgid "Can access the Fleet Finder app"
|
|
38
32
|
msgstr ""
|
|
@@ -167,7 +161,7 @@ msgstr ""
|
|
|
167
161
|
msgid "An unknown error occurred."
|
|
168
162
|
msgstr ""
|
|
169
163
|
|
|
170
|
-
#: fleetfinder/templates/fleetfinder/join-fleet.html:6 fleetfinder/views.py:
|
|
164
|
+
#: fleetfinder/templates/fleetfinder/join-fleet.html:6 fleetfinder/views.py:195
|
|
171
165
|
msgid "Join fleet"
|
|
172
166
|
msgstr ""
|
|
173
167
|
|
|
@@ -245,60 +239,65 @@ msgstr ""
|
|
|
245
239
|
msgid "Available fleets"
|
|
246
240
|
msgstr ""
|
|
247
241
|
|
|
248
|
-
#: fleetfinder/views.py:
|
|
242
|
+
#: fleetfinder/views.py:206
|
|
249
243
|
msgid "View fleet details"
|
|
250
244
|
msgstr ""
|
|
251
245
|
|
|
252
|
-
#: fleetfinder/views.py:
|
|
246
|
+
#: fleetfinder/views.py:212
|
|
253
247
|
msgid "Edit fleet advert"
|
|
254
248
|
msgstr ""
|
|
255
249
|
|
|
256
|
-
#: fleetfinder/views.py:
|
|
250
|
+
#: fleetfinder/views.py:257
|
|
257
251
|
#, python-brace-format
|
|
258
252
|
msgid ""
|
|
259
253
|
"<h4>Error!</h4><p>There was an error creating the fleet: {error_detail}</p>"
|
|
260
254
|
msgstr ""
|
|
261
255
|
|
|
262
|
-
#: fleetfinder/views.py:
|
|
256
|
+
#: fleetfinder/views.py:297 fleetfinder/views.py:493
|
|
263
257
|
msgid "<h4>Error!</h4><p>Fleet does not exist or is no longer available.</p>"
|
|
264
258
|
msgstr ""
|
|
265
259
|
|
|
266
|
-
#: fleetfinder/views.py:
|
|
260
|
+
#: fleetfinder/views.py:454
|
|
267
261
|
#, python-brace-format
|
|
268
262
|
msgid "<h4>Error!</h4><p>ESI returned the following error: {esi_error}</p>"
|
|
269
263
|
msgstr ""
|
|
270
264
|
|
|
271
|
-
#: fleetfinder/views.py:
|
|
265
|
+
#: fleetfinder/views.py:465
|
|
272
266
|
#, python-brace-format
|
|
273
267
|
msgid "<h4>Error!</h4><p>There was an error creating the fleet: {ex}</p>"
|
|
274
268
|
msgstr ""
|
|
275
269
|
|
|
276
|
-
#: fleetfinder/views.py:
|
|
270
|
+
#: fleetfinder/views.py:530
|
|
277
271
|
#, python-brace-format
|
|
278
272
|
msgid "Fleet with ID {fleet_id} does not exist."
|
|
279
273
|
msgstr ""
|
|
280
274
|
|
|
281
|
-
#: fleetfinder/views.py:
|
|
275
|
+
#: fleetfinder/views.py:541
|
|
282
276
|
#, python-brace-format
|
|
283
277
|
msgid "Error retrieving fleet composition: {ex}"
|
|
284
278
|
msgstr ""
|
|
285
279
|
|
|
286
|
-
#: fleetfinder/views.py:
|
|
280
|
+
#: fleetfinder/views.py:577
|
|
287
281
|
msgid "Method not allowed"
|
|
288
282
|
msgstr ""
|
|
289
283
|
|
|
290
|
-
#: fleetfinder/views.py:
|
|
284
|
+
#: fleetfinder/views.py:588
|
|
291
285
|
msgid "Member ID required"
|
|
292
286
|
msgstr ""
|
|
293
287
|
|
|
294
|
-
#: fleetfinder/views.py:
|
|
288
|
+
#: fleetfinder/views.py:608
|
|
295
289
|
msgid "Fleet not found"
|
|
296
290
|
msgstr ""
|
|
297
291
|
|
|
298
|
-
#: fleetfinder/views.py:
|
|
292
|
+
#: fleetfinder/views.py:613
|
|
299
293
|
msgid "Invalid request data"
|
|
300
294
|
msgstr ""
|
|
301
295
|
|
|
302
|
-
#: fleetfinder/views.py:
|
|
296
|
+
#: fleetfinder/views.py:619
|
|
303
297
|
msgid "Member not found in fleet"
|
|
304
298
|
msgstr ""
|
|
299
|
+
|
|
300
|
+
#: fleetfinder/views.py:628
|
|
301
|
+
#, python-brace-format
|
|
302
|
+
msgid "An ESI error occurred: {ex}"
|
|
303
|
+
msgstr ""
|