You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
# backend/utils/unfold_translations.py
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
# Dummy list to trick makemessages into keeping our Unfold overrides safe!
|
|
UNFOLD_CUSTOM_STRINGS = [
|
|
_("Search"),
|
|
_("Search apps and models"),
|
|
_("View site"),
|
|
_("Log out"),
|
|
_("general"),
|
|
_("manage all Participants"),
|
|
_("questions"),
|
|
_("question"),
|
|
_("option"),
|
|
_("correct answer"),
|
|
_("Total score"),
|
|
_("Timing score"),
|
|
_("Question score"),
|
|
_("Total timing"),
|
|
_("Ended at"),
|
|
_("Started at"),
|
|
_("Participant Answer"),
|
|
_("Selected option"),
|
|
_("Correct Answer"),
|
|
_("Seconds take to answer"),
|
|
_("Recent Messages Latest"),
|
|
_("Room name"),
|
|
_("Is Locked"),
|
|
_("Initiator"),
|
|
_("Recipient"),
|
|
_("Manage All Messages"),
|
|
_("Sender"),
|
|
_("Message Content"),
|
|
_("Chat Type"),
|
|
_("Sent At"),
|
|
_("Is deleted"),
|
|
_("Group"),
|
|
_("Private"),
|
|
_("System Administration"),
|
|
_("All Users"),
|
|
_("Monday"),
|
|
_("Tuesday"),
|
|
_("Wednesday"),
|
|
_("Thursday"),
|
|
_("Friday"),
|
|
_("Saturday"),
|
|
_("Sunday"),
|
|
]
|