aa-bulletin-board 2.2.4__py3-none-any.whl → 2.3.0__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_bulletin_board/__init__.py +1 -1
- aa_bulletin_board/constants.py +11 -0
- aa_bulletin_board/helper/__init__.py +0 -0
- aa_bulletin_board/helper/static_files.py +39 -0
- aa_bulletin_board/locale/cs_CZ/LC_MESSAGES/django.po +9 -21
- aa_bulletin_board/locale/de/LC_MESSAGES/django.po +9 -22
- aa_bulletin_board/locale/django.pot +2 -2
- aa_bulletin_board/locale/es/LC_MESSAGES/django.po +9 -22
- aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.po +18 -28
- aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.mo +0 -0
- aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.po +9 -16
- aa_bulletin_board/locale/ja/LC_MESSAGES/django.po +7 -16
- aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.po +8 -19
- aa_bulletin_board/locale/nl_NL/LC_MESSAGES/django.po +6 -13
- aa_bulletin_board/locale/pl_PL/LC_MESSAGES/django.po +8 -18
- aa_bulletin_board/locale/ru/LC_MESSAGES/django.po +9 -21
- aa_bulletin_board/locale/sk/LC_MESSAGES/django.po +7 -15
- aa_bulletin_board/locale/uk/LC_MESSAGES/django.po +10 -25
- aa_bulletin_board/locale/zh_Hans/LC_MESSAGES/django.po +7 -16
- aa_bulletin_board/templates/aa_bulletin_board/bundles/aa-bulletin-board-css.html +1 -1
- aa_bulletin_board/templates/aa_bulletin_board/bundles/aa-bulletin-board-equal-height-js.html +1 -1
- aa_bulletin_board/templates/aa_bulletin_board/bundles/aa-bulletin-board-oembed-js.html +1 -1
- aa_bulletin_board/templates/aa_bulletin_board/bundles/ckeditor5-css.html +2 -2
- aa_bulletin_board/templates/aa_bulletin_board/bundles/ckeditor5-js.html +2 -2
- aa_bulletin_board/templates/aa_bulletin_board/bundles/sumoselect-css.html +2 -2
- aa_bulletin_board/templates/aa_bulletin_board/bundles/sumoselect-js.html +2 -2
- aa_bulletin_board/templatetags/aa_bulletin_board.py +57 -9
- aa_bulletin_board/tests/test_templatetags.py +47 -7
- {aa_bulletin_board-2.2.4.dist-info → aa_bulletin_board-2.3.0.dist-info}/METADATA +21 -21
- {aa_bulletin_board-2.2.4.dist-info → aa_bulletin_board-2.3.0.dist-info}/RECORD +33 -30
- {aa_bulletin_board-2.2.4.dist-info → aa_bulletin_board-2.3.0.dist-info}/WHEEL +1 -1
- {aa_bulletin_board-2.2.4.dist-info → aa_bulletin_board-2.3.0.dist-info}/licenses/LICENSE +0 -0
aa_bulletin_board/__init__.py
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
"""
|
2
|
+
Constants used in this app
|
3
|
+
"""
|
4
|
+
|
5
|
+
# Standard Library
|
6
|
+
import os
|
7
|
+
|
8
|
+
AA_BULLETIN_BOARD_BASE_DIR = os.path.join(os.path.dirname(__file__))
|
9
|
+
AA_BULLETIN_BOARD_STATIC_DIR = os.path.join(
|
10
|
+
AA_BULLETIN_BOARD_BASE_DIR, "static", "aa_bulletin_board"
|
11
|
+
)
|
File without changes
|
@@ -0,0 +1,39 @@
|
|
1
|
+
"""
|
2
|
+
Helper functions for static integrity calculations
|
3
|
+
"""
|
4
|
+
|
5
|
+
# Standard Library
|
6
|
+
import os
|
7
|
+
from pathlib import Path
|
8
|
+
|
9
|
+
# Third Party
|
10
|
+
from sri import Algorithm, calculate_integrity
|
11
|
+
|
12
|
+
# Alliance Auth
|
13
|
+
from allianceauth.services.hooks import get_extension_logger
|
14
|
+
|
15
|
+
# Alliance Auth (External Libs)
|
16
|
+
from app_utils.logging import LoggerAddTag
|
17
|
+
|
18
|
+
# AA Bulletin Board
|
19
|
+
from aa_bulletin_board import __title__
|
20
|
+
from aa_bulletin_board.constants import AA_BULLETIN_BOARD_STATIC_DIR
|
21
|
+
|
22
|
+
logger = LoggerAddTag(my_logger=get_extension_logger(__name__), prefix=__title__)
|
23
|
+
|
24
|
+
|
25
|
+
def calculate_integrity_hash(relative_file_path: str) -> str:
|
26
|
+
"""
|
27
|
+
Calculates the integrity hash for a given static file
|
28
|
+
:param self:
|
29
|
+
:type self:
|
30
|
+
:param relative_file_path: The file path relative to the `aa-timezones/timezones/static/timezones` folder
|
31
|
+
:type relative_file_path: str
|
32
|
+
:return: The integrity hash
|
33
|
+
:rtype: str
|
34
|
+
"""
|
35
|
+
|
36
|
+
file_path = os.path.join(AA_BULLETIN_BOARD_STATIC_DIR, relative_file_path)
|
37
|
+
integrity_hash = calculate_integrity(Path(file_path), Algorithm.SHA512)
|
38
|
+
|
39
|
+
return integrity_hash
|
@@ -5,18 +5,16 @@
|
|
5
5
|
msgid ""
|
6
6
|
msgstr ""
|
7
7
|
"Project-Id-Version: PACKAGE VERSION\n"
|
8
|
-
"Report-Msgid-Bugs-To: \n"
|
9
|
-
"POT-Creation-Date:
|
8
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
9
|
+
"POT-Creation-Date: 2025-01-21 05:07+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
|
-
"Language-Team: Czech <https://weblate.ppfeufer.de/projects/alliance-auth-"
|
13
|
-
"apps/aa-bulletin-board/cs/>\n"
|
12
|
+
"Language-Team: Czech <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/cs/>\n"
|
14
13
|
"Language: cs_CZ\n"
|
15
14
|
"MIME-Version: 1.0\n"
|
16
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
17
16
|
"Content-Transfer-Encoding: 8bit\n"
|
18
|
-
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
|
19
|
-
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
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"
|
20
18
|
"X-Generator: Weblate 5.6.2\n"
|
21
19
|
|
22
20
|
#: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
|
@@ -34,12 +32,8 @@ msgid "Bulletin Board v{__version__}"
|
|
34
32
|
msgstr "Nástěnka v{__version__}"
|
35
33
|
|
36
34
|
#: aa_bulletin_board/forms.py:63
|
37
|
-
msgid ""
|
38
|
-
"
|
39
|
-
"place, everyone who has access to this module can read this bulletin."
|
40
|
-
msgstr ""
|
41
|
-
"Omez nástěnku pro určité skupiny. Pokud nejsou nastavena žádná omezení, "
|
42
|
-
"všichni s přístupem k tomuto modulu můžou číst tuto nástěnku."
|
35
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
36
|
+
msgstr "Omez nástěnku pro určité skupiny. Pokud nejsou nastavena žádná omezení, všichni s přístupem k tomuto modulu můžou číst tuto nástěnku."
|
43
37
|
|
44
38
|
#: aa_bulletin_board/forms.py:110
|
45
39
|
msgid "You have forgotten the content!"
|
@@ -140,12 +134,8 @@ msgid "Add bulletin"
|
|
140
134
|
msgstr "Přidat nástěnku"
|
141
135
|
|
142
136
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
143
|
-
msgid ""
|
144
|
-
"
|
145
|
-
"existing translation?"
|
146
|
-
msgstr ""
|
147
|
-
"Chceš pomoc s překladem této aplikace do tvého jazyka, nebo vylepšit "
|
148
|
-
"současný překlad?"
|
137
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
138
|
+
msgstr "Chceš pomoc s překladem této aplikace do tvého jazyka, nebo vylepšit současný překlad?"
|
149
139
|
|
150
140
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
151
141
|
msgid "Join our team of translators!"
|
@@ -157,9 +147,7 @@ msgid "Bulletin \"{bulletin__title}\" created."
|
|
157
147
|
msgstr "Nástěnka \"{bulletin__title}\" vytvořena."
|
158
148
|
|
159
149
|
#: aa_bulletin_board/views.py:141
|
160
|
-
msgid ""
|
161
|
-
"The bulletin you are looking for does either not exist, or you don't have "
|
162
|
-
"access to it."
|
150
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
163
151
|
msgstr "Nástěnka kterou hledáte buďto neexistuje, nebo k ní nemáte přístup."
|
164
152
|
|
165
153
|
#: aa_bulletin_board/views.py:168
|
@@ -5,12 +5,11 @@
|
|
5
5
|
msgid ""
|
6
6
|
msgstr ""
|
7
7
|
"Project-Id-Version: PACKAGE VERSION\n"
|
8
|
-
"Report-Msgid-Bugs-To: \n"
|
9
|
-
"POT-Creation-Date:
|
8
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
9
|
+
"POT-Creation-Date: 2025-01-21 05:07+0100\n"
|
10
10
|
"PO-Revision-Date: 2024-05-10 13:57+0000\n"
|
11
11
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
12
|
-
"Language-Team: German <https://weblate.ppfeufer.de/projects/alliance-auth-"
|
13
|
-
"apps/aa-bulletin-board/de/>\n"
|
12
|
+
"Language-Team: German <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/de/>\n"
|
14
13
|
"Language: de\n"
|
15
14
|
"MIME-Version: 1.0\n"
|
16
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -33,13 +32,8 @@ msgid "Bulletin Board v{__version__}"
|
|
33
32
|
msgstr "Bulletin Board v{__version__}"
|
34
33
|
|
35
34
|
#: aa_bulletin_board/forms.py:63
|
36
|
-
msgid ""
|
37
|
-
"
|
38
|
-
"place, everyone who has access to this module can read this bulletin."
|
39
|
-
msgstr ""
|
40
|
-
"Beschränkt dieses Bulletin auf bestimmte Gruppen. Wenn keine "
|
41
|
-
"Gruppenbeschränkungen bestehen, kann jeder der Zugriff auf dieses Modul hat, "
|
42
|
-
"dieses Bulletin lesen."
|
35
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
36
|
+
msgstr "Beschränkt dieses Bulletin auf bestimmte Gruppen. Wenn keine Gruppenbeschränkungen bestehen, kann jeder der Zugriff auf dieses Modul hat, dieses Bulletin lesen."
|
43
37
|
|
44
38
|
#: aa_bulletin_board/forms.py:110
|
45
39
|
msgid "You have forgotten the content!"
|
@@ -138,12 +132,8 @@ msgid "Add bulletin"
|
|
138
132
|
msgstr "Bulletin hinzufügen"
|
139
133
|
|
140
134
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
141
|
-
msgid ""
|
142
|
-
"
|
143
|
-
"existing translation?"
|
144
|
-
msgstr ""
|
145
|
-
"Du möchtest helfen diese App in Deine Sprache zu übersetzen oder die "
|
146
|
-
"bestehende Übersetzung verbessern?"
|
135
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
136
|
+
msgstr "Du möchtest helfen diese App in Deine Sprache zu übersetzen oder die bestehende Übersetzung verbessern?"
|
147
137
|
|
148
138
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
149
139
|
msgid "Join our team of translators!"
|
@@ -155,11 +145,8 @@ msgid "Bulletin \"{bulletin__title}\" created."
|
|
155
145
|
msgstr "Bulletin „{bulletin__title}“ erstellt."
|
156
146
|
|
157
147
|
#: aa_bulletin_board/views.py:141
|
158
|
-
msgid ""
|
159
|
-
"
|
160
|
-
"access to it."
|
161
|
-
msgstr ""
|
162
|
-
"Dieses Bulletin existiert entweder nicht oder Du hast keinen Zugriff darauf."
|
148
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
149
|
+
msgstr "Dieses Bulletin existiert entweder nicht oder Du hast keinen Zugriff darauf."
|
163
150
|
|
164
151
|
#: aa_bulletin_board/views.py:168
|
165
152
|
msgid "The bulletin you are trying to edit does not exist."
|
@@ -6,9 +6,9 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: AA Bulletin Board 2.2.
|
9
|
+
"Project-Id-Version: AA Bulletin Board 2.2.5\n"
|
10
10
|
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
11
|
-
"POT-Creation-Date:
|
11
|
+
"POT-Creation-Date: 2025-01-21 05:07+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"
|
@@ -7,12 +7,11 @@
|
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
10
|
-
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
10
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
11
|
+
"POT-Creation-Date: 2025-01-21 05:07+0100\n"
|
12
12
|
"PO-Revision-Date: 2024-12-02 17:40+0000\n"
|
13
13
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
14
|
-
"Language-Team: Spanish <https://weblate.ppfeufer.de/projects/"
|
15
|
-
"alliance-auth-apps/aa-bulletin-board/es/>\n"
|
14
|
+
"Language-Team: Spanish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/es/>\n"
|
16
15
|
"Language: es\n"
|
17
16
|
"MIME-Version: 1.0\n"
|
18
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -35,12 +34,8 @@ msgid "Bulletin Board v{__version__}"
|
|
35
34
|
msgstr "Tablón de Anuncios v{__version__}"
|
36
35
|
|
37
36
|
#: aa_bulletin_board/forms.py:63
|
38
|
-
msgid ""
|
39
|
-
"
|
40
|
-
"place, everyone who has access to this module can read this bulletin."
|
41
|
-
msgstr ""
|
42
|
-
"Restringir este anuncio a ciertos grupos. Si no existen restricciones de "
|
43
|
-
"grupo, todos los que tengan acceso a este módulo pueden leer este anuncio."
|
37
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
38
|
+
msgstr "Restringir este anuncio a ciertos grupos. Si no existen restricciones de grupo, todos los que tengan acceso a este módulo pueden leer este anuncio."
|
44
39
|
|
45
40
|
#: aa_bulletin_board/forms.py:110
|
46
41
|
msgid "You have forgotten the content!"
|
@@ -151,12 +146,8 @@ msgid "Add bulletin"
|
|
151
146
|
msgstr "Agregar Anuncio"
|
152
147
|
|
153
148
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
154
|
-
msgid ""
|
155
|
-
"
|
156
|
-
"existing translation?"
|
157
|
-
msgstr ""
|
158
|
-
"¿Quieres ayudar a traducir esta aplicación a tu idioma o mejorar la "
|
159
|
-
"traducción existente?"
|
149
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
150
|
+
msgstr "¿Quieres ayudar a traducir esta aplicación a tu idioma o mejorar la traducción existente?"
|
160
151
|
|
161
152
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
162
153
|
msgid "Join our team of translators!"
|
@@ -169,12 +160,8 @@ msgstr "Se ha creado el Anuncio «{bulletin__title}»."
|
|
169
160
|
|
170
161
|
#: aa_bulletin_board/views.py:141
|
171
162
|
#, fuzzy
|
172
|
-
#| msgid ""
|
173
|
-
|
174
|
-
#| "to it."
|
175
|
-
msgid ""
|
176
|
-
"The bulletin you are looking for does either not exist, or you don't have "
|
177
|
-
"access to it."
|
163
|
+
#| msgid "The bulletin you are looking for does not exist, or you don't have access to it."
|
164
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
178
165
|
msgstr "El anuncio que busca no existe, o no tiene acceso a él."
|
179
166
|
|
180
167
|
#: aa_bulletin_board/views.py:168
|
Binary file
|
@@ -5,21 +5,21 @@
|
|
5
5
|
# Peter Pfeufer <info@ppfeufer.de>, 2024.
|
6
6
|
# Hexo <ghostcig@free.fr>, 2024.
|
7
7
|
# Houbi_Houba <paul.lacape@live.fr>, 2024.
|
8
|
+
# balbozorre <loic.petiot2002@gmail.com>, 2024, 2025.
|
8
9
|
msgid ""
|
9
10
|
msgstr ""
|
10
11
|
"Project-Id-Version: PACKAGE VERSION\n"
|
11
|
-
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"POT-Creation-Date:
|
13
|
-
"PO-Revision-Date:
|
14
|
-
"Last-Translator:
|
15
|
-
"Language-Team: French <https://weblate.ppfeufer.de/projects/alliance-auth-"
|
16
|
-
"apps/aa-bulletin-board/fr/>\n"
|
12
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
13
|
+
"POT-Creation-Date: 2025-01-21 05:07+0100\n"
|
14
|
+
"PO-Revision-Date: 2025-01-19 19:17+0000\n"
|
15
|
+
"Last-Translator: balbozorre <loic.petiot2002@gmail.com>\n"
|
16
|
+
"Language-Team: French <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/fr/>\n"
|
17
17
|
"Language: fr_FR\n"
|
18
18
|
"MIME-Version: 1.0\n"
|
19
19
|
"Content-Type: text/plain; charset=UTF-8\n"
|
20
20
|
"Content-Transfer-Encoding: 8bit\n"
|
21
21
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
22
|
-
"X-Generator: Weblate 5.
|
22
|
+
"X-Generator: Weblate 5.9.2\n"
|
23
23
|
|
24
24
|
#: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
|
25
25
|
#: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
|
@@ -37,12 +37,8 @@ msgstr "Tableau d'affichage v{__version__}"
|
|
37
37
|
|
38
38
|
#: aa_bulletin_board/forms.py:63
|
39
39
|
#, fuzzy
|
40
|
-
msgid ""
|
41
|
-
"
|
42
|
-
"place, everyone who has access to this module can read this bulletin."
|
43
|
-
msgstr ""
|
44
|
-
"Restreignez ce bulletin à certains groupes. Si aucune restriction de groupe "
|
45
|
-
"n'est en place, tous ceux qui ont accès à ce module peuvent lire ce bulletin."
|
40
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
41
|
+
msgstr "Restreignez ce bulletin à certains groupes. Si aucune restriction de groupe n'est en place, tous ceux qui ont accès à ce module peuvent lire ce bulletin."
|
46
42
|
|
47
43
|
#: aa_bulletin_board/forms.py:110
|
48
44
|
msgid "You have forgotten the content!"
|
@@ -114,25 +110,25 @@ msgstr ""
|
|
114
110
|
#: aa_bulletin_board/templates/aa_bulletin_board/dashboard.html:17
|
115
111
|
msgid "This bulletin is restricted to the following group:"
|
116
112
|
msgid_plural "This bulletin is restricted to the following groups:"
|
117
|
-
msgstr[0] ""
|
118
|
-
msgstr[1] ""
|
113
|
+
msgstr[0] "Ce bulletin est restreint au groupe suivant :"
|
114
|
+
msgstr[1] "Ce bulletin est restreint aux groupes suivants :"
|
119
115
|
|
120
116
|
#: aa_bulletin_board/templates/aa_bulletin_board/dashboard.html:33
|
121
117
|
msgid "Read more"
|
122
|
-
msgstr ""
|
118
|
+
msgstr "En savoir plus"
|
123
119
|
|
124
120
|
#: aa_bulletin_board/templates/aa_bulletin_board/dashboard.html:47
|
125
121
|
msgid "No bulletins found."
|
126
|
-
msgstr ""
|
122
|
+
msgstr "Aucun bulletin trouvé."
|
127
123
|
|
128
124
|
#: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:11
|
129
125
|
msgid "Edit bulletin"
|
130
|
-
msgstr ""
|
126
|
+
msgstr "Modifier le bulletin"
|
131
127
|
|
132
128
|
#: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:14
|
133
129
|
#: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:25
|
134
130
|
msgid "Create new bulletin"
|
135
|
-
msgstr ""
|
131
|
+
msgstr "Créer un nouveau bulletin"
|
136
132
|
|
137
133
|
#: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:45
|
138
134
|
msgid "Update bulletin"
|
@@ -147,12 +143,8 @@ msgid "Add bulletin"
|
|
147
143
|
msgstr ""
|
148
144
|
|
149
145
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
150
|
-
msgid ""
|
151
|
-
"
|
152
|
-
"existing translation?"
|
153
|
-
msgstr ""
|
154
|
-
"Voulez-vous aider à traduire cette application dans votre langue ou "
|
155
|
-
"améliorer la traduction existante ?"
|
146
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
147
|
+
msgstr "Voulez-vous aider à traduire cette application dans votre langue ou améliorer la traduction existante ?"
|
156
148
|
|
157
149
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
158
150
|
msgid "Join our team of translators!"
|
@@ -164,9 +156,7 @@ msgid "Bulletin \"{bulletin__title}\" created."
|
|
164
156
|
msgstr ""
|
165
157
|
|
166
158
|
#: aa_bulletin_board/views.py:141
|
167
|
-
msgid ""
|
168
|
-
"The bulletin you are looking for does either not exist, or you don't have "
|
169
|
-
"access to it."
|
159
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
170
160
|
msgstr ""
|
171
161
|
|
172
162
|
#: aa_bulletin_board/views.py:168
|
Binary file
|
@@ -6,18 +6,17 @@
|
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
-
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"POT-Creation-Date:
|
11
|
-
"PO-Revision-Date: 2024-
|
9
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
10
|
+
"POT-Creation-Date: 2025-01-21 05:07+0100\n"
|
11
|
+
"PO-Revision-Date: 2024-12-22 21:15+0000\n"
|
12
12
|
"Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
|
13
|
-
"Language-Team: Italian <https://weblate.ppfeufer.de/projects/"
|
14
|
-
"alliance-auth-apps/aa-bulletin-board/it/>\n"
|
13
|
+
"Language-Team: Italian <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/it/>\n"
|
15
14
|
"Language: it_IT\n"
|
16
15
|
"MIME-Version: 1.0\n"
|
17
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
18
17
|
"Content-Transfer-Encoding: 8bit\n"
|
19
18
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
20
|
-
"X-Generator: Weblate 5.
|
19
|
+
"X-Generator: Weblate 5.9.2\n"
|
21
20
|
|
22
21
|
#: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
|
23
22
|
#: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
|
@@ -25,7 +24,7 @@ msgstr ""
|
|
25
24
|
#: aa_bulletin_board/templates/aa_bulletin_board/bulletin.html:5
|
26
25
|
#: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:8
|
27
26
|
msgid "Bulletin Board"
|
28
|
-
msgstr ""
|
27
|
+
msgstr "Bacheca"
|
29
28
|
|
30
29
|
#. Translators: This is the app name and version, which will appear in the Django Backend
|
31
30
|
#: aa_bulletin_board/apps.py:21
|
@@ -34,9 +33,7 @@ msgid "Bulletin Board v{__version__}"
|
|
34
33
|
msgstr ""
|
35
34
|
|
36
35
|
#: aa_bulletin_board/forms.py:63
|
37
|
-
msgid ""
|
38
|
-
"Restrict this bulletin to certain groups. If no group restrictions are in "
|
39
|
-
"place, everyone who has access to this module can read this bulletin."
|
36
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
40
37
|
msgstr ""
|
41
38
|
|
42
39
|
#: aa_bulletin_board/forms.py:110
|
@@ -136,9 +133,7 @@ msgid "Add bulletin"
|
|
136
133
|
msgstr ""
|
137
134
|
|
138
135
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
139
|
-
msgid ""
|
140
|
-
"Do you want to help translate this app into your language or improve the "
|
141
|
-
"existing translation?"
|
136
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
142
137
|
msgstr ""
|
143
138
|
|
144
139
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
@@ -151,9 +146,7 @@ msgid "Bulletin \"{bulletin__title}\" created."
|
|
151
146
|
msgstr ""
|
152
147
|
|
153
148
|
#: aa_bulletin_board/views.py:141
|
154
|
-
msgid ""
|
155
|
-
"The bulletin you are looking for does either not exist, or you don't have "
|
156
|
-
"access to it."
|
149
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
157
150
|
msgstr ""
|
158
151
|
|
159
152
|
#: aa_bulletin_board/views.py:168
|
@@ -6,12 +6,11 @@
|
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
-
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"POT-Creation-Date:
|
9
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
10
|
+
"POT-Creation-Date: 2025-01-21 05:07+0100\n"
|
11
11
|
"PO-Revision-Date: 2024-08-05 10:10+0000\n"
|
12
12
|
"Last-Translator: Anata_no_Usiro <yt23542354m@gmail.com>\n"
|
13
|
-
"Language-Team: Japanese <https://weblate.ppfeufer.de/projects/alliance-auth-"
|
14
|
-
"apps/aa-bulletin-board/ja/>\n"
|
13
|
+
"Language-Team: Japanese <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/ja/>\n"
|
15
14
|
"Language: ja\n"
|
16
15
|
"MIME-Version: 1.0\n"
|
17
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -34,12 +33,8 @@ msgid "Bulletin Board v{__version__}"
|
|
34
33
|
msgstr "掲示板 v{__version__}"
|
35
34
|
|
36
35
|
#: aa_bulletin_board/forms.py:63
|
37
|
-
msgid ""
|
38
|
-
|
39
|
-
"place, everyone who has access to this module can read this bulletin."
|
40
|
-
msgstr ""
|
41
|
-
"この情報を特定のグループに制限する。グループ制限がない場合、このモジュールに"
|
42
|
-
"アクセスできる全員がこの情報を読むことができます。"
|
36
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
37
|
+
msgstr "この情報を特定のグループに制限する。グループ制限がない場合、このモジュールにアクセスできる全員がこの情報を読むことができます。"
|
43
38
|
|
44
39
|
#: aa_bulletin_board/forms.py:110
|
45
40
|
msgid "You have forgotten the content!"
|
@@ -137,9 +132,7 @@ msgid "Add bulletin"
|
|
137
132
|
msgstr ""
|
138
133
|
|
139
134
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
140
|
-
msgid ""
|
141
|
-
"Do you want to help translate this app into your language or improve the "
|
142
|
-
"existing translation?"
|
135
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
143
136
|
msgstr ""
|
144
137
|
|
145
138
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
@@ -152,9 +145,7 @@ msgid "Bulletin \"{bulletin__title}\" created."
|
|
152
145
|
msgstr ""
|
153
146
|
|
154
147
|
#: aa_bulletin_board/views.py:141
|
155
|
-
msgid ""
|
156
|
-
"The bulletin you are looking for does either not exist, or you don't have "
|
157
|
-
"access to it."
|
148
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
158
149
|
msgstr ""
|
159
150
|
|
160
151
|
#: aa_bulletin_board/views.py:168
|
@@ -8,12 +8,11 @@
|
|
8
8
|
msgid ""
|
9
9
|
msgstr ""
|
10
10
|
"Project-Id-Version: PACKAGE VERSION\n"
|
11
|
-
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"POT-Creation-Date:
|
11
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
12
|
+
"POT-Creation-Date: 2025-01-21 05:07+0100\n"
|
13
13
|
"PO-Revision-Date: 2024-05-10 13:57+0000\n"
|
14
14
|
"Last-Translator: Rodpold Shard <rodpold@gmail.com>\n"
|
15
|
-
"Language-Team: Korean <https://weblate.ppfeufer.de/projects/alliance-auth-"
|
16
|
-
"apps/aa-bulletin-board/ko/>\n"
|
15
|
+
"Language-Team: Korean <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/ko/>\n"
|
17
16
|
"Language: ko_KR\n"
|
18
17
|
"MIME-Version: 1.0\n"
|
19
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -36,12 +35,8 @@ msgid "Bulletin Board v{__version__}"
|
|
36
35
|
msgstr "불레틴 보드 v{__version__}"
|
37
36
|
|
38
37
|
#: aa_bulletin_board/forms.py:63
|
39
|
-
msgid ""
|
40
|
-
"
|
41
|
-
"place, everyone who has access to this module can read this bulletin."
|
42
|
-
msgstr ""
|
43
|
-
"불레틴 보드의 항목을 그룹별로 열람을 제한할 수 있습니다. 그룹 제한이 없다면, "
|
44
|
-
"모듈의 접근 권한이 있는 모든 사용자가 이 항목을 열람할 수 있습니다."
|
38
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
39
|
+
msgstr "불레틴 보드의 항목을 그룹별로 열람을 제한할 수 있습니다. 그룹 제한이 없다면, 모듈의 접근 권한이 있는 모든 사용자가 이 항목을 열람할 수 있습니다."
|
45
40
|
|
46
41
|
#: aa_bulletin_board/forms.py:110
|
47
42
|
msgid "You have forgotten the content!"
|
@@ -153,9 +148,7 @@ msgid "Add bulletin"
|
|
153
148
|
msgstr "불레틴 추가"
|
154
149
|
|
155
150
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
156
|
-
msgid ""
|
157
|
-
"Do you want to help translate this app into your language or improve the "
|
158
|
-
"existing translation?"
|
151
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
159
152
|
msgstr "이 앱을 번역하거나 기존 번역을 개선하고 싶으신가요?"
|
160
153
|
|
161
154
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
@@ -169,12 +162,8 @@ msgstr "불레틴 “{bulletin__title}” 생성됨."
|
|
169
162
|
|
170
163
|
#: aa_bulletin_board/views.py:141
|
171
164
|
#, fuzzy
|
172
|
-
#| msgid ""
|
173
|
-
|
174
|
-
#| "to it."
|
175
|
-
msgid ""
|
176
|
-
"The bulletin you are looking for does either not exist, or you don't have "
|
177
|
-
"access to it."
|
165
|
+
#| msgid "The bulletin you are looking for does not exist, or you don't have access to it."
|
166
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
178
167
|
msgstr "찾는 불레틴이 없거나, 열람 권한이 없습니다."
|
179
168
|
|
180
169
|
#: aa_bulletin_board/views.py:168
|
@@ -6,12 +6,11 @@
|
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
-
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"POT-Creation-Date:
|
9
|
+
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
|
10
|
+
"POT-Creation-Date: 2025-01-21 05:07+0100\n"
|
11
11
|
"PO-Revision-Date: 2024-05-10 13:57+0000\n"
|
12
12
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
13
|
-
"Language-Team: Dutch <https://weblate.ppfeufer.de/projects/alliance-auth-"
|
14
|
-
"apps/aa-bulletin-board/nl/>\n"
|
13
|
+
"Language-Team: Dutch <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/nl/>\n"
|
15
14
|
"Language: nl_NL\n"
|
16
15
|
"MIME-Version: 1.0\n"
|
17
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -34,9 +33,7 @@ msgid "Bulletin Board v{__version__}"
|
|
34
33
|
msgstr ""
|
35
34
|
|
36
35
|
#: aa_bulletin_board/forms.py:63
|
37
|
-
msgid ""
|
38
|
-
"Restrict this bulletin to certain groups. If no group restrictions are in "
|
39
|
-
"place, everyone who has access to this module can read this bulletin."
|
36
|
+
msgid "Restrict this bulletin to certain groups. If no group restrictions are in place, everyone who has access to this module can read this bulletin."
|
40
37
|
msgstr ""
|
41
38
|
|
42
39
|
#: aa_bulletin_board/forms.py:110
|
@@ -136,9 +133,7 @@ msgid "Add bulletin"
|
|
136
133
|
msgstr ""
|
137
134
|
|
138
135
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
|
139
|
-
msgid ""
|
140
|
-
"Do you want to help translate this app into your language or improve the "
|
141
|
-
"existing translation?"
|
136
|
+
msgid "Do you want to help translate this app into your language or improve the existing translation?"
|
142
137
|
msgstr ""
|
143
138
|
|
144
139
|
#: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
|
@@ -151,9 +146,7 @@ msgid "Bulletin \"{bulletin__title}\" created."
|
|
151
146
|
msgstr ""
|
152
147
|
|
153
148
|
#: aa_bulletin_board/views.py:141
|
154
|
-
msgid ""
|
155
|
-
"The bulletin you are looking for does either not exist, or you don't have "
|
156
|
-
"access to it."
|
149
|
+
msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
|
157
150
|
msgstr ""
|
158
151
|
|
159
152
|
#: aa_bulletin_board/views.py:168
|