aa-bulletin-board 2.3.0__py3-none-any.whl → 2.3.2__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 (29) hide show
  1. aa_bulletin_board/__init__.py +4 -4
  2. aa_bulletin_board/app_settings.py +20 -0
  3. aa_bulletin_board/apps.py +3 -2
  4. aa_bulletin_board/constants.py +10 -4
  5. aa_bulletin_board/helper/__init__.py +3 -0
  6. aa_bulletin_board/helper/static_files.py +7 -4
  7. aa_bulletin_board/locale/cs_CZ/LC_MESSAGES/django.po +18 -18
  8. aa_bulletin_board/locale/de/LC_MESSAGES/django.po +18 -18
  9. aa_bulletin_board/locale/django.pot +19 -19
  10. aa_bulletin_board/locale/es/LC_MESSAGES/django.po +18 -18
  11. aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.po +22 -23
  12. aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.po +18 -18
  13. aa_bulletin_board/locale/ja/LC_MESSAGES/django.po +18 -18
  14. aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.po +18 -18
  15. aa_bulletin_board/locale/nl_NL/LC_MESSAGES/django.po +18 -18
  16. aa_bulletin_board/locale/pl_PL/LC_MESSAGES/django.po +18 -18
  17. aa_bulletin_board/locale/ru/LC_MESSAGES/django.po +18 -18
  18. aa_bulletin_board/locale/sk/LC_MESSAGES/django.po +18 -18
  19. aa_bulletin_board/locale/uk/LC_MESSAGES/django.mo +0 -0
  20. aa_bulletin_board/locale/uk/LC_MESSAGES/django.po +25 -24
  21. aa_bulletin_board/locale/zh_Hans/LC_MESSAGES/django.po +18 -18
  22. aa_bulletin_board/models.py +2 -1
  23. aa_bulletin_board/templatetags/aa_bulletin_board.py +21 -8
  24. aa_bulletin_board/tests/test_settings.py +37 -0
  25. aa_bulletin_board/tests/test_templatetags.py +23 -3
  26. {aa_bulletin_board-2.3.0.dist-info → aa_bulletin_board-2.3.2.dist-info}/METADATA +1 -1
  27. {aa_bulletin_board-2.3.0.dist-info → aa_bulletin_board-2.3.2.dist-info}/RECORD +29 -27
  28. {aa_bulletin_board-2.3.0.dist-info → aa_bulletin_board-2.3.2.dist-info}/WHEEL +0 -0
  29. {aa_bulletin_board-2.3.0.dist-info → aa_bulletin_board-2.3.2.dist-info}/licenses/LICENSE +0 -0
@@ -2,8 +2,8 @@
2
2
  App init
3
3
  """
4
4
 
5
- # Django
6
- from django.utils.translation import gettext_lazy as _
5
+ # AA Bulletin Board
6
+ from aa_bulletin_board.constants import APP_TITLE
7
7
 
8
- __version__ = "2.3.0"
9
- __title__ = _("Bulletin Board")
8
+ __version__ = "2.3.2"
9
+ __title__ = APP_TITLE
@@ -0,0 +1,20 @@
1
+ """
2
+ App settings
3
+ """
4
+
5
+ # Standard Library
6
+ from re import RegexFlag
7
+
8
+ # Django
9
+ from django.conf import settings
10
+
11
+
12
+ def debug_enabled() -> RegexFlag:
13
+ """
14
+ Check if DEBUG is enabled
15
+
16
+ :return:
17
+ :rtype:
18
+ """
19
+
20
+ return settings.DEBUG
aa_bulletin_board/apps.py CHANGED
@@ -8,6 +8,7 @@ from django.utils.translation import gettext_lazy as _
8
8
 
9
9
  # AA Bulletin Board
10
10
  from aa_bulletin_board import __version__
11
+ from aa_bulletin_board.constants import PACKAGE_NAME
11
12
 
12
13
 
13
14
  class AaBulletinBoardConfig(AppConfig):
@@ -15,7 +16,7 @@ class AaBulletinBoardConfig(AppConfig):
15
16
  Application config
16
17
  """
