-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore some backend strings for translation
- Loading branch information
Showing
8 changed files
with
73 additions
and
209 deletions.
There are no files selected for viewing
10 changes: 4 additions & 6 deletions
10
contentcuration/contentcuration/constants/channel_history.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
CREATION = "creation" | ||
PUBLICATION = "publication" | ||
DELETION = "deletion" | ||
RECOVERY = "recovery" | ||
|
||
choices = ( | ||
(CREATION, _("Creation")), | ||
(PUBLICATION, _("Publication")), | ||
(DELETION, _("Deletion")), | ||
(RECOVERY, _("Deletion recovery")), | ||
(CREATION, "Creation"), | ||
(PUBLICATION, "Publication"), | ||
(DELETION, "Deletion"), | ||
(RECOVERY, "Deletion recovery"), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
DELETION = "soft-deletion" | ||
RECOVERY = "soft-recovery" | ||
RELATED_DATA_HARD_DELETION = "related-data-hard-deletion" | ||
|
||
choices = ( | ||
(DELETION, _("User soft deletion")), | ||
(RECOVERY, _("User soft deletion recovery")), | ||
(RELATED_DATA_HARD_DELETION, _("User related data hard deletion")), | ||
(DELETION, "User soft deletion"), | ||
(RECOVERY, "User soft deletion recovery"), | ||
(RELATED_DATA_HARD_DELETION, "User related data hard deletion"), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-05-08 23:08+0000\n" | ||
"POT-Creation-Date: 2023-05-10 14:17+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -23,34 +23,6 @@ msgstr "" | |
msgid "Arabic" | ||
msgstr "" | ||
|
||
#: contentcuration/constants/channel_history.py:9 | ||
msgid "Creation" | ||
msgstr "" | ||
|
||
#: contentcuration/constants/channel_history.py:10 | ||
msgid "Publication" | ||
msgstr "" | ||
|
||
#: contentcuration/constants/channel_history.py:11 | ||
msgid "Deletion" | ||
msgstr "" | ||
|
||
#: contentcuration/constants/channel_history.py:12 | ||
msgid "Deletion recovery" | ||
msgstr "" | ||
|
||
#: contentcuration/constants/user_history.py:8 | ||
msgid "User soft deletion" | ||
msgstr "" | ||
|
||
#: contentcuration/constants/user_history.py:9 | ||
msgid "User soft deletion recovery" | ||
msgstr "" | ||
|
||
#: contentcuration/constants/user_history.py:10 | ||
msgid "User related data hard deletion" | ||
msgstr "" | ||
|
||
#: contentcuration/middleware/db_readonly.py:24 | ||
msgid "The site is currently in read-only mode. Please try again later." | ||
msgstr "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.