aa-bulletin-board 2.2.5__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.
Files changed (33) hide show
  1. aa_bulletin_board/__init__.py +1 -1
  2. aa_bulletin_board/constants.py +11 -0
  3. aa_bulletin_board/helper/__init__.py +0 -0
  4. aa_bulletin_board/helper/static_files.py +39 -0
  5. aa_bulletin_board/locale/cs_CZ/LC_MESSAGES/django.po +8 -20
  6. aa_bulletin_board/locale/de/LC_MESSAGES/django.po +8 -21
  7. aa_bulletin_board/locale/django.pot +1 -1
  8. aa_bulletin_board/locale/es/LC_MESSAGES/django.po +8 -21
  9. aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  10. aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.po +14 -25
  11. aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  12. aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.po +8 -15
  13. aa_bulletin_board/locale/ja/LC_MESSAGES/django.po +6 -15
  14. aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.po +7 -18
  15. aa_bulletin_board/locale/nl_NL/LC_MESSAGES/django.po +5 -12
  16. aa_bulletin_board/locale/pl_PL/LC_MESSAGES/django.po +7 -17
  17. aa_bulletin_board/locale/ru/LC_MESSAGES/django.po +8 -20
  18. aa_bulletin_board/locale/sk/LC_MESSAGES/django.po +6 -14
  19. aa_bulletin_board/locale/uk/LC_MESSAGES/django.po +9 -24
  20. aa_bulletin_board/locale/zh_Hans/LC_MESSAGES/django.po +6 -15
  21. aa_bulletin_board/templates/aa_bulletin_board/bundles/aa-bulletin-board-css.html +1 -1
  22. aa_bulletin_board/templates/aa_bulletin_board/bundles/aa-bulletin-board-equal-height-js.html +1 -1
  23. aa_bulletin_board/templates/aa_bulletin_board/bundles/aa-bulletin-board-oembed-js.html +1 -1
  24. aa_bulletin_board/templates/aa_bulletin_board/bundles/ckeditor5-css.html +2 -2
  25. aa_bulletin_board/templates/aa_bulletin_board/bundles/ckeditor5-js.html +2 -2
  26. aa_bulletin_board/templates/aa_bulletin_board/bundles/sumoselect-css.html +2 -2
  27. aa_bulletin_board/templates/aa_bulletin_board/bundles/sumoselect-js.html +2 -2
  28. aa_bulletin_board/templatetags/aa_bulletin_board.py +57 -9
  29. aa_bulletin_board/tests/test_templatetags.py +47 -7
  30. {aa_bulletin_board-2.2.5.dist-info → aa_bulletin_board-2.3.0.dist-info}/METADATA +21 -21
  31. {aa_bulletin_board-2.2.5.dist-info → aa_bulletin_board-2.3.0.dist-info}/RECORD +33 -30
  32. {aa_bulletin_board-2.2.5.dist-info → aa_bulletin_board-2.3.0.dist-info}/WHEEL +1 -1
  33. {aa_bulletin_board-2.2.5.dist-info → aa_bulletin_board-2.3.0.dist-info}/licenses/LICENSE +0 -0
@@ -5,5 +5,5 @@ App init
5
5
  # Django
6
6
  from django.utils.translation import gettext_lazy as _
7
7
 
8
- __version__ = "2.2.5"
8
+ __version__ = "2.3.0"
9
9
  __title__ = _("Bulletin Board")
@@ -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
@@ -6,17 +6,15 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: PACKAGE VERSION\n"
8
8
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
9
- "POT-Creation-Date: 2024-12-14 13:27+0100\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
- "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."
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
- "Do you want to help translate this app into your language or improve the "
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
@@ -6,11 +6,10 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: PACKAGE VERSION\n"
8
8
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
9
- "POT-Creation-Date: 2024-12-14 13:27+0100\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
- "Restrict this bulletin to certain groups. If no group restrictions are in "
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
- "Do you want to help translate this app into your language or improve the "
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
- "The bulletin you are looking for does either not exist, or you don't have "
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."
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
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: 2024-12-14 13:27+0100\n"
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"
@@ -8,11 +8,10 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
10
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
11
- "POT-Creation-Date: 2024-12-14 13:27+0100\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/alliance-auth-"
15
- "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
- "Restrict this bulletin to certain groups. If no group restrictions are in "
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
- "Do you want to help translate this app into your language or improve the "
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
- #| "The bulletin you are looking for does not exist, or you don't have access "
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
@@ -5,22 +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.
8
+ # balbozorre <loic.petiot2002@gmail.com>, 2024, 2025.
9
9
  msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: PACKAGE VERSION\n"
12
12
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
13
- "POT-Creation-Date: 2024-12-14 13:27+0100\n"
14
- "PO-Revision-Date: 2024-12-13 17:15+0000\n"
13
+ "POT-Creation-Date: 2025-01-21 05:07+0100\n"
14
+ "PO-Revision-Date: 2025-01-19 19:17+0000\n"
15
15
  "Last-Translator: balbozorre <loic.petiot2002@gmail.com>\n"
16
- "Language-Team: French <https://weblate.ppfeufer.de/projects/alliance-auth-"
17
- "apps/aa-bulletin-board/fr/>\n"
16
+ "Language-Team: French <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/fr/>\n"
18
17
  "Language: fr_FR\n"
19
18
  "MIME-Version: 1.0\n"
20
19
  "Content-Type: text/plain; charset=UTF-8\n"
21
20
  "Content-Transfer-Encoding: 8bit\n"
22
21
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
23
- "X-Generator: Weblate 5.8.4\n"
22
+ "X-Generator: Weblate 5.9.2\n"
24
23
 