17
18
 
18
- name = "aa_bulletin_board"
19
- label = "aa_bulletin_board"
19
+ name = PACKAGE_NAME
20
+ label = PACKAGE_NAME
20
21
  # Translators: This is the app name and version, which will appear in the Django Backend
21
22
  verbose_name = _(f"Bulletin Board v{__version__}")
@@ -5,7 +5,13 @@ Constants used in this app
5
5
  # Standard Library
6
6
  import os
7
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
- )
8
+ # Django
9
+ from django.utils.translation import gettext_lazy as _
10
+
11
+ APP_NAME = "aa-bulletin-board"
12
+ APP_NAME_VERBOSE = "AA Bulletin Board"
13
+ APP_TITLE = _("Bulletin Board")
14
+ PACKAGE_NAME = "aa_bulletin_board"
15
+ APP_BASE_DIR = os.path.join(os.path.dirname(__file__))
16
+ APP_STATIC_DIR = os.path.join(APP_BASE_DIR, "static", PACKAGE_NAME)
17
+ GITHUB_URL = f"https://github.com/ppfeufer/{APP_NAME}"
@@ -0,0 +1,3 @@
1
+ """
2
+ Initialization file for the helper module.
3
+ """
@@ -17,7 +17,7 @@ from app_utils.logging import LoggerAddTag
17
17
 
18
18
  # AA Bulletin Board
19
19
  from aa_bulletin_board import __title__
20
- from aa_bulletin_board.constants import AA_BULLETIN_BOARD_STATIC_DIR
20
+ from aa_bulletin_board.constants import APP_STATIC_DIR
21
21
 
22
22
  logger = LoggerAddTag(my_logger=get_extension_logger(__name__), prefix=__title__)
23
23
 
