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.
100 lines
2.5 KiB
100 lines
2.5 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"),
|
|
_("Active Course"),
|
|
_("Active Courses"),
|
|
_("30-Day Revenue"),
|
|
_("Popular Courses"),
|
|
_("Top 5 Popular Courses"),
|
|
_("Success"),
|
|
_("Pending"),
|
|
_("Waiting"),
|
|
_("Failed"),
|
|
_("Success:"),
|
|
_("Pending:"),
|
|
_("Waiting:"),
|
|
_("Failed:"),
|
|
_("Choose file to upload"),
|
|
_("Date from"),
|
|
_("Date to"),
|
|
_("By Date Joined"),
|
|
_("Type to search"),
|
|
_("Type to search..."),
|
|
_("Apply filters"),
|
|
_("From"),
|
|
_("To"),
|
|
_("video link"),
|
|
_("Video Link"),
|
|
_("Time"),
|
|
_("Delete"),
|
|
_("Title"),
|
|
_("Add Weekly Timing"),
|
|
_("Delete All"),
|
|
_("Add Course Features"),
|
|
_("Is Staff"),
|
|
_("Deleted at"),
|
|
_("User Type"),
|
|
_("Type of the user"),
|
|
_("Raw passwords are not stored, so there is no way to see this user’s password, but you can change the password using <a href=\"{}\">this form</a>."),
|
|
_("Total Active Users"),
|
|
_("Total Guest Users"),
|
|
_("Total Students"),
|
|
_("Total Professors"),
|
|
_("Users:"),
|
|
_("users :"),
|
|
_("By"),
|
|
_("By Date Joined"),
|
|
_("( both fields are showing )"),
|
|
_("(both fields are showing)"),
|
|
_("Imam Javad Admin"),
|
|
_("Imam Javad School"),
|
|
_("Dovoodi Admin"),
|
|
_("Dovodbi Application"),
|
|
_("Updated Today"),
|
|
_("Requires Action"),
|
|
]
|
|
|