25
24
  #: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
26
25
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
@@ -38,12 +37,8 @@ msgstr "Tableau d'affichage v{__version__}"
38
37
 
39
38
  #: aa_bulletin_board/forms.py:63
40
39
  #, fuzzy
41
- msgid ""
42
- "Restrict this bulletin to certain groups. If no group restrictions are in "
43
- "place, everyone who has access to this module can read this bulletin."
44
- msgstr ""
45
- "Restreignez ce bulletin à certains groupes. Si aucune restriction de groupe "
46
- "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."
47
42
 
48
43
  #: aa_bulletin_board/forms.py:110
49
44
  msgid "You have forgotten the content!"
@@ -120,20 +115,20 @@ msgstr[1] "Ce bulletin est restreint aux groupes suivants :"
120
115
 
121
116
  #: aa_bulletin_board/templates/aa_bulletin_board/dashboard.html:33
122
117
  msgid "Read more"
123
- msgstr ""
118
+ msgstr "En savoir plus"
124
119
 
125
120
  #: aa_bulletin_board/templates/aa_bulletin_board/dashboard.html:47
126
121
  msgid "No bulletins found."
127
- msgstr ""
122
+ msgstr "Aucun bulletin trouvé."
128
123
 
129
124
  #: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:11
130
125
  msgid "Edit bulletin"
131
- msgstr ""
126
+ msgstr "Modifier le bulletin"
132
127
 
133
128
  #: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:14
134
129
  #: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:25
135
130
  msgid "Create new bulletin"
136
- msgstr ""
131
+ msgstr "Créer un nouveau bulletin"
137
132
 
138
133
  #: aa_bulletin_board/templates/aa_bulletin_board/edit-bulletin.html:45
139
134
  msgid "Update bulletin"
@@ -148,12 +143,8 @@ msgid "Add bulletin"
148
143
  msgstr ""
149
144
 
150
145
  #: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:5
151
- msgid ""
152
- "Do you want to help translate this app into your language or improve the "
153
- "existing translation?"
154
- msgstr ""
155
- "Voulez-vous aider à traduire cette application dans votre langue ou "
156
- "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 ?"
157
148
 
158
149
  #: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
159
150
  msgid "Join our team of translators!"
@@ -165,9 +156,7 @@ msgid "Bulletin \"{bulletin__title}\" created."
165
156
  msgstr ""
166
157
 
167
158
  #: aa_bulletin_board/views.py:141
168
- msgid ""
169
- "The bulletin you are looking for does either not exist, or you don't have "
170
- "access to it."
159
+ msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
171
160
  msgstr ""
172
161
 
173
162
  #: aa_bulletin_board/views.py:168
@@ -7,17 +7,16 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
9
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
10
- "POT-Creation-Date: 2024-12-14 13:27+0100\n"
11
- "PO-Revision-Date: 2024-11-06 20:10+0000\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/alliance-auth-"
14
- "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.8.2\n"
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
@@ -7,11 +7,10 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
9
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
10
- "POT-Creation-Date: 2024-12-14 13:27+0100\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
- "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."
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
@@ -9,11 +9,10 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: PACKAGE VERSION\n"
11
11
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
12
- "POT-Creation-Date: 2024-12-14 13:27+0100\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
- "Restrict this bulletin to certain groups. If no group restrictions are in "
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
- #| "The bulletin you are looking for does not exist, or you don't have access "
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
@@ -7,11 +7,10 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
9
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
10
- "POT-Creation-Date: 2024-12-14 13:27+0100\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
@@ -6,17 +6,15 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: PACKAGE VERSION\n"
8
8
  "Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-bulletin-board/issues\n"
9
- "POT-Creation-Date: 2024-12-14 13:27+0100\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: Polish <https://weblate.ppfeufer.de/projects/alliance-auth-"
13
- "apps/aa-bulletin-board/pl/>\n"
12
+ "Language-Team: Polish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/pl/>\n"
14
13
  "Language: pl_PL\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=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
19
- "|| n%100>=20) ? 1 : 2;\n"
17
+ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
20
18
  "X-Generator: Weblate 5.5.3\n"
21
19
 
22
20
  #: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
@@ -34,9 +32,7 @@ msgid "Bulletin Board v{__version__}"
34
32
  msgstr ""
35
33
 
36
34
  #: 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."
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."
40
36
  msgstr ""
41
37
 
42
38
  #: aa_bulletin_board/forms.py:110
@@ -137,12 +133,8 @@ msgid "Add bulletin"
137
133
  msgstr ""
138
134
 
139
135
  #: 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?"
143
- msgstr ""
144
- "Chciałbyś pomóc w tłumaczeniu tej apki na Twój język bądź poprawić aktualne "
145
- "tłumaczenia?"
136
+ msgid "Do you want to help translate this app into your language or improve the existing translation?"
137
+ msgstr "Chciałbyś pomóc w tłumaczeniu tej apki na Twój język bądź poprawić aktualne tłumaczenia?"
146
138
 
147
139
  #: aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html:8
148
140
  msgid "Join our team of translators!"
@@ -154,9 +146,7 @@ msgid "Bulletin \"{bulletin__title}\" created."
154
146
  msgstr ""
155
147
 
156
148
  #: aa_bulletin_board/views.py:141
157
- msgid ""
158
- "The bulletin you are looking for does either not exist, or you don't have "
159
- "access to it."
149
+ msgid "The bulletin you are looking for does either not exist, or you don't have access to it."
160
150
  msgstr ""
161
151
 
162
152
  #: aa_bulletin_board/views.py:168