Skip to content

Commit 72ee5b3

Browse files
committed
fix(i18n): move translations to core app
1 parent fe5dcea commit 72ee5b3

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

Diff for: alexandria/locale/de/LC_MESSAGES/django.po renamed to alexandria/core/locale/de/LC_MESSAGES/django.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-02-18 14:03+0000\n"
11+
"POT-Creation-Date: 2025-02-21 09:05+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"

Diff for: alexandria/locale/en/LC_MESSAGES/django.po renamed to alexandria/core/locale/en/LC_MESSAGES/django.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-02-18 14:03+0000\n"
11+
"POT-Creation-Date: 2025-02-21 09:05+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"

Diff for: alexandria/locale/it/LC_MESSAGES/django.po renamed to alexandria/core/locale/it/LC_MESSAGES/django.po

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-02-18 14:03+0000\n"
11+
"POT-Creation-Date: 2025-02-21 09:05+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -116,8 +116,8 @@ msgstr "Il filtro \"files\" è obbligatorio!"
116116
#: alexandria/core/views.py
117117
msgid "The \"files\" filter must consist of a comma delimited list of UUIDs!"
118118
msgstr ""
119-
"Il filtro \"files\" deve essere costituito da un elenco di UUID delimitato da "
120-
"virgole!"
119+
"Il filtro \"files\" deve essere costituito da un elenco di UUID delimitato "
120+
"da virgole!"
121121

122122
#: alexandria/core/views.py
123123
msgid "For downloading a file use the presigned download URL."

Diff for: alexandria/settings/django.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def parse_languages(languages):
7979
or global_settings.LANGUAGES
8080
)
8181
PROJECT_ROOT = (Path(__file__) / Path("../..")).resolve()
82-
LOCALE_PATHS = [str(PROJECT_ROOT / Path("locale"))]
82+
LOCALE_PATHS = [str(PROJECT_ROOT / Path("core/locale"))]
8383

8484
TIME_ZONE = env.str("TIME_ZONE", "UTC")
8585
USE_I18N = True

0 commit comments

Comments
 (0)