aa-mumble-quick-connect 0.0.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_mumble_quick_connect/__init__.py +6 -0
- aa_mumble_quick_connect/admin.py +29 -0
- aa_mumble_quick_connect/apps.py +19 -0
- aa_mumble_quick_connect/auth_hooks.py +67 -0
- aa_mumble_quick_connect/dependency_checks.py +17 -0
- aa_mumble_quick_connect/locale/cs_CZ/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/de/LC_MESSAGES/django.mo +0 -0
- aa_mumble_quick_connect/locale/de/LC_MESSAGES/django.po +77 -0
- aa_mumble_quick_connect/locale/django.pot +79 -0
- aa_mumble_quick_connect/locale/es/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/fr_FR/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/it_IT/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/ja/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/ko_KR/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/nl_NL/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/pl_PL/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/ru/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/sk/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/uk/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/locale/zh_Hans/LC_MESSAGES/django.po +78 -0
- aa_mumble_quick_connect/migrations/0001_initial.py +33 -0
- aa_mumble_quick_connect/migrations/0002_section_mumblelink.py +80 -0
- aa_mumble_quick_connect/migrations/0003_alter_mumblelink_url.py +19 -0
- aa_mumble_quick_connect/migrations/0004_alter_mumblelink_url.py +26 -0
- aa_mumble_quick_connect/migrations/0005_alter_mumblelink_name_alter_mumblelink_section.py +35 -0
- aa_mumble_quick_connect/migrations/__init__.py +0 -0
- aa_mumble_quick_connect/models.py +100 -0
- aa_mumble_quick_connect/static/aa_mumble_quick_connect/images/mumble-icon.png +0 -0
- aa_mumble_quick_connect/static/aa_mumble_quick_connect/libs/masonry-layout/4.2.2/masonry.pkgd.min.js +9 -0
- aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html +17 -0
- aa_mumble_quick_connect/templates/aa_mumble_quick_connect/bundles/masonry-layout-js.html +7 -0
- aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html +30 -0
- aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-in-sections.html +36 -0
- aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-without-sections.html +35 -0
- aa_mumble_quick_connect/templatetags/aa_mumble_quick_connect.py +24 -0
- aa_mumble_quick_connect/tests/__init__.py +3 -0
- aa_mumble_quick_connect/tests/test_access.py +159 -0
- aa_mumble_quick_connect/tests/test_auth_hooks.py +113 -0
- aa_mumble_quick_connect/tests/test_models.py +78 -0
- aa_mumble_quick_connect/tests/test_templatetags.py +35 -0
- aa_mumble_quick_connect/tests/utils.py +34 -0
- aa_mumble_quick_connect/urls.py +13 -0
- aa_mumble_quick_connect/views.py +37 -0
- aa_mumble_quick_connect-0.0.1.dist-info/METADATA +823 -0
- aa_mumble_quick_connect-0.0.1.dist-info/RECORD +47 -0
- aa_mumble_quick_connect-0.0.1.dist-info/WHEEL +4 -0
- aa_mumble_quick_connect-0.0.1.dist-info/licenses/LICENSE +674 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Admin models
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# Django
|
|
6
|
+
from django.contrib import admin
|
|
7
|
+
|
|
8
|
+
# AA Mumble Quick Connect
|
|
9
|
+
from aa_mumble_quick_connect.models import MumbleLink, Section
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@admin.register(Section)
|
|
13
|
+
class SectionAdmin(admin.ModelAdmin):
|
|
14
|
+
"""
|
|
15
|
+
SectionAdmin
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
list_display = ("name",)
|
|
19
|
+
ordering = ("name",)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
@admin.register(MumbleLink)
|
|
23
|
+
class MumbleLinkAdmin(admin.ModelAdmin):
|
|
24
|
+
"""
|
|
25
|
+
MumbleLinkAdmin
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
list_display = ("name", "url", "section")
|
|
29
|
+
ordering = ("section", "name")
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""
|
|
2
|
+
App Configuration
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# Django
|
|
6
|
+
from django.apps import AppConfig
|
|
7
|
+
|
|
8
|
+
# AA Mumble Quick Connect
|
|
9
|
+
from aa_mumble_quick_connect import __version__
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class AaMumbleQuickConnectConfig(AppConfig):
|
|
13
|
+
"""
|
|
14
|
+
App configuration
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
name = "aa_mumble_quick_connect"
|
|
18
|
+
label = "aa_mumble_quick_connect"
|
|
19
|
+
verbose_name = f"Mumble Quick Connect v{__version__}"
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Hook into Alliance Auth
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# Django
|
|
6
|
+
from django.utils.translation import gettext_lazy as _
|
|
7
|
+
|
|
8
|
+
# Alliance Auth
|
|
9
|
+
from allianceauth import hooks
|
|
10
|
+
from allianceauth.services.hooks import MenuItemHook, UrlHook
|
|
11
|
+
|
|
12
|
+
# AA Mumble Quick Connect
|
|
13
|
+
from aa_mumble_quick_connect import urls
|
|
14
|
+
from aa_mumble_quick_connect.dependency_checks import mumble_service_installed
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class AaMumbleQuickConnectMenuItem(MenuItemHook):
|
|
18
|
+
"""
|
|
19
|
+
This class ensures only authorized users will see the menu entry
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def __init__(self):
|
|
23
|
+
# setup menu entry for sidebar
|
|
24
|
+
MenuItemHook.__init__(
|
|
25
|
+
self=self,
|
|
26
|
+
text=_("Mumble Quick Connect"),
|
|
27
|
+
classes="fa-solid fa-headphones-simple",
|
|
28
|
+
url_name="aa_mumble_quick_connect:index",
|
|
29
|
+
navactive=["aa_mumble_quick_connect:"],
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
def render(self, request):
|
|
33
|
+
"""
|
|
34
|
+
Render the menu item
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
if mumble_service_installed():
|
|
38
|
+
if request.user.has_perm(
|
|
39
|
+
"aa_mumble_quick_connect.basic_access"
|
|
40
|
+
) and request.user.has_perm("mumble.access_mumble"):
|
|
41
|
+
return MenuItemHook.render(self=self, request=request)
|
|
42
|
+
|
|
43
|
+
return ""
|
|
44
|
+
|
|
45
|
+
return ""
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
@hooks.register("menu_item_hook")
|
|
49
|
+
def register_menu():
|
|
50
|
+
"""
|
|
51
|
+
Register the menu item
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
return AaMumbleQuickConnectMenuItem()
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@hooks.register("url_hook")
|
|
58
|
+
def register_urls():
|
|
59
|
+
"""
|
|
60
|
+
Register app urls
|
|
61
|
+
"""
|
|
62
|
+
|
|
63
|
+
return UrlHook(
|
|
64
|
+
urls=urls,
|
|
65
|
+
namespace="aa_mumble_quick_connect",
|
|
66
|
+
base_url=r"^mumble-quick-connect/",
|
|
67
|
+
)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Dependency checks for the `aa-mumble-quick-connect` app
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# Django
|
|
6
|
+
from django.apps import apps
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def mumble_service_installed() -> bool:
|
|
10
|
+
"""
|
|
11
|
+
Check if `allianceauth.services.modules.mumble` is installed and active
|
|
12
|
+
|
|
13
|
+
:return: True if installed, False otherwise
|
|
14
|
+
:rtype: bool
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
return apps.is_installed(app_name="allianceauth.services.modules.mumble")
|
|
@@ -0,0 +1,78 @@
|
|
|
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: AA Mumble Quick Connect 0.0.1\n"
|
|
10
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-mumble-quick-connect/issues\n"
|
|
11
|
+
"POT-Creation-Date: 2025-02-13 12:23+0100\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
|
+
"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"
|
|
20
|
+
|
|
21
|
+
#: aa_mumble_quick_connect/auth_hooks.py:26
|
|
22
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:6
|
|
23
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:10
|
|
24
|
+
msgid "Mumble Quick Connect"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
#: aa_mumble_quick_connect/models.py:26
|
|
28
|
+
#, python-brace-format
|
|
29
|
+
msgid "The Mumble channel URL must start with '{mumble_base_url}'"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: aa_mumble_quick_connect/models.py:44
|
|
33
|
+
msgid "Can access this app"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: aa_mumble_quick_connect/models.py:53
|
|
37
|
+
msgid "Name of the section"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: aa_mumble_quick_connect/models.py:62 aa_mumble_quick_connect/models.py:78
|
|
41
|
+
msgid "Section"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: aa_mumble_quick_connect/models.py:63
|
|
45
|
+
msgid "Sections"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: aa_mumble_quick_connect/models.py:81
|
|
49
|
+
msgid "Section the Mumble channel belongs to. (Optional)"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: aa_mumble_quick_connect/models.py:83
|
|
53
|
+
msgid "Name of the Mumble channel"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: aa_mumble_quick_connect/models.py:87
|
|
57
|
+
msgid "URL to the channel"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: aa_mumble_quick_connect/models.py:96
|
|
61
|
+
msgid "Mumble Link"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: aa_mumble_quick_connect/models.py:97
|
|
65
|
+
msgid "Mumble Links"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:15
|
|
69
|
+
msgid "You don't have your Mumble service set up. Please go to the services page and activate the Mumble service."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:20
|
|
73
|
+
msgid "Mumble service is not installed!"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-without-sections.html:10
|
|
77
|
+
msgid "Uncategorized"
|
|
78
|
+
msgstr ""
|
|
Binary file
|
|
@@ -0,0 +1,77 @@
|
|
|
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
|
+
# Peter Pfeufer <info@ppfeufer.de>, 2025.
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: AA Mumble Quick Connect 0.0.1\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-mumble-quick-connect/issues\n"
|
|
9
|
+
"POT-Creation-Date: 2025-02-13 12:23+0100\n"
|
|
10
|
+
"PO-Revision-Date: 2025-02-13 11:37+0000\n"
|
|
11
|
+
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
|
12
|
+
"Language-Team: German <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-mumble-quick-connect/de/>\n"
|
|
13
|
+
"Language: de\n"
|
|
14
|
+
"MIME-Version: 1.0\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
18
|
+
"X-Generator: Weblate 5.9.2\n"
|
|
19
|
+
|
|
20
|
+
#: aa_mumble_quick_connect/auth_hooks.py:26
|
|
21
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:6
|
|
22
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:10
|
|
23
|
+
msgid "Mumble Quick Connect"
|
|
24
|
+
msgstr "Mumble Schnellverbindung"
|
|
25
|
+
|
|
26
|
+
#: aa_mumble_quick_connect/models.py:26
|
|
27
|
+
#, python-brace-format
|
|
28
|
+
msgid "The Mumble channel URL must start with '{mumble_base_url}'"
|
|
29
|
+
msgstr "Die Mumble-Kanal-URL muss mit „{mumble_base_url}“ beginnen"
|
|
30
|
+
|
|
31
|
+
#: aa_mumble_quick_connect/models.py:44
|
|
32
|
+
msgid "Can access this app"
|
|
33
|
+
msgstr "Kann auf diese App zugreifen"
|
|
34
|
+
|
|
35
|
+
#: aa_mumble_quick_connect/models.py:53
|
|
36
|
+
msgid "Name of the section"
|
|
37
|
+
msgstr "Name der Sektion"
|
|
38
|
+
|
|
39
|
+
#: aa_mumble_quick_connect/models.py:62 aa_mumble_quick_connect/models.py:78
|
|
40
|
+
msgid "Section"
|
|
41
|
+
msgstr "Sektion"
|
|
42
|
+
|
|
43
|
+
#: aa_mumble_quick_connect/models.py:63
|
|
44
|
+
msgid "Sections"
|
|
45
|
+
msgstr "Sektionen"
|
|
46
|
+
|
|
47
|
+
#: aa_mumble_quick_connect/models.py:81
|
|
48
|
+
msgid "Section the Mumble channel belongs to. (Optional)"
|
|
49
|
+
msgstr "Abschnitt, zu dem der Mumble-Kanal gehört. (Optional)"
|
|
50
|
+
|
|
51
|
+
#: aa_mumble_quick_connect/models.py:83
|
|
52
|
+
msgid "Name of the Mumble channel"
|
|
53
|
+
msgstr "Name des Mumble-Kanals"
|
|
54
|
+
|
|
55
|
+
#: aa_mumble_quick_connect/models.py:87
|
|
56
|
+
msgid "URL to the channel"
|
|
57
|
+
msgstr "URL zum Kanal"
|
|
58
|
+
|
|
59
|
+
#: aa_mumble_quick_connect/models.py:96
|
|
60
|
+
msgid "Mumble Link"
|
|
61
|
+
msgstr "Mumble Link"
|
|
62
|
+
|
|
63
|
+
#: aa_mumble_quick_connect/models.py:97
|
|
64
|
+
msgid "Mumble Links"
|
|
65
|
+
msgstr "Mumble Links"
|
|
66
|
+
|
|
67
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:15
|
|
68
|
+
msgid "You don't have your Mumble service set up. Please go to the services page and activate the Mumble service."
|
|
69
|
+
msgstr "Du hast Deinen Mumble-Dienst nicht eingerichtet. Bitte gehe zur Diensteseite und aktiviere den Mumble-Dienst."
|
|
70
|
+
|
|
71
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:20
|
|
72
|
+
msgid "Mumble service is not installed!"
|
|
73
|
+
msgstr "Mumble Service ist nicht installiert!"
|
|
74
|
+
|
|
75
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-without-sections.html:10
|
|
76
|
+
msgid "Uncategorized"
|
|
77
|
+
msgstr "Unkategorisiert"
|
|
@@ -0,0 +1,79 @@
|
|
|
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: AA Mumble Quick Connect 0.0.1\n"
|
|
10
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-mumble-quick-connect/issues\n"
|
|
11
|
+
"POT-Creation-Date: 2025-02-13 12:23+0100\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
|
+
#: aa_mumble_quick_connect/auth_hooks.py:26
|
|
21
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:6
|
|
22
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:10
|
|
23
|
+
msgid "Mumble Quick Connect"
|
|
24
|
+
msgstr ""
|
|
25
|
+
|
|
26
|
+
#: aa_mumble_quick_connect/models.py:26
|
|
27
|
+
#, python-brace-format
|
|
28
|
+
msgid "The Mumble channel URL must start with '{mumble_base_url}'"
|
|
29
|
+
msgstr ""
|
|
30
|
+
|
|
31
|
+
#: aa_mumble_quick_connect/models.py:44
|
|
32
|
+
msgid "Can access this app"
|
|
33
|
+
msgstr ""
|
|
34
|
+
|
|
35
|
+
#: aa_mumble_quick_connect/models.py:53
|
|
36
|
+
msgid "Name of the section"
|
|
37
|
+
msgstr ""
|
|
38
|
+
|
|
39
|
+
#: aa_mumble_quick_connect/models.py:62 aa_mumble_quick_connect/models.py:78
|
|
40
|
+
msgid "Section"
|
|
41
|
+
msgstr ""
|
|
42
|
+
|
|
43
|
+
#: aa_mumble_quick_connect/models.py:63
|
|
44
|
+
msgid "Sections"
|
|
45
|
+
msgstr ""
|
|
46
|
+
|
|
47
|
+
#: aa_mumble_quick_connect/models.py:81
|
|
48
|
+
msgid "Section the Mumble channel belongs to. (Optional)"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
#: aa_mumble_quick_connect/models.py:83
|
|
52
|
+
msgid "Name of the Mumble channel"
|
|
53
|
+
msgstr ""
|
|
54
|
+
|
|
55
|
+
#: aa_mumble_quick_connect/models.py:87
|
|
56
|
+
msgid "URL to the channel"
|
|
57
|
+
msgstr ""
|
|
58
|
+
|
|
59
|
+
#: aa_mumble_quick_connect/models.py:96
|
|
60
|
+
msgid "Mumble Link"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#: aa_mumble_quick_connect/models.py:97
|
|
64
|
+
msgid "Mumble Links"
|
|
65
|
+
msgstr ""
|
|
66
|
+
|
|
67
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:15
|
|
68
|
+
msgid ""
|
|
69
|
+
"You don't have your Mumble service set up. Please go to the services page "
|
|
70
|
+
"and activate the Mumble service."
|
|
71
|
+
msgstr ""
|
|
72
|
+
|
|
73
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:20
|
|
74
|
+
msgid "Mumble service is not installed!"
|
|
75
|
+
msgstr ""
|
|
76
|
+
|
|
77
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-without-sections.html:10
|
|
78
|
+
msgid "Uncategorized"
|
|
79
|
+
msgstr ""
|
|
@@ -0,0 +1,78 @@
|
|
|
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: AA Mumble Quick Connect 0.0.1\n"
|
|
10
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-mumble-quick-connect/issues\n"
|
|
11
|
+
"POT-Creation-Date: 2025-02-13 12:23+0100\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
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
20
|
+
|
|
21
|
+
#: aa_mumble_quick_connect/auth_hooks.py:26
|
|
22
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:6
|
|
23
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:10
|
|
24
|
+
msgid "Mumble Quick Connect"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
#: aa_mumble_quick_connect/models.py:26
|
|
28
|
+
#, python-brace-format
|
|
29
|
+
msgid "The Mumble channel URL must start with '{mumble_base_url}'"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: aa_mumble_quick_connect/models.py:44
|
|
33
|
+
msgid "Can access this app"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: aa_mumble_quick_connect/models.py:53
|
|
37
|
+
msgid "Name of the section"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: aa_mumble_quick_connect/models.py:62 aa_mumble_quick_connect/models.py:78
|
|
41
|
+
msgid "Section"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: aa_mumble_quick_connect/models.py:63
|
|
45
|
+
msgid "Sections"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: aa_mumble_quick_connect/models.py:81
|
|
49
|
+
msgid "Section the Mumble channel belongs to. (Optional)"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: aa_mumble_quick_connect/models.py:83
|
|
53
|
+
msgid "Name of the Mumble channel"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: aa_mumble_quick_connect/models.py:87
|
|
57
|
+
msgid "URL to the channel"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: aa_mumble_quick_connect/models.py:96
|
|
61
|
+
msgid "Mumble Link"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: aa_mumble_quick_connect/models.py:97
|
|
65
|
+
msgid "Mumble Links"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:15
|
|
69
|
+
msgid "You don't have your Mumble service set up. Please go to the services page and activate the Mumble service."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:20
|
|
73
|
+
msgid "Mumble service is not installed!"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-without-sections.html:10
|
|
77
|
+
msgid "Uncategorized"
|
|
78
|
+
msgstr ""
|
|
@@ -0,0 +1,78 @@
|
|
|
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: AA Mumble Quick Connect 0.0.1\n"
|
|
10
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-mumble-quick-connect/issues\n"
|
|
11
|
+
"POT-Creation-Date: 2025-02-13 12:23+0100\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
|
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
20
|
+
|
|
21
|
+
#: aa_mumble_quick_connect/auth_hooks.py:26
|
|
22
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:6
|
|
23
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:10
|
|
24
|
+
msgid "Mumble Quick Connect"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
#: aa_mumble_quick_connect/models.py:26
|
|
28
|
+
#, python-brace-format
|
|
29
|
+
msgid "The Mumble channel URL must start with '{mumble_base_url}'"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: aa_mumble_quick_connect/models.py:44
|
|
33
|
+
msgid "Can access this app"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: aa_mumble_quick_connect/models.py:53
|
|
37
|
+
msgid "Name of the section"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: aa_mumble_quick_connect/models.py:62 aa_mumble_quick_connect/models.py:78
|
|
41
|
+
msgid "Section"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: aa_mumble_quick_connect/models.py:63
|
|
45
|
+
msgid "Sections"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: aa_mumble_quick_connect/models.py:81
|
|
49
|
+
msgid "Section the Mumble channel belongs to. (Optional)"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: aa_mumble_quick_connect/models.py:83
|
|
53
|
+
msgid "Name of the Mumble channel"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: aa_mumble_quick_connect/models.py:87
|
|
57
|
+
msgid "URL to the channel"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: aa_mumble_quick_connect/models.py:96
|
|
61
|
+
msgid "Mumble Link"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: aa_mumble_quick_connect/models.py:97
|
|
65
|
+
msgid "Mumble Links"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:15
|
|
69
|
+
msgid "You don't have your Mumble service set up. Please go to the services page and activate the Mumble service."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:20
|
|
73
|
+
msgid "Mumble service is not installed!"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-without-sections.html:10
|
|
77
|
+
msgid "Uncategorized"
|
|
78
|
+
msgstr ""
|
|
@@ -0,0 +1,78 @@
|
|
|
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: AA Mumble Quick Connect 0.0.1\n"
|
|
10
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-mumble-quick-connect/issues\n"
|
|
11
|
+
"POT-Creation-Date: 2025-02-13 12:23+0100\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
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
20
|
+
|
|
21
|
+
#: aa_mumble_quick_connect/auth_hooks.py:26
|
|
22
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:6
|
|
23
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/base.html:10
|
|
24
|
+
msgid "Mumble Quick Connect"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
#: aa_mumble_quick_connect/models.py:26
|
|
28
|
+
#, python-brace-format
|
|
29
|
+
msgid "The Mumble channel URL must start with '{mumble_base_url}'"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: aa_mumble_quick_connect/models.py:44
|
|
33
|
+
msgid "Can access this app"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: aa_mumble_quick_connect/models.py:53
|
|
37
|
+
msgid "Name of the section"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: aa_mumble_quick_connect/models.py:62 aa_mumble_quick_connect/models.py:78
|
|
41
|
+
msgid "Section"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: aa_mumble_quick_connect/models.py:63
|
|
45
|
+
msgid "Sections"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: aa_mumble_quick_connect/models.py:81
|
|
49
|
+
msgid "Section the Mumble channel belongs to. (Optional)"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: aa_mumble_quick_connect/models.py:83
|
|
53
|
+
msgid "Name of the Mumble channel"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: aa_mumble_quick_connect/models.py:87
|
|
57
|
+
msgid "URL to the channel"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: aa_mumble_quick_connect/models.py:96
|
|
61
|
+
msgid "Mumble Link"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: aa_mumble_quick_connect/models.py:97
|
|
65
|
+
msgid "Mumble Links"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:15
|
|
69
|
+
msgid "You don't have your Mumble service set up. Please go to the services page and activate the Mumble service."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/index.html:20
|
|
73
|
+
msgid "Mumble service is not installed!"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: aa_mumble_quick_connect/templates/aa_mumble_quick_connect/partials/channels-without-sections.html:10
|
|
77
|
+
msgid "Uncategorized"
|
|
78
|
+
msgstr ""
|