@@ -25,15 +25,18 @@ logger = LoggerAddTag(my_logger=get_extension_logger(__name__), prefix=__title__
25
25
  def calculate_integrity_hash(relative_file_path: str) -> str:
26
26
  """
27
27
  Calculates the integrity hash for a given static file
28
+
28
29
  :param self:
29
30
  :type self:
30
- :param relative_file_path: The file path relative to the `aa-timezones/timezones/static/timezones` folder
31
+ :param relative_file_path: The file path relative to the `{APP_NAME}/{PACKAGE_NAME}/static/{PACKAGE_NAME}` folder
31
32
  :type relative_file_path: str
32
33
  :return: The integrity hash
33
34
  :rtype: str
34
35
  """
35
36
 
36
- file_path = os.path.join(AA_BULLETIN_BOARD_STATIC_DIR, relative_file_path)
37
- integrity_hash = calculate_integrity(Path(file_path), Algorithm.SHA512)
37
+ file_path = os.path.join(APP_STATIC_DIR, relative_file_path)
38
+ integrity_hash = calculate_integrity(
39
+ path=Path(file_path), algorithm=Algorithm.SHA512
40
+ )
38
41
 
39
42
  return integrity_hash
@@ -6,7 +6,7 @@ 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: 2025-01-21 05:07+0100\n"
9
+ "POT-Creation-Date: 2025-03-06 15:55+0100\n"
10
10
  "PO-Revision-Date: 2024-07-10 14:26+0000\n"
11
11
  "Last-Translator: Dadas Aideron <dadas.aideron@gmail.com>\n"
12
12
  "Language-Team: Czech <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/cs/>\n"
@@ -17,7 +17,13 @@ msgstr ""
17
17
  "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
18
18
  "X-Generator: Weblate 5.6.2\n"
19
19
 
20
- #: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
20
+ #. Translators: This is the app name and version, which will appear in the Django Backend
21
+ #: aa_bulletin_board/apps.py:22
22
+ #, python-brace-format
23
+ msgid "Bulletin Board v{__version__}"
24
+ msgstr "Nástěnka v{__version__}"
25
+
26
+ #: aa_bulletin_board/constants.py:13
21
27
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
22
28
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:10
23
29
  #: aa_bulletin_board/templates/aa_bulletin_board/bulletin.html:5
@@ -25,12 +31,6 @@ msgstr ""
25
31
  msgid "Bulletin Board"
26
32
  msgstr "Nástěnka"
27
33
 
28
- #. Translators: This is the app name and version, which will appear in the Django Backend
29
- #: aa_bulletin_board/apps.py:21
30
- #, python-brace-format
31
- msgid "Bulletin Board v{__version__}"
32
- msgstr "Nástěnka v{__version__}"
33
-
34
34
  #: aa_bulletin_board/forms.py:63
35
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
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."
@@ -39,45 +39,45 @@ msgstr "Omez nástěnku pro určité skupiny. Pokud nejsou nastavena žádná om
39
39
  msgid "You have forgotten the content!"
40
40
  msgstr "Zapomněl jsi obsah!"
41
41
 
42
- #: aa_bulletin_board/models.py:71
42
+ #: aa_bulletin_board/models.py:72
43
43
  msgid "Can access this app"
44
44
  msgstr "Má přístup k této aplikaci"
45
45
 
46
- #: aa_bulletin_board/models.py:72
46
+ #: aa_bulletin_board/models.py:73
47
47
  msgid "Can manage (add/change/remove) bulletins"
48
48
  msgstr "Může spravovat (přidat, měnit, odstranit) nástěnky"
49
49
 
50
- #: aa_bulletin_board/models.py:81
50
+ #: aa_bulletin_board/models.py:82
51
51
  msgid "Title"
52
52
  msgstr "Nadpis"
53
53
 
54
- #: aa_bulletin_board/models.py:84
54
+ #: aa_bulletin_board/models.py:85
55
55
  msgid "Content"
56
56
  msgstr "Obsah"
57
57
 
58
58
  #. Translators: This is the date and time the bulletin has been created
59
- #: aa_bulletin_board/models.py:90
59
+ #: aa_bulletin_board/models.py:91
60
60
  msgid "Created"
61
61
  msgstr "Vytvořeno"
62
62
 
63
63
  #. Translators: This is the date and time the bulletin has been updated
64
- #: aa_bulletin_board/models.py:96
64
+ #: aa_bulletin_board/models.py:97
65
65
  msgid "Updated"
66
66
  msgstr "Upraveno"
67
67
 
68
- #: aa_bulletin_board/models.py:105
68
+ #: aa_bulletin_board/models.py:106
69
69
  msgid "User"
70
70
  msgstr "Uživatel"
71
71
 
72
- #: aa_bulletin_board/models.py:111
72
+ #: aa_bulletin_board/models.py:112
73
73
  msgid "Group restrictions"
74
74
  msgstr "Omezení skupiny"
75
75
 
76
- #: aa_bulletin_board/models.py:122
76
+ #: aa_bulletin_board/models.py:123
77
77
  msgid "Bulletin"
78
78
  msgstr "Nástěnka"
79
79
 
80
- #: aa_bulletin_board/models.py:123
80
+ #: aa_bulletin_board/models.py:124
81
81
  msgid "Bulletins"
82
82
  msgstr "Nástěnky"
83
83
 
@@ -6,7 +6,7 @@ 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: 2025-01-21 05:07+0100\n"
9
+ "POT-Creation-Date: 2025-03-06 15:55+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
12
  "Language-Team: German <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/de/>\n"
@@ -17,7 +17,13 @@ msgstr ""
17
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
18
  "X-Generator: Weblate 5.5.3\n"
19
19
 
20
- #: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
20
+ #. Translators: This is the app name and version, which will appear in the Django Backend
21
+ #: aa_bulletin_board/apps.py:22
22
+ #, python-brace-format
23
+ msgid "Bulletin Board v{__version__}"
24
+ msgstr "Bulletin Board v{__version__}"
25
+
26
+ #: aa_bulletin_board/constants.py:13
21
27
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
22
28
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:10
23
29
  #: aa_bulletin_board/templates/aa_bulletin_board/bulletin.html:5
@@ -25,12 +31,6 @@ msgstr ""
25
31
  msgid "Bulletin Board"
26
32
  msgstr "Bulletin Board"
27
33
 
28
- #. Translators: This is the app name and version, which will appear in the Django Backend
29
- #: aa_bulletin_board/apps.py:21
30
- #, python-brace-format
31
- msgid "Bulletin Board v{__version__}"
32
- msgstr "Bulletin Board v{__version__}"
33
-
34
34
  #: aa_bulletin_board/forms.py:63
35
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
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."
@@ -39,45 +39,45 @@ msgstr "Beschränkt dieses Bulletin auf bestimmte Gruppen. Wenn keine Gruppenbes
39
39
  msgid "You have forgotten the content!"
40
40
  msgstr "Du hast den Inhalt vergessen!"
41
41
 
42
- #: aa_bulletin_board/models.py:71
42
+ #: aa_bulletin_board/models.py:72
43
43
  msgid "Can access this app"
44
44
  msgstr "Kann auf diese App zugreifen"
45
45
 
46
- #: aa_bulletin_board/models.py:72
46
+ #: aa_bulletin_board/models.py:73
47
47
  msgid "Can manage (add/change/remove) bulletins"
48
48
  msgstr "Kann Bulletins verwalten (hinzufügen/ändern/entfernen)"
49
49
 
50
- #: aa_bulletin_board/models.py:81
50
+ #: aa_bulletin_board/models.py:82
51
51
  msgid "Title"
52
52
  msgstr "Titel"
53
53
 
54
- #: aa_bulletin_board/models.py:84
54
+ #: aa_bulletin_board/models.py:85
55
55
  msgid "Content"
56
56
  msgstr "Inhalt"
57
57
 
58
58
  #. Translators: This is the date and time the bulletin has been created
59
- #: aa_bulletin_board/models.py:90
59
+ #: aa_bulletin_board/models.py:91
60
60
  msgid "Created"
61
61
  msgstr "Erstellt"
62
62
 
63
63
  #. Translators: This is the date and time the bulletin has been updated
64
- #: aa_bulletin_board/models.py:96
64
+ #: aa_bulletin_board/models.py:97
65
65
  msgid "Updated"
66
66
  msgstr "Aktualisiert"
67
67
 
68
- #: aa_bulletin_board/models.py:105
68
+ #: aa_bulletin_board/models.py:106
69
69
  msgid "User"
70
70
  msgstr "Nutzer"
71
71
 
72
- #: aa_bulletin_board/models.py:111
72
+ #: aa_bulletin_board/models.py:112
73
73
  msgid "Group restrictions"
74
74
  msgstr "Gruppenbeschränkungen"
75
75
 
76
- #: aa_bulletin_board/models.py:122
76
+ #: aa_bulletin_board/models.py:123
77
77
  msgid "Bulletin"
78
78
  msgstr "Bulletin"
79
79
 
80
- #: aa_bulletin_board/models.py:123
80
+ #: aa_bulletin_board/models.py:124
81
81
  msgid "Bulletins"
82
82
  msgstr "Bulletins"
83
83
 
@@ -6,9 +6,9 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: AA Bulletin Board 2.2.5\n"
9
+ "Project-Id-Version: AA Bulletin Board 2.3.2\n"
10
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"
11
+ "POT-Creation-Date: 2025-03-06 15:55+0100\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,13 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
21
+ #. Translators: This is the app name and version, which will appear in the Django Backend
22
+ #: aa_bulletin_board/apps.py:22
23
+ #, python-brace-format
24
+ msgid "Bulletin Board v{__version__}"
25
+ msgstr ""
26
+
27
+ #: aa_bulletin_board/constants.py:13
22
28
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
23
29
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:10
24
30
  #: aa_bulletin_board/templates/aa_bulletin_board/bulletin.html:5
@@ -26,12 +32,6 @@ msgstr ""
26
32
  msgid "Bulletin Board"
27
33
  msgstr ""
28
34
 
29
- #. Translators: This is the app name and version, which will appear in the Django Backend
30
- #: aa_bulletin_board/apps.py:21
31
- #, python-brace-format
32
- msgid "Bulletin Board v{__version__}"
33
- msgstr ""
34
-
35
35
  #: aa_bulletin_board/forms.py:63
36
36
  msgid ""
37
37
  "Restrict this bulletin to certain groups. If no group restrictions are in "
@@ -42,45 +42,45 @@ msgstr ""
42
42
  msgid "You have forgotten the content!"
43
43
  msgstr ""
44
44
 
45
- #: aa_bulletin_board/models.py:71
45
+ #: aa_bulletin_board/models.py:72
46
46
  msgid "Can access this app"
47
47
  msgstr ""
48
48
 
49
- #: aa_bulletin_board/models.py:72
49
+ #: aa_bulletin_board/models.py:73
50
50
  msgid "Can manage (add/change/remove) bulletins"
51
51
  msgstr ""
52
52
 
53
- #: aa_bulletin_board/models.py:81
53
+ #: aa_bulletin_board/models.py:82
54
54
  msgid "Title"
55
55
  msgstr ""
56
56
 
57
- #: aa_bulletin_board/models.py:84
57
+ #: aa_bulletin_board/models.py:85
58
58
  msgid "Content"
59
59
  msgstr ""
60
60
 
61
61
  #. Translators: This is the date and time the bulletin has been created
62
- #: aa_bulletin_board/models.py:90
62
+ #: aa_bulletin_board/models.py:91
63
63
  msgid "Created"
64
64
  msgstr ""
65
65
 
66
66
  #. Translators: This is the date and time the bulletin has been updated
67
- #: aa_bulletin_board/models.py:96
67
+ #: aa_bulletin_board/models.py:97
68
68
  msgid "Updated"
69
69
  msgstr ""
70
70
 
71
- #: aa_bulletin_board/models.py:105
71
+ #: aa_bulletin_board/models.py:106
72
72
  msgid "User"
73
73
  msgstr ""
74
74
 
75
- #: aa_bulletin_board/models.py:111
75
+ #: aa_bulletin_board/models.py:112
76
76
  msgid "Group restrictions"
77
77
  msgstr ""
78
78
 
79
- #: aa_bulletin_board/models.py:122
79
+ #: aa_bulletin_board/models.py:123
80
80
  msgid "Bulletin"
81
81
  msgstr ""
82
82
 
83
- #: aa_bulletin_board/models.py:123
83
+ #: aa_bulletin_board/models.py:124
84
84
  msgid "Bulletins"
85
85
  msgstr ""
86
86
 
@@ -8,7 +8,7 @@ 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: 2025-01-21 05:07+0100\n"
11
+ "POT-Creation-Date: 2025-03-06 15:55+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
14
  "Language-Team: Spanish <https://weblate.ppfeufer.de/projects/alliance-auth-apps/aa-bulletin-board/es/>\n"
@@ -19,7 +19,13 @@ msgstr ""
19
19
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
20
  "X-Generator: Weblate 5.8.4\n"
21
21
 
22
- #: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
22
+ #. Translators: This is the app name and version, which will appear in the Django Backend
23
+ #: aa_bulletin_board/apps.py:22
24
+ #, python-brace-format
25
+ msgid "Bulletin Board v{__version__}"
26
+ msgstr "Tablón de Anuncios v{__version__}"
27
+
28
+ #: aa_bulletin_board/constants.py:13
23
29
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
24
30
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:10
25
31
  #: aa_bulletin_board/templates/aa_bulletin_board/bulletin.html:5
@@ -27,12 +33,6 @@ msgstr ""
27
33
  msgid "Bulletin Board"
28
34
  msgstr "Tablón de Anuncios"
29
35
 
30
- #. Translators: This is the app name and version, which will appear in the Django Backend
31
- #: aa_bulletin_board/apps.py:21
32
- #, python-brace-format
33
- msgid "Bulletin Board v{__version__}"
34
- msgstr "Tablón de Anuncios v{__version__}"
35
-
36
36
  #: aa_bulletin_board/forms.py:63
37
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
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."
@@ -41,45 +41,45 @@ msgstr "Restringir este anuncio a ciertos grupos. Si no existen restricciones de
41
41
  msgid "You have forgotten the content!"
42
42
  msgstr "Ha olvidado el contenido"
43
43
 
44
- #: aa_bulletin_board/models.py:71
44
+ #: aa_bulletin_board/models.py:72
45
45
  msgid "Can access this app"
46
46
  msgstr "Puede acceder esta aplicacion"
47
47
 
48
- #: aa_bulletin_board/models.py:72
48
+ #: aa_bulletin_board/models.py:73
49
49
  msgid "Can manage (add/change/remove) bulletins"
50
50
  msgstr ""
51
51
 
52
- #: aa_bulletin_board/models.py:81
52
+ #: aa_bulletin_board/models.py:82
53
53
  msgid "Title"
54
54
  msgstr "Título"
55
55
 
56
- #: aa_bulletin_board/models.py:84
56
+ #: aa_bulletin_board/models.py:85
57
57
  msgid "Content"
58
58
  msgstr "Contenido"
59
59
 
60
60
  #. Translators: This is the date and time the bulletin has been created
61
- #: aa_bulletin_board/models.py:90
61
+ #: aa_bulletin_board/models.py:91
62
62
  msgid "Created"
63
63
  msgstr "Creado"
64
64
 
65
65
  #. Translators: This is the date and time the bulletin has been updated
66
- #: aa_bulletin_board/models.py:96
66
+ #: aa_bulletin_board/models.py:97
67
67
  msgid "Updated"
68
68
  msgstr "Actualizado"
69
69
 
70
- #: aa_bulletin_board/models.py:105
70
+ #: aa_bulletin_board/models.py:106
71
71
  msgid "User"
72
72
  msgstr "Usuario"
73
73
 
74
- #: aa_bulletin_board/models.py:111
74
+ #: aa_bulletin_board/models.py:112
75
75
  msgid "Group restrictions"
76
76
  msgstr "Restricciones de grupo"
77
77
 
78
- #: aa_bulletin_board/models.py:122
78
+ #: aa_bulletin_board/models.py:123
79
79
  msgid "Bulletin"
80
80
  msgstr "Anuncio"
81
81
 
82
- #: aa_bulletin_board/models.py:123
82
+ #: aa_bulletin_board/models.py:124
83
83
  msgid "Bulletins"
84
84
  msgstr "Anuncios"
85
85
 
@@ -2,7 +2,7 @@
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the PACKAGE package.
4
4
  # erka Ekanon <M6musicT@hotmail.fr>, 2024.
5
- # Peter Pfeufer <info@ppfeufer.de>, 2024.
5
+ # Peter Pfeufer <info@ppfeufer.de>, 2024, 2025.
6
6
  # Hexo <ghostcig@free.fr>, 2024.
7
7
  # Houbi_Houba <paul.lacape@live.fr>, 2024.
8
8
  # balbozorre <loic.petiot2002@gmail.com>, 2024, 2025.
@@ -10,9 +10,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: 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"
13
+ "POT-Creation-Date: 2025-03-06 15:55+0100\n"
14
+ "PO-Revision-Date: 2025-01-22 06:17+0000\n"
15
+ "Last-Translator: Peter Pfeufer <info@ppfeufer.de>\n"
16
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"
@@ -21,7 +21,13 @@ msgstr ""
21
21
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
22
22
  "X-Generator: Weblate 5.9.2\n"
23
23
 
24
- #: aa_bulletin_board/__init__.py:9 aa_bulletin_board/models.py:67
24
+ #. Translators: This is the app name and version, which will appear in the Django Backend
25
+ #: aa_bulletin_board/apps.py:22
26
+ #, python-brace-format
27
+ msgid "Bulletin Board v{__version__}"
28
+ msgstr "Tableau d'affichage v{__version__}"
29
+
30
+ #: aa_bulletin_board/constants.py:13
25
31
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:6
26
32
  #: aa_bulletin_board/templates/aa_bulletin_board/base.html:10
27
33
  #: aa_bulletin_board/templates/aa_bulletin_board/bulletin.html:5
@@ -29,12 +35,6 @@ msgstr ""
29
35
  msgid "Bulletin Board"
30
36
  msgstr "Tableau d'affichage"
31
37
 
32
- #. Translators: This is the app name and version, which will appear in the Django Backend
33
- #: aa_bulletin_board/apps.py:21
34
- #, python-brace-format
35
- msgid "Bulletin Board v{__version__}"
36
- msgstr "Tableau d'affichage v{__version__}"
37
-
38
38
  #: aa_bulletin_board/forms.py:63
39
39
  #, fuzzy
40
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."
@@ -44,51 +44,50 @@ msgstr "Restreignez ce bulletin à certains groupes. Si aucune restriction de gr
44
44
  msgid "You have forgotten the content!"
45
45
  msgstr "Vous avez oublié le contenu !"
46
46
 
47
- #: aa_bulletin_board/models.py:71
47
+ #: aa_bulletin_board/models.py:72
48
48
  msgid "Can access this app"
49
49
  msgstr "Peut accéder à cette application"
50
50
 
51
- #: aa_bulletin_board/models.py:72
51
+ #: aa_bulletin_board/models.py:73
52
52
  #, fuzzy
53
53
  msgid "Can manage (add/change/remove) bulletins"
54
54
  msgstr "Peut gérer (ajouter/modifier/supprimer) des bulletins"
55
55
 
56
- #: aa_bulletin_board/models.py:81
56
+ #: aa_bulletin_board/models.py:82
57
57
  #, fuzzy
58
58
  msgid "Title"
59
59
  msgstr "Titre"
60
60
 
61
- #: aa_bulletin_board/models.py:84
61
+ #: aa_bulletin_board/models.py:85
62
62
  #, fuzzy
63
63
  msgid "Content"
64
64
  msgstr "Contenu"
65
65
 
66
66
  #. Translators: This is the date and time the bulletin has been created
67
- #: aa_bulletin_board/models.py:90
67
+ #: aa_bulletin_board/models.py:91
68
68
  #, fuzzy
69
69
  msgid "Created"
70
70
  msgstr "Créé"
71
71
 
72
72
  #. Translators: This is the date and time the bulletin has been updated
73
- #: aa_bulletin_board/models.py:96
73
+ #: aa_bulletin_board/models.py:97
74
74
  #, fuzzy
75
75
  msgid "Updated"
76
76
  msgstr "Mis à jour"
77
77
 
78
- #: aa_bulletin_board/models.py:105
79
- #, fuzzy
78
+ #: aa_bulletin_board/models.py:106
80
79
  msgid "User"
81
80
  msgstr "Utilisateur"
82
81
 
83
- #: aa_bulletin_board/models.py:111
82
+ #: aa_bulletin_board/models.py:112
84
83
  msgid "Group restrictions"
85
84
  msgstr "Restrictions de groupe"
86
85
 
87
- #: aa_bulletin_board/models.py:122
86
+ #: aa_bulletin_board/models.py:123
88
87
  msgid "Bulletin"
89
88
  msgstr "Bulletin"
90
89
 
91
- #: aa_bulletin_board/models.py:123
90
+ #: aa_bulletin_board/models.py:124
92
91
  msgid "Bulletins"
93
92
  msgstr "Bulletins"
94
93
 
@@ -105,7 +104,7 @@ msgstr "Editer"
105
104
  #: aa_bulletin_board/templates/aa_bulletin_board/bulletin.html:20
106
105
  #: aa_bulletin_board/templates/aa_bulletin_board/dashboard.html:37
107
106
  msgid "Delete"
108
- msgstr ""
107
+ msgstr "Supprimer"
109
108
 
110
109
  #: aa_bulletin_board/templates/aa_bulletin_board/dashboard.html:17
111
110
  msgid "This bulletin is restricted to the following group:"